
@media (max-width: 768px) {
    .carousel-box {
        height: 300px;
    }

    .carousel-text h2 {
        font-size: 28px;
    }

    .carousel-text p {
        font-size: 16px;
    }

    .carousel-text .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .carousel-indicators {
        bottom: 8px;
    }
}

.carousel-box {
    position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.carousel-track {
    display: flex;
    height: 100%;
    transform: translateX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.carousel-item:hover .carousel-img {
    transform: scale(1.03);
}

.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 158, 217, 0.15) 0%, rgba(5, 38, 51, 0.3) 100%);
    pointer-events: none;
}

.carousel-text {
    position: absolute;
    top: 160px;
    left: 80px;
    color: #fff;
    z-index: 10;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.carousel-text .title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.6;
    opacity: 0.95;
}

.carousel-text .desc {
    position: relative;
    width: 100%;
    color: #ffffffe6;
    font-size: 18px;
    line-height: 36px;
    margin-bottom: 12px;
    padding-left: 28px;
    transition: all 0.3s ease;
}

.carousel-text .desc:hover {
    color: #fff;
    transform: translateX(4px);
}

.carousel-text .btn-group {
    margin-top: 48px;
}

.carousel-text .desc .round {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(11, 158, 217, 0.6);
}

.carousel-text .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 56px;
    background: linear-gradient(135deg, #0B9ED9 0%, #0878a8 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 28px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 16px;
    box-shadow: 0 4px 16px rgba(11, 158, 217, 0.3);
}

.carousel-text .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(11, 158, 217, 0.4);
}

.carousel-text .service-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-text .service-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: 12px;
}

.indicator-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 32px;
    padding: 0 8px;
}

.indicator {
    width: 48px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-wrap:hover .indicator {
    background-color: rgba(255, 255, 255, 0.5);
}

.indicator.active {
    width: 48px;
    background-color: #0B9ED9 !important;
    box-shadow: 0 0 12px rgba(11, 158, 217, 0.6);
}

/* 首页菜单�?*/
.page-head-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background-color: #ffffff1a;
    border-bottom: 1px solid #ffffff26;
    display: flex;
    align-items: center;
    z-index: 1000;
    padding: 0 80px;
    backdrop-filter: blur(10px);
}
/* 下拉菜单START */
.page-head-box .pc-dom-box .dropdown-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    position: fixed;
    width: 100%;
    left: 0;
    top: 64px;
    padding: 24px 80px;
    background: #FFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    z-index: 998;
    visibility: hidden;
    transform: translateY(0);
    transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
}
.page-head-box .pc-dom-box .dropdown-menu .menu-item .menu-tit {
    display: flex;
    height: 48px;
    align-items: center;
    border-bottom: 1px solid #0526330d;
    color: #052633d9;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}
.page-head-box .pc-dom-box .dropdown-menu .menu-item .menu-list-box {
    display: flex;
    margin-top: 16px;
}
.page-head-box .pc-dom-box .dropdown-menu .menu-item .menu-list-box .menu-list {
    flex: 1;
}
.page-head-box .pc-dom-box .dropdown-menu .menu-item .menu-list-box .menu-list .menu-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #052633a6;
    font-size: 14px;
    margin: 0 32px 16px 0;
    padding: 4px 8px;

}
.page-head-box .pc-dom-box .dropdown-menu .menu-item .menu-list-box .menu-list .menu-card .icon-box {
    width: 40px;
    height: 40px;
    margin-right: 8px;
}
.page-head-box .pc-dom-box .dropdown-menu .menu-item .menu-list-box .menu-list .menu-card .info-box {
    flex: 1;
    text-align: left;
}
.page-head-box .pc-dom-box .dropdown-menu .menu-item .menu-list-box .menu-list .menu-card .info-box .title {
    color: #052633d9;
    font-weight: 600;
}
.page-head-box .pc-dom-box .dropdown-menu .menu-item .menu-list-box .menu-list .menu-card .info-box .desc {
    line-height: 18px;
    margin-top: 8px;
}
.page-head-box .pc-dom-box .dropdown-menu .menu-item .menu-list-box .menu-list .menu-card .icon-box img {
    width: 100%;
    height: 100%;
}
.page-head-box .pc-dom-box .dropdown-menu .menu-item .menu-list-box .menu-list a:hover .menu-card {
    background: #E6FCFF;
    border-radius: 2px;
}
/* 下拉菜单END */
.page-head-box .pc-dom-box {
    width: 100%;
}
.page-head-box .pc-dom-box .head-main-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page-head-box .pc-dom-box .head-main-box .head-main-box-left {
    display: flex;
    align-items: center;
}
.page-head-box .pc-dom-box .head-main-box .logo-box {
    width: 120px;
    height: 34px;
}
.page-head-box .pc-dom-box .head-main-box .logo-box img {
    width: 100%;
    height: 100%;
}
.page-head-box .pc-dom-box .head-main-box .head-main-wrap {
    flex: 1;
}
.page-head-box .pc-dom-box .head-main-box .head-main-wrap .nav-box {
    padding: 0 32px;
}
.page-head-box .pc-dom-box .head-main-box .head-main-wrap .nav-box ul {
    display: flex;
}
.page-head-box .pc-dom-box .head-main-box .head-main-wrap .nav-box ul li {
    position: relative;
    padding: 0 16px;
    text-align: center;
    font-size: 14px;
}
.page-head-box .pc-dom-box .head-main-box .head-main-wrap .nav-box ul li .icon-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
}
.page-head-box .pc-dom-box .head-main-box .head-main-wrap .nav-box ul li .icon-arrow img {
    width: 100%;
    height: 100%;
}
.page-head-box .pc-dom-box .head-main-box .head-main-wrap .nav-box ul li .icon-arrow-down-box {
    display: block;
}
.page-head-box .pc-dom-box .head-main-box .head-main-wrap .nav-box ul li .icon-cecaidanxiala {
    position: absolute;
    right: 0;
    top: 46%;
    font-size: 8px;
    color: rgba(255, 255, 255, .35);
}
.bg-w .pc-dom-box .head-main-box .head-main-wrap .nav-box ul li .icon-cecaidanxiala {
    color: #05263373;
}
.page-head-box .pc-dom-box .head-main-box .head-main-wrap .nav-box ul li:hover .icon-cecaidanxiala {
    transform: rotate(180deg) scale(1.1);
    color: #0B9ED9;
    transition: all 0.3s ease;
}
.page-head-box .pc-dom-box .head-main-box .head-main-wrap .nav-box ul li .icon-arrow-up-box {
    display: none;
}
.page-head-box .pc-dom-box .head-main-box .head-main-wrap .nav-box ul li:hover .icon-arrow-down-box {
    transform: scaleY(-1);
}
.page-head-box .pc-dom-box .head-main-box .head-main-wrap .nav-box ul li:hover .icon-arrow-up-box {
    display: block;
}
.page-head-box .pc-dom-box .head-main-box .head-main-wrap .nav-box ul li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.page-head-box .pc-dom-box .head-main-box .head-main-wrap .nav-box ul li a {
    color: #fff;
}
.page-head-box .pc-dom-box .head-main-box .head-main-wrap .nav-box ul li a:hover {
    color: #0B9ED9;
}
.page-head-box .pc-dom-box .head-main-box .head-ope-box {
    display: flex;
    align-items: center;
}
.page-head-box .pc-dom-box .head-main-box .head-ope-box .btn-group {
    display: flex;
}
.page-head-box .pc-dom-box .head-main-box .head-ope-box .btn-group .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 40px;
    color: #fff;
    border-radius: 4px;
    border: 1px solid #fff;
    font-size: 14px;
}
.page-head-box .pc-dom-box .head-main-box .head-ope-box .btn-group .register {
    background-color: #0B9ED9;
    border: none;
    margin-left: 8px;
}
.page-head-box .pc-dom-box .head-main-box .head-ope-box .service {
    margin-right: 32px;
}
.page-head-box .pc-dom-box .head-main-box .head-ope-box .service .txt {
    color: #ffffffa6;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    line-height: normal;
}
.page-head-box .pc-dom-box .head-main-box .head-ope-box .service .tel {
    color: #fff;
    text-align: center;
    font-size: 14px;
}

