/* 列表层 div 样式 */
.displayinfo-outter {
    width: 100%;
    background-color: #f9f9f9;
    padding: 40px 0;
}

/* 整体容器样式 */
.displayinfo-inner {
    width: 1440px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 50px 80px;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

/* 标题区域样式 */
.news-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

/* 时间区域样式 */
.news-time {
    text-align: center;
    font-size: 14px;
    color: #999;
    padding-bottom: 30px;
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 40px;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

/* 内容区域样式 */
.news-content {
    font-size: 16px;
    line-height: 2;
    color: #444;
    text-align: justify;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.news-content p {
    margin-bottom: 20px;
    text-indent: 2em;
}

.news-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

/* 响应式适配 */
@media screen and (max-width: 1200px) {
    .displayinfo-inner {
        width: 95%;
        padding: 40px 50px;
    }
}

@media screen and (max-width: 768px) {
    .displayinfo-inner {
        padding: 30px 20px;
    }
    
    .news-title {
        font-size: 22px;
    }
    
    .news-content {
        font-size: 15px;
    }
}
