/*** 总体设置***/
*{box-sizing:border-box;}
*{
    margin:0;
    padding:0;
}
body{
    font-family: "微软雅黑";
    color: #666;
    font-size: 14px;
    min-width: 1200px;
    background-color: #fdfdfd;
}
table{
    border-spacing: 0;
    border-collapse: collapse;
}
ul,li{
    list-style: none;
}
a{
    text-decoration: none;
    color: #f41111;
}
a,img{
    border:0;
}

button,input,textarea,select{
    border:none;
    background: none;
    outline: none;
    font-family:"微软雅黑";
}
button{
    cursor:pointer;
}
.wrap{
    width:1200px;
    margin:0 auto;
}
.bigwrap{
    width:1200px;
    margin:0 auto;
}
i.error,label.error{
    display:block;
    color:#fd5f39;
    font-style:normal;
    padding-left: 24px;
    background: url(../images/common/errorIcon.png) 10px center no-repeat;
}

/*清除浮动*/
.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;
}
.pt100{
    padding-top: 100px;
}
.mt50{
    margin-top: 50px;
}
.f-pr{
    position:relative;
}
.f-pa{
    position:absolute;
}
.pl100{
    padding-left: 100px;
}
.ml10{
    margin-left: 10px;
}
.pl20{
    padding-left: 20px;
}
.mb20{
    margin-bottom: 10px;
}
.mb30{
    margin-bottom: 30px;
}
.ml60{
    margin-left: 60px;
}
.ml30{
    margin-left: 30px;
}
.w20{
    width: 20%;
}
.w40{
    width: 40%;
}
input::-webkit-input-placeholder{
    color:#999;
}
input::-moz-placeholder{   /* Mozilla Firefox 19+ */
    color:#999;
}
input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
    color:#999;
}
input:-ms-input-placeholder{  /* Internet Explorer 10-11 */ 
    color:#999;
}
.vhide{
    visibility: hidden;
}
select::-ms-expand { display: none; }          
select{
    border: none;
    outline: none;
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    -ms-appearance:none;
}