header {
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    height: 50px;
    line-height: 50px
}

header h1 {
    font-size: 20px;
    color: #333
}

header #shareBtn span {
    font-size: 22px
}

#banner, #banners {
    margin: 15px 0 0;
    position: relative;
    padding: 0 7.5px;
    overflow: hidden
}

#banner .swiper-slide, #banners .swiper-slide {
    width: 70%;
    padding: 0 7.5px
}

#banner .swiper-slide img, #banners .swiper-slide img {
    width: 100%;
    border-radius: 10px
}

#banner .swiper-pagination-bullet-active, #banners .swiper-pagination-bullet-active {
    background-color: #fff !important
}

#pop {
    width: calc(100% - 30px);
    margin: 5px auto 15px;
    overflow-x: hidden
}

#pop-large {
    width: calc(100% - 30px);
    margin: 5px auto 15px;
    overflow-x: hidden
}

#pop .sortTitle {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px
}

#pop .sortTitle h3 {
    font-size: 16px;
    color: #333
}

#pop .sortTitle a {
    font-size: 12px;
    color: #999
}

#pop .pop .swiper-slide {
    width: 130px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .02)
}

#pop .pop .swiper-slide a {
    text-align: center
}

#pop .pop .swiper-slide a.play {
    display: block;
    margin: 10px auto 15px;
    color: #fff;
    font-size: 14px;
    background-color: #19cea9;
    width: 60px;
    height: 26px;
    line-height: 26px;
    border-radius: 14px
}

#pop .pop .swiper-slide a .thum {
    width: 70px !important;
    height: 70px !important;
    margin: -20px auto 10px;
    border-radius: 10px;
    overflow: hidden
}

#pop .pop .swiper-slide a .thum img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#pop .pop .swiper-slide a h3 {
    font-size: 14px;
    color: #666;
    overflow: hidden;
    padding: 0 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 400
}

#pop .pop .swiper-slide a .desc {
    font-size: 12px;
    color: #999
}

#pop .pop .swiper-slide a .desc span {
    color: #f99d01
}

.recommend {
    width: calc(100% - 30px);
    padding: 15px 0;
    margin: 0 auto
}

.recommend .sortTitle {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px
}

.recommend .sortTitle h3 {
    font-size: 16px;
    color: #333
}

.recommend .sortTitle a {
    font-size: 12px;
    color: #999
}

.recommend .recommendCon {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.recommend .recommendCon a {
    width: calc(25% - 8px);
    margin-bottom: 15px;
    text-align: center
}

.recommend .recommendCon a .thum {
    margin: 0 auto 10px;
    border-radius: 10px;
    overflow: hidden
}

.recommend .recommendCon a .thum img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.recommend .recommendCon a h3 {
    font-size: 14px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 400
}

.recommend .recommendCon a .desc {
    font-size: 12px;
    color: #999
}

.recommend .recommendCon a .desc span {
    color: #f99d01
}

#menuListMask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .2);
    z-index: 4686635;
    display: none
}

#menuListMask .menuList {
    background-color: #f9f9f9;
    padding: 30px 4px 30px 15px;
    animation: menudrop .3s linear forwards
}

#menuListMask .menuList .list {
    display: flex;
    flex-wrap: wrap
}

#menuListMask .menuList .list a {
    display: block;
    background-color: #fff;
    border-radius: 10px;
    width: calc(25% - 11px);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .02);
    text-align: center;
    margin-right: 11px;
    margin-bottom: 11px;
    padding: 10px 0
}

#menuListMask .menuList .list a img {
    width: 44px
}

#menuListMask .menuList .list a p {
    font-size: 12px;
    color: #666
}

#menuListMask .menuList .close {
    display: block;
    text-align: center;
    padding-top: 20px
}

#menuListMask .menuList .close span {
    font-size: 30px;
    color: #333;
    font-weight: 600
}

#menuListMask.hide .menuList {
    animation: menudrop 1s linear reverse forwards
}

@keyframes menudrop {
    0% {
        transform: translateY(-100%)
    }
    100% {
        transform: translateY(0)
    }
}

#notice {
    text-align: center;
    font-size: 12px;
    color: #999;
    padding: 25px 0
}