* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #fff;
}

a:link{text-decoration:none; }  /* 指正常的未被访问过的链接*/

a:visited{text-decoration:none; }/*指已经访问过的链接*/

a:hover{text-decoration:none;}/*指鼠标在链接*/

a:active{text-decoration:none;}/* 指正在点的链接*/ 
:root {
    font-size: 6.25%;
    --container-max-width: 1400rem;
    --fz-text: 14rem;
}
@media screen and (max-width: 1200px)and (min-width: 576px) {
    /* 在缩小时，每个页面加左右内边距 */
    :root {
        font-size: 6.25%;
        --container-max-width: 1000rem;
        --fz-text: 14rem;
    }
}
@media screen and (min-width: 1000px){
    :root {
        font-size: 6.25%;
        --container-max-width: 1400rem;
        --fz-text: 14rem;
    }
}

ul{
    list-style: none;
}

button, input { 
    outline: none;
    resize: none; 
    background: transparent;
    border: 0;
  } 