﻿.drawer-footer {
    width: 94.4vw;
    margin: 4vw auto;
    height: 76.9vw;
    white-space: nowrap;
    overflow-x: scroll;
}

.hot-recommend {
    display: inline-block;
    width: 62vw;
    height: 100%;
    background: #fff;
    vertical-align: top;
    margin-right: 1.6vw;
    box-sizing: border-box;
    padding: 3.2vw;
}

.hot-recommend .hot-recommend-title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 8vw;
}
.hot-recommend .hot-recommend-title div:nth-child(1) {
    font-size: 3.6vw;
    font-weight: bold;
    color: #333333;
}
.hot-recommend .hot-recommend-title div:nth-child(2) {
    height: 4.8vw;
    color: #fff;
    text-align: center;
    position: relative;
}

.hot-recommend .hot-recommend-content {
    height: calc(100% - 8vw);
}

.hot-recommend .hot-recommend-content .hot-recommend-content-item {
    border-top: 1px solid #CCCCCC;
    box-sizing: border-box;
    padding: 3.3vw 0;
    height: 21.4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.hot-recommend .hot-recommend-content .hot-recommend-content-item div:nth-child(1) {
    width: 21.4vw;
    height: 14.8vw;
}

.hot-recommend .hot-recommend-content .hot-recommend-content-item div:nth-child(1) img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hot-recommend .hot-recommend-content .hot-recommend-content-item div:nth-child(2) {
    width: 31.9vw;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    font-size: 2.9vw;
    color: #333333;
    white-space: pre-wrap;
    overflow: hidden;
}

.advertisement {
    /*position: sticky;*/
    height: 55vw;
    width: 94.4vw;
    /*bottom: -36vw;*/
    margin: 0 auto 18vw auto;
    overflow-x: scroll;
    white-space: nowrap;
    /*animation: AdvsFrames .5s linear forwards;*/
}
.advertisement .van-swipe {
    width: 100%;
    height: 100%;
}
.advertisement .advertisement-link {
    display: inline-block;
    vertical-align: top;
    width: 45.6vw;
    height: 100%;
}
.advertisement .advertisement-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bg-filter {
    width: 100%;
    backdrop-filter: blur(33px);
    background-color: rgba(255, 255, 255, 0.6);
}
@media screen and (min-width:768px) {
    .related-Reading {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 200px;
        animation: retractAnimation 1s ease-in-out forwards;
        z-index: 999;
    }
    .related-Reading .related-content {
        width: 1185px;
        height: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }
    .related-content-title {
        color: #333;
        font-size: 16px;
        font-weight: bold;
        margin: 31px 0 20px 0;
        width: 100%;
        position: relative;
    }
    .related-content-close {
        position: absolute;
        width: 24px;
        height: 24px;
        border: 1px solid;
        right: 100px;
        top: 16px;
        border-radius: 50%;
        font-size: 17px;
        cursor: pointer;
        text-align: center;
    }
    .related-content-close :hover {
        color: #FF5B00;
        border: 1px solid #FF5B00;
    }
    .related-content-item {
        height: 80px;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
    .related-content-item .reading-content {
        width: 336px;
        height: 80px;
        display: flex;
        justify-content: space-between;
    }
    .related-content-item .reading-content img {
        width: 128px;
        height: 100%;
        box-sizing: border-box;
    }
    .related-content-item .reading-content img:hover {
        border: 1px solid #FF5B00;
    }
    .related-content-item .reading-content .content-text {
        height: 100%;
        width: 192px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .related-content-item .reading-content .content-text .content-title {
        text-overflow:ellipsis;
        display:-webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient:vertical;
        font-size: 16px;
        color: #333333;
        white-space: pre-wrap;
        overflow: hidden;
        height: 45px;
    }
    .related-content-item .reading-content .content-text .content-title:hover {
        color: #FF5B00;
    }
    .related-content-item .reading-content .content-text .content-icon {
        display: flex;
        align-items: center;
    }
    .related-content-item .reading-content .content-text .content-icon .icon-recommend {
        width: 56px;
        height: 24px;
        background: #FFF4EE;
        color: #FF5B00;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        margin-right: 24px;
        border-radius: 12px;
    }
    .related-content-item .reading-content .content-text .content-icon .icon-recommend div:nth-child(1) {
        background: url(../image/PC-fire.png) no-repeat;
        width: 12px;
        height: 12px;
        background-size: 100% 100%;
    }
    .related-content-item .reading-content .content-text .content-icon .icon-group {
        display: flex;
        align-items: center;
    }
    .related-content-item .reading-content .content-text .content-icon .icon-group .icon-text {
        color: #B2B2B2;
        font-size: 14px;
    }
    .related-content-item .reading-content .content-text .content-icon .icon-pv {
        width:24px;
        height:24px;
        vertical-align:top;
        background: url(../image/icon.png) no-repeat -185px -329px;
    }
    @keyframes retractAnimation {
        0% {
            bottom: -200px;
        }
        100% {
            border: 0;
        }
    }
}

@media screen and (max-width:768px) {
    .related-Reading {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        animation: retractAnimation .5s ease-in-out forwards;
        box-sizing: border-box;
        padding: 3.6vw 3.6vw 8.3vw 3.6vw;
    }
    .related-Reading .related-content {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }
    .related-content-title {
        color: #4A4F58;
        font-size: 4vw;
        font-weight: bold;
        margin: 3.6vw 0 0 1vw;
        width: 100%;
        position: relative;
    }
    .related-content-close {
        position: absolute;
        width: 6vw;
        height: 6vw;
        border: 1px solid #343131;
        right: 5.7vw;
        top: 3.2vw;
        border-radius: 50%;
        font-size: 17px;
        cursor: pointer;
        text-align: center;
        color: #343131;
        line-height: 6vw;
    }
    .related-content-close :hover {
        color: #FF5B00;
        border: 1px solid #FF5B00;
    }
    .related-content-item {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .related-content-item .reading-content {
        display: flex;
        justify-content: space-between;
        margin-top: 4.8vw;
    }
    .related-content-item .reading-content img {
        width: 25.8vw;
        height: 18.1vw;
        box-sizing: border-box;
    }
    .related-content-item .reading-content img:hover {
        border: 1px solid #FF5B00;
    }
    .related-content-item .reading-content .content-text {
        height: 100%;
        width: 61.9vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .related-content-item .reading-content .content-text .content-title {
        text-overflow:ellipsis;
        display:-webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient:vertical;
        font-size: 3.4vw;
        color: #333333;
        white-space: pre-wrap;
        overflow: hidden;
        height: 10.9vw;
    }
    .related-content-item .reading-content .content-text .content-title:hover {
        color: #FF5B00;
    }
    .related-content-item .reading-content .content-text .content-icon {
        display: flex;
        align-items: center;
    }
    .related-content-item .reading-content .content-text .content-icon .icon-recommend {
        width: 11.8vw;
        height: 4.8vw;
        background: #FFF4EE;
        color: #FF5B00;
        font-size: 2.4vw;
        display: flex;
        align-items: center;
        justify-content: space-around;
        margin-right: 4.8vw;
    }
    .related-content-item .reading-content .content-text .content-icon .icon-recommend div:nth-child(1) {
        background: url(../image/PC-fire.png) no-repeat;
        width: 2.4vw;
        height: 2.4vw;
        background-size: 100% 100%;
    }
    .related-content-item .reading-content .content-text .content-icon .icon-group {
        display: flex;
        align-items: center;
    }
    .related-content-item .reading-content .content-text .content-icon .icon-group .icon-text {
        color: #B2B2B2;
        font-size: 14px;
        vertical-align: bottom;
    }
    .related-content-item .reading-content .content-text .content-icon .icon-pv {
        width:24px;
        height:24px;
        vertical-align:top;
        background: url(../image/icon.png) no-repeat -185px -329px;
    }
    .bg-filter {
        background-color: rgba(255, 255, 255, 0.8) !important;
    }
    @keyframes retractAnimation {
        0% {
            bottom: -91vw;
        }
        100% {
            border: 0;
        }
    }
}
