﻿/* CSS Document */
*{ padding:0px; margin:0px; box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; -o-box-sizing: border-box;}
body,span,div,ul,li,ol,dl,dt,dd,a,img,input,textarea,h1,h2,h3,h4,h5,h6,p,form,em,b,u,i{ padding:0px; margin:0px; border:0px; font-style:normal; list-style:none;}
body{ font-family:"Microsoft YaHei",'微软雅黑',Arial; overflow-x: hidden; font-size:14px; color:#686868; background: #fff;}
h1,h2,h3,h4,h5,h6{ font-weight: normal; font-size: 14px;}
textarea{ resize: none; }
input,textarea,button,select{ font-size:15px; font-family:"Microsoft YaHei",'微软雅黑',Arial; outline:none;}
table{ border-collapse:collapse; border-spacing:0;}
select{ ppearance:none; -moz-appearance:none;/*Firefox*/ -webkit-appearance:none;/*Safari和Chrome*/}
img{ vertical-align: middle;}
a{
	color: #fff;
	outline-style:none; 
	transition: none 0.2s linear 0s; 
	-webkit-transition: none 0.2s linear 0s; 
	-moz-transition: none 0.2s linear 0s; 
	-ms-transition: none 0.2s linear 0s; 
	-o-transition: none 0.2s linear 0s; 
	transition-property: background,color,border; 
	-webkit-transition-property: background,color,border;
	-moz-transition-property: background,color,border;
	-ms-transition-property: background,color,border;
	-o-transition-property: background,color,border;
}
a:visited,a:link{ text-decoration:none;}
a:hover{ color: #fff; text-decoration:none;}
a:active{}

input[type="submit"],input[type="reset"],input[type="button"]{ -webkit-appearance:none;}
/*ios系统中元素被触摸时产生的半透明灰色遮罩去掉*/
a,span,button,input,textarea{ -webkit-tap-highlight-color: rgba(0,0,0,0); /*-webkit-user-modify:read-write-plaintext-only; */}
/*input type=number*/
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button{ -webkit-appearance:none !important;}/* chrome and safari */
/*input{ -webkit-}*/

/*取消点击高亮*/
a,div,span{ -webkit-tap-highlight-color:transparent;}

/* 修改chrome记住密码后自动填充表单的黄色背景 */
input:-webkit-autofill { background-color: none; background-image: none; color: #000;}

/* 禁止复制、选中文本 */
element{
	-webkit-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	user-select: none;
}

/* 长时间按住页面出现闪退 */
element {
	-webkit-touch-callout: none;
}

/* iphone及ipad下输入框默认内阴影 */
element{
	-webkit-appearance: none; 
}

/* ios和android下触摸元素时出现半透明灰色遮罩 */
element {
	-webkit-tap-highlight-color:rgba(255,255,255,0);
}

/* 动画定义3D启用硬件加速 */
element{
	-webkit-transform:translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

/* Retina屏的1px边框 */
element{
  border-width: thin;
}


/* 滚动条 */
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/  
::-webkit-scrollbar{ width: 0; height: 0; background-color: #F5F5F5;}  
/*定义滚动条轨道 内阴影+圆角*/  
::-webkit-scrollbar-track{ -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); border-radius: 0; background-color: #F5F5F5;}  
/*定义滑块 内阴影+圆角*/  
::-webkit-scrollbar-thumb{ border-radius: 0; -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); background-color: #999;}  

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/  
::-moz-scrollbar{ width: 3px; height: 3px; background-color: #F5F5F5;}  
/*定义滚动条轨道 内阴影+圆角*/  
::-moz-scrollbar-track{ -moz-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); border-radius: 0; background-color: #F5F5F5;}  
/*定义滑块 内阴影+圆角*/  
::-moz-scrollbar-thumb{ border-radius: 0; -moz-box-shadow: inset 0 0 6px rgba(0,0,0,.3); background-color: #999;}  

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/  
::-ms-scrollbar{ width: 3px; height: 3px; background-color: #F5F5F5;}  
/*定义滚动条轨道 内阴影+圆角*/  
::-ms-scrollbar-track{ -ms-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); border-radius: 0; background-color: #F5F5F5;}  
/*定义滑块 内阴影+圆角*/  
::-ms-scrollbar-thumb{ border-radius: 0; -ms-box-shadow: inset 0 0 6px rgba(0,0,0,.3); background-color: #999;}  

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/  
::-o-scrollbar{ width: 3px; height: 3px; background-color: #F5F5F5;}  
/*定义滚动条轨道 内阴影+圆角*/  
::-o-scrollbar-track{ -o-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); border-radius: 0; background-color: #F5F5F5;}  
/*定义滑块 内阴影+圆角*/  
::-o-scrollbar-thumb{ border-radius: 0; -o-box-shadow: inset 0 0 6px rgba(0,0,0,.3); background-color: #999;}  