/*网站全局样式*/
/*hlx编写   2016/1/1*/

@charset "utf-8";
/* CSS Document */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{
	margin:0;
	padding:0;
	border:0;
}
html{
	font-size:62.5%;/*10 ÷ 16 × 100% = 62.5%*/
}
body{
        font:1.2rem/1.5 ;
		font-family:"Microsoft YaHei";
        background-color:#FFF;
        color:#fff;
        min-width:320px;
}
h1,h2,h3,h4,h5,h6{
	font-weight: normal;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{
	display:block;
}
img {
	width: 100%;
	display: inline-block;
}
textarea{
	resize:none;
}
.video object, .video iframe {
	width: 100%;
	height: auto;
}

ul,ol,li {
	list-style:none;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
tr,th,td{
	padding:0;
	margin:0;
	vertical-align: middle;
}
img,input,textarea,button{
	border:0 none;
	outline: none;
	font-family: "Microsoft Yahei";
}
a{
	text-decoration: none;
	cursor: pointer;
}
a:hover{
	text-decoration: none;
}
a:visited{
}
hr {
        clear:both;
        border-width:0;
        border-top:1px solid #ccc;
        border-bottom:1px solid #FFF;
        height:2px;
        overflow:hidden;
}
i,em,b{font-style:normal;}/*  *  */

/*float*/
.fl{float: left;}
.fr{float: right;}

/*font*/
.f12{font-size:1.2rem;}
.f14{font-size:1.4rem;}
.f16{font-size:1.6rem;}
.f18{font-size:1.8rem;}
.fb{font-weight:700;}
.fs{font-weight:400;}
.fi{font-style:italic;}
.fn{font-weight: normal;}
.dele{text-decoration:line-through;}
.ful{text-decoration:underline;}
.tm{text-align: center;}
.tl{text-align: left;}
.tr{text-align: right;}

/*clearfix*/
.clearfix:before,.clearfix:after,{content:""; display:table;}
.clearfix:after{clear:both;overflow:hidden; height: 0px; content: '';display: block;}
.clearfix:after{zoom:1;}

/*box-sizing*/
.box_size
{
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	-o-box-sizing:border-box;
}

/*多行字段溢出*/
.cm_txts_cut{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow : hidden;
}
/*默认复选框透明*/
.cm_checkbox{
	opacity: 0;
}
/*单行溢出*/
.cm_txt_one_cut{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.inline{
	vertical-align: middle;
	display: inline-block;
}

/*margin*/
.mt5{margin-top: 5px;}
.mt10{margin-top: 10px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mt40{margin-top: 40px;}
.ml5 {margin-left: 5px;}
.ml10{margin-left: 10px;}
.ml20{margin-left: 20px;}
.ml30{margin-left: 30px;}
.mr5{margin-right: 5px;}
.mr10{margin-right: 10px;}
.mr20{margin-right: 20px;}
.mr30{margin-right: 30px;}
.mb5{margin-bottom: 5px;}
.mb10{margin-bottom: 10px;}
.mb20{margin-bottom: 20px;}
.mb30{margin-bottom: 30px;}
/* padding */
.pb10{
	padding:10px 0;
}
.pb20{
	padding:20px 0;
}




/**
 * flex
 */
.flex{
	display: box;
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.flex_column {
  	flex-direction: column;
}
.border-box {
    -moz-box-sizing: border-box;
　       -webkit-box-sizing: border-box;
　　   box-sizing: border-box;
}
