.common_banner {
    height: 100vh;
    margin: 0;
}


.common_banner .index_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.common_banner .index_text .h5 {
    color: #FFF;
    font-size: 48px;
    font-weight: 600;
}

.common_banner .index_text .p {
    color: #FFF;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.36364;
    /* 136.364% */
    margin: 40px 0;
}
.common_banner .index_text .p br {
    display: none;
}
.common_banner .index_text .btns {
    display: flex;
    gap: 24px;
}

.common_banner .index_text .btns .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 40px;
    border-radius: 99px;
    background: linear-gradient(180deg, #1685B8 0%, #1CB5E0 100%);
    position: relative;
    transition: 0.6s;
}

.common_banner .index_text .btns .btn:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    border-radius: 99px;
    background: linear-gradient(180deg, #1479A7 0%, #1198BE 100%);
    opacity: 0;
    transition: 0.6s;
}

.common_banner .index_text .btns .btn svg {
    display: block;
    width: 24px;
    height: unset;
    position: relative;
    z-index: 3;
}

.common_banner .index_text .btns .btn svg path {
    transition: 0.6s;
}

.common_banner .index_text .btns .btn p {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    z-index: 3;
    transition: 0.6s;
}

.common_banner .index_text .btns .btn:hover:after {
    opacity: 1;
}

.common_banner .index_text .btns .btn:nth-last-child(1) {
    border: 2px solid #1685B8;
    background: #FFF;
}

.common_banner .index_text .btns .btn:nth-last-child(1):after {
    background: linear-gradient(180deg, #1685B8 0%, #1CB5E0 100%);
}

.common_banner .index_text .btns .btn:nth-last-child(1) p {
    color: #1685B8;
}

.common_banner .index_text .btns .btn:nth-last-child(1):hover {
    border: 2px solid transparent;
    background: transparent;
}

.common_banner .index_text .btns .btn:nth-last-child(1):hover:after {
    opacity: 1;
}

.common_banner .index_text .btns .btn:nth-last-child(1):hover p {
    color: #FFFFFF;
}

.common_banner .index_text .btns .btn:nth-last-child(1):hover svg path {
    fill: #FFFFFF;
}

.common_banner .img {
    height: 100%;
    position: relative;
}
.common_banner .img img {
    display: block;
    width: 100%;
    height: 100%;
}

.sec1 {
    padding: 100px 0 200px;
}

.sec1 .sec1_top {
    margin-bottom: 60px;
}

.sec1 .sec1_top .en {
    color: #1685B8;
    font-size: 14px;
    font-weight: 600;
}

.sec1 .sec1_top .title {
    color: #000;
    font-size: 36px;
    font-weight: 600;
    margin: 12px 0;
}

.sec1 .sec1_top .des {
    color: #62748E;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.sec1 .sec1_top .more {
    margin: 40px 0 0;
}

.sec1 .sec1_top .more .btn {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 40px;
    border-radius: 99px;
    border: 2px solid #1685B8;
    position: relative;
}

.sec1 .sec1_top .more .btn:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    border-radius: 99px;
    background: linear-gradient(180deg, #1685B8 0%, #1CB5E0 100%);
    opacity: 0;
}

.sec1 .sec1_top .more .btn svg {
    display: block;
    width: 24px;
    height: unset;
    position: relative;
    z-index: 3;
}

.sec1 .sec1_top .more .btn p {
    color: #1685B8;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    z-index: 3;
}

.sec1 .sec1_top .more .btn:hover {
    border: 2px solid transparent;
}

.sec1 .sec1_top .more .btn:hover:after {
    opacity: 1;
}

.sec1 .sec1_top .more .btn:hover p {
    color: #FFFFFF;
}

.sec1 .sec1_top .more .btn:hover svg path {
    fill: #FFFFFF;
}

.sec1 .list {
    display: flex;
    gap: 60px;
}

.sec1 .list .item {
    width: 450px;
    border-radius: 15px;
    background: #FFF;
    position: relative;
    z-index: 3;
}

.sec1 .list .item:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    border-radius: 15px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
    top: 0;
    left: 0;
    transition: 0.6s;
    pointer-events: none;
}

