
    /* 外层命名隔离，防止全局样式冲突，和原有代码规范统一 */
    .gmp-slider-section {
        width: 100%;
        padding: 40px 20px;
        box-sizing: border-box;
        background-color: #f5f5f5;
    }
    .gmp-slider-section *,
    .gmp-slider-section *::before,
    .gmp-slider-section *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
    }

    /* 顶部模块标题区域 */
    .gmp-slider-head {
        max-width: 1280px;
        margin: 0 auto 32px;
        text-align: center;
    }
    .gmp-slider-title {
        font-size: 40px;
        font-weight: bold;
        color: #3A5EA8;
        letter-spacing: 1px;
    }

    .gmp-slider-wrap {
        max-width: 1792px; /* 修改为原尺寸70% */
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }

    .gmp-slider-track {
        display: flex;
        gap: 20px;
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    /* A4竖版比例 210 / 297 ≈ 0.707，padding-top:141.4% */
    .gmp-slide-item {
        flex: 0 0 calc((100% - 60px) / 4);
        display: block;
        border-radius: 8px;
        overflow: hidden;
        cursor: zoom-in;
    }
    .gmp-slide-img {
        width: 100%;
        padding-top: 141.4%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transition: transform 0.4s ease;
    }
    .gmp-slide-item:hover .gmp-slide-img {
        transform: scale(1.05);
    }

    /* 左右箭头按钮 */
    .gmp-slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 2px solid #3A5EA8;
        background: rgba(58,90,168,0.85);
        color: #ffffff;
        font-size: 20px;
        cursor: pointer;
        z-index: 4;
        transition: all 0.3s ease;
    }
    .gmp-slider-arrow:hover {
        background: #ffffff;
        color: #3A5EA8;
        border-color: #3A5EA8;
    }
    .gmp-arrow-prev { left: 12px; }
    .gmp-arrow-next { right: 12px; }

    /* 图片下方标题行，与图片宽度对齐 */
    .gmp-title-row {
        max-width: 1792px; /* 和轮播宽度保持一致 */
        margin: 16px auto 32px;
        display: flex;
        gap: 20px;
    }
    .gmp-title-cell {
        flex: 0 0 calc((100% - 60px) / 4);
        text-align: center;
        font-size: 14px;
        color: #2B2B2B;
        line-height: 1.4;
    }

  
    /* 图片弹窗放大样式 */
    .gmp-lightbox {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.85);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        padding: 20px;
    }
    .gmp-lightbox-inner {
        position: relative;
        max-width: 90%;
        max-height: 90%;
    }
    .gmp-lightbox-img {
        max-width: 100%;
        max-height: 90vh;
        border-radius: 6px;
    }
    .gmp-lightbox-close {
        position: absolute;
        top: -36px;
        right: 0;
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        line-height: 1;
    }

    /* 移动端适配 */
    @media (max-width: 1200px) {
        .gmp-slide-item {
            flex: 0 0 calc((100% - 20px) / 2);
        }
        .gmp-title-cell {
            flex: 0 0 calc((100% - 20px) / 2);
        }
       
    }
    @media (max-width: 768px) {
        .gmp-slider-title {
            font-size: 26px;
        }
        .gmp-slide-item {
            flex: 0 0 100%;
        }
        .gmp-title-cell {
            flex: 0 0 100%;
        }
        .gmp-slider-section {
            padding: 20px 15px;
        }
        .gmp-slider-arrow {
            width: 36px;
            height: 36px;
            font-size: 16px;
        }
        .gmp-lightbox-close {
            font-size: 28px;
            top: -32px;
        }
    }
