/* banner — Figma: 2835:140 桌面 / 2836:146 手机 */
.banner {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    aspect-ratio: 1920 / 900;
}

.banner .banner-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner .banner-content {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 180px 180px 216px;
}

.banner .banner-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.banner .banner-text .slogan {
    margin: 0;
    font-family: "Microsoft YaHei", sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.banner .banner-text .title {
    margin: 0;
    font-family: "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
    font-weight: 700;
    font-size: 66px;
    line-height: 1.5;
    color: #ffffff;
}

.banner .banner-text .describe {
    margin: 0;
    max-width: 42em;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    .banner {
        aspect-ratio: 375 / 630;
        max-width: none;
    }

    .banner .banner-content {
        align-items: center;
        padding: 186px 16px 0px;
        justify-content: flex-start;
    }

    .banner .banner-text {
        align-items: center;
        text-align: center;
        gap: 4px;
    }

    .banner .banner-text .slogan {
        font-size: 18px;
        line-height: 1.5;
        letter-spacing: 0.05em;
    }

    .banner .banner-text .title {
        font-size: 34px;
        line-height: 1.5;
    }

    .banner .banner-text .describe {
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 0.04em;
    }
}







/* —— 服务项目 / 适配出海 / 服务套餐（参照 Figma 0409 稿量与间距） —— */
.gjz-plate {
    background-color: #F8F9FB;
}

.gjz-plate-inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 clamp(16px, 12vw, 240px);
    box-sizing: border-box;
}

.gjz-surface {
    background: #ffffff;
    border-radius: 10px;
    padding: 80px 0 100px;
    box-sizing: border-box;
}

.gjz-section-title-wrap {
    margin-bottom: 60px;
}

/* 服务项目：外层底图 + 内层白卡片（Figma 8-319 / 149-1067） */
.gjz-plate.gjz-services {
    background-color: #ffffff;
    background-image: url("/img/gjzqsb/gjz-servicese-bg.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.gjz-services-plate-inner {
    padding-top: 0;
    padding-bottom: 0;
}

.gjz-surface--services {
    margin-top: 0;
    padding: 80px 0 100px;
}

.gjz-services-title-block {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 20px; */
}

.gjz-services-line {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: #0e59f0;
}

.gjz-services-rows {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.gjz-services-row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 20px;
    width: 100%;
}



.gjz-services-item {
    flex: 1 1 0;
    min-width: 0;
    border-radius: 10px;
    padding: 28px 20px;
    box-sizing: border-box;
    background: #ffffff;
    border: 7px solid;
    border-color: #ffffff;
    box-shadow: 0 4px 20px rgba(15, 25, 40, 0.06);
    transition: all 0.5s;
    position: relative;
    min-height: 266px;
}

.gjz-services-item::after {
    content: '';
    position: absolute;
    width: calc(100% + 14px);
    height: calc(100% + 14px);
    left: -7px;
    top: -7px;
    border-radius: 10px;
    background: transparent;
    transition: all 0.5s;
    z-index: 0;
}

.gjz-services-item-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    opacity: 1;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}

.gjz-services-item-title {
    margin: 0 0 12px;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.45;
    color: #111111;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}

.gjz-services-item-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #666666;
    transition: all 0.5s;
    position: relative;
    z-index: 1;
}


