/* 校（院）要闻页面样式 */
main .container {
    width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

/* 通用样式 */
.page-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e60012;
}

.page-title h2 {
    font-size: 24px;
    color: #333;
    font-weight: bold;
}


/* 新闻列表通用样式 */
.news-list ul {
    list-style: none;
    padding: 0;
    margin: 0 20px;

}

.news-item a {
    height: 40px;
    line-height: 80px;
    display: flex;
    flex-direction: row;
}

.news-list .news-item {
    padding: 10px 0;
    border-bottom: 1px solid #E8EAF0;
}

.news-list .news-item.featured {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.news-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.news-title {
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-link:hover .news-title {
    color: #e60012;
}

.news-date {
    color: #B80E15;
    font-size: 14px;
    margin-left: 20px;
}

/* PC端新闻列表样式 */
@media screen and (min-width: 769px) {
    .mobile-news {
        display: none;
    }

    .desktop-news .news-item {
        padding: 15px 10px;
    }

    .desktop-news .news-title {
        position: relative;
        padding-left: 25px;
    }

    .desktop-news .news-title:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        margin-right: 10px;
        background-color: #CF0A0A;
        border-radius: 50%;
    }

}

/* 移动端新闻列表样式 */
@media screen and (max-width: 768px) {
    .desktop-news {
        display: none;
    }

    .mobile-news .news-item {
        padding: 12px 0;
    }

    .mobile-news .news-link {
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-news .news-title {
        position: relative;
        padding-left: 12px;
        margin-bottom: 5px;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .mobile-news .news-title:before {
        content: "•";
        position: absolute;
        left: 0;
        top: 0;
        color: #e60012;
        font-size: 16px;
    }

    .mobile-news .news-date {
        margin-left: 12px;
        font-size: 12px;
    }

    /* 加载更多样式 */
    .load-more {
        text-align: center;
        padding: 15px 0;
        color: #999;
        font-size: 14px;
    }

    .loading-spinner {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 2px solid rgba(230, 0, 18, 0.3);
        border-radius: 50%;
        border-top-color: #e60012;
        animation: spin 1s ease-in-out infinite;
        margin-left: 10px;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }
}




.section-header {
    background-color: white;
    line-height: 24px;
    padding: 15px;
}

.section-header h3::before {
    content: '';
    display: inline-block;
    float: left;
    width: 6px;
    border-radius: 3px;
    height: 24px;
    background-color: #af1015;
    margin-right: 10px;
}

.section-header h3 {
    color: #B80E15;
    font-size: 24px;
    position: relative;
    margin: 0;
}

.news_right .section-header h3::before {
    width: 4px;
    height: 16px;
}

.news_right .section-header h3 {
    font-size: 16px;
}

.news_right .section-header {
    line-height: 16px;
}

.news_out {
    width: 1090px;
    background-color: #fff;
}

.news_right {
    display: flex;
    flex-direction: column;
}

.news_right_top {
    width: 320px;
    background-color: #fff;

}

.news_out_content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}





.banner_xytd_out {
    width: 320px;
    height: 320px;
    border: 1px solid #EBE8E3;
}

.swiper {
    height: 320px;
}

.banner_xytd .swiper-slide img {
    height: 200px;
}

#banner_xytd .swiper-pagination {
    margin-bottom: 6px;
}

.banner_xytd .swiper-slide span:first-of-type {
    display: -webkit-box;
    /* 旧版 Flex 布局 */
    -webkit-box-orient: vertical;
    /* 垂直排列 */
    -webkit-line-clamp: 2;
    /* 限制行数 */
    overflow: hidden;
    /* 隐藏溢出内容 */
    text-overflow: ellipsis;
    /* 超出显示省略号 */
    font-size: 16px;
    color: #333333;
    margin-left: 14px;
    margin-right: 14px;
    text-align: left;
    margin-top: 14px;
}


#banner_xytd .swiper-pagination-bullet-active {
    background-color: #CF0A0A;
    opacity: 1;
    border-radius: 50%;
}

.banner_content .swiper-pagination-bullet {
    opacity: 1;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.banner_content .swiper-pagination-bullet-active {
    opacity: 1;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.swiper-pagination {
    margin-bottom: 0px;
}


.news_right_bottom {
    margin-top: 30px;
    background-color: white;
    width: 320px;
}

.news_right_bottom ul {
    padding: 16px;
}

.news_right_bottom ul li a span:first-of-type {
    display: block;
    font-size: 14px;
    color: #B80B0B;
    margin-top: -8px;
}

.news_right_bottom ul li a span:last-of-type {
    display: block;
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
}


.news_right_bottom ul li:first-of-type a span:last-of-type {
    display: block;
    font-size: 16px;
    color: #B80B0B;
    margin-bottom: 20px;
}

.news_right_bottom ul li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.news_right_bottom ul li>div span:first-of-type {
    width: 7px;
    height: 7px;
    border: 1px solid #E8EAF0;
    border-radius: 50%;
    display: inline-block;
}

.news_right_bottom ul li>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 10px;
}

.news_right_bottom ul li:first-of-type>div span:first-of-type {
    width: 7px;
    height: 7px;
    background-color: #B80E15;
    border-radius: 50%;
    display: inline-block;
}

.news_right_bottom ul li div span:last-of-type {
    width: 1px;
    display: inline-block;
    background-color: #CED0D5;
    flex: 1;
}