@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        width: 100%;
    }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    body {
        overflow: hidden;
    }

    .body-main {
        height: 100vh;
        transition: transform .36s cubic-bezier(.215, .61, .355, 1) 0s;
    }

    .body-main.menuStatus {
        overflow: hidden;
        border-radius: 4vw;
        height: 100vh;
        width: 100vw;
        box-shadow: 0 0 15vw 0 rgba(91, 91, 91, 0.25);
        -webkit-transform: translate3d(50vw, 0, 0) scale(.75);
        transform: translate3d(50vw, 0, 0) scale(.75);
    }

    .body-main.menuStatus::before {
        content: "";
        height: 100vh;
        width: 100vw;
        position: absolute;
        z-index: 1000;
    }

    .mobile-none {
        display: none !important;
    }

    .mobile {
        display: inline-block;
    }

    .container {
        width: 100%;
    }

    header {
        position: relative;
        display: flex;
        justify-content: space-between;
        padding: 0 0.8rem;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        border-bottom: 0.1rem solid rgba(0, 0, 0, .04);
    }

    header nav {
        height: 4.8rem;
    }

    header nav .logo {
        height: 2.4rem;
        position: absolute;
        left: 30%;
        right: 30%;
        text-align: center;
    }

    header .menu {
        position: fixed;
        padding: 11vh 0 0 8vw;
        font-size: 1.3rem;
        visibility: visible;
        display: none;
        line-height: 4.8rem;
        transition: all .36s cubic-bezier(.215, .61, .355, 1) 0s;
    }

    .popup-search {
        z-index: 10101;
    }

    .popup-search .search-container {
        height: 100%;
        align-items: start;
    }

    .popup-search.is-visible .search-container {
        transform: translateY(0);
    }

    .search-container .search-close {
        position: absolute;
        right: 1rem;
        top: 1rem;
        width: 3.1rem;
        height: 3.1rem;
    }

    .search-container .search-close:before, .search-container .search-close:after {
        top: 1.5rem;
        width: 1.5rem;
    }

    .search-container .search-close:before {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        left: 0.8rem;
    }

    .search-container .search-close:after {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        right: 0.8rem;
    }

    .search-container .search-body {
        padding: 6.4rem 1.5rem 3.2rem;
    }


    main {
        height: calc(100% - 11rem);
        width: 100%;
        position: absolute !important;
        overflow-y: auto;
        overflow-x: hidden;
        left: 0;
        right: 0;
        z-index: 8888;
        background-color: #ffffff;
    }


    footer {
        position: fixed;
        background-color: var(--white);
        bottom: 0;
        padding-bottom: 0.5rem;
        width: 100%;
        z-index: 10000;
        border-top: 0.1rem solid rgba(0, 0, 0, .04);
    }

    footer .tab-bar {
        display: block;
    }

    footer .tab-bar ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        height: 5.5rem;
    }

    footer .tab-bar ul li {
        width: 20%;
    }

    footer .tab-bar ul li i {
        font-size: 2.2rem;
    }

    footer .tab-bar ul li p {
        font-size: 1rem;
    }

    footer .tab-bar ul li a {
        display: block;
        line-height: 1.4;
    }

    .menu-footer {
        position: fixed;
        padding: 5vh 0 0 10vw;
        font-size: 1.3rem;
        visibility: visible;
        display: none;
        top: 0;
        line-height: 4.8rem;
        transition: all .36s cubic-bezier(.215, .61, .355, 1) 0s;
    }

    .menuStatus.menu-footer {
        display: block;
    }

    .menu-footer, .menu-footer ul {
        align-items: center;
    }

    .menu-footer li {
        font-size: 1.4rem;
        padding: 0;
        -webkit-animation-name: fadeInUp;
        animation-name: fadeInUp;
    }

    /**
    注册登录
     */

    .oauth {
        box-sizing: border-box;
        box-shadow: none;
        height: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .oauth .oauth-main {
        padding: 2rem;
        min-height: auto;
    }

    .oauth .oauth-main .title {
        display: none;
    }

    .oauth .form-main {
        margin-top: 2.5rem;

    }

    .oauth .copyright-text {
        position: relative;
    }

    .oauth .form-main .default-input,
    .oauth .form-main .default-button {
        min-height: 5rem;
    }

    /**
    按钮
     */
    .btn-rounded.btn-sm {
        padding-left: 1.6rem;
        padding-right: 1.6rem;
    }

    .btn-sm {
        font-size: 1.2rem;
        padding: .4rem .6rem;
    }
}