.gjz-services-item--t1 {
    background: linear-gradient(-67deg, #ffffff 0%, #e9f3ff 100%);
    --hover-color: #0E59F0;
}

.gjz-services-item--t2 {
    background: linear-gradient(-67deg, #ffffff 0%, #ffedea 100%);
    --hover-color: #FF2C2C;
}

.gjz-services-item--t3 {
    background: linear-gradient(-67deg, #ffffff 0%, #e9ffeb 100%);
    --hover-color: #00B42A;
}

.gjz-services-item--t4 {
    background: linear-gradient(-67deg, #ffffff 0%, #fffcec 100%);
    --hover-color: #FFA91D;
}

.gjz-services-item--t5 {
    background: linear-gradient(-67deg, #ffffff 0%, #f9e8da 100%);
    --hover-color: #FF7700;
}

.gjz-services-item--t6 {
    background: linear-gradient(-67deg, #ffffff 0%, #f5e9ff 100%);
    --hover-color: #6437BF;
}

.gjz-services-item--t7 {
    background: linear-gradient(-67deg, #ffffff 0%, #fffcea 100%);
    --hover-color: #EEDA00;
}

.gjz-services-item--t8 {
    background: linear-gradient(-67deg, #ffffff 0%, #fbeaff 100%);
    --hover-color: #DA47FF;
}


/* 移动端：标题字号/间距/渐变；卡片栅格（PC 隐藏）与轮播轨共用样式 */
@media screen and (max-width: 768px) {
    .gjz-plate-inner {
        padding: 0 16px;
    }

    .gjz-surface--services {
        padding: 80px 0 0px;
    }

    .gjz-services-title-block {
        margin-bottom: 0px;
        /* gap: 20px; */
    }

    #services .gjz-services-common-title {
        width: 100%;
    }

    /* 覆盖页面内联大标题，对齐稿：Service 54px / 服务项目 30px */
    #services .gjz-services-common-title.common-reason-title {
        padding: 0 0 30px;
    }

    #services .gjz-services-common-title .name-box .code {
        font-size: 54px;
        line-height: 1;
        font-style: italic;
    }

    #services .gjz-services-common-title .name-box .name {
        font-size: 30px;
        line-height: 1;
    }

    #services .gjz-services-common-title .name-box .name .color-blue {
        color: #0e59f0;
    }

    #services .gjz-services-common-title .name-box .name span:not(.color-blue) {
        color: #4e5969;
    }

    .gjz-services-line {
        border-radius: 20px;
    }

    .gjz-services-rows {
        gap: 10px;
        padding: 0;
    }

    .gjz-services-row {
        flex-direction: column;
        gap: 10px;
    }

    .gjz-services-rows .gjz-services-item,
    #services .gjz-services-swiper .gjz-services-item {
        padding: 24px 26px;
        border: 5px solid #ffffff;
        border-radius: 10px;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .gjz-services-rows .gjz-services-item {
        flex: 1 1 auto;
        min-width: 0;
        width: 100%;
        height: fit-content;
        min-height: fit-content;
    }

    .gjz-services-item-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 10px;
    }

    .gjz-services-item-title {
        margin: 0 0 20px;
        font-size: 18px;
        line-height: 1;
        font-weight: 700;
        color: #4e5969;
    }

    .gjz-services-item-desc {
        font-size: 14px;
        line-height: 1.7;
        color: #4e5969;
        text-align: justify;
    }

    .gjz-services-item--t1 {
        background: linear-gradient(-58.66deg, #ffffff 13.005%, #e9f3ff 97.839%);
    }

    .gjz-services-item--t2 {
        background: linear-gradient(-61.49deg, #ffffff 13.005%, #ffedea 97.839%);
    }

    .gjz-services-item--t3 {
        background: linear-gradient(-58.66deg, #ffffff 13.005%, #e9ffeb 97.839%);
    }

    .gjz-services-item--t4 {
        background: linear-gradient(-61.49deg, #ffffff 13.005%, #fffce9 97.839%);
    }

    .gjz-services-item--t5 {
        background: linear-gradient(-58.66deg, #ffffff 13.005%, #f9e8da 97.839%);
    }

    .gjz-services-item--t6 {
        background: linear-gradient(-61.49deg, #ffffff 13.005%, #f5e9ff 97.839%);
    }

    .gjz-services-item--t7 {
        background: linear-gradient(-58.66deg, #ffffff 13.005%, #fffcea 97.839%);
    }

    .gjz-services-item--t8 {
        background: linear-gradient(-58.66deg, #ffffff 13.005%, #fbeaff 97.839%);
    }

    /* 服务项目 · 手机 Swiper 轮播 */
    .gjz-services-carousel {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    #services .gjz-services-swiper {
        width: 100%;
        margin: 0 -36px;
        padding: 30px 36px 60px;
        box-sizing: content-box;
        overflow: visible;
    }

    #services .gjz-services-swiper .swiper-wrapper {
        align-items: stretch;
    }

    #services .gjz-services-swiper .swiper-slide {
        width: calc(100vw - 72px);
        height: auto;
        display: flex;
        box-sizing: border-box;
    }

    #services .gjz-services-swiper .swiper-slide .gjz-services-item {
        width: 100%;
        flex: 1 1 auto;
        min-height: 0;
    }

    /* 轮播内卡片等高：正文区占满剩余高度 */
    #services .gjz-services-swiper .gjz-services-item .gjz-services-item-desc {
        flex: 1 1 auto;
        min-height: 0;
    }
}

/* —— 为什么选择我们 Figma 6:460 / 6:754 —— */
.gjz-plate.gjz-why {
    position: relative;
    overflow: hidden;
    background-color: #f8f9fb;
}

.gjz-why-decor {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.gjz-why-decor img {
    position: absolute;
    left: 0;
    top: 57.69%;
    width: 100%;
    height: 42.32%;
    object-fit: cover;
    object-position: top center;
}

.gjz-why-plate-inner {
    position: relative;
    z-index: 1;
}

.gjz-surface--why {
    padding: 80px 0 100px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.gjz-why-title-block {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 20px; */
}

.gjz-why-line {
    width: 60px;
    height: 4px;
    border-radius: 20px;
    background: #0e59f0;
}

.gjz-why-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.gjz-why-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    min-height: 450px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(78, 89, 105, 0.3);
    box-sizing: border-box;
}

.gjz-why-card:hover {
    box-shadow: none;
}

.gjz-why-card-main {
    flex: 0 0 610px;
    max-width: 610px;
    padding: 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}

.gjz-why-card-lead {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.gjz-why-card-icon {
    display: block;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.gjz-why-card-heading {
    margin: 0;
    font-family: "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #4e5969;
}

.gjz-why-card-desc {
    margin: 0;
    font-family: "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #4e5969;
    text-align: justify;
}

.gjz-why-card-media {
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    align-self: stretch;
}

.gjz-why-card-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gjz-why-stats {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
}

.gjz-why-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 209px;
    max-width: 100%;
    text-align: center;
}

.gjz-why-stat-num {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: nowrap;
    height: 68px;
    color: #0e59f0;
    line-height: 1;
}

.gjz-why-stat-value {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 58px;
}

.gjz-why-stat-unit {
    font-family: "PingFang TC", "Microsoft YaHei", sans-serif;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.8px;
    padding-bottom: 10px;
}

.gjz-why-stat-unit--plus {
    padding-bottom: 6px;
}

.gjz-why-stat-label {
    margin: 0;
    font-family: "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.8px;
    color: #4e5969;
}

#why-us .gjz-why-common-title .name-box .name .color-blue {
    color: #0e59f0;
}

@media screen and (max-width: 768px) {
    .gjz-why-decor img {
        left: -101.44%;
        top: 71.59%;
        width: 291.14%;
        height: auto;
        min-height: 23.63%;
        object-fit: cover;
    }

    .gjz-surface--why {
        padding: 80px 0 40px;
    }

    .gjz-why-title-block {
        margin-bottom: 50px;
        /* gap: 20px; */
    }

    #why-us .gjz-why-common-title.common-reason-title {
        padding: 0 0 30px;
    }

    #why-us .gjz-why-common-title .name-box .code {
        font-size: 54px;
        line-height: 1;
        font-style: italic;
    }

    #why-us .gjz-why-common-title .name-box .name {
        font-size: 30px;
        line-height: 1;
        width: 100%;
    }

    #why-us .gjz-why-common-title .name-box .name .color-blue {
        color: #0e59f0;
    }

    #why-us .gjz-why-common-title .name-box .name span:not(.color-blue) {
        color: #4e5969;
    }

    .gjz-why-line {
        border-radius: 20px;
    }

    .gjz-why-content {
        gap: 50px;
    }

    .gjz-why-card {
        flex-direction: column;
        min-height: 0;
        box-shadow: 0 14px 40px rgba(78, 89, 105, 0.2);
    }

    .gjz-why-card-media {
        flex: none;
        order: -1;
        height: 190px;
        width: 100%;
        align-self: stretch;
    }

    .gjz-why-card-main {
        flex: none;
        max-width: none;
        width: 100%;
        padding: 20px 30px 30px;
        gap: 20px;
    }

    .gjz-why-card-lead {
        align-items: center;
        width: 100%;
    }

    .gjz-why-card-heading {
        font-size: 18px;
        text-align: center;
    }

    .gjz-why-card-desc {
        font-size: 14px;
        line-height: 1.7;
    }

    .gjz-why-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 0;
    }

    .gjz-why-stat {
        width: auto;
    }

    .gjz-why-stat-num {
        height: 40px;
    }

    .gjz-why-stat-value {
        font-size: 40px;
    }

    .gjz-why-stat-unit {
        font-size: 14px;
        padding-bottom: 4px;
    }

    .gjz-why-stat-unit--plus {
        font-size: 20px;
        padding-bottom: 2px;
    }

    .gjz-why-stat-label {
        font-size: 14px;
        letter-spacing: 0.56px;
    }
}

