@charset "utf-8";
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-size: 14px;
    line-height: 1.5;
    font-family: "PingFang SC", "Microsoft Yahei", Helvetica, Arial, sans-serif;
}
ol,ul,li {
    list-style: none;
}
a {
    color: #333;
    text-decoration: none;
    -webkit-transition: all .2s;
       -moz-transition: all .2s;
        -ms-transition: all .2s;
         -o-transition: all .2s;
            transition: all .2s;
}
a:hover {
    color: #e8222d;
}
img {
    border:0;
    vertical-align: middle;
}
input,textarea,button {
    outline: none;
    resize: none;
    font-family: "PingFang SC", "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
em{
    font-style: normal;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
p{
    text-align: justify; 
    text-justify: inter-ideograph;
}
button {
    background: none;
    border: none;
}
.fl{ 
    float:left;
}
.fr{ 
    float:right;
}
.clear{
    content: " ";
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
    clear: both;
}
.clearfix::after,.clearfix::before{
    content: '';
    height: 0;
    display: block;
    font-size: 0;
    overflow: hidden;
    clear: both;
 }