@charset "utf-8";

/* CSS Document */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: none;
	/*只针对低版本谷歌*/
}

body {
	font-size: 14px;
	color: #666;
	_overflow: hidden;
	overflow-x: hidden;
	background: #fff;
	width: 100%;
	*cursor: default;
}

body,
ol,
table,
tr,
td,
ul,
li,
dt,
dd,
dl,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
select,
textarea,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
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 {
	font-family: "微软雅黑", Tahoma, Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
}

ul,
li {
	list-style-type: none;
}

img {
	border: none;
	vertical-align: middle;
}


/*-------将特定标签设成块---------*/

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}


/*-------给a加时间过渡、清除默认样式---------*/

a {
	outline: none;
	cursor: pointer;
	text-decoration: none;
	color: #666;
	transition: all .4s ease 0s;
	-webkit-transition: all .4s ease 0s;
	-moz-transition: all .4s ease 0s;
}

a:focus,
a:active,
a:hover {
	text-decoration: none
}

a,
area,
a:active {
	blr: expression(this.onFocus=this.blur());
}

:focus {
	-moz-outline-style: none;
}


/*-------清除浮动---------*/

.clearfix::after {
	content: ".";
	clear: both;
	display: block;
	overflow: hidden;
	font-size: 0;
	height: 0;
}


/*在浏览器拖动鼠标颜色*/


/*::selection {
	color: #fff;
	background-color: #000;
}

::-moz-selection {
	color: #fff;
	background-color: #000;
}*/


/*更改浏览器滚动条颜色兼容*/


/*html,
body {
	更改ie内核滚动条颜色
	scrollbar-face-color: #000;
	scrollbar-highlight-color: #000;
	scrollbar-shadow-color: #000;
	scrollbar-3dlight-color: #000;
	scrollbar-arrow-color: #222;
	scrollbar-track-color: #222;
	scrollbar-darkshadow-color: #000;
}*/


/*更改-webkit-内核滚动条样式*/


/*::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	background-color: #fcfcfc;
}

::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: #fcfcfc;
}

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #211F1F;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}*/


/*清除默认样式*/

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}


/*-------表单居中、清理描边---------*/

input,
button,
select,
textarea {
	outline: none
}

input,
select,
textarea,
button {
	vertical-align: middle
}

button {
	border: 0 none;
	background-color: transparent;
	cursor: pointer
}

button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"]>input[type="button"]::-moz-focus-inner {
	border: none;
	padding: 0;
}


/*----- 表格重置-----*/

table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
}

caption {
	display: none;
}


/*-----针对webkit的hack写法-----*/

@media screen and (-webkit-min-device-pixel-ratio:0) {}


/*----- 超出省略号///-----*/

.toe_1 {
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.toe_2 {
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.toe_3 {
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.link {
	cursor: pointer;
}

.divBox {
	width: 1200px;
	margin: 0 auto;
	max-width: 95%;
}

.fl {
	float: left;
}

.fr {
	float: right;
}