/* 
* @Author: Marte
* @Date:   2019-07-25 10:14:51
* @Last Modified by:   Marte
* @Last Modified time: 2019-07-25 10:14:55
*/
/*公共样式*/
*{
    padding: 0;
    margin:0;
    box-sizing: border-box;
    font-family: "微软雅黑";
}
ul,ul li,ol,ol li{
    list-style: none;
}
a{
    text-decoration: none;
}
body{
    min-width: 1200px;
    background-color: #fff;
}
/*清除浮动*/
.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1; /*IE/7/6*/
}
.fl{
    float: left;
}
.fr{
    float: right;
}
.tac{
    text-align: center;
}
.tar{
    text-align: right;
}
.wrap{
    width: 1200px;
    margin:0 auto;
}
.f-pr{
    position:relative;
}
.f-pa{
     position:absolute;
}
/*ie清除样式*/
input::-ms-clear {
display: none;
}

input::-ms-reveal {
display: none;
}
img{
    border:none;
}