/*设置字符集*/
@charset "utf-8";
*{
	margin:0;
	padding:0;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	box-sizing: border-box; 
}
html,body{ width: 100%; height: 100%;line-height: 1;font-family:"微软雅黑";
	-webkit-text-size-adjust: 100%;-ms-text-size-adjust: 100%; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
ul,ol { margin: 0; padding: 0;list-style: none; }
img{ vertical-align: top; border:0;-ms-interpolation-mode: bicubic; }
a,input,button { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
input,textarea,select{ font-size:100%; font-family: inherit; outline: none;font-size:100%;border: 0;} 
a, a:hover, a:active, a:visited { color: #576B95;text-decoration:none;outline: 0; } 
h1, h2, h3, h4, h5, h6 { font-size: 100%;font-weight: normal; }
address, em, i, b { font-style: normal; }

/*修改webkit表单输入框placeholder的样式*/
input::-webkit-input-placeholder{
	/*color:#AAAAAA;*/
}
input:focus::-webkit-input-placeholder{
	/*color:#EEEEEE;*/
}
/*android 上去掉语音输入按钮*/
input::-webkit-input-speech-button { 
	/*display: none;*/
}

/* 设置HTML5元素为块 */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section { margin:0;padding:0;display: block;   box-sizing: border-box;   }

/*默认滚动条样式修改ie9 google Firefox 等高版本浏览器有效*/
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track-piece {
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:vertical {
    height: 5px;
    background-color: rgba(125, 125, 125, 0.7);
    -webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:horizontal {
    width: 5px;
    background-color: rgba(125, 125, 125, 0.7);
    -webkit-border-radius: 6px;
}

/*自定义辅助类*/
.sw-selectNo{
	 /*禁止移动端用户进行复制.选择, 即禁止页面文字选中 ，此属性不继承，一般加在body上规定整个body的文字都不会被选中*/
     -webkit-user-select: none;
     user-select: none;
}
.sw-calloutNo{
	/*禁用长按页面时的弹出菜单, 即阻止屏幕长按的默认事件*/
	 -webkit-touch-callout:none; 
}
.sw-left{ float: left; }
.sw-right{ float: right; }
.sw-clear{ content: "";display: block;clear:both; }
.sw-scroll{ -webkit-overflow-scrolling:touch ; }
.sw-click{ cursor: pointer; }
.sw-formNo{
    /*消除输入框和按钮的原生外观，在iOS上加上这个属性才能给按钮和输入框自定义样式 */
    /*不同 type 的 input使用这个属性之后表现不一。text、button无样式，radio、checkbox直接消失*/
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}
.sw-table {
	/*合并边框,间距为0*/
    border-spacing: 0;
    border-collapse: collapse;
}
.sw-cj{
	/*内容超出裁剪*/
	overflow:hidden;text-overflow:ellipsis;white-space:nowrap; 
}
