/* 基本的重置样式 */
html,body,p,h1,h2,h3,h4,h5,h6,ul,ol,dl,dd,th,td,input,button,fieldset,legend,option,textarea,hr{
    margin:0;
    padding:0;
}
li{
    list-style:none;
}
a,ins,u{
    /* text-decoration: none; */
}
h1,h2,h3,h4,h5,h6{
    font-weight:normal;
}
strong,b{
    font-weight:normal;
}
i,em{
    font-style:normal;
}
img{
    display:block;
    border:none;
}
fieldset{
    border:none;
}
input,textarea{
    outline:none;
}
textarea{
    resize: none;
}
table{
    border-spacing: 0;
    border-collapse: collapse;
}
input,button{
    border:none;
}
.clearFix::after{
    content: '';
    display: block;
    clear: both;
}
/* 兼容低版本浏览器 */
.clearFix{
    zoom:1;
}
.left{
    float:left;
}
.right{
    float:right;
}

/* 根据页面风格重置的样式 */
body{
    font:12px '微软雅黑';
    /* min-width:1200px; */
}
a{
    color:#333;
}
a:hover{
    color:#c00;
}
.borderNone{
    border:none !important;
}