/* 小屏一个 */
.ad-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ad-wrap .img {
    width: 69.0rem;
    height: 7.98rem;
    display: flex;
    align-items: center;
    margin: 2.0rem 0 0 0;
}

.ad-wrap.play .img {
    overflow: hidden;
}

.ad-wrap.playm .img:nth-child(1) {
    margin-top: 0;
}

/* 推荐 */
.recommend-wrap {
}

.recommend-wrap .title {
    margin-top: 0.8rem;
    font-size: 3.6rem;
    font-weight: 500;
    color: #fff;
}

.recommend-wrap .apps {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    /* justify-content: space-between; */
    border-radius: 0.7rem; /* 7px -> 0.7rem */
    /* padding: 1.5rem 1.35rem; */ /* 15px -> 1.5em, 13.5px -> 1.35rem */
    padding: 1.5rem 0;
    border: solid 0.1rem #333; /* 1px -> 0.1rem */
}

.recommend-wrap .app {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%; /* No change, percentage does not need conversion */
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.recommend-wrap .app .icon {
    margin-bottom: 1.2rem;
    width: 8.0rem;
    height: 8.0rem;
    border-radius: 0.92rem;
    border: 0;
    overflow: hidden;
}

.recommend-wrap .app .name {
    font-size: 2.0rem;
}

.recommend-wrap .app:nth-child(6n + 6) {
    margin-top: 1rem; /* 10px -> 1rem */
}

.recommend-wrap .app:nth-child(6n + 7) {
    margin-top: 1rem; /* 10px -> 1rem */
}

.recommend-wrap .app:nth-child(6n + 8) {
    margin-top: 1rem; /* 10px -> 1rem */
}

.recommend-wrap .app:nth-child(6n + 9) {
    margin-top: 1rem; /* 10px -> 1rem */
}

.recommend-wrap .app:nth-child(6n + 10) {
    margin-top: 1rem; /* 10px -> 1rem */
}

.recommend-wrap .app .icon img {
    width: 100%;
    height: 100%;
}

.adaptation .recommend-wrap .app .name {
    font-size: 1.2rem; /* 12px -> 1.2rem */
    text-align: center;
    color: #ffffffcc;
}
.sp-update h3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}
.sp-update blockquote {
    background-color: rgba(255, 255, 255, 0.06);
    margin-top: 0;
    text-align: left;
    padding: 2rem 0 1rem 2rem;
    font-size: 1.4rem;
    color: #ccc;
}
.sp-update a:not(.no-icon) {
    color: #ffbc01;
    font-size: 14px;
}
.sp-update p {
    margin-bottom: 2rem;
    text-align: left;
    font-size: 14px;
}
.img {
    width: 100%;
}
.img img {
    width: 100%;
}


/* 播放器弹窗 start */
.pb-e-lg-30 {
    position: relative;
}

.pause-controls {
    position: absolute;
    top: 0;
    z-index: 10;
    display: none;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.pause-controls .mask {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 0 30px 0;
}

.pause-controls.pause-controls-show {
    display: block;
}

.pause-controls img {
    width: 100%;
    height: 100%;
}

.pause-controls .ad {
    width: 230px;
    height: 130px;
}

.pause-controls .continue {
    width: 80px;
    height: 30px;
    cursor: pointer;
}

/* 播放页推荐 */
.fine-wrap {
    margin-bottom: 1.4rem; /* 0.7rem * 2 */
}
.fine-wrap .title {
    margin-top: 3.2rem;
    margin-bottom: 3.2rem;
    font-size: 3.6rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
}
.fine-wrap .list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -2.6rem 0 0; /* -1.3rem * 2 */
}
.fine-wrap .list .fine {
    display: flex;
    align-items: center;
    width: calc(33.33% - 1.6rem); /* 11.3rem * 2 */
    height: 4.9rem; /* 2.45rem * 2 */
    margin: 0 0.8rem 1.6rem 0; /* 1.3rem * 2 */
    padding: 0.7rem 0.97rem 0.7rem 0.88rem; /* 0.35rem * 2, 0.485rem * 2, 0.44rem * 2 */
    border-radius: 0.63rem; /* 0.315rem * 2 */
    background-color: #2c2e2e;
}
.fine-wrap .list .fine .img {
    width: 3.53rem; /* 1.765rem * 2 */
    height: 3.5rem; /* 1.75rem * 2 */
    margin: 0 0.79rem 0 0; /* 0.395rem * 2 */
    border-radius: 50%;
}
.fine-wrap .list .fine .name {
    width: 100%; /* 6.65rem * 2 */
    /* font-size: 1.9rem; */
    font-size: 2.4rem; /* 0.95rem * 2 */
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    white-space: nowrap;
    color: #ffffff99;
}
.fine-wrap .list .fine .icon {
    margin-left: 0.9rem; /* 0.45rem * 2 */
    width: 2.2rem; /* 1.1rem * 2 */
    height: 2.2rem; /* 1.1rem * 2 */
}