/* —— 适配全类型出海企业 Figma 6:495 / 6:801 —— */
.gjz-adapt {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gjz-adapt-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.gjz-adapt-bg img,
.gjz-adapt-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gjz-adapt-inner {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: 100%;
    /* max-width: 1040px; */
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    color: #ffffff;
    line-height: 1.49;
}

.gjz-adapt-title {
    margin: 0;
    width: 100%;
    font-family: "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.49;
    letter-spacing: 1.68px;
    color: #ffffff;
}

.gjz-adapt-desc {
    margin: 0;
    width: 100%;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.49;
    letter-spacing: 0.8px;
    color: #ffffff;
}


/* 平板断点：服务卡两列；与手机端 768 样式分离，避免后者被本段覆盖 */
@media screen and (max-width: 1200px) and (min-width: 769px) {
    .gjz-services-row {
        flex-wrap: wrap;
    }

    .gjz-services-item {
        flex: 1 1 calc(50% - 10px);
        min-width: 240px;
    }
}

@media screen and (max-width: 768px) {
    .gjz-surface:not(.gjz-surface--services):not(.gjz-surface--why) {
        padding: 60px 0;
    }

    .gjz-section-title-wrap {
        margin-bottom: 30px;
    }

    .gjz-adapt {
        min-height: 230px;
    }

    .gjz-adapt-inner {
        max-width: 375px;
        padding: 0 30px;
        gap: 10px;
    }

    .gjz-adapt-title {
        font-size: 30px;
        letter-spacing: 1.2px;
        text-align: center;
    }

    .gjz-adapt-desc {
        font-size: 14px;
        letter-spacing: 0.56px;
        text-align: justify;
    }
}

/* —— 服务套餐轮播 Figma 6:500 / 6:806 —— */
.gjz-plate.gjz-packages {
    position: relative;
    overflow: hidden;
    background-color: #f8f9fb;
}

.gjz-packages-decor {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.gjz-packages-decor img {
    position: absolute;
    left: -13.36%;
    top: 22.4%;
    width: 126.72%;
    height: 55.24%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.gjz-packages-inner {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 100px;
    box-sizing: border-box;
}

.gjz-packages-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 20px; */
    margin-bottom: 60px;
}

.gjz-packages-title-wrap {
    margin-bottom: 0;
}

.gjz-packages-line {
    width: 60px;
    height: 4px;
    border-radius: 20px;
    background: #0e59f0;
}

#packages .gjz-packages-common-title .name-box .name .color-blue {
    color: #0e59f0;
}

#packages .gjz-packages-common-title .name-box .name span:not(.color-blue) {
    color: #000000;
}

