/* 案例详情页面样式 - 修复版 */
:root {
    --primary-bg: #0a0f1a;
    --secondary-bg: #111827;
    --card-bg: #1a2332;
    --card-hover-bg: #2d3748;
    --border-color: #374151;
    --text-primary: #ffffff;
    --text-secondary: #c0c8e7;
    --text-muted: #8a94a6;
    --accent-color: #4d9eff;
    --accent-hover: #3d8eef;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --border-radius: 16px;
    --shadow-primary: 0 8px 32px rgba(77, 158, 255, 0.15);
    --shadow-secondary: 0 4px 20px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 案例详情页面容器 */
.honor-detail-section {
    background: var(--primary-bg);
    min-height: 100vh;
    padding: 100px 0 40px 0; /* 大幅增加顶部内边距，确保不被主导航遮住 */
    margin-top: 20px; /* 额外增加顶部外边距 */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    padding: 25px 30px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-secondary);
    font-size: 15px;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 100; /* 大幅提高层级 */
    margin-top: 20px; /* 额外增加顶部外边距 */
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-color);
    background: rgba(77, 158, 255, 0.1);
    transform: translateY(-2px);
}

.breadcrumb .current {
    color: var(--text-primary);
    font-weight: 600;
    background: rgba(77, 158, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--accent-color);
}

.breadcrumb i {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 5px;
}

/* 案例详情主体 */
.honor-detail-content {
    margin-bottom: 80px;
}

.honor-detail-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: stretch; /* 改为stretch，让两列高度一致 */
}

/* 案例主要内容 */
.honor-main {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-secondary);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.honor-article {
    padding: 40px;
}

.article-header {
    margin-bottom: 40px;
}

.article-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(77, 158, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(77, 158, 255, 0.2);
}

.meta-item i {
    color: var(--accent-color);
    font-size: 16px;
}

.article-image {
    margin: 30px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-secondary);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.article-image:hover img {
    transform: scale(1.02);
}

.article-summary {
    background: rgba(77, 158, 255, 0.05);
    border-left: 4px solid var(--accent-color);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
}

.article-summary p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.article-content {
    margin: 40px 0;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

.article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6 {
    color: var(--text-primary);
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: var(--shadow-secondary);
    display: block;
}

.article-content img:hover {
    transform: scale(1.02);
    transition: var(--transition);
}

.article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tags-label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}

.tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(77, 158, 255, 0.1);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid rgba(77, 158, 255, 0.3);
    transition: var(--transition);
}

.tag:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.no-tags {
    color: var(--text-muted);
    font-style: italic;
    font-size: 14px;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.share-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

/* 案例侧边栏 */
.honor-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-secondary);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.sidebar-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--card-bg), rgba(77, 158, 255, 0.1));
    border-bottom: 1px solid var(--border-color);
}

.info-list {
    padding: 30px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.info-value {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
}

.quick-nav {
    padding: 30px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition);
    margin-bottom: 10px;
    border: 1px solid transparent;
}

.nav-link:hover {
    background: rgba(77, 158, 255, 0.1);
    color: var(--accent-color);
    transform: translateX(5px);
    border-color: rgba(77, 158, 255, 0.3);
}

.nav-link i {
    font-size: 18px;
    color: var(--accent-color);
}

/* 相关案例 */
.related-honors {
    margin-top: 80px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.title-line {
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, var(--accent-color), #6bb6ff);
    border-radius: 2px;
}

.view-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid var(--accent-color);
    border-radius: 25px;
    transition: var(--transition);
}

.view-more:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.honor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.honor-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.honor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-primary);
    border-color: var(--accent-color);
}

.honor-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.honor-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.honor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.honor-card:hover .honor-image img {
    transform: scale(1.1);
}

.honor-content {
    padding: 25px;
}

.honor-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.honor-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.honor-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.honor-views {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 13px;
}

.honor-views i {
    color: var(--accent-color);
}

/* 加载状态 */
.loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
    font-size: 16px;
}

.no-data {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 16px;
    font-style: italic;
}

.error {
    text-align: center;
    padding: 60px 20px;
    color: var(--error-color);
    font-size: 16px;
}

/* 案例图片画廊 */
.honor-gallery {
    position: sticky;
    top: 40px;
    display: flex;
    flex-direction: column;
    height: 100%; /* 让画廊占满整个高度 */
}

.main-image {
    width: 100%;
    height: 600px; /* 增加图片高度，与右侧信息区域对齐 */
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--shadow-primary);
    background: var(--card-bg);
    position: relative;
    flex: 1; /* 让图片区域占据剩余空间 */
}

.main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #6bb6ff, var(--accent-color));
    animation: shimmer 3s ease-in-out infinite;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.main-image:hover img {
    transform: scale(1.05);
}

.thumbnail-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    background: var(--card-bg);
    position: relative;
}

.thumbnail.active {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(77, 158, 255, 0.3);
    transform: scale(1.05);
}

.thumbnail:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-primary);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

/* 案例信息 */
.honor-info {
    padding: 40px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-secondary);
    backdrop-filter: blur(10px);
    position: relative;
    height: fit-content; /* 让信息区域适应内容高度 */
    display: flex;
    flex-direction: column;
}

.honor-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #6bb6ff);
}

.honor-header {
    margin-bottom: 35px;
}

