/* 校（院）要闻页面样式 */
main .container {
    width: 100%;
    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: 1rem 1rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
}

.news-item a {
    display: block;
    height: 6rem;
}
.news-item a img {
    width: 100%;
    height: 100%;
}


.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;
}


/* 移动端新闻列表样式 */
@media screen and (max-width: 768px) {

    .mobile-news .news-item{
    }

    .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);
        }
    }
    
    /* 上拉加载更多指示器样式 */
    .load-more-indicator {
        display: block;
        text-align: center;
        padding: 15px 0;
        margin: 10px auto;
        color: #666;
        font-size: 14px;
        background-color: #f5f5f5;
        border-radius: 4px;
        cursor: pointer;
        width: 90%;
    }
    
    .load-more-indicator .loading-spinner {
        display: inline-block;
        width: 16px;
        height: 16px;
        border: 2px solid rgba(230, 0, 18, 0.3);
        border-radius: 50%;
        border-top-color: #e60012;
        animation: spin 1s ease-in-out infinite;
        margin-right: 8px;
        vertical-align: middle;
    }
}




.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;
    display: flex;
    gap: 20px;
}
.news_right_bottom ul li a{
    width: 335px;
    height: 147px;
}
.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;
}

.location_out{
    display: none;
}

.section-header{
    display: none;
}

.news-list .news-item{
    border: none;
    width: 50%;
}

.news-list .news-item{
    padding: 0;
    width: calc(50% - 0.5rem);
}

body{
    background: #fff !important;
}

.mobile-footer{
    display: none !important;
}