@charset "utf-8";

/* CSS Document */

body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
ol,
dl,
dt,
dd,
p,
a,
span,
input,
img,
button,
textarea,
select,
table,
label,
tr,
td,
thead,
tbody {
	margin: 0;
	padding: 0;
	list-style: none;
	border: none;
}

body {
	color: #666666;
	font-size: 14px;
	font-family: "微软雅黑";
}

a {
	color: #666666;
	text-decoration: none;
	outline: none;
}

a:hover {
	color: #4c97ff;
	text-decoration: none;
}

a:focus {
	text-decoration: none;
	outline: none;
}

* {
	-moz-box-sizing: border-box;  /*Firefox3.5+*/
	-webkit-box-sizing: border-box; /*Safari3.2+*/
	-o-box-sizing: border-box; /*Opera9.6*/
	-ms-box-sizing: border-box; /*IE8*/
	box-sizing: border-box; /*W3C标准(IE9+，Safari5.1+,Chrome10.0+,Opera10.6+都符合box-sizing的w3c标准语法)*/
}


.btn {
	padding: 0;
}


/*伪类清浮动*/


/*这段代码 每次要加在cssrest当中 把它当做一个模块来使用 使用方法就是：给高度塌陷的元素 加上这个clearfix类名即可*/

.clearfix:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	display: inline-table;
}

*html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

*+html .clearfix {
	min-height: 1%;
}



::-webkit-scrollbar {
    width: 6px;
    height: 10px;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-corner, ::-webkit-scrollbar-track {
    background-color: #e2e2e2;
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #d2d2d2;;
}

::-webkit-scrollbar-thumb {
    background-color: #d2d2d2;
}

::-webkit-scrollbar-corner, ::-webkit-scrollbar-track {
    background-color: #e2e2e2;
}

::-webkit-scrollbar-track {
    background-color: #F5F5F5;
}

.layui-laypage a:hover {
	color: #4c97ff!important;
}