/* 页面滚动菜单栏样式替换START */
.bg-w {
    background-color: #fff;
    border-bottom: 1px solid #0000001a;
    z-index: 1000;
}
.bg-w .pc-dom-box .head-main-box .head-main-wrap .nav-box ul li a {
    color: #000000d9;
}
.bg-w .pc-dom-box .head-main-box .head-ope-box .btn-group .btn {
    color: #0B9ED9;
    border: 1px solid #0B9ED9;
}
.bg-w .pc-dom-box .head-main-box .head-ope-box .btn-group .register {
    color: #fff;
}
.bg-w .pc-dom-box .head-main-box .head-ope-box .service .txt {
    color: #052633a6;
}
.bg-w .pc-dom-box .head-main-box .head-ope-box .service .tel {
    color: #052633d9;
}
/* 页面滚动菜单栏样式替换END */

/* 智能订货系统模块 */
.auto-system-box {
    width: 1440px;
    margin: 100px auto;
    padding: 0 20px;
}

.auto-system-box .title {
    color: #052633;
    opacity: .95;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 1px;
}

.auto-system-box .auto-sys-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 0;
}

.auto-system-box .auto-sys-indicators .auto-sys-indicator {
    width: 48px;
    height: 4px;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #E9EFF2;
}

.auto-system-box .auto-sys-indicators .auto-sys-indicator:hover {

}

.auto-system-box .auto-sys-indicators .active {
    background-color: #0B9ED9;
}

.auto-system-box .subtitle {
    color: #052633;
    opacity: .7;
    text-align: center;
    font-size: 24px;
    margin: 16px 0 48px 0;
    line-height: 32px;
}

.auto-system-box .grid-cols-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    height: auto;
}

.auto-system-box .opacity0 {
    display: none;
}

.auto-system-box .grid-cols-3 .grid-cols-4-card-box .message-box {
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #0526330d;
    background: #EBF5FA;
    color: #052633a6;
    font-size: 16px;
    line-height: 24px;
    margin-top: 24px;
}

.auto-system-box .grid-cols-3 .grid-cols-4-card-box .head-box img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
}