.gjz-packages-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.gjz-packages-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gjz-packages-viewport::-webkit-scrollbar {
    display: none;
}

.gjz-packages-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    width: max-content;
    max-width: none;
    margin: 0 auto;
    box-sizing: border-box;
}

.gjz-package-card {
    position: relative;
    flex: 0 0 auto;
    width: 272px;
    height: 540px;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
    scroll-snap-align: center;
    transition: all 0.5s;
}

.gjz-package-card-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 10px;
    overflow: hidden;
}

.gjz-package-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.gjz-package-card-media--tall .gjz-package-card-img {
    height: 115%;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    margin-top: -6%;
}

.gjz-package-card-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 10px;
    transition: all 0.5s;
}

.gjz-package-card--p1 .gjz-package-card-overlay {
    background: linear-gradient(180deg, rgba(25, 63, 138, 0.8) 15.221%, rgba(25, 63, 138, 0) 67.123%);
    --hover-color: rgba(25, 63, 138, 0.8);
}

.gjz-package-card--p2 .gjz-package-card-overlay {
    background: linear-gradient(180deg, rgba(122, 171, 199, 0.8) 15.221%, rgba(122, 171, 199, 0) 63.342%);
    --hover-color: rgba(122, 171, 199, 0.9);
}

.gjz-package-card-overlay--p3 {
    background: linear-gradient(180deg, rgba(70, 130, 200, 0.5) 0%, rgba(255, 255, 255, 0) 60%);
    --hover-color: rgba(96, 160, 222, 0.9);
}

.gjz-package-card--p4 .gjz-package-card-overlay {
    background: linear-gradient(180deg, rgba(3, 86, 224, 0.8) 15.221%, rgba(3, 86, 224, 0) 63.342%);
    --hover-color: rgba(3, 86, 224, 0.8);
}

.gjz-package-card--p5 .gjz-package-card-overlay {
    background: linear-gradient(180deg, rgba(183, 126, 244, 0.8) 15.221%, rgba(183, 126, 244, 0) 63.342%);
    --hover-color: rgba(183, 126, 244, 0.8);
}

