/* 专题详情页样式 */
.special-banner {
    position: relative;
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    overflow: hidden;
}
.special-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(/static/images/special-bg.jpg) center/cover no-repeat;
    opacity: 0.25;
}
.special-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #fff, transparent);
}
.special-banner .banner-container {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}
.special-banner .banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    letter-spacing: 2px;
}
.special-banner .banner-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 10px rgba(0,0,0,0.15);
}

.special-content {
    padding: 30px 0;
}

.special-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background: #fff;
    border-radius: 12px 12px 0 0;
}
.special-header h2.s-title {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.order {
    padding: 6px 16px;
    background: #f8f9fa;
    border-radius: 20px;
    color: #666;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}
.order:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}
.order.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

.special-article-list {
    padding: 0;
    background: #fff;
    border-radius: 0 0 12px 12px;
}
.special-article-list .article-item {
    padding: 20px;
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.special-article-list .article-item:last-child {
    border-bottom: none;
}
.special-article-list .article-item:hover {
    background: #fafafa;
}
.special-article-list .article-title {
    margin: 0 0 10px 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
}
.special-article-list .article-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}
.special-article-list .article-title a:hover {
    color: #667eea;
}
.special-article-list .article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #999;
}
.special-article-list .article-meta .author a {
    color: #667eea;
    text-decoration: none;
}
.special-article-list .badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    margin-right: 8px;
    color: #fff;
}
.special-article-list .badge-top {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}
.special-article-list .badge-recommend {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* 响应式 */
@media (max-width: 768px) {
    .special-banner {
        padding: 40px 0 60px;
    }
    .special-banner .banner-title {
        font-size: 1.8rem;
    }
    .special-banner .banner-desc {
        font-size: 1rem;
    }
    .special-header {
        flex-direction: column;
        gap: 15px;
    }
}
