
/*----------------------------------------------------------------

// 文件名：base.css
// 功能描述：样式重置
// 


//----------------------------------------------------------------*/

*,*:before,*:after{
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
}
html{
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
}
body{
    font-family: "Microsoft YaHei",Helvetica;
    width: 100%;
    margin: auto;
    height: 100%;
    position: relative;
}
a{

    text-decoration: none;
    cursor: pointer;
}
p, ul, ol, li, table, td, th, img, div, h1, h2, h3, h4, h5, h6, dl, dt, dd, form {
    padding: 0;
    margin: 0;
}
h1,h2,h3,h4,h5,h6{
    font-weight: normal;
}
img{
    display: inline-block;
    border: medium none;
    vertical-align:middle;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
p{
    word-wrap: break-word;
}
li{
    list-style-type: none;
}
input{
    margin: 0;
    background-color: inherit;
    color: inherit;
    outline: none;
}
em,strong,var{
	font-weight: normal;
	font-style: normal;
}
.clearfix:after{
    display: block;
    content: "";
    clear:both;
    height: 0;
    visibility: hidden;
}
.float_left{
     float: left;
 }
.float_right{
    float: right;
}
.display_none{
    display: none;
}
.display_block{
    display: block;
}
