@charset 'utf-8';
/* 全屏外层包裹 */
.factory-video-full-wrap{
    width:100%;
    background:#ffffff;
    padding:50px 20px;
}

/* 内容容器，最大1400px居中 */
.factory-video-container{
    max-width:1400px;
    margin:0 auto;
    position:relative;
}

/* 图片外框：圆角，无蓝色装饰角 */
.factory-video-frame{
    position:relative;
    width:100%;
    border-radius:24px;
    overflow:hidden;
}

.factory-video-image-box{
    position:relative;
    width:100%;
    padding-top:46%;
    overflow:hidden;
    border-radius:24px;
}

.factory-video-image-box img{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    /* object-fit:cover; */
    display:block;
}

/* 播放按钮：白底蓝三角 + 波纹扩散 */
.factory-video-play-btn{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:72px;
    height:72px;
    border-radius:50%;
    background:#ffffff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:3;
    box-shadow:0 4px 16px rgba(0,0,0,0.18);
    transition:transform 0.3s ease,box-shadow 0.3s ease;
}

.factory-video-play-btn:hover{
    transform:translate(-50%,-50%) scale(1.1);
    box-shadow:0 6px 20px rgba(0,0,0,0.25);
}

.factory-video-play-btn svg{
    width:28px;
    height:28px;
    margin-left:4px;
}

/* 波纹动画 */
.factory-video-play-btn::before,
.factory-video-play-btn::after{
    content:"";
    position:absolute;
    width:72px;
    height:72px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,0.7);
    animation:factoryRipple 1.8s infinite ease-out;
}

.factory-video-play-btn::after{
    animation-delay:0.9s;
}

@keyframes factoryRipple{
    0%{
        transform:scale(1);
        opacity:0.7;
    }
    100%{
        transform:scale(2);
        opacity:0;
    }
}

/* 视频弹出层 */
.factory-video-modal{
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.85);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
    opacity:0;
    visibility:hidden;
    transition:opacity 0.3s ease,visibility 0.3s ease;
}

.factory-video-modal.active{
    opacity:1;
    visibility:visible;
}

.factory-video-modal-content{
    width:90%;
    max-width:960px;
    position:relative;
}

.factory-video-modal-close{
    position:absolute;
    right:-10px;
    top:-40px;
    color:#ffffff;
    font-size:32px;
    cursor:pointer;
    transition:color 0.3s ease;
    line-height:1;
}

.factory-video-modal-close:hover{
    color:#2563eb;
}

.factory-video-modal video{
    width:100%;
    border-radius:8px;
    display:block;
}

/* 平板 */
@media(max-width:1024px){
    .factory-video-play-btn{
        width:60px;
        height:60px;
    }
    .factory-video-play-btn::before,
    .factory-video-play-btn::after{
        width:60px;
        height:60px;
    }
    .factory-video-play-btn svg{
        width:24px;
        height:24px;
    }
}

/* 手机 */
@media(max-width:767px){
    .factory-video-full-wrap{
        padding:32px 16px;
    }
    .factory-video-image-box{
        padding-top:60%;
        border-radius:16px;
    }
    .factory-video-frame{
        border-radius:16px;
    }
    .factory-video-play-btn{
        width:52px;
        height:52px;
    }
    .factory-video-play-btn::before,
    .factory-video-play-btn::after{
        width:52px;
        height:52px;
    }
    .factory-video-play-btn svg{
        width:20px;
        height:20px;
    }
}


/* 全屏外层包裹 */
.company-stats-full-wrap{
    width:100%;
    background:#ffffff;
    padding:60px 20px;
}

/* 内容容器，最大1400px居中，左右两栏布局 */
.company-stats-container{
    max-width:1400px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:flex-start;
}

.company-stats-left-title{
    font-size:42px;
    font-weight:700;
    color:#111111;
    line-height:1.3;
    margin-bottom:24px;
}

