/* 海报 */
.banner {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}

@keyframes bannerBreath {
    0% {
        transform: scale(1);
    }

    /* 10% {
        transform: scale(1);
    }

    90% {
        transform: scale(1.2);
    } */

    100% {
        transform: scale(1.2);
    }
}


.banner .banner-img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    animation: bannerBreath 2.5s ease-out infinite alternate;

}

.banner .banner-content {
    position: absolute;
    left: calc(50% - 720px);
    top: 246px;
    /* width: 100%;
    height: 100%; */
    width: 677px;
    text-align: center;
}

.banner .banner-content .banner-text {
    color: #ffffff;
    text-align: center;
}

.banner .banner-content .banner-text .slogan {
    font-weight: 700;
    font-size: 42px;
    line-height: 1.5em;
    letter-spacing: 30%;
}

.banner .banner-content .banner-text .title {
    font-weight: 700;
    font-size: 66px;
    line-height: 1.5em;
}


.banner .banner-content .banner-text .describe {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7em;
    margin-top: 14px;
}




/* 板块1 我们的服务 */
.plate-1 {
    background-color: #F3F5F7;
    padding-top: 60px;
    padding-bottom: 60px;
}

.plate-1 .service {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    margin-top: 40px;
}

.plate-1 .service .service-item {
    --bgColor: #CCE3FB;
    --titleColor: #0E1B59;
    --descColor: #1E3587;
    --titleBgColor1: #2C74FF;
    --titleBgColor2: #D3E7FC;


    height: 365px;
    border-radius: 10px;
    background-color: var(--bgColor);

    position: relative;
    transition: all 0.8s;
    overflow: hidden;

}



.plate-1 .service .service-item .bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.3;
    position: absolute;
    transition: all 0.8s;
}





.plate-1 .service .service-item .service-content {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    padding: 30px;
    padding-top: calc(30px + 133px);
    transition: all 0.8s;
}



.plate-1 .service .service-item .service-content .icon {
    width: 133px;
    height: 133px;
    object-fit: contain;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.8s;
}



.plate-1 .service .service-item .service-content .title {
    align-self: flex-start;
    font-weight: 700;
    font-size: 24px;
    line-height: 1em;
    color: var(--titleColor);
    margin-top: 20px;
    position: relative;
    transition: all 0.8s;
}



.plate-1 .service .service-item .service-content .title::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    right: -6px;
    top: -6px;
    background-image: linear-gradient(217.78deg, var(--titleBgColor1) 0%, var(--titleBgColor2) 62.86%);
    /* transform: rotate(0deg); */
    transform: rotate3d(0, 0, 0, 0deg);
    transform-origin: center center;
    transition: all 0.8s;
}



.plate-1 .service .service-item .service-content .title .text {
    position: relative;
}

.plate-1 .service .service-item .service-content .description {
    font-size: 14px;
    line-height: 1.7em;
    color: var(--descColor);
    margin-top: 26px;
    transition: all 0.8s;
    text-align: justify;
}





/* 板块4 收费标准 */
.plate-2 {
    background-color: #F3F5F7;
    padding-top: 60px;
    padding-bottom: 80px;
}

.plate-2 .cooperationMode {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin-top: 40px;
}

.plate-2 .cooperationMode .cooperationMode-item {}

.plate-2 .cooperationMode .cooperationMode-item .content {
    width: 100%;
    height: 270px;
    box-sizing: border-box;
    border-top-left-radius: 140px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: #FFFFFF;
    overflow: hidden;
    padding: 40px 46px 0;
}

.plate-2 .cooperationMode .cooperationMode-item .content .title {
    text-align: center;

    font-weight: 700;
    font-size: 24px;
    line-height: 1em;

}

.plate-2 .cooperationMode .cooperationMode-item .content .icon-box {
    text-align: center;
    margin-top: 20px;
}

.plate-2 .cooperationMode .cooperationMode-item .content .icon-box .icon {
    width: 25px;
    height: 18px;
    object-fit: contain;
}

.plate-2 .cooperationMode .cooperationMode-item .content .description {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.7em;
    color: #666666;
    text-align: justify;
}

.plate-2 .cooperationMode .cooperationMode-item .content .description .money {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.plate-2 .cooperationMode .cooperationMode-item .content .description .label {
    font-weight: 700;
    color: #000000;
}


.plate-2 .cooperationMode .cooperationMode-item .image-box {
    width: 100%;
    height: 250px;
    margin-top: 12px;

    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 140px;
    border-bottom-left-radius: 10px;
    overflow: hidden;

}

.plate-2 .cooperationMode .cooperationMode-item .image-box .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s;
    transform-origin: center center;
}