.gjz-package-card-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    height: 100%;
    padding: 40px 30px;
    box-sizing: border-box;
}

.gjz-package-card-name {
    margin: 0;
    font-family: "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
}

.gjz-package-card-rule {
    width: 30px;
    height: 2px;
    background: #ffffff;
    flex-shrink: 0;
}

.gjz-package-card-price {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    line-height: 1;
}


.gjz-package-card-desc-wrap {
    color: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    position: relative;
    transition: all 0.5s;
}

.gjz-package-card-desc {
    /* width: 100%; */
    width: 252px;
    font-size: 13px;
    line-height: 1.7em;
    flex: 1;
}

.gjz-package-card-desc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    height: 38px;
    width: fit-content;
    border-radius: 19px;
    color: #4E5969;
    padding: 0 30px;
    gap: 8px;
    cursor: pointer;

}

.gjz-package-card-desc-btn-text {
    font-size: 14px;
    line-height: 1;
}

.gjz-package-card-desc-btn-icon {
    width: 15px;
    height: 4px;
    object-fit: contain;
}



/* 屏幕大于768px时，hover效果 */
@media screen and (min-width: 769px) {


    .gjz-services-item:hover {
        position: relative;
    }

    .gjz-services-item:hover::after {
        background: var(--hover-color);
    }

    .gjz-services-item:hover .gjz-services-item-icon {
        width: 0;
        height: 0;
        opacity: 0;
    }

    .gjz-services-item:hover .gjz-services-item-title {
        color: #ffffff;
        font-size: 30px;
        width: fit-content;
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .gjz-services-item:hover .gjz-services-item-desc {
        color: #ffffff;
    }


    .gjz-package-card:hover {
        width: 312px;
    }



    .gjz-package-card:hover .gjz-package-card-overlay {
        background: var(--hover-color);
    }

    .gjz-package-card:hover .gjz-package-card-desc-wrap {
        opacity: 1;
    }
}


.gjz-package-card:hover .gjz-package-card-overlay {
    background: var(--hover-color);
}

.gjz-package-card:hover .gjz-package-card-desc-wrap {
    opacity: 1;
}

/* .gjz-package-card.active .gjz-package-card-overlay {
    background: var(--hover-color);
}

.gjz-package-card.active .gjz-package-card-desc-wrap {
    opacity: 1;
} */



.gjz-package-currency {
    font-family: "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    padding-bottom: 8px;
}

.gjz-package-amount {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #ffffff;
}

.gjz-package-meta {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 2px;
    padding-bottom: 6px;
}

.gjz-package-slash {
    font-family: "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
    font-size: 14px;
    color: #ffffff;
    line-height: 1;
    /* transform: rotate(20deg); */
    transform-origin: center bottom;
    display: inline-block;
    margin-right: 1px;
}

.gjz-package-unit {
    font-family: "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    white-space: nowrap;
}

.gjz-packages-nav {
    display: none;
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #0e59f0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(15, 25, 40, 0.12);
    transition: background 0.2s ease, transform 0.2s ease;
}

.gjz-packages-nav:hover {
    background: #ffffff;
    transform: scale(1.05);
}

.gjz-packages-nav--prev {
    left: 0;
}

.gjz-packages-nav--next {
    right: 0;
}

.gjz-packages-dots {
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.gjz-packages-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(14, 89, 240, 0.25);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gjz-packages-dot.is-active {
    background: #0e59f0;
    transform: scale(1.15);
}

@media screen and (min-width: 769px) and (max-width: 1439px) {
    .gjz-packages-nav {
        display: flex;
    }

    .gjz-packages-carousel {
        padding: 0 48px;
    }

    .gjz-packages-viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
}

@media screen and (min-width: 1440px) {
    .gjz-packages-viewport {
        overflow: visible;
    }

    .gjz-packages-track {
        justify-content: center;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .gjz-packages-inner {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .gjz-packages-head {
        margin-bottom: 30px;
        /* gap: 20px; */
    }

    #packages .gjz-packages-common-title.common-reason-title {
        padding: 0 0 30px;
    }

    #packages .gjz-packages-common-title .name-box .code {
        font-size: 54px;
        line-height: 1;
        font-style: italic;
    }

    #packages .gjz-packages-common-title .name-box .name {
        font-size: 30px;
        line-height: 1;
    }

    #packages .gjz-packages-common-title .name-box .name .color-blue {
        color: #0e59f0;
    }

    #packages .gjz-packages-common-title .name-box .name span:not(.color-blue) {
        color: #000000;
    }

    .gjz-packages-line {
        border-radius: 20px;
    }

    .gjz-packages-carousel {
        padding: 0;
    }

    .gjz-packages-viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0;
        margin: 0 -16px;
        padding: 0 16px 4px;
    }

    .gjz-packages-track {
        gap: 12px;
        justify-content: flex-start;
        width: max-content;
        margin: 0;
        padding: 0 max(16px, calc(50vw - 136px));
        box-sizing: border-box;
    }

    .gjz-package-card {
        height: 480px;
    }

    .gjz-packages-dots {
        display: flex;
    }

    .gjz-packages-nav {
        display: none !important;
    }
}