.sec1 .list .item .img {
    height: 300px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.sec1 .list .item .img img {
    display: block;
    width: 100%;
    height: 100%;
    transition: 3s;
}

.sec1 .list .item .item_bottom {
    padding: 30px;
}

.sec1 .list .item .item_bottom .h5 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.sec1 .list .item .item_bottom .p {
    color: #62748E;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.875;
    margin: 20px 0 0;
}

.sec1 .list .item:hover:after {
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
}

.sec2 {
    padding: 100px 0 200px;
    background: linear-gradient(287deg, #1685B8 0%, #199ECD 70.48%, #1CB5E0 100%);
}

.sec2 .wrap .numList {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}

.sec2 .wrap .numList .item {
    text-align: center;
    width: 25%;
}

.sec2 .wrap .numList .item .num {
    color: #FFF;
    font-family: 'Helvetica';
    font-size: 56px;
    font-weight: 700;
    transition: 0.6s;
}

.sec2 .wrap .numList .item p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.875;
    transition: 0.6s;
}

.sec2 .wrap .numList .item:hover .num, .sec2 .wrap .numList .item:hover p {
    transform: scale(1.2);
}

.sec2 .wrap .box {
    display: flex;
    align-items: flex-end;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    justify-content: space-between;
    padding: 60px 0;
}

.sec2 .wrap .box .l_box {
    width: 600px;
    position: relative;
}

.sec2 .wrap .box .l_box .sq {
    width: 580px;
    height: 350px;
    transform: rotate(-4.815deg);
    border-radius: 20px;
    background: linear-gradient(180deg, #1685B8 0%, #0E5E85 100%);
    position: absolute;
    top: -10px;
}

.sec2 .wrap .box .l_box .img {
    width: 100%;
    height: 362px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 3;
    transition: 0.6s;
}

.sec2 .wrap .box .l_box .img img {
    display: block;
    width: 100%;
    height: 100%;
}

.sec2 .wrap .box .l_box .img:hover {
    transform: translateY(-10px);
}

.sec2 .wrap .box .r_box {
    width: 680px;
}

.sec2 .wrap .box .r_box .h5 {
    color: #FFF;
    font-size: 36px;
    font-weight: 600;
}

.sec2 .wrap .box .r_box .p {
    color: #FFF;
    font-size: 16px;
    line-height: 1.875;
    margin: 20px 0 40px;
}

.sec2 .wrap .box .r_box ul {
    margin-bottom: 40px;
}

.sec2 .wrap .box .r_box ul li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sec2 .wrap .box .r_box ul li:not(:last-child) {
    margin-bottom: 15px;
}

.sec2 .wrap .box .r_box ul li p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    width: calc(100% - 28px);
}

.sec2 .wrap .box .r_box ul li img {
    display: block;
    width: 16px;
}

.sec2 .wrap .box .r_box .btn {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FFFFFF;
    padding: 15px 40px;
    border-radius: 99px;
    border: 2px solid #1685B8;
    position: relative;
}

.sec2 .wrap .box .r_box .btn:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    border-radius: 99px;
    background: linear-gradient(180deg, #1685B8 0%, #1CB5E0 100%);
    opacity: 0;
}

.sec2 .wrap .box .r_box .btn svg {
    display: block;
    width: 24px;
    height: unset;
    position: relative;
    z-index: 3;
}

.sec2 .wrap .box .r_box .btn p {
    color: #1685B8;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    z-index: 3;
}

.sec2 .wrap .box .r_box .btn:hover {
    border: 2px solid transparent;
    background: unset;
}

.sec2 .wrap .box .r_box .btn:hover:after {
    opacity: 1;
}

.sec2 .wrap .box .r_box .btn:hover p {
    color: #FFFFFF;
}

.sec2 .wrap .box .r_box .btn:hover svg path {
    fill: #FFFFFF;
}

.sec2 .wrap .part .title {
    color: #FFF;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
}

.sec2 .wrap .part .list {
    display: flex;
    gap: 60px;
}

.sec2 .wrap .part .list .item {
    width: 450px;
    position: relative;
    padding: 30px;
}

.sec2 .wrap .part .list .item .icon {
    width: 24px;
    height: 24px;
    transition: 0.6s;
}

.sec2 .wrap .part .list .item .icon img {
    display: block;
    width: 100%;
}

.sec2 .wrap .part .list .item .h5 {
    margin: 10px 0;
    color: #FFF;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.36364;
}

.sec2 .wrap .part .list .item .p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.sec2 .wrap .part .list .item:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.6s;
}

