﻿.headerMobile {
    display: none;
}

.navigationWrap {
    display: none;
}

@media only screen and (max-width: 900px) {
    html{
        font-size: 50px;
    }
    body {
        /* padding: 1.3rem 0  0 !important; */
    }

    .navPc {
        display: none !important;
    }

    .headerMobileWrap {
        display: block;
    }

    .headerMobile {
        height: 1.3rem;
        width: 100%;
        padding: 0 0.3rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0rem 0.04rem 0.1rem 0.02rem rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        background-color: #fff;

    }

    .headerLogoMobile {
        display: flex;
        align-items: center;
        flex: 1;
    }

    .headerLogoMobile-img {
        width: auto;
        height: 0.33rem;
        flex-shrink: 0;
    }

    .headerLogoMobile-p {
        margin-top: 0;
        font-size: 0.2rem;

        font-weight: 400;
        color: #333333;
        margin-left: 0.15rem;
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        word-wrap: break-word;
        word-break: break-all;
        white-space: normal !important;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }

    .headerNavMobile {
        flex-shrink: 0;
        margin-left: 0.2rem;
        display: flex;
        align-items: center;
    }
    .mobile-lang{
        width: .46rem;
        margin-right: .2rem;
    }

    .headerNavMobile1 {
        width: 0.66rem;
        height: auto;
        /* height: 0.42rem; */
    }

    .headerNavMobile2 {
        width: 0.66rem;
        display: none;
    }

    .navigationWrap {
        width: 100vw;
        height: calc(100vh - 1.3rem);
        overflow-y: auto;
        position: fixed;
        top: 1.3rem;
        right: 0;
        z-index: 9998;
        /* transition: right .365s; */
        display: none;
        overflow: hidden;
    }

    .navigationBg {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        transition: all .365s;
    }

    .navigationBox {
        width: 75vw;
        height: 100%;
        position: absolute;
        z-index: 2;
        right: -75vw;
        top: 0;
        background: #fff;
        box-shadow: 0rem 0rem 0rem rgba(0, 0, 0, 0.16);
        transition: right .365s;
    }

    .navigation {
        height: calc(100% - 1rem);
        overflow: auto;
    }

    .navigationList {}

    .navigationItem  {
        padding: 0 0.25rem 0 0.44rem;
        height: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #333333;
        border-bottom: 0.01rem solid #E5E5E5;
    }

    .navigationItem -active .navigationItemP {
        background: #fff;
        font-weight: bold;
    }

    .navigationItemP {
        font-size: 0.28rem;

        font-weight: 400;
    }

    .navigationItem -icon {
        width: 0.18rem;
        height: 0.32rem;
        transition: all .365s;
    }

    .navigationLevel {
        display: none;
        background: #F7F7F7;
    }

    .navigationLevel-item {
        height: 0.8rem;
        padding: 0 0.25rem 0 0.71rem;
        display: flex;
        align-items: center;
        font-size: 0.28rem;

        font-weight: 400;
        color: #333333;
        border-bottom: 0.01rem solid #E5E5E5;
    }

    .navigationLevel-active {
        font-weight: bold;
    }

}