@media (min-width: 750px) {
    /* 大屏2个 */
    .ad-wrap {
        display: flex;
        flex-wrap: wrap;
    }

    .ad-wrap .img {
        max-width: 49.8%;
        max-height: fit-content;
        width: 100%;
        height: 9.52rem;
        padding: 0 0 0.5rem 0;
    }

    /* .ad-wrap .img:first-child {
        margin: 0 1.15rem 0 0;
    } */

    /* 大屏1个 */
    .ad-wrap.play {
        margin: 3.0rem auto;
        display: flex;
        flex-wrap: wrap;
    }
    .ad-wrap.play .img {
        max-width: 100%;
        max-height: fit-content;
        width: 100%;
        height: 14rem;
    }
    .ad-wrap.play .img:first-child {
        /* margin: 0; */
    }
    /* 推荐 */
    .recommend-wrap {
    }
    .recommend-wrap .title {
        margin-top: 15px;
        font-size: 2.4rem;
        font-weight: 600;
        color: #fff;
    }
    .recommend-wrap .apps {
        display: grid;
        grid-template-columns: repeat(6, 16.667%);
        border: 0;
        /* margin: 0 -10.0rem 0 0; */
    }
    .recommend-wrap .app {
        /* margin-right: 20px; */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }
    .recommend-wrap .app .icon {
        margin-bottom: 1.2rem;
        width: 5.0rem;
        height: 5.0rem;
        border-radius: 0.92rem;
        border: 0;
    }
    .recommend-wrap .app .icon img {
        width: 100%;
        height: 100%;
    }
    .recommend-wrap .app .name {
        font-size: 1.4rem;
        text-align: center;
        color: #ffffffcc;
    }

    /* 播放器弹窗 start */
    .pause-controls {
        position: absolute;
        top: 0;
        z-index: 10;
        display: none;
        width: 100%;
        height: 100%;
        background-color: transparent;
    }

    .pause-controls .mask {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        padding: 0 0 50px 0;
    }

    .pause-controls .ad {
        width: 460px;
        height: 260px;
    }

    .pause-controls .continue {
        width: 128px;
        height: 48px;
    }
    /* 播放器弹窗 end */

    /* 播放页推荐 */
    .fine-wrap {
        margin-bottom: 1.3rem;
    }
    .fine-wrap .title {
        font-size: 2.4rem;
        font-weight: 600;
        color: #fff;
    }
    h3.sub-title, .h3-md {
        font-size: 2.4rem;
    }
    .fine-wrap .list {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -1.6rem 0 0;
    }
    .fine-wrap .list .fine {
        display: flex;
        align-items: center;
        width: calc(25% - 0.9rem);
        height: 4.19rem;
        margin: 0 0.8rem 1.2rem 0;
        padding: 0.7rem 0.8rem;
        border-radius: 0.36rem;
        background-color: #202020;
    }
    .fine-wrap .list .fine .img {
        width: 2.0rem;
        height: 2.0rem;
        margin: 0 0.65rem 0 0;
        border-radius: 50%;
    }
    .fine-wrap .list .fine .name {
        /* width: 7.8rem; */
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-all;
        white-space: nowrap;
        font-size: 1.4rem;
        font-weight: 500;
        color: #ffffff99;
    }
    .fine-wrap .list .fine .icon {
        margin-left: 1.45rem;
        width: 1.25rem;
        height: 1.25rem;
    }
}

@media (min-width: 976px) {
    .recommend-wrap .apps {
        display: grid;
        grid-template-columns: repeat(8, 12.5%);
        border: 0;
    }
}

@media (min-width: 1200px) {
    .fine-wrap .list .fine {
        width: calc(20% - 0.9rem);
    }
    .recommend-wrap .apps {
        display: grid;
        grid-template-columns: repeat(10, 10%);
        border: 0;
    }
}
/* @media (min-width: 1600px) {
    .recommend-wrap .app {
        margin-right: 40px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100px;
    }

    .fine-wrap .list {
        display: flex;
        flex-wrap: wrap;
    }
    .fine-wrap .list .fine {
        display: flex;
        align-items: center;
        width: 180px;
        height: 34px;
        margin-right: 15px;
        margin-bottom: 17px;
        padding: 7px 8px;
        border-radius: 3.6px;
        background-color: #202020;
    }
} */