.honor-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.honor-meta {
    display: flex;
    gap: 25px;
    align-items: center;
    font-size: 15px;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.honor-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(77, 158, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(77, 158, 255, 0.2);
    transition: var(--transition);
}

.honor-meta span:hover {
    background: rgba(77, 158, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.honor-meta i {
    color: var(--accent-color);
    font-size: 16px;
}

.honor-summary {
    margin-bottom: 35px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(77, 158, 255, 0.1), rgba(77, 158, 255, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.honor-summary::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(77, 158, 255, 0.1), transparent);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.honor-summary p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.honor-attributes {
    margin-bottom: 35px;
}

.attribute-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.attribute-item:hover {
    background: rgba(77, 158, 255, 0.05);
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 8px;
}

.attribute-item:last-child {
    border-bottom: none;
}

.attribute-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 15px;
}

.attribute-value {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 15px;
}

.honor-actions {
    display: flex;
    gap: 20px;
}

.btn {
    flex: 1;
    padding: 18px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-primary);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(77, 158, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

/* 案例详细介绍 */
.honor-description {
    margin-bottom: 80px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 35px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-secondary);
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.title-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 2px;
}

.description-content {
    background: var(--card-bg);
    padding: 50px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-secondary);
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.description-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #6bb6ff);
}

.description-content h1,
.description-content h2,
.description-content h3,
.description-content h4,
.description-content h5,
.description-content h6 {
    color: var(--text-primary);
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-left: 20px;
}

.description-content h1::before,
.description-content h2::before,
.description-content h3::before,
.description-content h4::before,
.description-content h5::before,
.description-content h6::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 2px;
}

.description-content p {
    margin-bottom: 18px;
}

.description-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: var(--shadow-secondary);
}

/* 相关案例 */
.related-honors {
    margin-bottom: 60px;
}

.view-more {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(77, 158, 255, 0.1);
    border-radius: 25px;
    border: 1px solid var(--accent-color);
}

.view-more:hover {
    color: var(--text-primary);
    background: var(--accent-color);
    transform: translateX(5px);
    box-shadow: var(--shadow-primary);
}

.honors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.honor-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-secondary);
    position: relative;
}

.honor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #6bb6ff);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.honor-card:hover::before {
    transform: scaleX(1);
}

.honor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-primary);
    border-color: var(--accent-color);
}

.honor-card a {
    text-decoration: none;
    color: inherit;
}

.honor-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.honor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.honor-card:hover .honor-image img {
    transform: scale(1.1);
}

.honor-content {
    padding: 25px;
}

.honor-content .honor-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.honor-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.honor-date {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 12px;
    background: rgba(77, 158, 255, 0.1);
    border-radius: 15px;
    display: inline-block;
}

/* 加载状态 */
.loading {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-secondary);
    font-size: 16px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

/* 错误状态 */
.error {
    text-align: center;
    padding: 80px 20px;
    color: var(--error-color);
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.error-icon {
    font-size: 60px;
    margin-bottom: 25px;
    color: var(--error-color);
}

.error h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 24px;
}

.error p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 16px;
}

/* 无数据状态 */
.no-data {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-style: italic;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

/* 暂无内容样式 */
.no-content {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.no-content i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
    opacity: 0.6;
}

.no-content p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.6;
}

.no-content p:first-of-type {
    font-weight: 600;
    color: var(--text-secondary);
}

/* 暂无标签样式 */
.no-tags {
    color: var(--text-muted);
    font-style: italic;
    padding: 8px 16px;
    background: rgba(77, 158, 255, 0.05);
    border-radius: 20px;
    border: 1px dashed var(--border-color);
}

/* 动画效果 */
@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .honor-detail-section {
        padding: 50px 0 30px 0; /* 调整顶部内边距 */
    }
    
    .honor-detail-layout {
        gap: 50px;
    }
    
    .main-image {
        height: 550px; /* 调整图片高度 */
    }
    
    .honor-title {
        font-size: 32px;
    }
    
    .honor-info {
        padding: 35px;
    }
    
    .description-content {
        padding: 40px;
    }
    
    .honors-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .honor-detail-section {
        padding: 40px 0 20px 0; /* 移动端调整顶部内边距 */
    }
    
    .container {
        padding: 0 15px;
    }
    
    .breadcrumb {
        padding: 20px;
        margin-bottom: 30px;
        font-size: 14px;
        gap: 10px;
    }
    
    .honor-detail-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .honor-gallery {
        position: static;
        height: auto; /* 移动端取消固定高度 */
    }
    
    .main-image {
        height: 400px; /* 移动端调整图片高度 */
    }
    
    .honor-info {
        padding: 30px;
    }
    
    .honor-title {
        font-size: 28px;
    }
    
    .honor-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .honor-actions {
        flex-direction: column;
    }
    
    .description-content {
        padding: 30px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 25px;
    }
    
    .honors-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .honor-detail-section {
        padding: 30px 0 15px 0; /* 小屏幕进一步调整顶部内边距 */
    }
    
    .breadcrumb {
        font-size: 13px;
        gap: 8px;
        margin-bottom: 25px;
        padding: 15px;
    }
    
    .main-image {
        height: 350px;
    }
    
    .honor-info {
        padding: 25px;
    }
    
    .honor-title {
        font-size: 24px;
    }
    
    .honor-meta span {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .description-content {
        padding: 25px;
    }
    
    .section-header {
        padding: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .honors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
