.mobile {
    width: 100%;
    float: left;
    height: 120px;
}

.mobile-inner {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    z-index: 9999;
}

/* .mobile-inner img{
	width: 100%;
	margin-bottom: 30px;
} */
.mobile-inner p {
    width: 38%;
    box-sizing: border-box;
}

.mobile-inner-header {
    background-color: rgba(0, 0, 0, 1);
    width: 100%;
    height: 120px;
    /* position: absolute; */
    position: fixed;
    top: 0px;
    left: 0px;
    padding: 35px 5%;
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 50px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 50px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
    cursor: pointer;
}

.mobile-inner-header-icon i::before {
    display: none;
    content: '';
    position: absolute;
    left: 50%;
    bottom: -35px;
    transform: translateX(-50%);
    border-width: 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent #fff100;
    position: absolute;
    z-index: 9999;
}

.mobile-inner-header-icon:hover i::before {
    display: block;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 45px) / 2);
    top: calc((100% - 4px) / 2);
    width: 45px;
    height: 4px;
    background-color: #fff100;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}





.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}



@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);

    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}



@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}



@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    background-color: rgba(0, 0, 0, 0.6);
    border-top: 1px #fff100 solid;
    width: 100% !important;
    position: absolute;
    top: 120px;
    left: 0px;
    display: none;
    /* height: 80vh; */
    /* height: 56vh; */
    height: 100vh;
    z-index: 999;
}

.mobile-inner-nav p a {
    width: 100%;
    display: block;
    box-sizing: border-box;
    text-align: center;
    line-height: 80px;
    text-decoration: none;
    color: #FFFFFF;
    line-height: 80px;
    font-family: cch;
    font-size: 36px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.mobile-inner-nav p a:hover {
    color: #000;
    background: #fff100;
}


.select_first_ul {
    width: 100%;
    /*background: #eaeaea;*/
    position: absolute;
    box-sizing: border-box;
    left: 0;
    top: 15px;
    z-index: 999;
}

.select_first_ul>li {
    padding: 0;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.focus>p a {
    color: #000;
    background: #fff100;
}

.select_second_ul {
    width: 62%;
    position: absolute;
    right: 0px;
    top: 0;
    display: none;
    box-sizing: border-box;
    /*z-index: 1;*/
}

.select_second_ul>li {
    padding-left: 10%;
    box-sizing: border-box;
}

.select_second_ul>li a {
    width: 100%;
    display: block;
    box-sizing: border-box;
    /* padding: 0 5%; */
    /*padding: 0 9%;*/
    padding-left: 27px;
    line-height: 70px;
    text-decoration: none;
    color: #FFFFFF;
    line-height: 80px;
    font-size: 24px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.select_second_ul>li a:first-child {
    font-family: cch;
    padding-left: 0;
    font-size: 28px;
}

.select_second_ul>li a:first-child i {
    margin-right: 10px;
    color: #fff100;
}

.select_second_ul>li a:hover {
    color: #fff100;
}

@media (max-width: 768px) {
    .mobile-inner-nav p a {
        font-size: 30px;
    }
}

@media (max-width: 414px) {
    .mobile {
        height: 80px;
    }

    .mobile-inner-header {
        height: 80px;
        padding: 25px 5%;
    }

    .logo_wap {
        height: 30px;
    }

    .mobile-inner-nav {
        top: 80px;
    }

    .mobile-inner-header-icon i::before {
        bottom: -25px;
    }

    .mobile-inner-header-icon {
        height: 30px;
        width: 40px;
    }

    .mobile-inner-header-icon span {
        left: calc((100% - 35px) / 2);
        top: calc((100% - 3px) / 2);
        width: 35px;
        height: 3px;
    }

    .mobile-inner-nav p a {
        font-size: 20px;
        line-height: 60px;
    }

    .select_second_ul>li a:first-child {
        font-size: 20px;
        line-height: 60px;
    }
    .select_second_ul>li a:nth-child(2) {
        margin-top: -10px;
    }
    .select_second_ul>li a {
        /* line-height: 60px; */
        line-height: 40px;
        font-size: 18px;
        padding-left: 22px;
    }
}