.header {
    border-bottom: 1px solid rgba(220, 220, 220, 0.1);
}

.banner {
    height: 100vh;
}

.banner .wrap {
    height: 100%;
}

.banner .wrap .content {
    top: 425px;
}

.section1 .wrap .top {
    padding: 90px 0;
    background: linear-gradient(14deg, #173BB1, #2461ad);
}

.section1 .wrap .top .text {
    width: 1060px;
    margin: 0 auto;
}

.section1 .wrap .top .text p {
    font-size: 24px;
    line-height: 42px;
    color: #fff;
}

.section1 .wrap .top .text .signature {
    margin-top: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: right;
}

.section1 .wrap .bottom {
    padding-top: 120px;
    padding-bottom: 120px;
    width: 1400px;
    margin: 0 auto;
}

.section1 .wrap .bottom .title {
    margin-bottom: 50px;
}

.section1 .wrap .bottom .title h3 {
    color: #1a1a1a;
    font-size: 38px;
}

.section1 .wrap .bottom .main {
    border-top: 1px solid #F2F2F2;
}

.section1 .wrap .bottom .main .item {
    border-bottom: 1px solid #F2F2F2;
}

.section1 .wrap .bottom .main .item.active .head .text {
    font-size: 32px;
}

.section1 .wrap .bottom .main .item.active .head .right .add::after,
.section1 .wrap .bottom .main .item.active .head .right .add::before {
    background-color: #1B5BAE;
}

.section1 .wrap .bottom .main .item.active .head .right .add::after {
    transform: translate(-50%, -50%) rotate(360deg);
}

.section1 .wrap .bottom .main .item .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    cursor: pointer;
}

.section1 .wrap .bottom .main .item .head .text {
    color: #1a1a1a;
    font-size: 20px;
    transition: all 0.6s;
}

.section1 .wrap .bottom .main .item .head .right {
    display: flex;
    justify-content: space-between;
    width: 680px;
}

.section1 .wrap .bottom .main .item .head .right .num {
    color: #888888;
}

.section1 .wrap .bottom .main .item .head .right .add {
    width: 17px;
    height: 17px;
    position: relative;
}

.section1 .wrap .bottom .main .item .head .right .add::before,
.section1 .wrap .bottom .main .item .head .right .add::after {
    width: 100%;
    height: 1px;
    background-color: #D0D0D0;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s;
}

.section1 .wrap .bottom .main .item .head .right .add::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.section1 .wrap .bottom .main .item .body {
    display: none;
    padding-bottom: 78px;
}

.section1 .wrap .bottom .main .item .body .flex {
    justify-content: space-between;
    display: flex;
}

.section1 .wrap .bottom .main .item .body .flex .img {
    width: 640px;
    height: 360px;
    border-radius: 10px;
    overflow: hidden;
}

.section1 .wrap .bottom .main .item .body .flex .img img {
    width: 100%;
    height: 100%;
}

.section1 .wrap .bottom .main .item .body .flex .text {
    width: 680px;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 2;
}

.section2 .wrap {
    width: 1400px;
    margin: 0 auto;
    padding-bottom: 120px;
}

