html,body{
    height:100%; width:100%;margin:0;
    padding:0;
    font-size: 0.16rem;
    color: #202437;
    min-width: 1200px;
}
ul{
    list-style:none;    //去掉标签默认的左边符号
display:flex;
    flex-wrap:wrap;
}
li{
    list-style-type:none;    //去掉标签默认的左边符号
text-align: center;
}
p{
    margin: 0;
    padding: 0;
}
/*包含以下四种的链接*/
a {
    text-decoration: none;
    color: #FFFFFF;
}
/*正常的未被访问过的链接*/
a:link {
    text-decoration: none;
}
/*已经访问过的链接*/
a:visited {
    text-decoration: none;
}
/*鼠标划过(停留)的链接*/
a:hover {
    text-decoration: none;
}
/* 正在点击的链接*/
a:active {
    text-decoration: none;
}
.header-active{
    color: #FF5B29!important;
    position: relative;
}
.header-active:after{
    content: '';
    width: 0.4rem;
    position: absolute;
    left: 0.3rem;
    bottom: 0;
    height: 3px;
    background-color: #2CD781;
    border-radius: 1px;

}