﻿????????/* 详情页样式 - 湖大经贸学院红色主题 */

/* 顶部装饰图 */
.detail-top-banner {
    line-height: 0;
    margin-bottom: -4px;
}

.detail-top-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* 详情内容区 */
.detail-content {
    background: #fff;
    border-radius: 4px;
    padding: 40px 50px 50px;
    margin-bottom: 0 !important;
}

/* 文章标题 */
.detail-title {
    font-size: 26px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 18px;
}

/* 发布信息 */
.detail-meta {
    text-align: center;
    margin-bottom: 35px;
}

.detail-time {
    font-size: 14px;
    color: #999;
}

/* 正文内容 */
.detail-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.detail-body p {
    margin-bottom: 14px;
    text-indent: 2em;
    text-align: justify;
}

.detail-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
}

/* 分隔线 */
.detail-divider {
    height: 1px;
    background: #C13432;
    margin-bottom: 40px;
}

/* 上一篇下一篇导航 */
.detail-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nav-article {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
    color: #666666;
    text-decoration: none;
    /* transition: all 0.3s; */
}

.nav-article:hover {
    color: #C13432;
    text-decoration-line: underline;
}

.nav-icon {
    width: 13px;
    height: 13px;
    background: url('../hnu-images/home/icon-marker-gold.png') no-repeat center;
    background-size: contain;
    flex-shrink: 0;
    margin-top: 5px;
}

.nav-label {
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-title {
    line-height: 1.6;
}

/* ==================== 响应式适配 ==================== */
@media (max-width: 1200px) {
    .detail-content {
        padding: 35px 40px 45px;
    }

    .detail-title {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .detail-content {
        padding: 30px 30px 40px;
    }

    .detail-title {
        font-size: 22px;
    }

    .detail-body {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .notice-detail-page .detail-content{
        margin-bottom: 0 !important;
    }
    .detail-content {
        padding: 25px 20px 30px;
    }

    .detail-title {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .detail-meta {
        margin-bottom: 25px;
    }

    .detail-time {
        font-size: 13px;
    }

    .detail-body {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .detail-body p {
        margin-bottom: 14px;
    }

    .detail-divider {
        margin-bottom: 20px;
    }

    .detail-nav {
        gap: 12px;
    }

    .nav-article {
        font-size: 13px;
        gap: 6px;
    }

    .nav-title {
        line-height: 1.5;
    }
}