/* 专题页面内容 */
        .special-banner {
            margin-top: 60px;
            position: relative;
            height: 400px;
        }

        .special-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .special-banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
        }

        .special-banner-title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .special-banner-subtitle {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        .special-banner-tags {
            display: flex;
            gap: 15px;
        }

        .special-banner-tag {
            padding: 6px 15px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 20px;
            font-size: 12px;
        }

        .special-content {
            max-width: 900px;
            margin: 60px auto;
            padding: 0 30px;
        }

        .special-article {
            margin-bottom: 60px;
        }

        .special-article-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333;
        }

        .special-article-content {
            font-size: 14px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
            text-align: justify;
        }

        .special-article-image {
            margin: 30px 0;
        }

        .special-article-image img {
            width: 100%;
            height: auto;
        }

        .special-article-image.right {
            float: right;
            width: 50%;
            margin-left: 30px;
            margin-right: 0;
        }

        .special-article-image.left {
            float: left;
            width: 50%;
            margin-right: 30px;
            margin-left: 0;
        }

        .special-highlight {
            background: #f8f8f8;
            padding: 20px 25px;
            margin: 30px 0;
            border-left: 3px solid #5D4E37;
        }

        .special-highlight p {
            font-size: 14px;
            color: #666;
            line-height: 1.8;
        }

        .special-section {
            margin-top: 60px;
        }

        .special-section-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }

        .special-section {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }

        .special-section-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .special-related {
            margin-top: 0;
            padding-top: 0;
            border-top: none;
        }

        .special-related-item {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #333;
            padding: 25px 0;
        }

        .special-related-image {
            width: 50%;
            height: auto;
            aspect-ratio: 1 / 1;
            flex-shrink: 0;
        }

        .special-related-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .special-related-divider {
            width: 1px;
            height: 100%;
            min-height: 200px;
            background-color: #eee;
            margin: 0 30px;
            flex-shrink: 0;
        }

        .special-related-info {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
        }

        .special-related-info-top {
            margin-bottom: 20px;
        }

        .special-related-info-bottom {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .special-related-lot {
            font-size: 14px;
            color: #999;
            margin-bottom: 6px;
        }

        .special-related-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
        }

        .special-related-date {
            font-size: 14px;
            color: #666;
        }

        .special-related-venue {
            font-size: 14px;
            color: #666;
        }

        /* 平板适配 */
        @media (max-width: 1024px) and (min-width: 769px) {
            .special-related-image {
                width: 40%;
            }

            .special-related-divider {
                margin: 0 20px;
            }
        }

        @media (max-width: 1024px) {
            .special-banner { margin-top: 80px; }
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .header {
                padding: 0 20px;
            }

            .nav {
                display: none;
            }

            .header-right {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .dropdown-menu {
                padding: 20px;
            }

            .dropdown-left {
                flex-direction: column;
                gap: 30px;
            }

            .special-banner {
                margin-top: 64px;
                height: 240px;
            }

            .special-banner-title {
                font-size: 22px;
            }

            .special-banner-subtitle { font-size: 12px; }
            .special-banner-tags { flex-wrap: wrap; gap: 8px; }

            .special-content {
                padding: 0 16px;
                margin: 32px auto;
            }

            .special-article-title { font-size: 18px; }

            .special-article-image.right,
            .special-article-image.left {
                float: none;
                width: 100%;
                margin: 16px 0;
            }
            .special-article-image img {
                /* 长文中插图保留 height: auto，原样完整显示，只兜底宽度 */
                width: 100%;
                height: auto;
            }

            /* 修复：原 .special-related 改方向，但实际变化的是 .special-related-item */
            .special-related-item {
                flex-direction: column;
                align-items: stretch;
                padding: 16px 0;
            }

            .special-related-image {
                width: 100%;
                aspect-ratio: 16 / 10;
            }
            .special-related-image img {
                object-fit: contain;     /* 完整显示 */
                background: #f5f5f5;
            }

            .special-related-divider {
                width: 100%;
                height: 1px;
                min-height: 1px;
                margin: 16px 0;
            }
        }

        @media (max-width: 480px) {
            .special-banner { margin-top: 56px; height: 200px; }
            .special-banner-title { font-size: 18px; }
            .special-content { padding: 0 12px; margin: 24px auto; }
        }