
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.pagination button {
    padding: 0.8rem 1.2rem;
    margin: 0 0.4rem;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 0.4rem;
}

.pagination button:hover:not(:disabled) {
    background: #f5f5f5;
}

.pagination button.active {
    background: #E21927;
    color: white;
    border-color: #E21927;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination .jump-to {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pagination .jump-to input {
    width: 6rem;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 0.4rem;
    text-align: center;
}

.pagination .jump-to button {
    padding: 0.8rem 1.2rem;
}

.pagination-info {
    color: #666;
    font-size: 1.4rem;
    margin: 0 1rem;
}

/* 言必有数横幅样式 */
.speak-with-precision-section {
background: url('../images/speakWithPrecision/banner.png') no-repeat center center;
background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 40rem;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* 平板端适配 */
@media (max-width: 1023px) {
    .speak-with-precision-section {
        height: 30rem;
        /* 350px */
    }
}

/* 手机端适配 */
@media (max-width: 767px) {
    .speak-with-precision-section {
        height: 20rem;
        /* 300px */
    }
}

/* 栏目介绍部分样式 */
.column-introduction-section {
    padding: 2rem 0;
    /* 60px */
    background: #FFFFFF;
}

.intro-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 6rem;
    /* 60px */
}

.intro-text-content {
    flex: 1;
}

.intro-title {
    font-size: 3rem;
    /* 30px */
    color: #333333;
    margin-bottom: 2.4rem;
    /* 24px */
    font-weight: normal;
}

.intro-description {
    font-size: 1.6rem;
    /* 16px */
    color: #666666;
    line-height: 2.4rem;
    /* 24px */
    margin-bottom: 3rem;
    text-align: justify;
    /* 30px */
}

.intro-cooperation-btn {
    font-size: 1.6rem;
    /* 16px */
    color: #E01927;
    background: transparent;
    border: 0.1rem solid #E01927;
    /* 1px */
    border-radius: 0.4rem;
    /* 10px 24px */
    cursor: pointer;
    transition: all 0.3s ease;
    width: 12rem;
    /* 120px */
    height: 4rem;
    /* 40px */
    line-height: 4rem;
}

.intro-cooperation-btn:hover {
    background: #E01927;
    color: #FFFFFF;
}

.intro-image-content {
    flex-shrink: 0;
    width: 100%;
    max-width: 48.7rem;
    box-sizing: border-box;
}

.intro-image {
    width: auto;
    max-width: 48.7rem;
    /* 487px */
    height: 28rem;
    /* 280px */
    object-fit: cover;
    border-radius: 0.8rem;
    /* 8px */
    display: block;
}

/* 新增：intro-image-content 中 Swiper 轮播样式（移动端适配） */
.intro-image-content .swiper {
    width: 100%;
    max-width: 48.7rem; /* 与原 intro-image 保持一致 */
    height: 28rem;
    border-radius: 0.8rem;
    overflow: hidden;
    box-sizing: border-box;
}
.intro-image-content .swiper-wrapper {
    width: 100%;
    box-sizing: border-box;
}
.intro-image-content .swiper-slide {
    width: 100%;
    box-sizing: border-box;
}
.intro-image-content .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-sizing: border-box;
}

/* 小屏适配（与原 CSS 保持同步） */
@media (max-width:1023px) {
    .intro-image-content .swiper { 
         height:24rem; 
        }
}
@media (max-width:767px) {
    .intro-image-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    .intro-image-content .swiper { 
        width:calc(100%);
        height: auto; 
        max-height: 25rem;
    }
    .intro-image-content .swiper-wrapper {
        width: 100%;
    }
    .intro-image-content .swiper-slide {
        width: 100%;
    }
    .intro-image-content .swiper-slide img { 
        width: 100%;
        height: 100%; 
    }
}

/* 平板端栏目介绍适配 */
@media (max-width: 1023px) {
    .column-introduction-section {
        padding: 4rem 0;
    }

    .intro-content-wrapper {
        gap: 4rem;
    }

    .intro-title {
        font-size: 2.6rem;
        margin-bottom: 2rem;
    }

    .intro-description {
        font-size: 1.5rem;
        line-height: 2.2rem;
        margin-bottom: 2.4rem;
    }

    .intro-cooperation-btn {
        font-size: 1.5rem;
        width: 11rem;
        height: 3.8rem;
        line-height: 3.8rem;
    }

    .intro-image {
        width: 40rem;
        height: 24rem;
    }
}

