/* 文章详情页面样式 */
.hero-section {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-section {
    padding: 80px 0;
    background-color: #fff;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.article-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    color: #666;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta .label {
    color: #999;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.article-content p {
    margin-bottom: 20px;
    text-indent: 2em;
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
}

.article-content h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 30px 0 20px 0;
}

.article-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 25px 0 15px 0;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 40px;
}

.article-content li {
    margin-bottom: 10px;
}

/* 返回按钮 */
.back-button {
    display: inline-block;
    margin-top: 40px;
    padding: 10px 20px;
    background-color: #d6992e;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: #b88025;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .article-title {
        font-size: 24px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-content {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .article-section {
        padding: 40px 0;
    }
    
    .article-title {
        font-size: 20px;
    }
    
    .article-content {
        font-size: 14px;
    }
}
