﻿.center {
    flex: 1;
    background: #e4edc7;
    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;
    }

    .news-list li {
        padding: 12px 10px;
        margin-bottom: 8px;
        background: #e4edc7;
        /* 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::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;
}

/*学习园地新加--田丰*/
.func-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0px 0px;
    font-size: 14px;
}

    .func-list li {
        flex: 1;
        white-space: nowrap;
        list-style-type: none;
    }


    .func-list a {
        display: inline-flex;
        align-items: center;
        color: #345734;
        text-decoration: none;
        transition: all 0.7s ease;
        padding: 10px 20px;
        border-radius: 8px;
        border: 1px solid rgb(221, 219, 219);
        font-size: 16px;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
        letter-spacing: 2px;
        background-color: #d4e1a9;
    }

        .func-list a:hover {
            color: #f8f8f8;
            background-color: #569056;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
            border-radius: 8px;
        }

/* 数据行高 */
.dxgvDataRow td {
    padding: 1px !important;
    line-height: 14px !important;
    color: #333 !important; /* 正常颜色 */
}
/* 表格里所有链接：默认颜色 */
.dxgvTable td a {
    color: #333 !important; /* 正常颜色 */
    text-decoration: none !important; /* 去掉下划线（可选） */
}
    /* 鼠标悬停链接颜色 */
    .dxgvTable td a:hover {
        color: #2f86eb !important; /* 鼠标放上去变色 */
        text-decoration: none !important; /* 去掉下划线（可选） */
    }