/* 板块3 出海行业 */

.plate-3 {
    background-color: #F3F5F7;
    padding-top: 40px;
    padding-bottom: 80px;
    max-width: 1920px;
    margin: 0 auto;
}

.gjz-industry-line {
    width: 60px;
    height: 4px;
    border-radius: 20px;
    background: #0e59f0;
    margin: 0 auto;
    /* margin-top: 20px; */
}

.plate-3 .industry {
    margin-top: 48px;
}

.plate-3 .industry .scrollBox {
    width: 100%;
    /* height: 382px; */
    overflow: hidden;
}


.plate-3 .industry .scrollBox .list {
    display: flex;
    flex-wrap: nowrap;
    width: fit-content;
    /* transition: all 1ms; */
}

.plate-3 .industry .scrollBox .list .item {
    width: 376px;
    height: 382px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-right: 10px;
}

.plate-3 .industry .scrollBox .list .item .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.8s;
}



.plate-3 .industry .scrollBox .list .item .item-content {
    width: 100%;
    height: 100%;
    color: #ffffff;
    position: absolute;
    left: 0;
    bottom: 90px;
    transform: translateY(100%);
    background-image: linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, rgba(0, 0, 0, 0.5) 90px, rgba(0, 0, 0, 0.7) 100%);
    transition: all 0.8s;
    border-radius: 10px;

}



.plate-3 .industry .scrollBox .list .item .item-content .content-box {
    width: 100%;
    height: fit-content;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.8s;
}



.plate-3 .industry .scrollBox .list .item .item-content .name {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-weight: 700;
    line-height: 100%;
    box-sizing: border-box;
    padding: 0 20px 20px;
    padding: 0 20px;
    line-height: 1em;
    height: 90px;
    padding: 20px;
    position: relative;
    transition: all 0.8s;

}


.plate-3 .industry .scrollBox .list .item .item-content .name .text {
    font-size: 18px;
    position: absolute;
    left: 20px;
    transition: all 0.8s;
}


.plate-3 .industry .scrollBox .list .item .item-content .describe {
    font-size: 12px;
    line-height: 1.6em;
    padding: 20px 30px;
}

.plate-3 .industry .list-box-2 {
    margin-top: 10px;
}

@media screen and (min-width: 768px) {
    .plate-3 .industry .scrollBox .list .item:hover .bg {
        transform: scale(1.3);
    }

    .plate-3 .industry .scrollBox .list .item:hover .item-content {
        bottom: 100%;
        background-image: none;
        background-color: rgba(0, 0, 0, 0.7);

    }

    .plate-3 .industry .scrollBox .list .item:hover .item-content .content-box {
        top: 50%;
        transform: translateY(-50%);
    }

    .plate-3 .industry .scrollBox .list .item:hover .item-content .name {
        height: 30px;
        padding: 0;
    }

    .plate-3 .industry .scrollBox .list .item:hover .item-content .name .text {
        font-size: 30px;
        line-height: 30px;
        left: 50%;
        transform: translateX(-50%);
    }
}


@media screen and (max-width: 768px) {

    .plate-3 .industry {
        margin-top: 20px;
    }

    .plate-3 .industry .scrollBox .list .item {
        width: 182px;
        height: 182px;
    }
}



.modal-overlay {
    display: none;
}

.modal-box {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 900;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.modal-box .title {
    font-weight: 700;
    font-size: 30px;
    line-height: 1em;
    margin: 0 auto;
}

.modal-box .content {
    margin: 20px 30px 0;

    font-weight: 400;
    font-size: 14px;
    line-height: 1.7em;

    max-height: calc(90vh - 30px - 31px);
    overflow-y: auto;

}

.modal-box .close-box {
    width: 31px;
    height: 31px;
    margin: 20px auto 0;
}

.modal-box .close-box .icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}