/*
 * 更新时间
 * 2017-02-15 10:25:00
 */
/*** 重置样式 ***/

html {
	/* 在某些手机浏览器中：元素点击后默认高亮显示 */
	-webkit-tap-highlight-color:transparent;
	/* 字体默认最小：12px */
	-webkit-text-size-adjust:100%;
}

body {
	font-family:微软雅黑;
}

body , div , ul , ol , p , h1 , h2 , h3 , h4 , h5 , h6 , nav , section , header , footer , table , frameset ,iframe , figure {
	margin: 0px;
	padding:0px;
	outline:none;
}

h1 , h2 , h3 , h4 , h5 ,h6 {
	/* 默认字体加粗 */
	font-weight:normal;
}

ul , ol {
	/* 列表默认有标示序号的图片 */
	list-style-type:none;
}

table {
	empty-cells:show;
	border-collapse:collapse;
	table-layout:fixed;
}

/* 设置表格边框（默认无边框） */
table , table thead tr th , table tbody tr td {
	border:1px solid #ccc;
	text-align:left;
}

input , select , button , textarea {
	/* 默认是有外边框的 */
	outline:none;
	font-family:inherit;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
}

input[type=text] , input[type=password] , input[type=search] , input[type=number] ,input[type=range] , input[type=email] , textarea {
	border:1px solid #ccc;
	transition:all 0.2s ease-in-out;
	-webkit-transition:all 0.2s ease-in-out;
	-moz-transition:all 0.2s ease-in-out;
	-o-transition:all 0.2s ease-in-out;
	-ms-transition:all 0.2s ease-in-out;
}

input[type=text] , input[type=password] , input[type=search] , input[type=number] , input[type=email] , textarea {
	text-indent:5px;	
}

input[type=text]:focus , input[type=password]:focus , input[type=search]:focus , input[type=number]:focus , input[type=email]:focus , textarea:focus {
    border-color: rgba(82,168,236,0.8);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);
}

input[type=radio] , input[type=checkbox] {
	vertical-align:middle;
	margin:0px;
	padding:0px;
	margin-top:-3px;
}

input[type=submit] , input[type=button] , button {
	outline:none;
	border:none;
	background-color:transparent;
	font-family:inherit;
}

textarea {
	/* 默认编辑框是可伸缩的 */
	resize:none;
	outline:none;
}

img {
	/* 所有的行内块元素都是 vertical-align:baseline */
	vertical-align:middle;
	/* IE 中图片元素是有边框的 */
	border:none;
}

video  {
	vertical-align:middle;
}

a {
	/* 连接默认有下划线 */
	text-decoration:none;
	color:inherit;
	cursor:pointer;
	word-wrap:break-word;
}

/* 滚动条设置 */
::-webkit-scrollbar {
	width:6px;
	height:6px;
}



/* 滚动槽 */
::-webkit-scrollbar-corner , ::-webkit-scrollbar-track {
	background-color:rgba(140, 140, 140, 0.15);
}



/* 滚动块 */
::-webkit-scrollbar-thumb {
	border-radius:3px;
	background-color:rgba(58,57,57,0.25);
}

::-webkit-scrollbar-thumb:hover {
	background-color:rgba(58,57,57,0.4);
}


.hide {
	display:none;
}

