/* 文章详情页面样式 */
.content {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 30px;
    margin-top: 20px;
    min-width: 1200px;
    max-width: 1200px;
    margin: 0 auto;
}

.view-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #2E7D32;
    line-height: 1.4;
}

.view-content {
    min-height: 400px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* 视频播放器样式 */
.video-player {
    width: 100%;
    margin-bottom: 30px;
}
/* 上一篇下一篇导航 */
.content > div:last-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.content > div:last-child a {
    color: #2E7D32;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 15px;
    border: 1px solid #2E7D32;
    border-radius: 0;
    transition: all 0.2s ease;
    background: white;
}

.content > div:last-child a:hover {
    background: #2E7D32;
    color: white;
}

/* 扁平化标题区域 */
.flat-title-section {
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 2px solid #e0e0e0;
}

.flat-breadcrumb {
    font-size: 14px;
    color: #666;
}

.flat-breadcrumb a {
    color: #2E7D32;
    text-decoration: none;
}

.flat-breadcrumb a:hover {
    text-decoration: underline;
}

/* 固定宽度容器 */
.main-content {
    min-width: 1200px;
    overflow-x: auto;
}

.container {
    min-width: 1200px;
}