/**
*css公共层
*basic.css
*概念：每个网页布局公用的样式
*Author：愚人节
*QQ：497401314
*phone:15255155055
*Date:2016-01-06
**/
@charset "utf-8";

/*body默认设置*/
body{ font:14px/30px '微软雅黑';
}


/* 全局标签 内外间距清零*/
html, body, div, p, ul, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, form, input, select, button, textarea, iframe, {
	margin: 0;
	padding: 0;
}

/*li标签 样式清零*/
ul,li{ list-style:none;}
/* a标签下划线去除*/
a{ text-decoration:none;}

/* 文字及其填充物 居中*/
	.tl{ text-align:left;}
	.tc{ text-align:center;}
	.tr{ text-align:right;}
	
/*浮动产生塌陷的兼容性*/
.clearfix{zoom:1;}
.clearfix:before,.clearfix:after{display:table;line-height:0;content:"";}
.clearfix:after{clear:both;}

/*浮动 */  
.fl{ float:left; }
.fr{ float:right; }
.clear{ clear:both;}

/*最小高度*/
.fz0{ font-size:0px;}

/*图片边框*/
  img{ border:none; }
  
  input{ outline: none;}
  
/*mt 上外边距*/
.mr0{ margin: 0 auto;}
.mt2{margin-top:2px;}
.mt5{margin-top:5px;} 
.mt10{margin-top:10px;}
.mt15{margin-top:15px;}
.mt20{margin-top:20px;}
.mt25{margin-top:25px;} 
.mt30{margin-top:30px;}
.mt35{margin-top:35px;}
.mt40{margin-top:40px;}
.mt45{margin-top:45px;}
.mt50{margin-top:50px;}
.mt55{margin-top:55px;}
.mt60{margin-top:60px;}
.mt65{margin-top:65px;}
.mt70{margin-top:70px;}
.mt75{margin-top:75px;}
.mt80{margin-top:80px;}
.mt90{margin-top:90px;}
.mt100{margin-top:100px;}
/*ml 左外边距*/
.ml0{margin-left:0px !important;}
.ml5{margin-left:5px;}
.ml10{margin-left:10px;}
.ml15{margin-left:15px;}
.ml20{margin-left:20px;}
.ml25{margin-left:25px;}
.ml30{margin-left:30px;}
.ml35{margin-left:35px;}
.ml40{margin-left:40px;}
.ml45{margin-left:45px;}
.ml50{margin-left:50px;}
.ml55{margin-left:55px;}
.ml60{margin-left:60px;}
.ml65{margin-left:65px;}
.ml70{margin-left:70px;}
.ml75{margin-left:75px;}
.ml80{margin-left:80px;}
.ml85{margin-left:85px;}

/*转整行标签*/
.disBlock{ display:block;}

/*字体大小*/
.ft14{font-size:14px;}
.ft18{font-size:18px;}

/*字体加粗*/
.ftW{ font-weight:bold;}
.ftwn{ font-weight:normal;}
/*字体倾斜*/
.ftS{ font-style:italic;}
.ftsn{ font-style:normal;}

.rela{ position: relative;}
.hide{ display: none;}
.ovhide{ overflow: hidden;}

table{ border-collapse: collapse;}
