@charset "UTF-8";

@media screen and (max-width: 1440px){
    header > div{
        width: 95%;
    }
}

@media screen and (max-width: 1200px){
    header{
        font-size: 16px;
    }
    header nav ul li{
        padding-right: 15px;
    }
    header nav ul li + li{
        padding-left: 15px;
    }
}

@media screen and (max-width: 870px){
    header{
        position: relative;
    }
    header .phone-btn{
        position: absolute;
        top: 40px;
        right: 30px;
    }
    header .phone-btn p{
        width: 40px;
        height: 5px;
        margin-bottom: 8px;
        background-color: #b71111;
    }
    header nav{
        display: none;
        position: absolute;
        top: 118px;
        left: 0;
        width: 100%;
        z-index: 999;
        background-color: white;
    }
    header nav ul li{
        float: none !important;
        border-bottom: 1px solid #dcdcdc;
        line-height: 35px;
        text-align: center;
    }
    header nav ul li{
        padding-right: 0px;
    }
    header nav ul li + li{
        padding-left: 0px;
    }
    header nav ul li > a:after{
        display: none;
    }
}

@media screen and (max-width: 425px){
    header{
        height: 80px;
    }
    header h1 {
        padding-top: 25px;
        width: 150px;
    }
    header .phone-btn{
        top: 25px;
        right: 20px;
    }
    header nav{
        top: 80px;
    }
}












