@media (max-width: 1000px) {
    .wp {
        width: 100%;
        padding: 0 15px;
    }


}

@media (max-width: 991px) {


}

@media (max-width: 991px) and (min-width: 768px) {
}

@media screen and (max-width: 768px) {
    header .menu a.logo {
        display: flex;
        padding: 0;
        width: 40%;
    }

    header .menu {
        position: fixed;
        height: 100vh;
        width: 76%;
        left: 0;
        top: 0;
        flex-direction: column;
        background: var(--lightLine);
        gap: 0px;
        padding: 15px;
        transform: translateX(-100%);
        transition: all .3s;
        z-index: 2;
        gap: 15px;
        box-shadow: inset 0px 0 12px  rgba(0,170,255,.6);
    }

    header .menu.exp {
        transform: translateX(0);
    }

    header .menu.exp + .mark {
        width: 100%;
        animation: fade .3s both;
    }

    @keyframes fade {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }

    }



    header .mb, header .mark {
        display: flex;
    }

    #index .text {
        width: 100%;
    }

    #index .img {
        width: 60%;
    }

    #index .text {
        align-items: center;
        text-align: center;
    }

    #index .wp {
        padding: 30px;
        justify-content: center;
    }

    #index .text .tj {
        padding-bottom: 15px;
        padding-top: 0px;
    }

    #index .text .btns {
        padding-top: 15px;
    }

    #choose .compare, #choose .three .fk {
        flex-direction: column;
    }

    #choose .compare {
        padding-top: 30px;
        padding-bottom: 15px;
        gap: 15px
    }

    #function .four {
        gap: 15px
    }

    #function .four .fk {
        width: calc(50% - 7.5px);
        gap: 15px
    }

    .videoplay .kuang {
        width: 80%;
    }

    .videoplay .kuang .video {
        padding-bottom: 177.777777777778%;
    }

    .videoplay .closewin {
        right: 0%;
        width: 30px;
        height: 30px;
        top: 0;
        transform: translate(100%, -50%) rotate(45deg);
    }



}



