.closestyle1049060{ font-size:12px;color:#333333;text-decoration: none ;}

/****/
 .notice-container {
           
            margin: 0 auto;
           
           
            border-radius: 4px;
            overflow: hidden;}
        /* 标题栏 */
        .notice-header {
            padding: 20px;
            border-bottom: 2px solid #e8e8e8;
            display: flex;
            justify-content: space-between;
            align-items: center;}
        .notice-header h2 {
            color: #2e7d32;
            font-size: 28px;
            font-weight: 600;}
        .notice-header .more {
            color: #666;
            font-size: 14px;
            cursor: pointer;}
        /* 通知列表 - 三行三列布局 */
        .notice-list {
            display: flex;
            flex-wrap: wrap;
            padding: 20px 0;
            gap: 20px;}
        .notice-item {
            flex: 1 1 calc(33.333% - 14px);
            min-width: 280px;
            background-color: #f8f9fa;
            border-radius: 4px;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 8px;}
        .notice-item::before {
            content: "•";
            color: #2e7d32;
            font-size: 18px;
            font-weight: bold;}
        .notice-item a {
            flex: 1;
            color: #333;
            text-decoration: none;
            font-size: 16px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;}
        .notice-item a:hover {
            color: #2e7d32;}
        .notice-item .date {
            color: #999;
            font-size: 14px;
            white-space: nowrap;}
        /* 响应式适配 */
        @media (max-width: 992px) {
            .notice-item {
                flex: 1 1 calc(50% - 10px);}
        }
        @media (max-width: 576px) {
            .notice-item {
                flex: 1 1 100%;}
            .notice-header h2 {
                font-size: 22px;}
        }