/* 手机端栏目介绍适配 */
@media (max-width: 767px) {
    .column-introduction-section {
        padding: 0;
    }

    .intro-content-wrapper {
        flex-direction: column;
        gap: 3rem;
        width: 100%;
        box-sizing: border-box;
    }

    .intro-text-content {
        width: 100%;
        box-sizing: border-box;
    }

    .intro-image-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .intro-title {
        font-size: 2.4rem;
        margin-bottom: 1.6rem;
    }

    .intro-description {
        font-size: 1.4rem;
        line-height: 2rem;
        margin-bottom: 2rem;
    }

    .intro-cooperation-btn {
        font-size: 1.4rem;
        width: 10rem;
        height: 3.6rem;
        line-height: 3.6rem;
    }

    .intro-image {
        width: 100%;
        height: auto;
        max-height: 25rem;
    }
}

/* 访谈列表部分样式 */
.interview-list-section {
    padding: 0 0 4.5rem 0;
    /* 上0 右0 下45px 左0 */
    background: #FFFFFF;
}
.interview-tabs-box{
    background: #FAFAFA;
}
.interview-tabs-box .container{
    padding: 0;
}

.interview-tabs {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 7rem;
        /* 70px */
        line-height: 7rem;
        font-size: 1.6rem;
            /* 16px */
            color: #333333;
            cursor: pointer;
}

.interview-tab:hover {
    color: #E21927;
}

.interview-tab.active {
    color: #E21927;
    border-bottom: 0.2rem solid #E21927;
}

.interview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    /* 30px */
    margin-bottom: 4rem;
    /* 40px */
}

.interview-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.interview-card:hover {
    transform: translateY(-0.5rem);
    text-decoration: none;
}

.interview-image {
    width: 100%;
    overflow: hidden;
    border-radius: 0.8rem;
    /* 8px */
    margin-bottom: 1.6rem;
    height: 23rem;
    /* 16px */
}

.interview-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.8rem;
    /* 8px */
}

.interview-title {
    font-size: 1.6rem;
    /* 16px */
    color: #333333;
    line-height: 2.4rem;
    /* 24px */
    font-weight: normal;
    margin: 0;
    text-decoration: none;
    text-align: center;
}
.interview-card:hover .interview-title{
    color: #E21927;
}

/* 平板端访谈列表适配 */
@media (max-width: 1023px) {
    .interview-list-section {
        padding: 0 0 3.5rem 0;
    }


    .interview-tabs {
        height: 6rem;
        gap: 4rem;
    }

    .interview-tab {
        font-size: 1.5rem;
        height: 6rem;
        line-height: 6rem;
    }

    .interview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.4rem;
        margin-bottom: 3rem;
    }

    .interview-title {
        font-size: 1.5rem;
        line-height: 2.2rem;
    }
}

/* 手机端访谈列表适配 */
@media (max-width: 767px) {
    .interview-list-section {
            padding: 0 0 2rem 0;
        }
    
    
    
        .interview-tabs {
            height: auto;
            min-height: 5rem;
            gap: 1.2rem;
            justify-content: space-around;
        }
    
        .interview-tab {
            font-size: 1.3rem;
            padding: 0.4rem 0.6rem;
            text-align: center;
        }
    
        .interview-tab:hover {
            color: #333;
        }
    
        .interview-grid {
            gap: 1.6rem;
                margin-bottom: 0;
                text-align: center;
        }
    
        .interview-title {
            font-size: 1.3rem;
            line-height: 1.8rem;
        }
}


/* 更多声音部分样式 */
.more-voice-section {
    height: 20rem;
    /* 200px */
    background: url('../images/speakWithPrecision/bottom.png') no-repeat center center;
    background-size: cover;
    width: 100%;
}

/* 平板端更多声音适配 */
@media (max-width: 1023px) {
    .more-voice-section {
        height: 16rem;
        /* 160px */
    }
}

/* 手机端更多声音适配 */
@media (max-width: 767px) {
    .more-voice-section {
        height: 12rem;
        /* 120px */
    }
}