/* 板块3 出海行业 */

.plate-3 {
    background-color: #F3F5F7;
    padding-top: 40px;
    padding-bottom: 80px;
    max-width: 1920px;
    margin: 0 auto;
}

.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;
}

/* 板块4 关于我们 */
.plate-4 {
    background-color: #ffffff;
    padding-top: 60px;
    padding-bottom: 80px;
}

.plate-4 .title-description {
    font-size: 18px;
    line-height: 1.7em;
    text-align: center;
    color: #666666;
    margin: 20px auto 0;
}

.plate-4 .aboutUs {
    margin-top: 80px;
}

.plate-4 .aboutUs {
    display: flex;
    background-color: #F3F5F7;
    border-radius: 10px;
    box-sizing: border-box;
    padding-right: 670px;
    position: relative;
    padding-top: 18px;
    padding-bottom: 18px;
}

.plate-4 .aboutUs .info {
    flex: 1;
    padding: 10px 60px;
}

.plate-4 .aboutUs .info .description {
    font-size: 14px;
    line-height: 1.7em;
}

.plate-4 .aboutUs .info .title {
    font-weight: 700;
    font-size: 34px;
    line-height: 2.1em;
    letter-spacing: 10%;
    color: #2C74FF;
    margin-top: 8px;
    margin-bottom: 8px;
}

.plate-4 .aboutUs .info .contact-info {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.8em;
    letter-spacing: 0%;
    color: #333333;
}



.plate-4 .aboutUs .image-box {
    width: 670px;
    height: 480px;
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.plate-4 .aboutUs .image-box .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}



.plate-4 .contactUs-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 80px;
}

.plate-4 .contactUs-list .item {
    flex: 1;
    box-sizing: border-box;
    padding: 0 39px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid rgba(0, 0, 0, 0.14);
}

.plate-4 .contactUs-list .item:first-child {
    padding-left: 0;
}

.plate-4 .contactUs-list .item:last-child {
    padding-right: 0;
    border-right: none;
}

.plate-4 .contactUs-list .item .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s;
}

.plate-4 .contactUs-list .item .icon-box .icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.plate-4 .contactUs-list .item .icon-box .icon.active {
    opacity: 0;
}

.plate-4 .contactUs-list .item .icon-box::before {
    content: "";
    width: 0%;
    height: 0%;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000000;
    transition: all 0.3s ease 0s;
    opacity: 0.8;
}




.plate-4 .contactUs-list .item .name {
    font-weight: 700;
    font-size: 24px;
    line-height: 170%;
    margin-top: 10px;
}

.plate-4 .contactUs-list .item .description {
    font-size: 14px;
    line-height: 170%;
    text-align: center;
    color: #666666;
    letter-spacing: 0%;
    margin-top: 10px;

}


@media screen and (min-width: 768px) {
    /* 只有在屏幕宽度 >= 768px 时才启用以下样式 */

    .plate-1 .service .service-item:hover {
        background-color: var(--titleBgColor1);
    }

    .plate-1 .service .service-item:hover .bg {
        opacity: 0.12;
    }

    .plate-1 .service .service-item:hover .service-content {
        padding-top: 100px;
    }

    .plate-1 .service .service-item:hover .service-content .icon {
        opacity: 0;
    }

    .plate-1 .service .service-item:hover .service-content .title {
        color: #ffffff;
    }

    .plate-1 .service .service-item:hover .service-content .title::before {
        background-image: linear-gradient(37.78deg, #FFFFFF 0%, var(--titleBgColor1) 62.86%);
        /* transform: rotate(540deg); */
        transform: rotate3d(1, 1, 0, 180deg);
    }

    .plate-1 .service .service-item:hover .service-content .description {
        color: #ffffff;
    }

    .plate-2 .cooperationMode .cooperationMode-item .image-box:hover .image {
        transform: scale(1.2);
    }

    .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%);
    }

    .plate-4 .aboutUs .image-box:hover .image {
        transform: scale(1.2);
    }

    .plate-4 .contactUs-list .item:hover .icon-box::before {
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    .plate-4 .contactUs-list .item:hover .icon-box .icon {
        opacity: 0;
    }

    .plate-4 .contactUs-list .item:hover .icon-box .icon.active {
        opacity: 1;
    }
}



/* 屏幕小于 1560px */
@media screen and (max-width: 1560px) {}


