@import url("")

/* CSS Document */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

html {
	width: 100%;
	height: 100%;
}

body {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 0;
	color: #555;
	line-height: 1;
	position: relative;
	font-family: Tahoma, Verdana, "Microsoft Yahei", sans-serif;	
}

* {
	-webkit-tap-highlight-color: transparent;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

a {
	text-decoration: none;
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	cursor: pointer;
}

a:hover {
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	color: #1189A4;
}

ul,
li,
a,
p,
input,
button,
textarea {
	margin: 0;
	padding: 0;
}

table,
tr,
td,
img {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

img {
	display: block;
}

img,
button {
	border: none;
}

button,
input,
select,
textarea {
	font-family: 'Noto Sans CJK SC', 'Noto Sans CJK', 'Source Han Sans', source-han-sans-simplified-c, sans-serif;
	border-radius: 2px;
}

input,
select,
textarea {
	border: 1px solid #e8e8e8;
	padding: 0 10px;
}

textarea {
	padding: 10px;
}

button {
	cursor: pointer;
}

select {
	cursor: pointer;
}

input:focus,
button:focus,
select:focus,
textarea:focus {
	outline: none;
}

button {
	background-color: transparent;
}

textarea {
	resize: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

/*字体图标*/
.iconfont {
	font-family: "iconfont" !important;
	font-size: 16px;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* 数字字体 */
@font-face {
	font-family: 'pro';
	src: url('../font/ProductSans.ttf');
}

/*清除浮动*/
.clear:after {
	content: "";
	display: block;
	clear: both;
}

/*按钮*/
/*input placeholder*/
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #9a9a9a;
}

/*文本超出一行 省略号

		display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
*/

.cover {
	display: block;
	overflow: hidden;
}

.cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.cover.circle {
	border-radius: 50%;
}

.line-clamp-1 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.line-clamp-2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.line-clamp-3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
