﻿/*.center {
    flex: 1;
    background: #ddd8c0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    min-height: 100%;
}*/

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .news-list li {
        padding: 12px 0;
        border-bottom: 1px dashed #eee;

        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        min-height: 100%;
    }

    .news-list li {
        padding: 12px 15px;
        margin-bottom: 8px;
        background: #ddd8c0;
        /* border-left: 4px solid #2f86eb;
            border-radius: 4px; */
        font-size: 15px;
        color: #333;
        transition: all 0.2s ease;
    }

        .news-list li:hover {
            background: #f0f7ff;
            padding-left: 20px;
        }

.news-top {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}
    .news-top .title::before {
        content: "●";
        color: #2f86eb;
        font-size: 12px;
        margin-right: 8px;
        flex-shrink: 0;
    }
    .news-top::before {
        /*content: "●";*/
        color: #2f86eb;
        font-size: 12px;
        margin-right: 8px;
        flex-shrink: 0;
    }

    .news-top a {
        flex: 1;
        color: #333;
        text-decoration: none;
        font-size: 15px;
        line-height: 1.5;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .news-top a:hover {
            color: #2f86eb;
        }

    .news-top .date {
        color: #666;
        font-size: 14px;
        margin-left: 10px;
        white-space: nowrap;
        flex-shrink: 0;
    }


.news-top_ex {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

    .news-top_ex::before {
        content: "●";
        color: #2f86eb;
        font-size: 12px;
        margin-right: 8px;
        flex-shrink: 0;
    }

    .news-top_ex a {
        flex: 1;
        color: #333;
        text-decoration: none;
        font-size: 15px;
        line-height: 1.5;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .news-top_ex a:hover {
            color: #2f86eb;
        }

    .news-top_ex .date {
        color: #666;
        font-size: 14px;
        margin-left: 10px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /*文章子页样式*/
.article-box {
    line-height: 1.8;
    color: #333;
}

.article-title {
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
}

.article-info {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-bottom: 5px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.article-content {
    font-size: 17px;
}

    .article-content p {
        margin-bottom: 25px;
        text-indent: 2em;
    }

    .article-content h2 {
        font-size: 20px;
        margin: 25px 0 15px;
        color: #2f86eb;
        border-left: 4px solid #2f86eb;
        padding-left: 10px;
    }

    .article-content h3 {
        font-size: 18px;
        margin: 20px 0 12px;
        color: #333;
    }

.text-right {
    text-align: right !important;
    text-indent: 0 !important;
}