@charset "UTF-8";
/* CSS Document */

/*1.清除默认样式*/
/*html*/
html{color:#000;background:#fff;}
/*body*/
body{font:12px/1.5 "Microsoft Yahei",Tahoma,Arial,Helvetica,sans-serif;word-break:break-all;word-wrap:break-word; min-width: 1200px;}
/*内外边距*/
body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,select,th,td{margin:0;padding:0}
/*h1-h6*/
h1,h2,h3,h4,h5,h6{font-size: 100%;font-weight: normal;}
button,input,select,textarea{font-size:100%}
/*ul,ol*/
ul,ol{list-style: none;}
/*a链接*/
a{text-decoration: none;color: #333;}
a:hover{text-decoration: none}
/*img*/
img{border: none;vertical-align: middle}
/*p em strong small*/
p{word-wrap: break-word}
em,i{font-style: normal}
/*b,strong,th{font-weight: normal}*/
b,th{font-weight: normal}
small{font-size:12px}
/*table*/
table{border-collapse:collapse;border-spacing:0}
/*input select button框*/
input,select,button{
    background: none;
    border:none;
    outline:none;
    vertical-align:middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type=button],input[type=text],input[type=password]{-webkit-appearance:none;outline:none}/*-用于IOS下移除原生样式*/
select{-webkit-appearance:none;outline:none}/*-用于IOS下移除原生样式*/
/*textarea*/
textarea {resize:none;}

/*2.公共样式（公共类名）*/
/*清浮动*/
.clearfix:after{content: "";display: block;clear: both;}
.clearfix{*zoom: 1;}
/*闭合浮动*/
.clearDiv{clear:both;height:0;font-size:0;overflow: hidden;}
/*左右浮动*/
.fl{float: left;}
.fr{float: right;}
/*有效区外框*/
.wrap{width: 100%;}
/*有效区主体*/
.main{margin: 0 auto;}
/*隐藏*/
.overflow{overflow:hidden}
.hide{display:none}
/*块*/
.block{display:block}
.inline{display:inline}
/*文字处理*/
.wordwrap{word-break:break-all;word-wrap:break-word}
/*强制不换行*/
.w-s-n{white-space: nowrap;}
/*移除右边框*/
.b-r-0{border-right: 0!important;}
/*移除右外边距*/
.m-r-0{margin-right: 0!important;}