/* 真正滚动容器 */
.company-stats-left-scroll{
    max-height:320px;
    overflow:auto;
    padding-right:12px;
}

/* ========== 滚动条：滑块纯蓝色，轨道灰色 ========== */
.company-stats-left-scroll::-webkit-scrollbar{
    width:6px;
}
.company-stats-left-scroll::-webkit-scrollbar-track{
    background:#e5e7eb;
    border-radius:3px;
}
.company-stats-left-scroll::-webkit-scrollbar-thumb{
    background-color:#2563eb;
    border-radius:3px;
}
.company-stats-left-scroll::-webkit-scrollbar-thumb:hover{
    background-color:#1d4ed8;
}

.company-stats-left-text{
    font-size:17px;
    color:#666666;
    line-height:1.75;
    margin-bottom:20px;
}
.company-stats-left-list-label{
    font-size:17px;
    color:#666666;
    line-height:1.75;
    margin-bottom:8px;
}
.company-stats-left-list{
    list-style:none;
    margin-bottom:20px;
}
.company-stats-left-list li{
    font-size:17px;
    color:#666666;
    line-height:2;
}

/* 右侧数据卡片网格 2列3行 */
.company-stats-right-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0;
}
.company-stats-card{
    padding:40px 24px;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    transition:transform 0.3s ease,box-shadow 0.3s ease;
}
.company-stats-card:hover{
    transform:translateY(-4px);
}
/* 蓝色卡片 */
.company-stats-card.blue{
    background:#2563eb;
}
.company-stats-card.blue .company-stats-card-num{
    color:#ffffff;
}
.company-stats-card.blue .company-stats-card-label{
    color:#ffffff;
}
.company-stats-card.blue:hover{
    box-shadow:0 8px 24px rgba(37,99,235,0.3);
}
/* 白色卡片 */
.company-stats-card.white{
    background:#ffffff;
}
.company-stats-card.white .company-stats-card-num{
    color:#111111;
}
.company-stats-card.white .company-stats-card-label{
    color:#666666;
}
.company-stats-card.white:hover{
    box-shadow:0 8px 24px rgba(0,0,0,0.08);
}

.company-stats-card-num{
    font-size:56px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:10px;
}
.company-stats-card-label{
    font-size:16px;
    line-height:1.5;
}

/* 平板 */
@media(max-width:1024px){
    .company-stats-container{
        grid-template-columns:1fr;
        gap:32px;
    }
    .company-stats-left-scroll{
        max-height:none;
        overflow:visible;
        padding-right:0;
    }
    .company-stats-left-title{
        font-size:34px;
    }
    .company-stats-card-num{
        font-size:44px;
    }
}

/* 手机 */
@media(max-width:767px){
    .company-stats-full-wrap{
        padding: 30px 15px;
    }
    .company-stats-left-title{
        font-size: 24px;
    }
    .company-stats-left-text,
    .company-stats-left-list-label,
    .company-stats-left-list li{
        font-size:15px;
    }
    .company-stats-right-grid{
        grid-template-columns: 1fr 1fr;
    }
    .company-stats-card{
        padding: 20px;
    }
    .company-stats-card-num{
        font-size: 30px;
    }
}




.factory-section{
    width:100%;
    padding:60px 20px;
}
.factory-container{
    max-width:1400px;
    margin:0 auto;
}
.factory-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom: 50px;
}
.factory-title{
    font-size: 44px;
    font-weight:700;
    color:#111111;
}
/* 完全自定义按钮，不使用swiper button类，杜绝定位错乱 */
.factory-nav-group{
    display:flex;
    gap:10px;
}
.factory-nav-btn{
    width:44px;
    height:44px;
    border-radius:50%;
    border:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
}
.factory-nav-btn.prev{
    background:#2563eb;
    color:#fff;
}
.factory-nav-btn.next{
    background:#aaaaaa;
    color:#fff;
}
.factory-nav-btn svg{
    width:20px;
    height:20px;
}

