/* ==========================================================================
   VIP 新闻详情样式（newDetails.css）
   适用于：NewsDetails.html
   结构：左 9 列正文 + 右 3 列热门新闻
   ========================================================================== */

/* ==================== 容器 ==================== */
.newDetails_content {
    width: 100%;
    min-height: 1000px;
    background-color: var(--vip-bg);
    height: auto;
    padding: 24px 0;
}

.newDetails_block {
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    max-width: var(--vip-container);
}

.newDetails_link {
    height: 60px;
    font-size: 14px;
    padding: 20px 0;
}

/* ==================== 正文卡片 ==================== */
.content_info_block {
    background-color: #fff;
    box-shadow: var(--vip-shadow-sm);
    overflow: hidden;
}

/* ---- 新闻标题 ---- */
.content_info_title {
    padding: 30px;
    font-size: 24px;
    font-weight: 600;
    color: var(--vip-text);
    line-height: 1.4;
}

/* ---- 发布信息条 ---- */
.content_info_time {
    font-size: 13px;
    padding: 0 30px 20px 30px;
    border-bottom: 1px solid var(--vip-border-light);
    color: var(--vip-text-muted);
}

/* ---- 正文 ---- */
.content_info_all {
    padding: 30px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--vip-text-secondary);
}

/* ---- 右侧热门新闻卡片 ---- */
.content_hot_title {
    font-size: 15px;
    font-weight: 500;
    padding: 18px 20px;
    border-bottom: 1px solid var(--vip-border-light);
    color: var(--vip-text);
    transition: var(--vip-transition);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.content_hot_title:hover {
    background-color: var(--vip-bg-alt);
    color: var(--vip-primary);
    cursor: pointer;
}

.content_hot_title:last-child {
    border-bottom: none;
}

.new_list {
    background-color: #fff;
    padding: 0 0 20px 0;
    box-shadow: var(--vip-shadow-sm);
    overflow: hidden;
}

.new_list_title {
    font-size: 14px;
    padding: 10px 20px;
    border-bottom: 1px dashed var(--vip-border-light);
    overflow: hidden;
    height: 30px;
}

/* ==================== 响应式（≤800px） ==================== */
@media (max-width: 800px) {
    .newDetails_block {
        margin: 0 0;
        padding: 0 10px;
        width: 100%;
    }

    .content_info_title {
        font-size: 20px;
        padding: 20px;
    }

    .content_info_time,
    .content_info_all {
        padding-left: 20px;
        padding-right: 20px;
    }

    .content_info_all {
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 14px;
    }
}