.sec2 .wrap .part .list .item:hover .icon {
    filter: drop-shadow(0 4px 8.3px #A9D6FF);
}

.sec2 .wrap .part .list .item:hover:after {
    background: rgba(255, 255, 255, 0.2);
}

.sec3 {
    padding: 100px 0 200px;
    background: #101626;
}

.sec3 .wrap .sec3_top {
    margin-bottom: 60px;
    text-align: center;
}

.sec3 .wrap .sec3_top .en {
    color: #1685B8;
    font-size: 14px;
    font-weight: 600;
}

.sec3 .wrap .sec3_top .title {
    color: #FFF;
    font-size: 36px;
    font-weight: 600;
    margin: 12px 0;
}

.sec3 .wrap .sec3_top .des {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.sec3 .wrap .list {
    display: flex;
    gap: 60px;
}

.sec3 .wrap .list .item {
    position: relative;
    padding: 30px;
    width: 450px;
}

.sec3 .wrap .list .item .icon {
    width: 24px;
    height: 24px;
    transition: 0.6s;
}

.sec3 .wrap .list .item .icon img {
    display: block;
    width: 100%;
}

.sec3 .wrap .list .item .h5 {
    margin: 10px 0;
    color: #FFF;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.36364;
}

.sec3 .wrap .list .item .p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.sec3 .wrap .list .item:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.6s;
}

.sec3 .wrap .list .item:hover .icon {
    filter: drop-shadow(0 4px 8.3px #A9D6FF);
}

.sec3 .wrap .list .item:hover:after {
    background: rgba(255, 255, 255, 0.2);
}

.sec3 .wrap .more {
    margin: 60px 0 0;
}

.sec3 .wrap .more .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 99px;
    background: #62748E;
    width: fit-content;
    margin: 0 auto;
    padding: 15px 40px;
}

.sec3 .wrap .more .btn p {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
}

.sec3 .wrap .more .btn img {
    display: block;
    width: 24px;
}

.sec3 .wrap .more .btn:hover {
    background: #314158;
}

.sec4 {
    background: #FAFDFE;
    padding: 100px 0 200px;
}

.sec4 .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec4 .wrap .l_box {
    width: 600px;
    position: relative;
}

.sec4 .wrap .l_box .sq {
    width: 580px;
    height: 350px;
    transform: rotate(-4.815deg);
    border-radius: 20px;
    background: #9CE8DD;
    position: absolute;
    top: -10px;
}

.sec4 .wrap .l_box .img {
    width: 100%;
    height: 370px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 3;
    transition: 0.6s;
}

.sec4 .wrap .l_box .img img {
    display: block;
    width: 100%;
    height: 100%;
}

.sec4 .wrap .l_box .img:hover {
    transform: translateY(-10px);
}

.sec4 .wrap .r_box {
    width: 680px;
}

.sec4 .wrap .r_box .en {
    color: #1685B8;
    font-size: 14px;
    font-weight: 600;
}

.sec4 .wrap .r_box .h5 {
    color: #000;
    font-size: 36px;
    font-weight: 600;
    margin: 12px 0;
}

.sec4 .wrap .r_box .p {
    color: #62748E;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.sec4 .wrap .r_box .list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 60px 0;
}

.sec4 .wrap .r_box .list .item {
    width: 280px;
    border-radius: 15px;
    border: 1px solid #F8FAFC;
    background: #FFF;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
    min-height: 120px;
    display: flex;
    align-items: center;
    padding: 30px 28px;
    position: relative;
}

.sec4 .wrap .r_box .list .item p {
    color: #000;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.36364;
    /* 136.364% */
    position: relative;
    z-index: 3;
}

.sec4 .wrap .r_box .list .item:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(180deg, #1685B8 0%, #1CB5E0 100%);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.sec4 .wrap .r_box .list .item:hover:after {
    opacity: 1;
}

.sec4 .wrap .r_box .list .item:hover p {
    color: #FFFFFF;
}

.sec4 .wrap .r_box .btn {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FFFFFF;
    padding: 15px 40px;
    border-radius: 99px;
    border: 2px solid #1685B8;
    position: relative;
}

.sec4 .wrap .r_box .btn:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    border-radius: 99px;
    background: linear-gradient(180deg, #1685B8 0%, #1CB5E0 100%);
    opacity: 0;
}

.sec4 .wrap .r_box .btn svg {
    display: block;
    width: 24px;
    height: unset;
    position: relative;
    z-index: 3;
}

.sec4 .wrap .r_box .btn p {
    color: #1685B8;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    z-index: 3;
}

.sec4 .wrap .r_box .btn:hover {
    border: 2px solid transparent;
    background: unset;
}

.sec4 .wrap .r_box .btn:hover:after {
    opacity: 1;
}

.sec4 .wrap .r_box .btn:hover p {
    color: #FFFFFF;
}

.sec4 .wrap .r_box .btn:hover svg path {
    fill: #FFFFFF;
}

.sec5 {
    padding: 100px 0 200px;
    height: 535px;
    background: linear-gradient(287deg, #1685B8 0%, #199ECD 70.48%, #1CB5E0 100%);
}

.sec5 .wrap .title {
    color: #FFF;
    text-align: center;
    font-size: 48px;
    font-weight: 600;
}

.sec5 .wrap .des {
    color: #FFF;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.36364;
    /* 136.364% */
    margin: 53px 0;
}

.sec5 .wrap .more .btn {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FFFFFF;
    padding: 20px 40px;
    border-radius: 99px;
    position: relative;
    transition: 0.6s;
    margin: 0 auto;
}

.sec5 .wrap .more .btn p {
    color: #1685B8;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3333;
    position: relative;
    z-index: 3;
    transition: 0.6s;
}

.sec5 .wrap .more .btn:hover {
    padding: 25px 45px;
}

@media screen and (max-width: 1600px) {
    .common_banner .index_text .h5 {
        font-size: 40px;
    }
    .common_banner .index_text .p {
        font-size: 18px;
    }
    .common_banner .index_text .btns .btn {
        padding: 12px 30px;
    }
    .common_banner .index_text .btns .btn p {
        font-size: 16px;
    }
    .common_banner .index_text .btns .btn svg {
        width: 20px;
    }
    .sec1 .list .item {
        width: 31%;
    }
    .sec1 .list {
        gap: 3.5%;
    }
    .sec2 .wrap .box .r_box,.sec4 .wrap .r_box {
        width: 50%;
    }
    .sec2 .wrap .box .l_box,.sec4 .wrap .l_box {
        width: 45%;
    }
    .sec2 .wrap .box .l_box .sq,.sec4 .wrap .l_box .sq {
        width: 100%;
        height: 23vw;
    }
    .sec2 .wrap .part .list .item,.sec3 .wrap .list .item {
        width: 31%;
    }
    .sec2 .wrap .part .list,.sec3 .wrap .list {
        gap: 3.5%;
    }
    .sec4 .wrap .r_box .list .item {
        width: 48%;
    }
    .sec4 .wrap .r_box .list {
        gap: 2vw 4%;
    }
    .sec5 {
        height: auto;
    }
}

@media screen and (max-width: 1366px) {
    .common_banner .index_text .h5 {
        font-size: 36px;
    }
    .common_banner .index_text .p {
        font-size: 16px;
        margin: 30px 0;
    }
    .common_banner .index_text .btns .btn {
        gap: 8px;
        padding: 8px 25px;
        border-radius: 25px;
    }
    .common_banner .index_text .btns .btn p {
        font-size: 14px;
    }
    .common_banner .index_text .btns .btn svg {
        width: 14px;
    }
    .common_banner .index_text .btns {
        gap: 15px;
    }
    .sec1 .sec1_top .en {
        font-size: 15px;
    }
    .sec1 .sec1_top .title {
        font-size: 32px;
        margin: 15px 0;
    }
    .sec1 .sec1_top {
        margin-bottom: 40px;
    }
    .sec1 .sec1_top .des {
        font-size: 16px;
    }
    .sec1 .sec1_top .more .btn {
        gap: 8px;
        padding: 8px 25px;
        border-radius: 25px;
    }
    .sec1 .sec1_top .more .btn p {
        font-size: 14px;
    }
    .sec1 .sec1_top .more .btn svg {
        width: 14px;
    }
    .sec1 .list {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px 0;
    }
    .sec1 .list .item {
        width: 32%;
        border-radius: 10px;
    }
    .sec1 .list .item .item_bottom {
        padding: 30px;
    }
    .sec1 .list .item .item_bottom .h5 {
        font-size: 20px;
    }
    .sec1 .list .item .item_bottom .p {
        font-size: 15px;
        margin: 15px 0 0;
    }
    .sec1 .list .item .img {
        height: 23vw;
        border-radius: 10px 10px 0px 0px;
    }
    .sec2 {
        padding: 70px 0;
    }
    .sec2 .wrap .numList .item .num {
        font-size: 38px;
    }
    .sec2 .wrap .numList .item p {
        font-size: 16px;
    }
    .sec2 .wrap .numList {
        margin-bottom: 30px;
    }
    .sec2 .wrap .box {
        padding: 50px 0 70px;
    }
    .sec2 .wrap .box .r_box {
        width: 44vw;
    }
    .sec2 .wrap .box .r_box .h5 {
        font-size: 28px;
    }
    .sec2 .wrap .box .r_box .p {
        font-size: 15px;
        margin: 15px 0;
    }
    .sec2 .wrap .box .r_box ul li p {
        font-size: 15px;
    }
    .sec2 .wrap .box .r_box ul li img {
        width: 16px;
    }
    .sec2 .wrap .box .r_box .btn {
        gap: 8px;
        padding: 8px 25px;
        border-radius: 25px;
    }
    .sec2 .wrap .box .r_box .btn p {
        font-size: 14px;
    }
    .sec2 .wrap .box .r_box .btn svg {
        width: 14px;
    }
    .sec2 .wrap .box .l_box {
        width: 40vw;
    }
    .sec2 .wrap .box .l_box .img {
        height: 27vw;
        border-radius: 10px;
    }
    .sec2 .wrap .box .l_box .sq {
        width: 39vw;
        height: 26vw;
    }
    .sec2 .wrap .part .title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .sec2 .wrap .part .list {
        justify-content: space-between;
        gap: 20px 0;
    }
    .sec2 .wrap .part .list .item {
        width: 32%;
        padding: 20px;
        border-radius: 10px;
    }
    .sec2 .wrap .part .list .item .icon {
        width: 22px;
        height: 22px;
    }
    .sec2 .wrap .part .list .item .h5 {
        font-size: 18px;
        margin: 15px 0;
    }
    .sec2 .wrap .part .list .item .p {
        font-size: 15px;
    }
    .sec3 {
        padding: 60px 0;
    }
    .sec3 .wrap .sec3_top .en {
        font-size: 15px;
    }
    .sec3 .wrap .sec3_top .title {
        font-size: 32px;
        margin: 15px 0;
    }
    .sec3 .wrap .sec3_top {
        margin-bottom: 40px;
    }
    .sec3 .wrap .sec3_top .des {
        font-size: 16px;
    }
    .sec3 .wrap .list {
        justify-content: space-between;
        gap: 20px 0;
    }
    .sec3 .wrap .list .item {
        width: 32%;
        padding: 20px;
        border-radius: 10px;
    }
    .sec3 .wrap .list .item .icon {
        width: 22px;
        height: 22px;
    }
    .sec3 .wrap .list .item .h5 {
        font-size: 18px;
        margin: 15px 0;
    }
    .sec3 .wrap .list .item .p {
        font-size: 15px;
    }
    .sec3 .wrap .more .btn {
        gap: 8px;
        padding: 12px 25px;
        border-radius: 25px;
        margin: 40px auto 0;
    }
    .sec3 .wrap .more .btn p {
        font-size: 14px;
    }
    .sec3 .wrap .more .btn svg {
        width: 14px;
    }
    .sec4 {
        padding: 70px 0 80px;
    }
    .sec4 .wrap .l_box {
        width: 40vw;
    }
    .sec4 .wrap .l_box .img {
        height: 25vw;
        border-radius: 10px;
    }
    .sec4 .wrap .l_box .sq {
        width: 39vw;
        height: 24vw;
    }
    .sec4 .wrap .r_box {
        width: 44vw;
    }
    .sec4 .wrap .r_box .en {
        font-size: 15px;
    }
    .sec4 .wrap .r_box .h5 {
        font-size: 28px;
        margin: 10px 0;
    }
    .sec4 .wrap .r_box .p {
        font-size: 15px;
    }
    .sec4 .wrap .r_box .list .item {
        width: 48%;
        border-radius: 10px;
    }
    .sec4 .wrap .r_box .list .item::after {
        border-radius: 10px;
    }
    .sec4 .wrap .r_box .btn {
        gap: 8px;
        padding: 12px 25px;
        border-radius: 25px;
    }
    .sec4 .wrap .r_box .btn p {
        font-size: 14px;
    }
    .sec4 .wrap .r_box .btn svg {
        width: 14px;
    }
    .sec4 .wrap .r_box .list .item p {
        font-size: 15px;
    }
    .sec5 {
        padding: 70px 0 80px;
    }
    .sec5 .wrap .title {
        font-size: 32px;
    }
    .sec5 .wrap .des {
        font-size: 16px;
        margin: 20px 0;
    }
    .sec5 .wrap .more .btn {
        padding: 14px 25px;
        border-radius: 40px;
    }
    .sec5 .wrap .more .btn p {
        font-size: 15px;
    }
    .common_banner .index_text {
        text-align: center;
    }
    .common_banner .index_text .btns {
        justify-content: center;
    }

}
@media screen and (max-width: 768px) {
    .sec4 .wrap .r_box .list .item::after {
        border-radius: 8px;
    }
    .common_banner .index_text .h5 {
        font-size: 24px;
    }
    .common_banner .img {
        overflow: hidden;
        position: relative;
    }
    .common_banner .img:after {
        content: "";
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(270deg, rgba(28, 181, 224, 0.00) 0%, rgba(28, 181, 224, 0.20) 50%, rgba(28, 181, 224, 0.60) 100%);
        position: absolute;
        top: 0;
        left: 0;
    }
    .common_banner .img img:nth-child(1) {
        display: none;
    }
    .common_banner .img img:nth-child(2) {
        display: block !important;
    }
    .common_banner .index_text .p {
        font-size: 14px;
        margin: 15px 0 25px;
        line-height: 1.6;
    }
    .common_banner .index_text .btns .btn {
        gap: 8px;
        padding: 8px 25px;
        border-radius: 25px;
    }
    .common_banner .index_text .btns .btn p {
        font-size: 14px;
    }
    .common_banner .index_text .btns .btn svg {
        width: 14px;
    }
    .common_banner .index_text .btns {
        gap: 15px;
    }
    .sec1 {
        padding: 50px 0;
    }
    .sec1 .sec1_top .en {
        font-size: 14px;
    }
    .sec1 .sec1_top {
        text-align: center;
    }

    .sec1 .sec1_top .title {
        font-size: 20px;
        margin: 6px 0 15px;
    }
    .sec1 .sec1_top .des {
        font-size: 15px;
        line-height: 1.8;
    }
    .sec1 .sec1_top .more {
        width: fit-content;
        margin: 25px auto 0;
    }
    .sec1 .sec1_top .more .btn {
        gap: 8px;
        padding: 8px 20px;
    }
    .sec1 .sec1_top .more .btn svg {
        width: 15px;
    }
    .sec1 .sec1_top {
        margin-bottom: 30px;
    }
    .sec1 .sec1_top .more .btn p {
        font-size: 14px;
    }
    .sec1 .list {
        gap: 30px;
        flex-wrap: wrap;
    }
    .sec1 .list .item .img {
        height: 65vw;
        border-radius: 10px 10px 0 0;
    }
    .sec1 .list .item {
        width: 100%;
        border-radius: 10px;
    }
    .sec1 .list .item::after {
        border-radius: 10px;
        box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
    }
    .sec1 .list .item .item_bottom .p {
        font-size: 14px;
        margin: 10px 0 0;
    }
    .sec1 .list .item .item_bottom {
        padding: 20px 15px;
        text-align: center;
    }
    .sec1 .list .item .item_bottom .h5 {
        font-size: 16px;
    }
    .sec2 {
        padding: 50px 0;
    }
    .sec2 .wrap .numList {
        flex-wrap: wrap;
        gap: 15px 0;
        margin-bottom: 25px;
    }
    .sec2 .wrap .numList .item {
        width: 50%;
    }
    .sec2 .wrap .numList .item .num {
        font-size: 28px;
    }
    .sec2 .wrap .numList .item p {
        font-size: 14px;
        margin: 4px 0 0;
    }
    .sec2 .wrap .box {
        padding: 40px 0 30px;
        display: block;
    }
    .sec2 .wrap .box .l_box .img {
        height: 50vw;
        border-radius: 8px;
    }
    .sec2 .wrap .box .l_box {
        width: 100%;
    }
    .sec2 .wrap .box .l_box .sq {
        width: 100%;
        height: 48vw;
        border-radius: 10px;
    }
    .sec2 .wrap .box .r_box {
        width: 100%;
        margin: 25px 0 0;
    }
    .sec2 .wrap .box .r_box .h5 {
        font-size: 18px;
        text-align: center;
    }
    .sec2 .wrap .box .r_box .p {
        font-size: 15px;
        margin: 10px 0 20px;
        text-align: center;
    }
    .sec2 .wrap .box .r_box ul li p {
        font-size: 15px;
        width: calc(100% - 22px);
    }
    .sec2 .wrap .box .r_box ul li img {
        width: 14px;
        margin: 4px 0 0;
    }
    .sec2 .wrap .box .r_box ul li {
        align-items: flex-start;
        gap: 8px;
    }
    .sec2 .wrap .box .r_box ul {
        margin-bottom: 25px;
    }
    .sec2 .wrap .box .r_box .btn {
        gap: 8px;
        margin: 0 auto;
    }
    .sec2 .wrap .box .r_box .btn p {
        font-size: 14px;
    }
    .sec2 .wrap .box .r_box .btn {
        padding: 12px 25px;
        border-radius: 40px;
    }
    .sec2 .wrap .box .r_box .btn svg {
        width: 15px;
    }
    .sec2 .wrap .part {
        padding: 15px 0 0;
    }
    .sec2 .wrap .part .title {
        font-size: 20px;
    }
    .sec2 .wrap .part .list {
        gap: 20px;
        flex-wrap: wrap;
        position: relative;
        z-index: 3;
    }
    .sec2 .wrap .part .list .item {
        padding: 20px 15px;
        text-align: center;
    }
    .sec2 .wrap .part .list .item .icon {
        width: 24px;
        height: 24px;
        margin: 0 auto;
    }
    .sec2 .wrap .part .list .item .h5 {
        margin: 10px 0;
        font-size: 16px;
    }
    .sec2 .wrap .part .list .item .p {
        font-size: 14px;
    }
    .sec2 .wrap .part .list .item {
        width: 100%;
    }
    .sec3 {
        padding: 50px 0;
    }
    .sec3 .wrap .sec3_top .en {
        font-size: 14px;
    }
    .sec3 .wrap .sec3_top .title {
        font-size: 22px;
        margin: 6px 0 16px;
    }
    .sec3 .wrap .list {
        position: relative;
        z-index: 3;
        gap: 20px;
        flex-wrap: wrap;
    }
    .sec3 .wrap .list .item {
        width: 100%;
        text-align: center;
        padding: 20px 15px;
    }
    .sec3 .wrap .list .item::after {
        border-radius: 8px;
    }
    .sec3 .wrap .list .item .icon {
        width: 24px;
        height: 24px;
        margin: 0 auto;
    }
    .sec3 .wrap .list .item .h5 {
        font-size: 16px;
        margin: 10px 0;
    }
    .sec3 .wrap .list .item .p {
        font-size: 14px;
    }
    .sec3 .wrap .sec3_top .des {
        font-size: 15px;
    }
    .sec2 .wrap .part .list .item::after {
        border-radius: 10px;

    }
    .sec3 .wrap .sec3_top {
        margin-bottom: 25px;
    }
    .sec3 .wrap .more {
        margin: 30px 0 0;

    }
    .sec3 .wrap .more .btn {
        padding: 12px 25px;
        gap: 6px;
        border-radius: 22px;
    }
    .sec3 .wrap .more .btn p {
        font-size: 14px;
    }
    .sec3 .wrap .more .btn img {
        width: 15px;
    }
    .sec5 {
        padding: 50px 0;
        height: unset;
    }
    .sec5 .wrap .title {
        font-size: 20px;
    }
    .sec5 .wrap .des {
        font-size: 15px;
        line-height: 1.6;
        margin: 20px 0 30px;
    }
    .sec5 .wrap .more .btn {
        padding: 12px 25px;
        gap: 6px;
        border-radius: 22px;
    }
    .sec5 .wrap .more .btn p {
        font-size: 14px;
    }
    .sec4 {
        padding: 50px 0;
    }
    .sec4 .wrap {
        display: block;
    }
    .sec4 .wrap .l_box {
        width: 100%;
    }
    .sec4 .wrap .l_box .img {
        height: 50vw;
        border-radius: 8px;
    }
    .sec4 .wrap .l_box .sq {
        width: 100%;
        height: 48vw;
        border-radius: 10px;
    }
    .sec4 .wrap .r_box {
        width: 100%;
        margin: 30px 0 0;
        text-align: center;
    }
    .sec4 .wrap .r_box .en {
        font-size: 14px;
    }
    .sec4 .wrap .r_box .h5 {
        font-size: 20px;
        margin: 6px 0 12px;
    }
    .sec4 .wrap .r_box .p {
        font-size: 15px;
        line-height: 1.6;
    }
    .sec4 .wrap .r_box .list {
        gap: 20px 0;
        justify-content: space-between;
        flex-wrap: wrap;
        margin: 20px 0 30px;
    }
    .sec4 .wrap .r_box .list .item {
        width: 100%;
        padding: 20px;
        border-radius: 8px;
    }
    .sec4 .wrap .r_box .list .item p {
        font-size: 16px;
        width: 100%;
    }
    .sec4 .wrap .r_box .btn {
        padding: 12px 25px;
        gap: 6px;
        border-radius: 22px;
        margin: 0 auto;
    }
    .sec4 .wrap .r_box .btn p {
        font-size: 14px;
    }
    .sec4 .wrap .r_box .btn svg {
        width: 16px;
    }
    .common_banner .index_text .p br {
        display: block;
    }

}
