.deqing_news_read {
    background: #F6F6F6;
    padding: var(--content-gap-lg) 0 calc(var(--content-gap-md) * 4);
}

.deqing_news_read_goBack {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: var(--text-gap-sm);
    color: var(--primary-color);
    font-size: var(--title-size-h5);
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
}

.deqing_news_read_content {
    background: #FFF;
    padding: calc(var(--text-gap) * 2) calc(var(--text-gap-sm) * 2);
    margin-top: calc(var(--content-gap-md) - 5px);
}

.deqing_news_read_content_title {
    color: #212121;
    word-break: break-word;
    font-size: var(--title-size-h3);
    font-weight: 500;
    line-height: normal;
}

.deqing_news_read_content_date,
.deqing_news_read_content_desc {
    color: #7E7E7E;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    margin-top: var(--text-gap);
}

.deqing_news_read_content_medias {
    display: flex;
    align-items: center;
    gap: var(--text-gap-lg);
    margin-top: var(--text-gap);
}
.deqing_news_read_content_content{
    word-break: break-word;
}
.deqing_news_read_content_content img {
    padding: calc(var(--text-gap-sm) * 2) 0;
}

.deqing_news_read_content_content p {
    min-height: calc(var(--text-gap-sm) * 2);
    font-size: var(--text-size);
    font-weight: 300;
    line-height: 2.14;
}

.deqing_news_read_related {
    padding: calc(var(--text-gap-lg) * 4) 0 0;
    position: relative;
}

.deqing_news_read_related_list {
    margin-top: var(--content-gap-lg);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.deqing_news_read_related_item img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.deqing_news_read_related_item_content {
    background: #EBEBEB;
    padding: calc(var(--text-gap-sm) * 2);
}

.deqing_news_read_related_item_title {
    color: #666;
    font-size: var(--title-size-h6);
    font-weight: 400;
    line-height: 1.4;
    word-break: break-word;
    height: calc(1.4 * var(--title-size-h6) * 4);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.deqing_news_read_related_item_link {
    color: #373737;
    font-size: var(--text-flag-size);
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
    padding: 4px var(--text-gap-sm);
    border: 1px solid #373737;
    margin-top: calc(var(--text-gap-sm) * 2);
}

.deqing_news_read_related_item_link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.deqing_news_read_related .dq-button-prev {
    transform: rotate(180deg);
}

.deqing_news_read .dq-navigation {
    position: absolute;
    top: calc(var(--text-gap-lg) * 4);
    right: 0;
    transform: translateY(16px);
    gap: 6px;
    display: none;
}

@media screen and (max-width: 992px) {
    .deqing_news_read .dq-navigation {
        display: flex;
    }
    .deqing_news_read .dq-button-prev,
    .deqing_news_read .dq-button-next {
        width: 36px !important;
        height: 36px !important;
        font-size: 16px;
    }

    .deqing_news_read .dq-navigation {
        transform: translateY(8px);
    }
}

@media screen and (max-width: 576px) {

    .deqing_news_read .dq-button-prev,
    .deqing_news_read .dq-button-next {
        width: 24px !important;
        height: 24px !important;
        font-size: 12px;
    }

    .deqing_news_read .dq-navigation {
        transform: translateY(5px);
    }
}