.factory-swiper{
    overflow:hidden;
}
.factory-swiper .swiper-slide{
    padding:0 6px;
}
.factory-swiper .swiper-slide img{
    width:100%;
    height:270px;
    object-fit:cover;
    border-radius:8px;
    display:block;
}

@media(max-width:1024px){
    .factory-title{
        font-size:32px;
    }
}
@media(max-width:768px){
    .factory-section{
        padding:40px 16px;
    }
    .factory-header{
        flex-direction:column;
        align-items: center;
        gap:16px;
    }
    .factory-title{
        font-size: 26px;
    }
    .factory-swiper .swiper-slide img{
        height:220px;
    }
}



.global-business-full-wrap{
    width:100%;
    background: #f6f6f6;
    padding:60px 20px;
}

.global-business-container{
    max-width:1400px;
    margin:0 auto;
}

/* 顶部标题区域 */
.global-business-header{
    margin-bottom:32px;
}
.global-business-main-title{
    font-size:44px;
    font-weight:700;
    color:#111111;
    margin-bottom:12px;
}
.global-business-sub-title{
    font-size:24px;
    color:#2563eb;
    font-weight:600;
    margin-bottom:10px;
}
.global-business-desc{
    font-size:17px;
    color:#777777;
}

/* 地图+卡片行容器 */
.global-business-row{
    display:grid;
    grid-template-columns: 2.8fr 1fr;
    gap:40px;
    align-items:center;
}

.global-business-map-wrap{
    position:relative;
    width:100%;
    padding-top:52%;
    overflow:hidden;
}
.global-business-map-img{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.global-business-card{
    background:#2563eb;
    color:#ffffff;
    padding:48px 36px;
    min-height:440px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.global-business-card-title{
    font-size: 34px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:28px;
}
.global-business-card-list{
    list-style:none;
}
.global-business-card-list li{
    font-size:18px;
    line-height:2.1;
    margin-bottom:10px;
}

/* 响应式 */
@media(max-width:1024px){
    .global-business-row{
        grid-template-columns:1fr;
        gap:28px;
    }
    .global-business-main-title{
        font-size:34px;
    }
    .global-business-sub-title{
        font-size:20px;
    }
    .global-business-card{
        min-height:auto;
        padding:32px 24px;
    }
    .global-business-card-title{
        font-size:28px;
    }
}
@media(max-width:767px){
    .global-business-full-wrap{
        padding:40px 16px;
    }
    .global-business-main-title{
        font-size:28px;
    }
    .global-business-sub-title{
        font-size:18px;
    }
    .global-business-desc{
        font-size:15px;
    }
    .global-business-card-title{
        font-size:24px;
    }
    .global-business-card-list li{
        font-size:16px;
    }
}



.client-logo-section{
    width:100%;
    padding:50px 20px;
    background:#fff;
}
.client-logo-container{
    max-width:1400px;
    margin:0 auto;
}

.client-logo-swiper{
    overflow:hidden;
}
.client-logo-swiper .swiper-slide{
    display:flex;
    align-items:center;
    justify-content:center;
    height:120px;
    position:relative;
}
/* logo之间竖分割线 */
.client-logo-swiper .swiper-slide::after{
    content:"";
    position:absolute;
    right:0;
    top:25%;
    height:50%;
    width:1px;
    background:#cccccc;
}
.client-logo-swiper .swiper-slide img{
    max-height:60px;
    max-width:100%;
    object-fit:contain;
}

@media(max-width:1024px){
    .client-logo-swiper .swiper-slide{
        height:100px;
    }
    .client-logo-swiper .swiper-slide img{
        max-height:48px;
    }
}
@media(max-width:767px){
    .client-logo-section{
        padding:35px 16px;
    }
    .client-logo-swiper .swiper-slide{
        height:90px;
        padding: 15px;
    }
    .client-logo-swiper .swiper-slide img{
        max-height:40px;
    }
}