.grid-cols-4-card-box {
    display: flex;
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    border: 1px solid #0526330d;
    background: linear-gradient(135deg, #ffffff 0%, #f8fcfe 100%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.grid-cols-4-card-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0B9ED9 0%, #20ADE5 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.grid-cols-4-card-box:hover::before {
    transform: scaleX(1);
}

.grid-cols-4-card-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(11, 158, 217, 0.15);
    border-color: #0B9ED933;
}

.grid-cols-4-card-box .head-box {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.grid-cols-4-card-box .head-box img {
    width: 56px;
    height: 56px;
    margin-right: 16px;
    transition: transform 0.3s ease;
}

.grid-cols-4-card-box:hover .head-box img {
    transform: scale(1.1);
}

.grid-cols-4-card-box .head-box .title {
    color: #052633;
    opacity: .95;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    transition: color 0.3s ease;
}

.grid-cols-4-card-box:hover .head-box .title {
    color: #0B9ED9;
}

.grid-cols-4-card-box .content {
    color: #052633a6;
    font-size: 15px;
    line-height: 24px;
    flex: 1;
    transition: color 0.3s ease;
}

.grid-cols-4-card-box:hover .content {
    color: #052633d9;
}

.grid-cols-4-card-box .core {
    color: #05263373;
    font-size: 14px;
    line-height: 14px;
    margin-top: auto;
    padding-top: 16px;
}

.grid-cols-4-card-box .core span {
    display: inline-flex;
    padding: 4px 12px;
    align-items: center;
    border-radius: 16px;
    border: 1px solid #0B9ED9;
    background: linear-gradient(135deg, #E6FCFF 0%, #d0f4ff 100%);
    color: #0B9ED9;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    transition: all 0.3s ease;
}

.grid-cols-4-card-box:hover .core span {
    background: linear-gradient(135deg, #0B9ED9 0%, #0878a8 100%);
    color: #fff;
    border-color: transparent;
}

/* 云上供应链解决方�?*/
.supply-chain-solve-wrap-box {
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, #E9EFF2 0%, #f0f6f9 100%);
}

.supply-chain-solve-box {
    width: 1440px;
    padding: 100px 20px;
}

.supply-chain-solve-box .title {
    color: #052633;
    opacity: .95;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 1px;
}

.supply-chain-solve-box .subtitle {
    color: #052633;
    opacity: .7;
    text-align: center;
    font-size: 24px;
    margin: 16px 0 48px 0;
    line-height: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.supply-chain-solve-box .tab-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.supply-chain-solve-box .tab-box .tab {
    display: flex;
    width: auto;
    min-width: 200px;
    height: 56px;
    padding: 0 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 28px;
    font-size: 18px;
    font-weight: 500;
    color: #052633d9;
    background: #fff;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-decoration: none !important;
    outline: none !important;
}

.supply-chain-solve-box .tab-box .tab:hover {
    border-color: #0B9ED9;
    color: #0B9ED9;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(11, 158, 217, 0.15);
}

.supply-chain-solve-box .tab-box .active {
    background: linear-gradient(135deg, #0B9ED9 0%, #0878a8 100%);
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(11, 158, 217, 0.3);
}

.supply-chain-solve-box .content-box {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.supply-chain-solve-box .opacity-0 {
    display: none;
}

.supply-chain-solve-box .content-box .content-l {
    padding: 24px 24px 16px 24px;
    flex: 1;
    background-color: #fff;
    /*height: 600px;*/
}

.supply-chain-solve-box .content-box .content-l .title {
    color: #052633d9;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 24px;
}

.supply-chain-solve-box .content-box .content-l .card-box {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 12px;
    background: linear-gradient(135deg, #EBF5FA 0%, #e3f2f9 100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.supply-chain-solve-box .content-box .content-l .card-box:hover {
    background: linear-gradient(135deg, #E6FCFF 0%, #d0f4ff 100%);
    border-color: #0B9ED933;
    box-shadow: 0 4px 16px rgba(11, 158, 217, 0.15);
}

.supply-chain-solve-box .content-box .content-l .card-box .index-box {
    display: flex;
    align-items: center;
}

.supply-chain-solve-box .content-box .content-l .card-box .desc {
    color: #052633a6;
    font-size: 15px;
    line-height: 24px;
    max-height: 24px;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.supply-chain-solve-box .content-box .content-l .card-box:hover .desc {
    max-height: 120px;
}

.supply-chain-solve-box .content-box .content-l .card-box .index-box .txt {
    color: #052633d9;
    font-size: 20px;
    font-weight: 600;
}

.supply-chain-solve-box .content-box .content-l .card-box .index {
    display: none;
}

.supply-chain-solve-box .content-box .content-r {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.supply-chain-solve-box .content-box .content-r::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 158, 217, 0.05) 0%, rgba(5, 38, 51, 0.02) 100%);
    pointer-events: none;
}

.supply-chain-solve-box .content-box .content-r img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.supply-chain-solve-box .content-box:hover .content-r img {
    /*transform: scale(1.03);*/
}

/* 行业解决方案 */
.industry-solutions-wrap-box {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 1500px;
    padding: 100px 20px;
    background-image: url("../image/industry-solutions-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.industry-solutions-box {
    position: relative;
    width: 1440px;
}

.industry-solutions-box .title {
    color: #fff;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.industry-solutions-box .subtitle {
    color: #ffffffe6;
    text-align: center;
    font-size: 24px;
    margin: 16px 0 48px 0;
    line-height: 32px;
}

.industry-solutions-box .tab-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.industry-solutions-box .tab-box .tab {
    display: flex;
    width: auto;
    min-width: 180px;
    height: 56px;
    padding: 0 28px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 28px;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

.industry-solutions-box .tab-box .tab:hover {
    /*background: rgba(255, 255, 255, 0.25);*/
    /*border-color: rgba(255, 255, 255, 0.4);*/
    transform: translateY(-2px);
}

.industry-solutions-box .tab-box .active {
    background: linear-gradient(135deg, #0B9ED9 0%, #0878a8 100%);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(11, 158, 217, 0.4);
}

.industry-solutions-box .content-box {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    background: rgba(12, 39, 92, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    min-height: 900px;
}

.industry-solutions-box .opacity0 {
    display: none;
}

.industry-solutions-box .industry-solutions-content-box {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 1s ease;
    position: absolute;
    width: 100%;
}

.industry-solutions-box .active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: static;
}

.industry-solutions-box .content-box .txt {
    color: #ffffff;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.industry-solutions-box .content-box .content-t {
    width: 100%;
    display: flex;
    gap: 24px;
    flex: 1;
}

.industry-solutions-box .content-box .content-b {
    display: flex;
    width: 100%;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 12px;
    background: rgba(18, 52, 115, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 24px;
}

.industry-solutions-box .content-box .content-b .title {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
}

.industry-solutions-box .content-box .content-b .title img {
    width: 42px;
    height: 42px;
    margin-right: 12px;
}

.industry-solutions-box .content-box .content-b .grid-cols-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    border-radius: 8px;
    background: transparent;
    margin-top: 16px;
}

.industry-solutions-box .content-box .content-b .grid-cols-4 .card {
    display: flex;
    padding: 16px;
    flex-direction: column;
    border-radius: 12px;
    background: rgba(20, 58, 128, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 140px;
}

.industry-solutions-box .content-box .content-b .grid-cols-4 .card:hover {
    transform: translateY(-4px);
    background: rgba(20, 58, 128, 0.7);
    border-color: rgba(11, 158, 217, 0.3);
    box-shadow: 0 8px 24px rgba(11, 158, 217, 0.2);
}

.industry-solutions-box .content-box .content-b .grid-cols-4 .card .txt {
    color: #ffffff;
    font-size: 16px;
    text-align: left;
    margin-bottom: 8px;
    font-weight: 500;
}

.industry-solutions-box .content-box .content-b .grid-cols-4 .card .txt .num {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B9ED9 0%, #0878a8 100%);
    margin-right: 8px;
    font-weight: 600;
}

.industry-solutions-box .content-box .content-b .grid-cols-4 .card .desc {
    color: #ffffffb3;
    font-size: 14px;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-solutions-box .content-box .content-b:hover .grid-cols-4 .card .desc {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.industry-solutions-box .content-box .content-t .l-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
}

.industry-solutions-box .content-box .content-t .l-item .flex-item .grid-cols-2 .card .desc {
    color: #ffffffb3;
    font-size: 14px;
    line-height: 22px;
    padding-left: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-solutions-box .content-box .content-t .l-item .flex-item:hover .grid-cols-2 .card .desc {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.industry-solutions-box .content-box .content-t .l-item .flex-item {
    width: 100%;
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 12px;
    background: rgba(18, 52, 115, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.industry-solutions-box .content-box .content-t .l-item .flex-item:hover {
    background: rgba(18, 52, 115, 0.8);
    border-color: rgba(11, 158, 217, 0.2);
}

.industry-solutions-box .content-box .content-t .l-item .flex-item .title {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
}

.industry-solutions-box .content-box .content-t .l-item .flex-item .title img {
    width: 42px;
    height: 42px;
    margin-right: 12px;
}

.industry-solutions-box .content-box .content-t .l-item .flex-item .grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.industry-solutions-box .content-box .content-t .l-item .flex-item .grid-cols-2 .card {
    padding: 12px;
    border-radius: 8px;
    background: rgba(20, 58, 128, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 120px;
}

.industry-solutions-box .content-box .content-t .l-item .flex-item .grid-cols-2 .card:hover {
    transform: translateY(-4px);
    background: rgba(20, 58, 128, 0.7);
    border-color: rgba(11, 158, 217, 0.3);
    box-shadow: 0 8px 24px rgba(11, 158, 217, 0.2);
}

.industry-solutions-box .content-box .content-t .l-item .flex-item .grid-cols-2 .card .txt {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 15px;
    text-align: left;
    margin-bottom: 8px;
    font-weight: 500;
}

.industry-solutions-box .content-box .content-t .l-item .flex-item .grid-cols-2 .card .txt .num {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B9ED9 0%, #0878a8 100%);
    margin-right: 8px;
    font-weight: 600;
}

.industry-solutions-box .content-box .content-t .r-item {
    flex: 1;
}

.industry-solutions-box .content-box .content-t .r-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s ease;
}

.industry-solutions-box .content-box .content-t .r-item:hover img {
    /*transform: scale(1.03);*/
}

/* 服务能力保障模块 */
.service-capacity-box {
    width: 1440px;
    margin: 100px auto;
    padding: 0 20px;
}

.service-capacity-box .title {
    color: #052633;
    opacity: .95;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 1px;
}

.service-capacity-box .subtitle {
    color: #052633;
    opacity: .7;
    text-align: center;
    font-size: 24px;
    margin: 16px 0 48px 0;
    line-height: 32px;
}

.service-capacity-box .grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-capacity-box .grid-cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-capacity-box .card-box {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-capacity-box .card-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(11, 158, 217, 0.15);
    border-color: rgba(11, 158, 217, 0.2);
}

.service-capacity-box .card-box .img-box {
    width: 100%;
    height: 320px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    position: relative;
}

.service-capacity-box .card-box .img-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 158, 217, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-capacity-box .card-box:hover .img-box::after {
    opacity: 1;
}

.service-capacity-box .card-box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-capacity-box .card-box:hover .img-box img {
    transform: scale(1.05);
}

.service-capacity-box .card-box .content-box {
    padding: 32px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-capacity-box .card-box .content-box .title {
    color: #052633;
    opacity: .95;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-capacity-box .card-box .content-box .sub-txt {
    color: #052633a6;
    font-size: 15px;
    line-height: 24px;
    flex: 1;
}

.service-capacity-box .cooper-partner-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #EBF5FA 0%, #e3f2f9 100%);
    border: 1px solid rgba(11, 158, 217, 0.1);
    margin-top: 48px;
}

.service-capacity-box .cooper-partner-box .content-l {
    flex: 1;
}

.service-capacity-box .cooper-partner-box .content-l .title {
    color: #052633;
    opacity: .95;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-capacity-box .cooper-partner-box .content-l .sub-txt {
    color: #052633a6;
    font-size: 18px;
    line-height: 28px;
}

.service-capacity-box .cooper-partner-box .content-r {
    display: flex;
    gap: 48px;
}

.service-capacity-box .cooper-partner-box .content-r .item {
    text-align: center;
}

.service-capacity-box .cooper-partner-box .content-r .item .num {
    color: #0B9ED9;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.service-capacity-box .cooper-partner-box .content-r .item .num i {
    font-size: 32px;
    font-style: normal;
}

.service-capacity-box .cooper-partner-box .content-r .item .txt {
    color: #052633a6;
    font-size: 16px;
}

.service-capacity-box .grid-cols-2 .card-box .img-box img {
    width: 100%;
    height: 100%;
}
.service-capacity-box .grid-cols-2 .card-box .content-box {
    padding: 16px;
}
.service-capacity-box .grid-cols-2 .card-box .content-box .title {
    display: flex;
    align-items: center;
    color: #052633d9;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    text-align: left;
}
.service-capacity-box .grid-cols-2 .card-box .content-box .txt-item {
    border-radius: 8px;
    padding: 16px;
    background: #EBF5FA;
    margin-top: 8px;
    color: #052633a6;
    font-size: 14px;
}
.service-capacity-box .grid-cols-2 .card-box .content-box .txt-item .card-img-box {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.service-capacity-box .grid-cols-2 .card-box .content-box .txt-item img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.service-capacity-box .grid-cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.service-capacity-box .grid-cols-3 .card-box {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    background: #FFF;
    box-shadow: 0 0 6px 0 #00609033;
}
.service-capacity-box .grid-cols-3 .card-box .img-box {
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}
.service-capacity-box .grid-cols-3 .card-box .img-box img {
    width: 100%;
    height: 100%;
}
.service-capacity-box .grid-cols-3 .card-box .content-box {
    padding: 16px;
}
.service-capacity-box .grid-cols-3 .card-box .content-box .txt-item {
    display: flex;
    height: 32px;padding: 0 8px;
    align-items: center;
    border-radius: 2px;
    background: #EBF5FA;
    margin-top: 4px;
    color: #052633a6;
    font-size: 14px;
}
.service-capacity-box .grid-cols-3 .card-box .content-box .txt-item img {
    width: 14px;
    height: 14px;
    margin-right: 4px;
}
.service-capacity-box .grid-cols-3 .card-box .content-box .user-box {
    display: flex;
    align-items: center;
}
.service-capacity-box .grid-cols-3 .card-box .content-box .user-box .user-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 8px;
}
.service-capacity-box .grid-cols-3 .card-box .content-box .user-box .user-info .name {
    color: #052633d9;
    font-size: 32px;
    font-weight: 600;
}
.service-capacity-box .grid-cols-3 .card-box .content-box .user-box .user-info .des {
    color: #052633a6;
    font-size: 16px;
    margin-top: 8px;
}
.service-capacity-box .grid-cols-3 .card-box .content-box .user-box .user-img img {
    width: 100%;
    height: 100%;
}
.service-capacity-box .grid-cols-3 .card-box .content-box .title {
    display: flex;
    align-items: center;
    color: #052633d9;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    text-align: left;
}
.service-capacity-box .grid-cols-3 .card-box .content-box .industry-icon {
    display: flex;
    padding: 4px 8px;
    align-items: center;
    gap: 3px;
    border-radius: 12px;
    border: 1px solid #87E9FF;
    background: #E6FCFF;
    color: #0b9ed9;
    font-size: 12px;
    margin-left: 8px;
}
.service-capacity-box .grid-cols-3 .card-box .content-box .address {
    color: #052633a6;
    font-size: 14px;
    margin-top: 4px;
}
.service-capacity-box .grid-cols-3 .card-box .content-box .sub-txt {
    color: #052633a6;
    font-size: 14px;
    text-align: left;
    margin-top: 16px;
}

.service-capacity-box .grid-cols-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.service-capacity-box .grid-cols-4 .card-box {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    background: #FFF;
    box-shadow: 0 0 6px 0 #00609033;
}
.service-capacity-box .grid-cols-4 .card-box .img-box {
    width: 100%;
    height: 256px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}
.service-capacity-box .grid-cols-4 .card-box .img-box img {
    width: 100%;
    height: 100%;
}
.service-capacity-box .grid-cols-4 .card-box .content-box {
    padding: 16px;
}
.service-capacity-box .grid-cols-4 .card-box .content-box .txt-item {
    display: flex;
    height: 32px;padding: 0 8px;
    align-items: center;
    border-radius: 2px;
    background: #EBF5FA;
    margin-top: 4px;
    color: #052633a6;
    font-size: 14px;
}
.service-capacity-box .grid-cols-4 .card-box .content-box .txt-item img {
    width: 14px;
    height: 14px;
    margin-right: 4px;
}
.service-capacity-box .grid-cols-4 .card-box .content-box .title {
    display: flex;
    align-items: center;
    color: #052633d9;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    text-align: left;
}
.service-capacity-box .grid-cols-4 .card-box .content-box .industry-icon {
    display: flex;
    padding: 4px 8px;
    align-items: center;
    gap: 3px;
    border-radius: 12px;
    border: 1px solid #87E9FF;
    background: #E6FCFF;
    color: #0b9ed9;
    font-size: 12px;
    margin-left: 8px;
}
.service-capacity-box .grid-cols-4 .card-box .content-box .address {
    color: #052633a6;
    font-size: 14px;
    margin-top: 4px;
}
.service-capacity-box .grid-cols-4 .card-box .content-box .sub-txt {
    color: #052633a6;
    font-size: 14px;
    text-align: left;
    margin-top: 16px;
}

.service-capacity-box .cooper-partner-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-radius: 8px;
    background: #EBF5FA;
}
.service-capacity-box .cooper-partner-box .content-l {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.service-capacity-box .cooper-partner-box .content-l .title {
    color: #052633d9;
    font-size: 24px;
    font-weight: 600;
}
.service-capacity-box .cooper-partner-box .content-l .sub-txt {
    color: #052633a6;
    font-size: 16px;
    margin-top: 8px;
}
.service-capacity-box .cooper-partner-box .content-r {
    display: flex;
}
.service-capacity-box .cooper-partner-box .content-r .item {
    margin-left: 32px;
    text-align: center;
}
.service-capacity-box .cooper-partner-box .content-r .item .num {
    color: #0b9ed9;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}
.service-capacity-box .cooper-partner-box .content-r .item .txt {
    color: #052633a6;
    font-size: 14px;
}

/* 研发能力模块 */
.research-develop-capacity-wrap-box {
    display: flex;
    justify-content: center;
    background: #E9EFF2;
}
.research-develop-capacity-box {
    width: 1440px;
    padding: 100px 20px;
}
.research-develop-capacity-box .title {
    color: #052633;
    opacity: .95;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 1px;
}
.research-develop-capacity-box .subtitle-wrap {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}
.research-develop-capacity-box .subtitle {
    color: #052633;
    opacity: .7;
    text-align: center;
    font-size: 24px;
    line-height: 32px;
    max-width: 900px;
    margin: 8px 0 32px 0;
}
.research-develop-capacity-box .content-box {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.research-develop-capacity-box .content-box .content-l {
    flex: 1;
}
.research-develop-capacity-box .content-box .content-l .grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.research-develop-capacity-box .content-box .content-l .grid-cols-2 .card-box {
    padding: 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, #EBF5FA 0%, #E6FCFF 100%);
    border: 1px solid rgba(11, 158, 217, 0.2);
    transition: all 0.3s ease;
}
.research-develop-capacity-box .content-box .content-l .grid-cols-2 .card-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(11, 158, 217, 0.15);
    border-color: rgba(11, 158, 217, 0.3);
}
.research-develop-capacity-box .content-box .content-l .grid-cols-2 .tit {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.research-develop-capacity-box .content-box .content-l .grid-cols-2 .tit img {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}
.research-develop-capacity-box .content-box .content-l .grid-cols-2 .tit span {
    color: #052633;
    opacity: .95;
    font-size: 18px;
    font-weight: 600;
}
.research-develop-capacity-box .content-box .content-l .grid-cols-2 .desc {
    color: #052633a6;
    font-size: 14px;
    line-height: 22px;
}
.research-develop-capacity-box .content-box .content-r {
    flex: 1;
    min-width: 400px;
}
.research-develop-capacity-box .content-box .content-r .img-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s ease;
    height: 100%;
}
.research-develop-capacity-box .content-box .content-r .img-box:hover {
    transform: scale(1.02);
}
.research-develop-capacity-box .content-box .content-r .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 全球服务商模�?*/
.global-service-provider-box {
    width: 1440px;
    margin: 80px auto;
    padding: 0;
}
.global-service-provider-box .title {
    color: #052633;
    opacity: .95;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 1px;
}
.global-service-provider-box .subtitle {
    color: #052633;
    opacity: .7;
    text-align: center;
    font-size: 24px;
    margin: 16px 0 48px 0;
    line-height: 32px;
}
.global-service-provider-box .grid-cols-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    justify-items: center;
    margin: 0;
    padding: 0;
}
.global-service-provider-box .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 180px;
    margin: 0;
}
.global-service-provider-box .icon-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(11, 158, 217, 0.1);
    border-color: rgba(11, 158, 217, 0.2);
}
.global-service-provider-box .icon-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.global-service-provider-box .icon-box:hover img {
    transform: scale(1.05);
}
.global-service-provider-box .industry-best-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-radius: 8px;
    background: #EBF5FA;
    margin-top: 24px;
}
.global-service-provider-box .industry-best-box .content-l {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.global-service-provider-box .industry-best-box .content-l .title {
    color: #052633d9;
    font-size: 32px;
    font-weight: 600;
}
.global-service-provider-box .industry-best-box .content-l .sub-txt {
    color: #052633a6;
    font-size: 16px;
    margin-top: 8px;
}
.global-service-provider-box .industry-best-box .content-r {
    display: flex;
}
.global-service-provider-box .industry-best-box .content-r .item {
    margin-left: 32px;
    text-align: center;
}
.global-service-provider-box .industry-best-box .content-r .item .num {
    color: #0b9ed9;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}
.global-service-provider-box .industry-best-box .content-r .item .txt {
    color: #052633a6;
    font-size: 14px;
}


/* 页脚 */
/* 数字化转�?*/
.page-foot-box .digital-transform-box {
    width: 100%;
    height: 411px;
    padding: 80px 240px;
    background: linear-gradient(135deg, #165DFF 0%, #0A46D4 100%);
}

.page-foot-box .digital-transform-box .title {
    color: #ffffff;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
}
.page-foot-box .digital-transform-box .sub-tit {
    color: #ffffffcc;
    text-align: center;
    font-size: 24px;
    margin-top: 10px;
}
.page-foot-box .digital-transform-box .btn-group {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}
.page-foot-box .digital-transform-box .btn-group .btn {
    display: flex;
    width: 160px;
    height: 48px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #FFF;
    color: #ffffff;
    font-size: 16px;
}
.page-foot-box .digital-transform-box .btn-group .experience-btn {
    background-color: #fff;
    color: #20ade5;
    margin-right: 24px;
}
.page-foot-box .page-foot-main-box {
    display: flex;
    justify-content: space-between;
    padding: 80px 80px 38px 80px;
    background: #080C12;
}
.page-foot-box .copyright-wrap-box {
    padding: 0 80px 80px 80px;
    background: #080C12;
}
.page-foot-box .copyright-wrap-box .copyright-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    color: #6b7280;
    font-size: 14px;
    border-top: 1px solid #ffffff26;
}
.page-foot-box .page-foot-main-box .foot-menu-box {
    display: flex;
}
.page-foot-box .page-foot-main-box .logo-box .logo {
    width: 120px;
    height: 34px;
}
.page-foot-box .page-foot-main-box .logo-box .desc {
    color: #9ca3af;
    font-size: 16px;
    margin: 24px 0;
}
.page-foot-box .page-foot-main-box .logo-box .icon-box {
    display: flex;
    align-items: center;
}
.page-foot-box .page-foot-main-box .logo-box .icon-box .icon {
    position: relative;
    display: flex;
    width: 80px;
    min-height: 40px;
    justify-content: center;
    align-items: center;
    gap: 2px;
    align-self: stretch;
    border-radius: 8px;
    background: #ffffff1a;
    margin-right: 8px;
    cursor: pointer;
}
.page-foot-box .page-foot-main-box .logo-box .icon-box .icon .scan-box {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 40px;
    padding: 16px;
    border-radius: 8px;
    background: #1C2A40;
    box-shadow: 0 8px 16px -6px #1a253629, 0 12px 32px 0 #1a253614, 0 16px 56px 24px #1a253614;
}
.page-foot-box .page-foot-main-box .logo-box .icon-box .icon .scan-box img {
    width: 120px;
    height: 120px;
    margin: 8px 0;
}
.page-foot-box .page-foot-main-box .logo-box .icon-box .icon .scan-box .tit {
    align-self: stretch;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
}
.page-foot-box .page-foot-main-box .logo-box .icon-box .icon .scan-box .name {
    align-self: stretch;
    color: #ffffffa6;
    text-align: center;
    font-size: 14px;
    line-height: 14px;
}
.page-foot-box .page-foot-main-box .logo-box .icon-box .active {
    background: linear-gradient(180deg, #30b8e633 0%, #30B8E6 100%);
}
.page-foot-box .page-foot-main-box .logo-box .icon-box .active .scan-box {
    display: block;
}
.page-foot-box .page-foot-main-box .logo-box .icon-box .icon .footer-arrow-box {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
}
.page-foot-box .page-foot-main-box .logo-box .icon-box .icon .footer-arrow-box img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}
.page-foot-box .page-foot-main-box .logo-box .icon-box .icon:hover .footer-arrow-box img {
    transform: rotate(180deg);
}
.page-foot-box .page-foot-main-box .logo-box .icon-box .active .footer-arrow-box img {
    transform: rotate(180deg);
}
.page-foot-box .page-foot-main-box .logo-box .icon-box .icon .footer-arrow-box .arrow-up {
    display: none;
}
.page-foot-box .page-foot-main-box .logo-box .icon-box .icon img {
    width: 24px;
    height: 24px;
}
.page-foot-box .page-foot-main-box .logo-box .logo img {
    width: 100%;
    height: 100%;
}
.page-foot-box .page-foot-main-box .foot-menu-box dt a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}
.page-foot-box .page-foot-main-box .foot-menu-box a {
    display: inline-block;
    color: #ffffffa6;
    font-size: 16px;
    margin-bottom: 16px;
}
.page-foot-box .page-foot-main-box .foot-menu-box .txt {
    display: inline-block;
    color: #ffffffa6;
    font-size: 16px;
    width: 243px;
}
.page-foot-box .page-foot-main-box .foot-menu-box dd a:hover {
    color: #20ade5;
}

/* 常见问题模块 */
.common-questions-wrap-box {
    display: flex;
    justify-content: center;
    background-color: #E9EFF2;
}
.common-questions-box {
    width: 1440px;
    margin: 80px auto;
}
.common-questions-box .title {
    color: #052633;
    opacity: .85;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
}

.common-questions-box .subtitle {
    color: #052633;
    opacity: .65;
    text-align: center;
    font-size: 24px;
    margin: 8px 0 32px 0;
    line-height: 32px;
}
.common-questions-box .question-item .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #0526330d;
    background: #FFF;
    box-shadow: 0 0 6px 0 #00609033;
    color: #052633d9;
    font-size: 24px;
    font-weight: 700;
}
.common-questions-box .other-question-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #0526330d;
    background: #005EE5;
    box-shadow: 0 0 6px 0 #00609033;
    font-size: 16px;
}
.common-questions-box .other-question-item .question .tit {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.common-questions-box .other-question-item .other-question-btn-group {
    display: flex;
    align-items: center;
}
.common-questions-box .other-question-item .other-question-btn-group .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    padding: 16px;
    font-weight: 700;
}
.common-questions-box .other-question-item .other-question-btn-group .tel {
    background: #ffffff33;
    margin-right: 8px;
}
.common-questions-box .other-question-item .other-question-btn-group .service {
    background: #0DF;
}
.common-questions-box .question-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 20px;
    line-height: 1.6;
    background-color: #f8fafc;
    margin-bottom: 16px;
    transition:
            max-height 0.3s ease,
            padding 0.3s ease;
}
.common-questions-box .question-item.active .faq-answer {
    max-height: 200px;
    padding: 16px 20px 20px;
}
.common-questions-box .question-item .icon-arrow-down-box {
    transition: transform 0.3s ease;
}
.common-questions-box .question-item.active .icon-arrow-down-box {
    transform: rotate(180deg);
}
.common-questions-box .question-item.active .faq-question {
    border-radius: 8px 8px 0 0;
    border-bottom: none;
}

/* 客户案例 */
.customer-case-wrap-box {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.customer-case-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.customer-case-box .title {
    color: #052633;
    opacity: .95;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 8px;
}

.customer-case-box .subtitle {
    color: #052633;
    opacity: .65;
    text-align: center;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px;
}

.customer-case-tab-box {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.customer-case-tab {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.customer-case-tab:hover {
    color: #1890ff;
    border-color: #1890ff;
}

.customer-case-tab.active {
    background-color: #1890ff;
    color: #fff;
    border-color: #1890ff;
}

.customer-case-content-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.customer-case-main {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.left-content {
    flex: 1;
}

.right-content {
    flex: 1;
    min-width: 0;
}

.quote {
    margin-bottom: 32px;
    position: relative;
}

.quote-mark {
    font-size: 48px;
    color: #1890ff;
    position: absolute;
    top: -20px;
    left: -10px;
}

.quote-content {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
    padding-left: 30px;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 30px;
}

.quote-author .name {
    font-weight: 600;
    color: #333;
}

.quote-author .job {
    font-size: 14px;
    color: #666;
}

.stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 24px;
    font-weight: 600;
    color: #1890ff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.case-images {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.case-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-images:hover img {
    transform: scale(1.05);
}

.customer-case-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.nav-item {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background-color: #1890ff;
    transform: scale(1.2);
}

.nav-item.active {
    background-color: #1890ff;
    width: 20px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .customer-case-wrap-box {
        padding: 40px 0;
    }

    .customer-case-box .title {
        font-size: 28px;
        line-height: 36px;
    }

    .customer-case-box .subtitle {
        font-size: 16px;
        line-height: 24px;
        padding: 0 20px;
    }

    .customer-case-tab-box {
        gap: 12px;
    }

    .customer-case-content-box {
        padding: 20px;
    }

    .customer-case-main {
        flex-direction: column;
        gap: 24px;
    }

    .case-images {
        height: 200px;
    }

    .stats {
        flex-direction: column;
        gap: 12px;
    }

    .stat-item {
        min-width: auto;
    }
}



