
/* 通知公告区域 - 滚动形式 */
.tzgg {
    margin-top: 10px;;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.tzgg .bt {
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #eee;
    padding: 0 20px;
    position: relative;
}

.tzgg .bt h3 {
    font-size: 20px;
    color: #d9001b;
    font-weight: bold;
    position: relative;
    padding-left: 15px;
    display: inline-block;
}

.tzgg .bt h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background-color: #d9001b;
}

.tzgg .bt a.more {
    float: right;
    color: #999;
    font-size: 14px;
}

.tzgg .nr {
    padding: 0;
}

.notice-scroll {
    display: flex;
    align-items: center;
    height: 100px; /* 增加高度以容纳两条通知 */
    overflow: hidden;
    position: relative;
}

.notice-icon {
    width: 120px;
    text-align: center;
    flex-shrink: 0;
    align-self: flex-start; /* 图标靠上对齐 */
    padding-top: 10px; /* 图标顶部间距 */
}

.notice-content {
    flex: 1;
    height: 100px; /* 增加高度以容纳两条通知 */
    overflow: hidden;
    position: relative;
}

.notice-list {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.notice-list li {
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-right: 20px;
    border-bottom: 1px solid #eee; /* 添加底部边框 */
    padding-left: 10px; /* 增加左侧内边距，使内容不贴边 */
}

.notice-list li:last-child {
    border-bottom: none; /* 最后一项不需要底部边框 */
}

.notice-list li a {
    color: #333;
    max-width: 80%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px; /* 增大字体大小 */
}

.notice-list li span {
    float: right;
    color: #999;
    font-size: 16px; /* 增大日期字体大小 */
}

.notice-list li a:hover {
    color: #d9001b;
}


/* 添加到现有的 CSS 文件中 */
/* 美化更多链接样式 */
.notice-more {
    margin-left: 15px;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.notice-more a {
    color: #d9001b;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    padding: 5px 5px;
    border-radius: 5px;
    background-color: rgba(217, 0, 27, 0.05);
    border: 1px solid rgba(217, 0, 27, 0.2);
    display: flex;
    align-items: center;
}

.notice-more a:hover {
    color: #fff;
    background-color: #d9001b;
    box-shadow: 0 2px 8px rgba(217, 0, 27, 0.3);
    transform: translateY(-2px);
}

.notice-more a:after {
    /* content: ">>"; */
    margin-left: 3px;
    font-family: "宋体";
    font-weight: bold;
}
