.article-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    padding: 50px 300px;
}

.article-card {
    width: 800px;
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.article-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.article-title {
    margin: 0 0 20px;
    font-size: 1.8rem;
    color: var(--text-primary);
}

.article-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* margin-top: 20px; */
}

.article-tag {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .article-container {
        padding: 100px 20px 20px;
    }
    
    .article-list {
        padding: 20px;
    }
    
    .article-image {
        height: 250px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-text {
        font-size: 1rem;
    }
}

.article-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-detail {
    padding-bottom: 5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.article-detail-title {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.dark-theme .article-detail-title {
    color: #ffffff;
}

.article-meta {
    font-size: 1.2rem;
    color: #888;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.dark-theme .article-meta{
    color: #e6e6e6;
}

.article-detail-image{
    text-align: center;
}

.article-detail-image img {
    width: auto;
    height: 400px;
    margin-bottom: 1.5rem;
    border-radius: 10px;
}

.article-detail-content p {
    font-size: 1.35rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.dark-theme .article-detail-content p {
    color: #a0a0a0;
}

.article-section {
    position: relative;
    /* padding: 5rem 2rem;
    margin: 5rem 0; */
    display: flex;
    justify-content: center;
    z-index: 0;
}

.article-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    z-index: -1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark-theme .article-section::before {
    background: #1a1a1a;
}



