﻿@charset "utf-8";
/* CSS Document */
* {box-sizing: border-box;}
*::after, *::before {box-sizing: border-box;}
body{background:none no-repeat;margin:0;padding:0;-webkit-tap-highlight-color:rgba(0,0,0,0);}
html{background:#fff;color:#666; line-height:1.5;font-family:"Microsoft Yahei";}
ul,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,form,p{margin:0px;padding:0px;list-style-image:none;list-style-type:none;}
div,ul,li,dl,dt,dd,p,form,input,textarea{font-family:Microsoft YaHei,Helvetica Neue,Helvetica,Roboto,Segoe UI,Arial,sans-serif;}
a,a:visited{color:#666;text-decoration:none;-webkit-tap-highlight-color:rgba(0,0,0,0);}
input,textarea,a{outline:none;-webkit-tap-highlight-color:rgba(0,0,0,0);}
i,em{font-style: normal;}
input[type="button"], input[type="submit"], input[type="reset"], input[type="text"] {-webkit-appearance: none;}
textarea{-webkit-appearance: none;}
input[type="button"]:active{ opacity: 0.8;}
input[type="text"]:-webkit-autofill {-webkit-box-shadow: 0 0 0px 1000px white inset;}
/*清除浮动*/
.clear{clear:both;}
.clearfix{_zoom:1}
.clearfix:after{content:"";display:block;height:0;clear:both}
*+html .clearfix{overflow:hidden}
/*遮罩层*/
#overlay{position:fixed;width:100%;height:100%;background-color:#000;filter:alpha(opacity=30);-moz-opacity:0.3;opacity:0.3;z-index:99;display:none;top:0; left: 0;}
/*滚动条整体样式*/
*::-webkit-scrollbar{width:10px;height:1px;}
/*滚动条滑块*/
*::-webkit-scrollbar-thumb{border-radius:10px;-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.2);background:#999;}
/*滚动条轨道*/
*::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 1px rgba(0,0,0,0);border-radius:10px;background:#333;}
/*自定义字体*/
@font-face {
	font-family: 'familyName01';
	src: url('../font/TT0246M.TTF');
}
@font-face {
	font-family: 'familyName02';
	src: url('../font/ITCAvantGardeStd-Md_0.otf');
}
/*渐变色*/
.gradientColor{
	background-color: -webkit-linear-gradient(left, #2ca8e5 , #2dcde5); /* Safari 5.1 - 6.0 */
	background: -o-linear-gradient(right, #2ca8e5 , #2dcde5); /* Opera 11.1 - 12.0 */
	background: -moz-linear-gradient(right, #2ca8e5 , #2dcde5); /* Firefox 3.6 - 15 */
	background: linear-gradient(to right, #2ca8e5 , #2dcde5); /* 标准的语法 */
}