.view-more-container {
    position: relative;
}

.view-more-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-top: 4.7rem;
    box-sizing: border-box;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 0%,
            #fff 4.3rem);
}

.view-more-content {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-more-text {
    margin-right: 0.3rem;
    color: #888;
    font-size: .75rem;
}

.view-more-arrow {
    width: 0.4rem;
    transform: rotate(90deg);
}


.view-more-pop {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 800;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
}

.view-more-pop-content {
    width: 325px;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
}
.view-more-pop-content>img{
    width: 100%;
}

.carousel-container {
    height: 30px;
    overflow: hidden;
    position: relative;
    width: 240px;
    background: #f6f6f8;
    border-radius: 108px;
    margin: 0 auto;
}

.carousel-content {
    transition: transform 0.5s ease;
}

.action-container {
    margin: 20px auto;
    width: 270px;
    position: relative;
}

.recommend-badge {
    padding: 0 7px;
    height: 18px;
    border-radius: 9px 9px 9px 0;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    top: -12px;
    right: 13px;
    z-index: 2;
    background: linear-gradient(142.86deg, #49bbae 0%, #2aa394 100%), #f44333;
}

@keyframes myBreath {
    0% {
        transform: scale(.88);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(.88);
    }
}

.action-button {
    height: 46px;
    width: 270px;
    font-size: 17px;
    border-radius: 24px;
    background: #f35155;
    font-weight: bold;
    color: #fff;
    line-height: 46px;
    text-align: center;
    animation: myBreath 2s linear infinite;
}

.action-button span {
    font-size: 12px;
    font-weight: 400;
}

.carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    height: 30px;
    color: #979da8;
}

.carousel-item-icon {
    margin-right: 10px;
    width: 12px;
}

.action-read {
    font-size: 16px;
    color: #999;
    text-align: center;
    padding-bottom: 20px;
}