/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url(../images/bg_m.jpg) no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 主要内容区域 */
.news-detail {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    position: relative;
    background: url(../images/border.png) no-repeat;
    background-size: 100% 100%;
    padding: 20px;
}

.news-content {
    padding: 40px 60px;
}

/* 标题样式 */
.news-content h1 {
    font-size: 36px;
    color: #45597C;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
}

.news-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 1px;
    background: #999;
}

/* 时间样式 */
.news-content time {
    display: block;
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 30px;
}

/* 内容区域 */
.detail-content {
    color: #666;
    font-size: 15px;
    line-height: 2;
}

.detail-content p {
    margin-bottom: 25px;
    text-indent: 2em;
}

/* 信息区块 */
.info-section {
    margin: 35px 0;
    padding: 30px;
    border-radius: 4px;
}

.info-section h2 {
    font-size: 18px;
    color: #333;
    text-align: center;
    margin-bottom: 25px;
    font-weight: normal;
}

.info-section h3 {
    font-size: 15px;
    color: #333;
    margin: 20px 0 15px;
    font-weight: normal;
}

.info-list p {
    margin: 15px 0;
    text-indent: 0;
    color: #666;
    font-size: 15px;
}

.fix-content ol {
    padding-left: 25px;
    margin: 20px 0;
}

.fix-content li {
    margin-bottom: 15px;
    color: #666;
    position: relative;
    font-size: 15px;
    line-height: 1.8;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .news-detail {
        margin: 20px auto;
    }
    
    .news-content {
        padding: 30px 20px;
    }
    
    .info-section {
        padding: 20px;
        margin: 25px 0;
    }
    
    .news-content h1 {
        font-size: 22px;
    }
    
    .detail-content {
        font-size: 14px;
    }
    
    .info-list p,
    .fix-content li {
        font-size: 14px;
    }
} 