/* 只在移动端（屏幕宽度小于等于 768px）时生效 */
.header_title {
    display: none;
}

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /* 兼容部分老旧安卓机 */
}

.fixfooter {
    display: none;
}

@media (max-width: 768px) {

    .header_title {
        display: block;
        position: sticky;
        top: 0;
        background: #ffffff;
        z-index: 99;
    }

    .jk_header {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-top: 4vw;
        gap: 2.8vw;
        margin: 0 4.73vw;
        position: relative;
        padding-bottom: 2.67vw;
        position: relative;
        color: #000000;
    }

    .jk_header_icon_close {
        height: 5vw;
        width: 14.27vw;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .jk_header_icon_close span {
        display: block;
        min-width: 3.2vw;
        min-height: 3.2vw;
        width: 3.2vw;
        height: 3.2vw;
        border-left: 0.93vw solid #151a23;
        border-bottom: 0.93vw solid #151a23;
        border-radius: 0.27vw;
        transform: rotate(45deg);
    }

    .jk_header_title {
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 4vw;
    }

    .fixfooter {
        height: 13vw;
        /* 1.3rem * 10 */
        display: block;
        width: 100%;
    }

    .fixfooter a {
        text-decoration: none;
        color: #2C2724;
    }

    .fixfooter .footer-content {
        width: 100vw;
        /* 10rem * 10 */
        display: flex;
        justify-content: space-between;
        position: fixed;
        bottom: 0;
        left: calc(50% - 50vw);
        /* 5rem * 10 */
        background-color: var(--white-color);
        padding: 1.1vw 0;
        /* 0.11rem * 10 */
        background: #ffffff;
        z-index: 9;
    }

    .fixfooter .footer-content .footer-item {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 33%;
    }

    .fixfooter .footer-content .footer-item i {
        width: 6.4vw;
        /* 0.64rem * 10 */
        height: 6.4vw;
        /* 0.64rem * 10 */
        display: block;
        margin: 0 auto;
    }

    .fixfooter .footer-content .footer-item span {
        display: block;
        text-align: center;
        width: 100%;
        font-size: 3.2vw;
        /* 0.32rem * 10 */
    }

    .fixfooter .footer-content .footer-item.active span {
        color: var(--orange-color);
    }

    .fixfooter .footer-content .footer-item:nth-child(1) i {
        background: url(../../../indexstyle/images/icon-home.png) center center no-repeat;
        background-size: 100% 100%;
    }

    .fixfooter .footer-content .footer-item:nth-child(1).active i {
        background: url(../../../indexstyle/images/icon-home_hov.png) center center no-repeat;
        background-size: 100% 100%;
    }

    .fixfooter .footer-content .footer-item:nth-child(2) i {
        background: url(../../../indexstyle/images/icon-vtab.png) center center no-repeat;
        background-size: 100% 100%;
    }

    .fixfooter .footer-content .footer-item:nth-child(2).active i {
        background: url(../../../indexstyle/images/icon-vtab_hov.png) center center no-repeat;
        background-size: 100% 100%;
    }

    .fixfooter .footer-content .footer-item:nth-child(3) i {
        background: url(../../../indexstyle/images/icon-my.png) center center no-repeat;
        background-size: 100% 100%;
    }

    .fixfooter .footer-content .footer-item:nth-child(3).active i {
        background: url(../../../indexstyle/images/icon-my_hov.png) center center no-repeat;
        background-size: 100% 100%;
    }

}