@charset "utf-8";
.container-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    background-color: #f39484;
    border-bottom: solid .1rem #b3def2
}

.container-header img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.container-header .header {
    max-width: 136.6rem;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    margin: auto;
    overflow: hidden
}

.header-wrap {
    display: flex;
    align-items: center;
    height: 7rem;
    /*padding-right: 4rem;*/
    /*position: relative*/
    margin: 0 auto;
}

.header-wrap .menu-icon {
    display: none
}

.header-wrap .header-logo {
    height: 4rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0 auto;
}

.header-wrap .header-logo span {
    font-size: 2.4rem;
    color: #fff;
    font-weight: 700;
    padding-left: 1rem
}

.header-nav-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    overflow: hidden
}

.header-nav-box .ul {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    height: 6rem;
    overflow: hidden
}

.header-nav-box .ul a {
    display: flex;
    align-items: center;
    height: 6rem;
    margin: 0 .5rem;
    padding-left: 2rem;
    color: #fff;
    cursor: pointer;
    position: relative
}

.header-nav-box .ul a .img-item {
    width: 3rem;
    margin-right: 1rem
}

.header-nav-box .ul a .nav-text {
    text-transform: capitalize;
    font-size: 1.6rem
}

.header-nav-box .ul a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: .5rem;
    transform: translateY(-50%);
    width: .1rem;
    height: 1.6rem;
    background-color: #ddd
}

.header-nav-box .ul a:first-child:before {
    display: none
}

.m-nav-container {
    display: none
}

@media (max-width: 1300px) {
    .header-wrap .menu-icon {
        display: block;
        width: 3rem;
        height: 3rem;
        margin-right: 1rem;
        position: relative
    }

    .header-wrap .menu-icon:before {
        content: "";
        position: absolute;
        top: .75rem;
        left: 50%;
        transform: translateX(-50%);
        width: 2rem;
        height: .3rem;
        background-color: #fff;
        box-shadow: 0 .6rem 0 #fff, 0 1.2rem 0 #fff
    }

    .header-nav-box {
        display: none
    }

    .m-nav-mask {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 101;
        background-color: rgba(0, 0, 0, .5)
    }

    .m-nav-mask.m-show-nav {
        display: block;
        transition: display .3s ease-in
    }

    .m-nav-mask.m-hide-nav {
        display: none;
        transition: display .3s ease-out
    }

    .m-nav-box {
        display: flex;
        flex-direction: column;
        width: 13rem;
        height: 100vh;
        background-color: #fff;
        position: fixed;
        top: 0;
        z-index: 102
    }

    .m-nav-box.m-show-nav {
        box-shadow: 0 .06rem .07rem 0 rgba(0, 0, 0, .4);
        left: 0;
        transition: left .3s ease-in-out
    }

    .m-nav-box.m-hide-nav {
        left: -100%;
        transition: left .3s ease-in-out
    }

    .m-header {
        flex: 0 0 7rem;
        display: flex;
        align-items: center;
        padding: 0 2rem;
        color: #fff;
        background-color: #f39484;
        font-size: 2.4rem
    }

    .m-header .icon-close {
        font-size: 2.4rem;
        margin-right: 2rem
    }

    .m-header .m-title {
        flex: 1;
        text-align: center;
        font-weight: 700
    }

    .m-nav-list {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden
    }

    .m-nav-list .m-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: 0 .1rem 0 0 rgba(0, 0, 0, .08)
    }

    .m-nav-list .m-nav-img {
        width: 6rem;
        height: 6rem;
        display: flex;
        align-items: center
    }

    .m-nav-list .m-nav-text {
        font-size: 1.8rem;
        font-weight: 700;
        color: #000;
        padding-top: .4rem;
        text-transform: capitalize
    }

    .m-nav-list .m-nav-item:active {
        background-color: rgba(0, 0, 0, .06)
    }

    .m-nav-list .m-nav-item:last-child {
        box-shadow: none
    }
}