.section2 .wrap .title {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.section2 .wrap .title h3 {
    color: #1a1a1a;
    margin-right: 40px;
    font-size: 38px;
}

.section2 .wrap .title .tab {
    display: flex;
    width: fit-content;
    height: 56px;
    padding: 5px;
    background-color: #F9F9F9;
    gap: 10px;
    border-radius: 30px;
}

.section2 .wrap .title .tab .item {
    padding: 0 20px;
    display: flex;
    align-items: center;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.6s;
}

.section2 .wrap .title .tab .item:hover,
.section2 .wrap .title .tab .item.active {
    background-color: #fff;
    box-shadow: 2px 3px 9px 0px rgba(1, 0, 18, 0.05);
}

.section2 .wrap .main {
    height: 330px;
    position: relative;
}

.section2 .wrap .main .trem {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s;
    position: absolute;
    top: 0;
    width: 100%;
    pointer-events: none;
}

.section2 .wrap .main .trem .swiper img {
    height: 100%;
    width: 100%;
}

.section2 .wrap .main .trem.active {
    pointer-events: all;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.section2 .wrap .main .tab {
    width: 1624px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
}

.section2 .wrap .main .tab .next,
.section2 .wrap .main .tab .prev {
    width: 52px;
    height: 52px;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.6s;
}

.section2 .wrap .main .tab .next span,
.section2 .wrap .main .tab .prev span {
    transition: all 0.6s;
}

.section2 .wrap .main .tab .next:hover,
.section2 .wrap .main .tab .prev:hover {
    background-color: #2461AD;
}

.section2 .wrap .main .tab .next:hover span,
.section2 .wrap .main .tab .prev:hover span {
    color: #fff;
}

.section2 .wrap .main .tab .prev {
    transform: rotate(180deg);
}

.section3 .wrap {
    width: 1400px;
    margin: 0 auto;
    padding-bottom: 66px;
}

.section3 .wrap .top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.section3 .wrap .top .title h3 {
    color: #1a1a1a;
    font-size: 38px;
}

.section3 .wrap .top .text {
    width: 680px;
    font-size: 18px;
    line-height: 2;
}

.section3 .wrap .bottom {
    border-radius: 10px;
    overflow: hidden;
}

.section4 {
    background-color: #F7F7F7;
}

.section4 .wrap {
    width: 1400px;
    margin: 0 auto;
}

.section4 .wrap .list {
    display: flex;
    justify-content: space-between;
    padding: 100px 0;
}

.section4 .wrap .list .item {
    border-radius: 10px;
    overflow: hidden;
    width: 660px;
}

.section4 .wrap .list .item .content {
    padding: 70px;
    background-color: #fff;
}

.section4 .wrap .list .item .content .text {
    margin-bottom: 40px;
}

.section4 .wrap .list .item .content .text h4 {
    color: #1a1a1a;
    font-size: 32px;
    margin-bottom: 20px;
}

.section4 .wrap .list .item .content .text p {
    color: #666;
    font-size: 16px;
}

.section4 .wrap .list .item .content a {
    color: #2461AD;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.section4 .wrap .list .item .content a:hover .icon {
    background-color: #2660AC;
}

.section4 .wrap .list .item .content a:hover .icon span {
    color: #fff;
}

.section4 .wrap .list .item .content a .icon {
    width: 32px;
    height: 32px;
    border: 1px solid #2660AC;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.6s;
}

.section2 .wrap .title .tab .item {
    font-size: 16px;
}

.section4 .wrap .list .item .content a .icon span {
    transition: all 0.6s;
}

@media screen and (max-width: 1919px) {
    .banner .wrap .content {
        top: 22.1354166667vw;
    }

    .section1 .wrap .top {
        padding: 4.6875vw 0px;
    }

    .section1 .wrap .top .text {
        width: 55.2083333333vw;
    }

    .section1 .wrap .top .text p {
        font-size: 1.25vw;
        line-height: 2.1875vw;
    }

    .section1 .wrap .top .text .signature {
        margin-top: 1.0416666667vw;
        font-size: 0.9375vw;
    }

    .section1 .wrap .bottom {
        padding-top: 6.25vw;
        padding-bottom: 6.25vw;
        width: 72.9166666667vw;
    }

    .section1 .wrap .bottom .title {
        margin-bottom: 2.6041666667vw;
    }

    .section1 .wrap .bottom .title h3 {
        font-size: 1.9791666667vw;
    }

    .section1 .wrap .bottom .main .item.active .head .text {
        font-size: 1.6666666667vw;
    }

    .section1 .wrap .bottom .main .item .head {
        padding: 1.5625vw 0px;
    }

    .section1 .wrap .bottom .main .item .head .text {
        font-size: 1.0416666667vw;
    }

    .section1 .wrap .bottom .main .item .head .right {
        width: 35.4166666667vw;
    }

    .section1 .wrap .bottom .main .item .head .right .add {
        width: 0.8854166667vw;
        height: 0.8854166667vw;
    }

    .section1 .wrap .bottom .main .item .body {
        padding-bottom: 4.0625vw;
    }

    .section1 .wrap .bottom .main .item .body .flex .img {
        width: 33.3333333333vw;
        height: 18.75vw;
        border-radius: 0.5208333333vw;
    }

    .section1 .wrap .bottom .main .item .body .flex .text {
        width: 35.4166666667vw;
        font-size: 0.8333333333vw;
    }

    .section2 .wrap {
        width: 72.9166666667vw;
        padding-bottom: 6.25vw;
    }

    .section2 .wrap .title {
        margin-bottom: 3.125vw;
    }

    .section2 .wrap .title h3 {
        margin-right: 2.0833333333vw;
        font-size: 1.9791666667vw;
    }

    .section2 .wrap .title .tab {
        height: 2.9166666667vw;
        padding: 0.2604166667vw;
        gap: 0.5208333333vw;
        border-radius: 1.5625vw;
    }

    .section2 .wrap .title .tab .item {
        padding: 0px 1.0416666667vw;
        border-radius: 1.5625vw;
    }

    .section2 .wrap .title .tab .item:hover, .section2 .wrap .title .tab .item.active {
        box-shadow: rgba(1, 0, 18, 0.05) 0.1041666667vw 0.15625vw 0.46875vw 0px;
    }

    .section2 .wrap .main {
        height: 17.1875vw;
    }

    .section2 .wrap .main .trem {
        transform: translateY(1.0416666667vw);
    }

    .section2 .wrap .main .tab {
        width: 84.5833333333vw;
    }

    .section2 .wrap .main .tab .next, .section2 .wrap .main .tab .prev {
        width: 2.7083333333vw;
        height: 2.7083333333vw;
        box-shadow: rgba(0, 0, 0, 0.12) 0px 0px 1.25vw 0px;
    }

    .section3 .wrap {
        width: 72.9166666667vw;
        padding-bottom: 3.4375vw;
    }

    .section3 .wrap .top {
        margin-bottom: 2.6041666667vw;
    }

    .section3 .wrap .top .title h3 {
        font-size: 1.9791666667vw;
    }

    .section3 .wrap .top .text {
        width: 35.4166666667vw;
        font-size: 0.9375vw;
    }

    .section3 .wrap .bottom {
        border-radius: 0.5208333333vw;
    }

    .section4 .wrap {
        width: 72.9166666667vw;
    }

    .section4 .wrap .list {
        padding: 5.2083333333vw 0px;
    }

    .section4 .wrap .list .item {
        border-radius: 0.5208333333vw;
        width: 34.375vw;
    }

    .section4 .wrap .list .item .content {
        padding: 3.6458333333vw;
    }

    .section4 .wrap .list .item .content .text {
        margin-bottom: 2.0833333333vw;
    }

    .section4 .wrap .list .item .content .text h4 {
        font-size: 1.6666666667vw;
        margin-bottom: 1.0416666667vw;
    }

    .section4 .wrap .list .item .content .text p {
        font-size: 0.8333333333vw;
    }

    .section4 .wrap .list .item .content a {
        font-size: 0.8333333333vw;
    }

    .section4 .wrap .list .item .content a .icon span {
        font-size: 0.8333333333vw;
    }

    .section4 .wrap .list .item .content a .icon {
        width: 1.6666666667vw;
        height: 1.6666666667vw;
        margin-left: 0.5208333333vw;
    }

    .section2 .wrap .title .tab .item {
        font-size: 0.83333333333vw;
    }
    .section1 .wrap .bottom .main .item .head .right .num {
        font-size: 0.8333vw;
    }
}
@media screen and (max-width: 768px) {
    .section4 .wrap {
        width: 90%;
    }
    .banner .wrap .content {
        top: 50%;
        transform: translate(-50%,-50%);
    }
    .section1 .wrap .top {
        padding: 50px 0;
    }
    .section1 .wrap .top .text {
        width: 90%;
    }
    .section1 .wrap .top .text p {
        font-size: 16px;
        line-height: 1.6;
    }
    .section1 .wrap .top .text .signature {
        margin: 15px 0 0;
        font-size: 16px;
    }
    .section1 .wrap .bottom {
        padding: 50px 0;
        width: 90%;
    }
    .section1 .wrap .bottom .title h3 {
        font-size: 22px;

    }
    .section1 .wrap .bottom .title {
        margin-bottom: 30px;
    }
    .section1 .wrap .bottom .main .item .head .text {
        font-size: 15px !important;
    }
    .section1 .wrap .bottom .main .item .body .flex {
        flex-direction: column;
    }
    .section1 .wrap .bottom .main .item .body .flex .img {
        width: 100%;
        height: 50vw;
        border-radius: 6px;
    }
    .section1 .wrap .bottom .main .item .body .flex .text {
        font-size: 15px;
        line-height: 1.8;
        width: 100%;
        margin: 20px 0 0;
    }
    .section1 .wrap .bottom .main .item .head {
        padding: 15px 0;
    }
    .section1 .wrap .bottom .main .item .head .right .num {
        font-size: 15px;
    }
    .section1 .wrap .bottom .main .item .head .right .add {
        width: 15px;
        height: 15px;
    }
    .section2 .wrap {
        width: 90%;
        padding: 10px 0 50px;
    }
    .section2 .wrap .title {
        display: block;
    }
    .section2 .wrap .title h3 {
        font-size: 22px;
        margin: 0 0 15px;
    }
    .section2 .wrap .title .tab {
        height: unset;
        padding: 5px;
        border-radius: 20px;
    }
    .section2 .wrap .title .tab .item {
        font-size: 15px;
        padding: 0 20px;
        border-radius: 20px;
        height: 40px;
    }
    .section2 .wrap .main {
        height: 65vw;
    }
    .section2 .wrap .main .trem {
        height: 100%;
    }
    .section2 .wrap .main .trem .swiper {
        height: 100%;
    }
    .section2 .wrap .main .tab {
        z-index: 3;
        width: 100%;
        pointer-events: none;
        padding: 0 10px;

    }
    .section2 .wrap .main .tab .next, .section2 .wrap .main .tab .prev {
        width: 40px;
        height: 40px;
        background: #FFFFFF;
        pointer-events: auto;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    }
    .section3 .wrap {
        width: 90%;
        padding: 20px 0 50px;
    }
    .section3 .wrap .bottom {
        border-radius: 4px;
    }
    .section4 .wrap .list {
        padding: 50px 0 0;
        display: block;
    }
    .section4 .wrap .list .item {
        width: 100%;
        border-radius: 6px;
    }
    .section4 .wrap .list .item .content {
        padding: 30px 15px;
    }
    .section4 .wrap .list .item .content .text h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .section4 .wrap .list .item .content .text {
        margin-bottom: 15px;
    }
    .section4 .wrap .list .item .content a {
        font-size: 15px;
    }
    .section4 .wrap .list .item .content a .icon {
        width: 16px;
        height: 16px;
        margin-left: 5px;
    }
    .section4 .wrap .list .item .content a .icon span {
        font-size: 8px;
    }
    .section4 .wrap .list .item .content .text p {
        font-size: 15px;
    }
    .section3 .wrap .top {
        display: block;
        margin-bottom: 30px;
    }
    .section3 .wrap .top .title h3 {
        font-size: 22px;
    }
    .section3 .wrap .top .text {
        width: 100%;
        font-size: 15px;
        line-height: 1.8;
        margin: 10px 0 0;
    }
    .section4 .wrap .list .item:not(:last-child) {
        margin-bottom: 40px;
    }
    .section1 .wrap .bottom .main .item .head .right {
        width: 20%;
    }
    .section1 .wrap .bottom .main .item .head .text {
        width: 75%;
    }
    html[lang='en'] .section2 .wrap .title .tab .item {
        font-size: 13px;
    }
}
