@media (max-width:768px) {
    .carousel-pc {
        display: none;
    }

    .carousel-item-caption {
        position: absolute;
        top: 12%;
        left: 0;
        width: 100%;
    }

    .caption-p1 {
        position: relative;
        font-weight: bold;
        font-size: 16px;
        color: #2D3D5E;
        text-align: center;
        line-height: 20px;
        z-index: 2;
    }

    .caption-p2 {
        margin-top: 15px;
        padding: 0 10px;
        font-size: 14px;
        color: #555F7B;
        text-align: center;
        line-height: 24px;
    }

    .caption-p2 br {
        display: none;
    }

    .caption-btns {
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }

    .caption-btns-btn1 {
        display: inline-block;
        padding: 0 20px;
        height: 31px;
        background: linear-gradient(90deg, #6E9AFF 0%, #1B5BEE 100%);
        border-radius: 24px;
        font-size: 14px;
        color: #FFFFFF;
        line-height: 31px;
        text-align: center;
        cursor: pointer;
        user-select: none;
    }

    .caption-btns-btn2 {
        margin-left: 25px;
        display: inline-block;
        padding: 0 20px;
        height: 31px;
        border: 1px solid #10203D;
        border-radius: 24px;
        font-size: 14px;
        color: #10203D;
        line-height: 31px;
        text-align: center;
        cursor: pointer;
        user-select: none;
    }

    .caption-btns-btn1:hover {
        background: #0a4eee;
        transform: translateY(-2px) scale(1.03);
        /* 增加轻微缩放 */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .caption-btns-btn1:active {
        background: #0a4eee;
        transform: translateY(0) scale(0.98);
        /* 按下时轻微缩小 */
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .caption-btns-btn2:hover {
        border-color: #10203D;
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .caption-btns-btn2:active {
        transform: translateY(0) scale(0.98);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .content {
        padding: 20px 15px;
        background: #FFFFFF;
    }

    .module {
        max-width: 540px;
    }

    .module1-main {
        margin-top: 20px;
    }

    .module1-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .module1-menu-tag:last-child {
        margin-right: 0;
    }

    .module1-menu-tag {
        margin-right: 20px;
        padding: 0 20px;
        height: 36px;
        background: #F6F6F6;
        font-size: 14px;
        color: #404355;
        line-height: 36px;
        cursor: pointer;
    }

    .module1-menu-tag:hover {
        background: #e6f0ff;
    }

    .module1-menu-tag.active {
        background: #F2F5FE;
        color: #2C6BFC;
    }

    .module1-content {
        padding: 20px 0;
    }

    .content-panel {
        display: none;
        animation: fadeIn 0.5s ease;
    }

    .content-panel.active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .news-item {
        display: flex;
        padding: 20px 0;
        border-bottom: 1px solid #EAEAEA;
        transition: all 0.3s ease;
    }

    .news-item:hover {
        /* background-color: #f9f9f9; */
        /* padding-left: 10px; */
    }

    .news-item:last-child {
        border-bottom: none;
    }

    .news-content {
        flex: 1;
    }

    .news-title {
        font-weight: bold;
        font-size: 18px;
        color: #10203D;
    }

    .news-desc {
        margin-top: 10px;
        font-size: 16px;
        color: #727A88;
        line-height: 25px;
    }

    .news-date {
        display: inline-block;
        margin-top: 5px;
        font-size: 14px;
        color: #A3A7B8;
    }
}

/* 除移动端的屏幕 */
@media (min-width:768px) {
    .carousel-moblie {
        display: none;
    }

    /* 卡片悬停效果 */
    .shadow {
        transform: translateY(0);
        /* box-shadow: none; */
        transition: all 0.3s ease;
    }

    .shadow:hover {
        transform: translateY(-10px);
        box-shadow: 0px 8px 22px 0px rgba(92, 99, 125, 0.25);
    }

    .carousel-item img {
        width: 100%;
        object-fit: cover;
    }

    .content {
        background: #FFFFFF;
    }

    .module1-menu {
        display: flex;
        align-items: center;
    }

    .module1-menu-tag {
        background: #F6F6F6;
        color: #404355;
        cursor: pointer;
    }

    .module1-menu-tag:hover {
        background: #e6f0ff;
    }

    .module1-menu-tag.active {
        background: #F2F5FE;
        color: #2C6BFC;
    }

    .content-panel {
        display: none;
        animation: fadeIn 0.5s ease;
    }

    .content-panel.active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .news-item {
        display: flex;
        border-bottom: 1px solid #EAEAEA;
        transition: all 0.3s ease;
    }

    .news-item:hover {
        /* background-color: #f9f9f9; */
    }

    .news-item:last-child {
        border-bottom: none;
    }

    .news-content {
        flex: 1;
    }

    .news-title {
        font-weight: bold;
        color: #10203D;
    }

    .news-desc {
        color: #727A88;
    }

    .news-date {
        display: inline-block;
        color: #A3A7B8;
    }
}

@media (min-width:768px) and (max-width:992px) {
    .carousel-item img {
        height: 320px;
    }

    .carousel-item-caption {
        position: absolute;
        top: 22%;
        left: 50%;
        transform: translateX(-50%);
        width: 768px;
    }

    .caption-p1 {
        position: relative;
        font-weight: bold;
        font-size: 20px;
        color: #2D3D5E;
        line-height: 20px;
        z-index: 2;
    }

    .caption-p2 {
        margin-top: 13px;
        font-size: 14px;
        color: #555F7B;
        line-height: 24px;
    }

    .caption-btns {
        margin-top: 66px;
    }

    .caption-btns-btn1 {
        display: inline-block;
        width: 128px;
        height: 31px;
        background: linear-gradient(90deg, #6E9AFF 0%, #1B5BEE 100%);
        border-radius: 24px;
        font-size: 12px;
        color: #FFFFFF;
        line-height: 31px;
        text-align: center;
        cursor: pointer;
        user-select: none;
    }

    .caption-btns-btn2 {
        margin-left: 35px;
        display: inline-block;
        width: 128px;
        height: 31px;
        border: 1px solid #10203D;
        border-radius: 24px;
        font-size: 12px;
        color: #10203D;
        line-height: 31px;
        text-align: center;
        cursor: pointer;
        user-select: none;
    }

    .caption-btns-btn1:hover {
        background: #0a4eee;
        transform: translateY(-2px) scale(1.03);
        /* 增加轻微缩放 */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .caption-btns-btn1:active {
        background: #0a4eee;
        transform: translateY(0) scale(0.98);
        /* 按下时轻微缩小 */
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .caption-btns-btn2:hover {
        border-color: #10203D;
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .caption-btns-btn2:active {
        transform: translateY(0) scale(0.98);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .module {
        max-width: 768px;
    }

    .module1 {
        padding: 46px 0 60px;
    }

    .module1-main {
        margin-top: 36px;
    }

    .module1-menu-tag {
        margin-right: 20px;
        padding: 0 20px;
        height: 36px;
        font-size: 16px;
        line-height: 36px;
    }

    .module1-content {
        padding: 20px 0;
    }

    .news-item {
        padding: 20px 0;
    }

    .news-item:hover {
        padding-left: 10px;
    }

    .news-title {
        font-size: 18px;
    }

    .news-desc {
        margin-top: 10px;
        font-size: 15px;
        line-height: 25px;
    }

    .news-date {
        margin-top: 5px;
        font-size: 13px;
    }
}

@media (min-width:992px) and (max-width:1200px) {
    .carousel-item img {
        height: 413px;
    }

    .carousel-item-caption {
        position: absolute;
        top: 22%;
        left: 50%;
        transform: translateX(-50%);
        width: 992px;
    }

    .caption-p1 {
        position: relative;
        font-weight: bold;
        font-size: 26px;
        color: #2D3D5E;
        line-height: 26px;
        z-index: 2;
    }

    .caption-p2 {
        margin-top: 17px;
        font-size: 18px;
        color: #555F7B;
        line-height: 26px;
    }

    .caption-btns {
        margin-top: 85px;
    }

    .caption-btns-btn1 {
        display: inline-block;
        width: 165px;
        height: 40px;
        background: linear-gradient(90deg, #6E9AFF 0%, #1B5BEE 100%);
        border-radius: 24px;
        font-size: 16px;
        color: #FFFFFF;
        line-height: 40px;
        text-align: center;
        cursor: pointer;
        user-select: none;
    }

    .caption-btns-btn2 {
        margin-left: 35px;
        display: inline-block;
        width: 165px;
        height: 40px;
        border: 1px solid #10203D;
        border-radius: 24px;
        font-size: 16px;
        color: #10203D;
        line-height: 40px;
        text-align: center;
        cursor: pointer;
        user-select: none;
    }

    .caption-btns-btn1:hover {
        background: #0a4eee;
        transform: translateY(-2px) scale(1.03);
        /* 增加轻微缩放 */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .caption-btns-btn1:active {
        background: #0a4eee;
        transform: translateY(0) scale(0.98);
        /* 按下时轻微缩小 */
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .caption-btns-btn2:hover {
        border-color: #10203D;
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .caption-btns-btn2:active {
        transform: translateY(0) scale(0.98);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .module {
        max-width: 992px;
    }

    .module1 {
        padding: 60px 0 78px;
    }

    .module1-main {
        margin-top: 46px;
    }

    .module1-menu-tag {
        margin-right: 20px;
        padding: 0 20px;
        height: 36px;
        font-size: 18px;
        line-height: 36px;
    }

    .module1-content {
        padding: 20px 0;
    }

    .news-item {
        padding: 20px 0;
    }

    .news-item:hover {
        padding-left: 10px;
    }

    .news-title {
        font-size: 20px;
    }

    .news-desc {
        margin-top: 10px;
        font-size: 16px;
        line-height: 25px;
    }

    .news-date {
        margin-top: 5px;
        font-size: 14px;
    }
}

@media (min-width:1200px) {
    .carousel-item img {
        height: 500px;
    }

    .carousel-item-caption {
        position: absolute;
        top: 22%;
        left: 50%;
        transform: translateX(-50%);
        width: 1200px;
    }

    .caption-p1 {
        position: relative;
        font-weight: bold;
        font-size: 32px;
        color: #2D3D5E;
        line-height: 32px;
        z-index: 2;
    }

    .caption-p2 {
        margin-top: 20px;
        font-size: 22px;
        color: #555F7B;
        line-height: 30px;
    }

    .caption-btns {
        margin-top: 103px;
    }

    .caption-btns-btn1 {
        display: inline-block;
        width: 200px;
        height: 48px;
        background: linear-gradient(90deg, #6E9AFF 0%, #1B5BEE 100%);
        border-radius: 24px;
        font-size: 19px;
        color: #FFFFFF;
        line-height: 48px;
        text-align: center;
        cursor: pointer;
        user-select: none;
    }

    .caption-btns-btn2 {
        margin-left: 35px;
        display: inline-block;
        width: 200px;
        height: 48px;
        border: 1px solid #10203D;
        border-radius: 24px;
        font-size: 19px;
        color: #10203D;
        line-height: 48px;
        text-align: center;
        cursor: pointer;
        user-select: none;
    }

    .caption-btns-btn1:hover {
        background: #0a4eee;
        transform: translateY(-2px) scale(1.03);
        /* 增加轻微缩放 */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .caption-btns-btn1:active {
        background: #0a4eee;
        transform: translateY(0) scale(0.98);
        /* 按下时轻微缩小 */
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .caption-btns-btn2:hover {
        border-color: #10203D;
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .caption-btns-btn2:active {
        transform: translateY(0) scale(0.98);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .module {
        max-width: 1200px;
    }

    .module1 {
        padding: 72px 0 94px;
    }

    .module1-menu-tag {
        margin-right: 20px;
        padding: 0 20px;
        height: 36px;
        font-size: 18px;
        line-height: 36px;
    }

    .module1-content {
        padding: 20px 0;
    }

    .news-item {
        padding: 20px 0;
    }

    .news-item:hover {
        padding-left: 10px;
    }

    .news-title {
        font-size: 24px;
    }

    .news-desc {
        margin-top: 16px;
        font-size: 20px;
        line-height: 30px;
    }

    .news-date {
        margin-top: 16px;
        font-size: 16px;
        line-height: 16px;
    }
}

body {
    background: #F6F7FB;
}

.content {
    width: 100%;
}

.module {
    margin-right: auto;
    margin-left: auto;
}

/* 分页容器样式 */
.pagination-container {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
    padding-left: 0;
}

/* 分页控件样式 */
.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    max-width: 100%;
}

.pagination .page-btn {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 4px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.pagination .page-btn:hover {
    background-color: #e0e0e0;
}

.pagination .page-btn.active {
    background-color: #1A76D1;
    color: white;
}

/* 加载覆盖层样式 */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.loading-spinner::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top-color: #1A76D1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    font-size: 14px;
    color: #666;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* 新闻列表相对定位，确保加载覆盖层正确定位 */
.news-list {
    position: relative;
    min-height: 400px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .pagination-container {
        justify-content: center;
    }
    
    .pagination {
        /* justify-content: center; */
    }
}