/* 屏幕小于 1375px */
@media screen and (max-width: 1375px) {
    .plate-1 .service {
        grid-template-columns: repeat(2, 1fr);
    }

    .plate-2 .cooperationMode {
        grid-template-columns: repeat(1, 1fr);
    }

    .plate-4 .aboutUs {
        flex-direction: column-reverse;
        padding-right: 0;
        padding-top: 0;
    }

    .plate-4 .aboutUs .image-box {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        transform: translateY(0%);
        height: fit-content;
    }

    .plate-4 .aboutUs .info {
        text-align: center;
    }

    .plate-4 .aboutUs .info .description {
        text-align: left;
    }
}


/* 手机 版心 */
@media screen and (max-width: 768px) {
    .banner .banner-img {
        /* height: calc(100vh - 60px); */
        height: 630px;
        object-position: 55% bottom;
    }

    .banner .banner-content {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .banner .banner-content .banner-text {
        padding-bottom: 184px;
    }

    .banner .banner-content .banner-text .slogan {
        font-size: 26px;
        text-align: center;
        line-height: 1.5em;
    }

    .banner .banner-content .banner-text .title {
        font-size: 40px;
        text-align: center;
        line-height: 1.5em;

    }

    .banner .banner-content .banner-text .describe {
        font-size: 14px;
        margin-top: 8px;
        line-height: 1.7em;

    }

    .plate-1 {
        padding-top: 10px;
        padding-bottom: 40px;
    }

    .plate-1 .service {
        /* grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px; */
        display: flex;
        flex-direction: column;
        grid-gap: 15px;
    }

    .plate-1 .service .service-item {
        height: max-content;
        /* min-height: 223px; */
        min-height: fit-content;
        height: fit-content;
    }


    .plate-1 .service .service-item .service-content {
        padding: 15px 20px;
        padding-top: calc(5px + 85px);
    }



    .plate-1 .service .service-item .service-content .icon {
        width: 85px;
        height: 85px;
        margin-top: -5px;
        top: 10px;
    }

    .plate-1 .service .service-item .service-content .title {
        margin-top: 0;
        font-size: 20px;
    }

    .plate-1 .service .service-item .service-content .description {
        margin-top: 10px;
    }

    .plate-2 {
        padding-top: 10px;
        padding-bottom: 40px;
    }

    .plate-2 .common-reason-title .name-box .code {
        font-size: 46px;
    }

    .plate-2 .cooperationMode .cooperationMode-item .content {
        height: fit-content;
        border-top-left-radius: 100px;
        padding: 20px 14px;
    }

    .plate-2 .cooperationMode .cooperationMode-item .content .title {
        font-size: 20px;
    }

    .plate-2 .cooperationMode .cooperationMode-item .content .icon-box {
        margin-top: 10px;
    }

    .plate-2 .cooperationMode .cooperationMode-item .content .description {
        font-size: 14px;
    }

    .plate-2 .cooperationMode .cooperationMode-item .content .description .money {
        font-size: 22px;
    }

    .plate-2 .cooperationMode .cooperationMode-item .content .description .label {
        display: block;
    }

    .plate-2 .cooperationMode .cooperationMode-item .image-box {
        height: 180px;
        border-bottom-right-radius: 100px;
    }

    .plate-3 {
        padding-top: 10px;
        padding-bottom: 40px;
    }

    .plate-3 .industry {
        margin-top: 20px;
    }

    .plate-3 .industry .scrollBox .list .item {
        width: 182px;
        height: 182px;
    }

    .plate-4 {
        padding-top: 40px;
    }

    .plate-4 .wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .plate-4 .title-description {
        font-size: 16px;
        margin-left: 16px;
        margin-right: 16px;
    }

    .plate-4 .aboutUs {
        margin-top: 20px;
    }

    .plate-4 .aboutUs .info {
        padding: 20px;
    }


    .plate-4 .aboutUs .info .title {
        font-size: 30px;
    }

    .plate-4 .aboutUs .info .contact-info {
        font-size: 14px;
    }

    .plate-4 .contactUs-list {
        margin-top: 0;
        grid-template-columns: repeat(1, 1fr);
    }

    .plate-4 .contactUs-list .item {
        padding: 0;
        margin-top: 20px;
        border: none;
    }

    .plate-4 .contactUs-list .item .icon-box {
        width: 50px;
        height: 50px;
    }

    .plate-4 .contactUs-list .item .icon-box .icon {
        width: 30px;
        height: 30px;
    }

    .plate-4 .contactUs-list .item .name {
        font-size: 20px;
        margin-top: 4px;
    }

    .plate-4 .contactUs-list .item .description {
        font-size: 14px;
        margin-top: 4px;
    }
}

/* 小屏手机 */
@media screen and (max-width: 360px) {}


.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;
}