.news-detail {
    padding-top: 30px;
}

.news-detail-inner {
    display: flex;
    justify-content: space-between;
}

.news-detail-left {
    background: #FFFFFF;
    border-radius: 14px 14px 14px 14px;
    padding: 20px;
    margin-bottom: 20px;
}

.news-detail-left .name {
    font-size: 26px;
    color: #333333;
    line-height: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.news-detail-left .info {
    display: flex;
    flex-wrap: wrap;
}

.news-detail-left .info div {
    margin-right: 21px;
    font-size: 16px;
    color: #666666;
}

.news-detail-left .info div i {
    color: #666666;
    font-size: 16px;
    margin-right: 7px;
}

.news-detail-left .detail-cont {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #EEEEEE;
    font-size: 16px;
    color: #666666;
    line-height: 25px;
}

.news-detail-left .detail-cont * {
    max-width: 100%;
    word-break: break-all;
}
.news-detail-left .detail-cont video{
    width: 100%;
    margin-bottom: 20px;
}
.news-detail-right .box-item {
    border-radius: 14px;
    margin-bottom: 20px;
    background: #fff;
}

.news-detail-right .box-item .name {
    font-size: 18px;
    color: #333333;
    line-height: 25px;
    font-weight: bold;
    padding: 20px;
    border-bottom: 1px solid #EDEDED;
}

.about-news-line {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #EDEDED;
    cursor: pointer;
}

.about-news .about-news-line:last-child {
    border-bottom: none;
}

.about-news-line .left {
    width: 79px;
    height: 100px;
    margin-right: 24px;
    flex-shrink: 0;
    object-fit: cover;
}

.about-news-line .right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100px;
    flex: 1;
}

.about-news-line .right .limit3 {
    font-size: 16px;
    color: #333333;
    font-weight: bold;
    line-height: 22px;
}

.about-news-line .right .info {
    font-size: 14px;
    color: #666666;
    line-height: 20px;
}

.about-news-line .right .info i {
    color: #666666;
    font-size: 18px;
    margin-right: 2px;
}

.rank-list-line {
    padding: 20px;
    border-bottom: 1px solid #EDEDED;
    cursor: pointer;
    display: block;
}

.rank-list .rank-list-line:last-child {
    border-bottom: none;
}

.rank-list-line .title {
    font-size: 16px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 12px;
}

.rank-list-line .time {
    font-size: 14px;
    color: #666666;
    line-height: 20px;
}

.media-box {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
}

.media-line:hover .qrcode-box {
    opacity: 1;
    z-index: 10;
}
.media-line .qrcode-box img {
    width: 120px;
    height: 120px;
    margin: 10px;
}
.media-line {
    display: flex;
    align-items: center;
    border-radius: 30px 30px 30px 30px;
    border: 1px solid #EEEEEE;
    padding: 10px 16px 10px 10px;
    width: fit-content;
    cursor: pointer;
    position: relative;
}

.media-line:hover {

}

.media-line img {
    width: 36px;
    height: 36px;
    margin-right: 10px;
}

.media-line div {
    font-size: 16px;
    color: #333333;
}

.news-container {
    margin: 20px 0;
}

.news-more-title {
    font-size: 24px;
    color: #333333;
    line-height: 34px;
    font-weight: bold;
}

.qrcode-box {
    position: absolute;
    right: calc(100%);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px 0 rgba(181, 181, 181, .4);
    border-radius: 6px;
    padding-bottom: 14px;
    min-width: 140px;
    opacity: 0;
    transition: opacity .2s;
    z-index: -1;
    background-color: #fff;
}
.mask{
    display: none;
}


.pdf-box{
    margin: 30px 0;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-width: 300px;
}
.pdf-box img{
    width: 100%;
    height: 100%;
}
.pdf-box div{
    background-color: rgba(0,0,0,.4);
    border-radius: 0 0 0 10px;
    font-size: 14px;
    color: #fff;
    padding: 5px 18px;
    position: absolute;
    right: 0;
    top: 0;
}




@media (max-width: 768px) {
    .masks{
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(18, 18, 18, 0.8);
        z-index: 900;
        align-items: center;
        justify-content: center;
        display: none;
    }
    .qrcode-box{
        right: initial;
        left: 100%;
    }
    .mask{
        display: none;}
    .mask.on{
        display: block;}
    .media-line:hover .qrcode-box {
        opacity: 1;
        z-index: 999;
    }
    .media-line .qrcode-box{
        position: fixed;
        z-index: -1;
        opacity: 0;
        right: initial;
        transform: initial;
        top: calc(50% - 90px);
        left: calc(50% - 70px);
    }
    .media-line .qrcode-box.on{
        opacity: 1;
        z-index: 999;
    }
}

