@charset "utf-8";
:root {
    /* --main-color: #223C71; */
    --main-color: #0249D9;
    --dark-color: #333;
    --white-color: #FFFFFF;
}
section{
    color: #4B5563;
    font-size: 14px;
    padding: 90px 0;
    letter-spacing: -0.2px;
}
section:first-of-type{
    padding: 0 !important;
}
.title{
    font-weight: 700;
    font-size: 36px;
    line-height: 24px;
    text-align: center;
    color: #000;
    margin-bottom: 10px;
}
.title_des{
    margin: 20px auto 70px;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    width: 70%;
}
/*page_1_home*/
.page_1_home_left{
    width: 45%;
}
.page_1_home_left_title,.page_1_left_title{
    font-size: 56px;
    font-weight: bold;
    line-height: 67px;
    color: #000;

}
.page_1_home_left_title span,.page_1_left_title span{
    color: var(--main-color);
}
.page_1_home_left_text,.page_1_left_text{
    font-size: 20px;
    line-height: 24px;
    margin-top: 20px;
}
.page_1_home_left_avatar{
    margin-top: 50px;
}
.page_1_home_left_avatar_pic{
    margin:0 30px 0 10px;
}
.page_1_home_left_avatar_pic div{
    margin-left: -10px;
    background-size: 100%;
    width: 36px;
    height: 36px;
    font-size: 12px;
    line-height: 36px;
    text-align: center;
    color: #fff;
    cursor: pointer;
}
.page_1_home_left_avatar_pic div:hover{
    z-index: 1;
    transform: scale(1.2);
    transition: transform 0.6s ease;
}
.page_1_home_left_avatar_stars span{
    font-weight: 700;
    font-size: 13px;
    line-height: 24px;
}
.page_1_home_left_avatar_stars p {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
}
.page_1_home_right{
    position: relative;
    width: 574px;
    height:567px;
}
.page_1_home_right .img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page_1_home_right .page_1_home_right_top{
    position: absolute;
    top: -20px;
    right: -30px;
}
.page_1_home_right .page_1_home_left_bottom{
    position: absolute;
    bottom: -20px;
    left: -30px;
}
.page_1_bottom{
    flex-wrap: wrap;
}
.page_1_bottom_each{
    border-radius: 20px;
    background: #f5f7fa;
    width: 32%;
    padding: 30px;
    margin-bottom: 20px;
}
.page_1_bottom_each .img{
    width: 55px;
    height: 55px;
    margin-bottom: 26px;
}
.page_1_bottom_each h1{
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 12px;
    color: #000;
}
.page_1_bottom_each p{
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #374151;
}
/*page_1*/
.page_1{
    position: relative;
    /* height: 100vh; */
    height: calc(100vh - 92px);
    display: flex;
    align-items: center;
}
.page_1_left{
    width: 70%;
}
.page_1_right{
    position: absolute;
    right: 0;
    top: 0;
    /* width: 50%; */
    height: 100vh;
    z-index: -1;
}
.page_1_left_text{
    width: 70%;
}
.page_1_right img{
    height: 100% !important;
    width: auto;
}
.page_2{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.page_2_each{
    width: 49%;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
}
.page_2_each h1{
    color: var(--main-color);
    margin-top: 65%;
    font-size: 16px;
    line-height: 24px;
}
.page_2_each h2{
    color: #000;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    margin: 10px 0;
}
.page_2_each p{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}
/*page_3*/
.page_3{
    margin: 0 auto;
}
.page_3_left{
    width: 45%;
    height: 600px;
    margin-right: 50px;
    margin-left: 0;
}
.page_3_left .swiper-slide{
    width: 100%;
}
.page_3_right{
    width: 40%;
    height: 600px;
    overflow: hidden;
    border-left: 1px solid #DBDBDB;
}
.page_3_right_each{
    margin: 0 20px;
    padding: 20px 0;
    border-bottom: 1px solid #DBDBDB;
    position: relative;
}
.page_3_right .current::before{
    content: "";
    position: absolute;
    top: 0;
    left: -21px;
    width: 4px;
    height: 0;
    transform-origin: middle;
    background-color: var(--main-color);
    border-radius: 4px;
    animation: extendBorder 1s ease-out forwards;
}
@keyframes extendBorder {
    0% {
        height: 0;
        transform: scaleY(0);
    }
    100% {
        height: 100%; /* 根据需要调整，如果不需要留白就直接用100% */
        transform: scaleY(1);
    }
}


.page_3_right_each_div{
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease-out;
}
.current .page_3_right_each_div { 
    max-height: 500px;
    padding-top: 20px;
} 
.page_3_right_each_h1{
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: var(--main-color);
    cursor: pointer;
}
/* .current .page_3_right_each_h1{
    color: var(--main-color);
} */
.page_3_right_each_h1 svg{
    margin: 0 0 4px 4px;
    transition: transform 0.6s ease;
}
.current .page_3_right_each_h1 svg{
    transform: rotate(180deg);
}
.page_3_right_each_h2{
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: #000;
    margin: 8px 0 26px;
}
/*page_4*/
.page_4_each{
    border-radius: 20px;
    overflow: hidden;
    width: 49%;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
    background: #fff;
}
.page_4_each>img{
    width: 100%;
    height: auto;
}
.page_4_title{
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: #000;
    margin-bottom: 20px;
}
.page_4_title_des{
    margin-bottom: 20px;
    min-height: 60px;
}
.page_4_content{
    flex-wrap: wrap;
}
.page_4_content div{
    width: 45%;
    margin-bottom: 20px;
}
/*page_5*/
.page_5_each{
    background: #fff;
    width: 32%;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #f5f5f5;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
}
.page_5_each_avatar{
    margin-bottom: 20px;
}
.page_5_each_avatar>img{
    width: 54px;
    height: 54px;
    border-radius: 50%;
    margin-right: 10px;
}
.page_5_each_avatar_info h1{
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    color: #000;
}
.page_5_each_content{
    font-style: italic;
    font-size: 16px;
    line-height: 22px;
    margin-top: 20px;
}

/*page_aj_1*/
.page_aj_1_each{
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 46px;
    overflow: hidden;
    height: 436px;
}
.page_aj_1_each_left{
    width: 403px;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.page_aj_1_each_left_content{
    background: rgba(23, 44, 142, 0.4);
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 33px 30px;
}
.page_aj_1_each_left_content_title{
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px; /* 100% */
    letter-spacing: -0.24px;
    position: relative;
    margin-bottom: 46px;
}
.page_aj_1_each_left_content_title::after{
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0px;
    width: 61px;
    height: 4px;
    background-color: var(--white-color);
}
.page_aj_1_each_left_content p{
    display: flex;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px; /* 160% */
    letter-spacing: -0.15px;
}
.page_aj_1_each_left_content p svg{
    margin-top: 5px;
    margin-right: 8px;
}
.page_aj_1_each_right{
    width: calc(100% - 403px);
    padding: 30px;
    height: 100%;
    overflow-y: auto;
}
.page_aj_1_each_right_title {
    color: #262626;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px; /* 120% */
    letter-spacing: -0.2px;
    margin-bottom: 17px;
}
.page_aj_1_each_right_each{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 10px;
}
.page_aj_1_each_right_div{
    border-radius: 10px;
    background: #F9FAFB;
    width: 49%;
    margin-bottom: 24px;
    padding: 21px 22px;
    color: var(--main-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px; /* 133.333% */
    letter-spacing: -0.18px;
}
.page_aj_1_each_right_div_des {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px; /* 157.143% */
    letter-spacing: -0.14px;
    margin-top: 10px;
}

/*page_Customized*/
.page_Customized{
    border-radius: 16px;
    background: #F9FAFB;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.20);
    width: 70%;
    margin: 0 auto;
    padding: 40px;
}
.page_Customized_left{
    width: 335px;
}
.page_Customized_right{
    width: 408px;
    height: 269px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.20);
}
.page_Customized_right img{
    width: 100%;
    height: 100%;
}
.page_Customized_title{
    color: #262626;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px; /* 100% */
    letter-spacing: -0.24px;
    margin-bottom: 20px;
}
.page_Customized_des{
    font-size: 14px;
    font-weight: 500;
    line-height: 22px; /* 157.143% */
    letter-spacing: -0.14px;
}
.page_Customized_left ul{
    margin-top: 28px;
}
.page_Customized_left ul li{
    margin-bottom: 10px;
}
/*page_Categories*/
.page_Categories{
    flex-wrap: wrap;
}
.page_Categories_each{
    width: 49%;
    background: #fff;
    padding: 30px;
    margin-bottom: 22px;
    border-radius: 20px;
}
.page_Categories_each h1{
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px; /* 120% */
    letter-spacing: -0.2px;
    margin: 18px 0 20px;
}
.page_Categories_each p{
    font-size: 14px;
    font-weight: 500;
    line-height: 22px; /* 157.143% */
    letter-spacing: -0.14px;
    margin-bottom: 20px;
}
.page_Categories_each ul li{
    font-size: 14px;
    font-weight: 500;
    line-height: 26px; /* 185.714% */
    letter-spacing: -0.14px;
}
.page_Categories_each ul li svg{
    margin-right: 8px;
}
/*page_Scenario*/
.page_Scenario{
    flex-wrap: wrap;
}
.page_Scenario_each{
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    width: 32%;
    margin-bottom: 20px;
}
.page_Scenario_each img{
    width: 100%;
    height: auto;
}
.page_Scenario_each h1{
    color: #262626;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px; /* 120% */
    letter-spacing: -0.2px;
    padding: 0 30px 12px;
}
.page_Scenario_each p{
    font-size: 14px;
    font-weight: 500;
    line-height: 22px; /* 157.143% */
    letter-spacing: -0.14px;
    padding: 0 30px 45px;
}
.page_service{
    flex-wrap: wrap;
}
.page_service_each{
    color: #4B5563;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: -0.16px;
    width: 46%;
    margin-bottom: 40px;
}

.page_type_title{
    color: #262626;
    font-size: 32px;
    font-weight: 700;
    line-height: 24px; /* 75% */
    letter-spacing: -0.32px;
}
.page_type_title span{
    color: var(--main-color)
}
.page_type_des{
    color: #4B5563;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px; /* 160% */
    letter-spacing: -0.15px;
    margin: 30px 0 60px 0;
}
.page_type_content{
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
    height: 436px;
}
.page_type_content_left{
    border-radius: 16px;
    overflow: hidden;
    width: 516px;
    height: 100%;
}
.page_type_content_left img{
    border-radius: 16px;
    overflow: hidden;
    width:100%;
    height: 100%;
    object-fit: cover;
}
.page_type_content_right{
    padding: 28px;
    width: calc(100% - 516px);
    max-height: 436px;
    overflow-y: auto;
}
.page_type_content_right_div{
    flex-wrap: wrap;
    margin-top: 30px;
}
.page_type_content_right_each{
    width: 49%;
    border-radius: 10px;
    background: #F9FAFB;
    margin-bottom: 20px;
    padding: 20px;
}
.page_type_content_right_each h1{
    color: #262626;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px; /* 133.333% */
    letter-spacing: -0.18px;
    margin-bottom: 10px;
}
.page_type_content_right_each p{
    color: #4B5563;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px; /* 157.143% */
    letter-spacing: -0.14px;
}
.page_type_content_right_span span{
    background: #F9FAFB;
    border-radius: 100px;
    display: inline-flex;
    height: 32px;
    padding: 4px 14px;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.page_process{
    flex-wrap: wrap;
}
.page_process_each{
    border-radius: 20px;
    background: #F9FAFB;
    margin-bottom: 20px;
    width: 49%;
    padding: 30px 26px ;
}
.page_process_each_left{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #D9E2FF;
    text-align: center;
    line-height: 50px;
    color: #0249D9;
    font-size: 28px;
    font-weight: 500;
}
.page_process_each_right{
    width: calc(100% - 70px);
}
.page_process_each_right h1{
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px; /* 120% */
    letter-spacing: -0.2px;
    margin-bottom: 12px;
}

.page_experiencer{
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}
.page_experiencer_left{
    width: 50%;
    padding: 46px;
}
.page_experiencer_left h1{
    color: #262626;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px; /* 120% */
    letter-spacing: -0.2px;
    margin-bottom: 20px;
}
.page_experiencer_left p{
    margin-bottom: 18px;
}
.page_experiencer_left_title{
    color: #000;
    font-size: 15px;
    font-weight: 500;
    line-height: 26px; /* 173.333% */
    letter-spacing: -0.15px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.page_experiencer_left_title svg{
    margin-right: 6px;
}
.page_experiencer_right{
    width: 50%;
    height: 100%;
}

.contact-form,.contact-info-details, .newsletter{
    background: #fff;
}
@media (max-width: 1095px) {
    .page_4_content{
        display: block;
    }
    .page_4_content div{
        width: 100%;
    }
    .page_aj_1_each_right_div{
        width: 100%;
    }
}
@media (max-width: 991px) {
    .page_1_left{
        width: 100%;
    }
    .page_1_home{
        display: block;
    }
    .page_1_home_left{
        width: 100%;
    }
    .page_Customized{
        display: block;
    }
    .page_Customized_left{
        width: 100%;
    }
    .page_Customized_right{
        width: 100%;
        height: auto;
    }
    .page_4{
        display: block;
    }
    .page_4_each{
        width: 100%;
        margin-bottom: 20px;
    }
}
@media (max-width: 800px) {
    .page_1_bottom{
        display: block;
    }
    .page_1_bottom_each{
        width: 100% !important;
    }
    .page_2{
        display: block;
    }
    .page_2_each{
        width: 100%;
    }
    .page_3{
        display: block;
    }
    .page_3_left{
        width: 100%;
        height: 300px;
    }
    .swiper-slide img{
        width: 100% !important;
        height: auto !important;
    }
    .page_3_right{
        width: 100%;
    }
    .page_5{
        display: block;
    }
    .page_5_each{
        width: 100%;
        margin-bottom: 20px;
    }
    .page_aj_1_each{
        display: block;
        height: auto;
    }
    .page_aj_1_each_left{
        width: 100%;
        height: 220px;
    }
    .page_aj_1_each_right{
        width: 100%;
    }
    .page_Categories{
        display: block;
    }
    .page_Categories_each{
        width: 100%;
    }
    .page_service{
        display: block;
    }
    .page_service_each{
        width: 100%;
    }
    .page_type_content{
        display: block;
        height: auto;
    }
    .page_type_content_left{
        width: 100%;
        height: 300px;
    }
    .page_type_content_right{
        width: 100%;
    }
    .page_process{
        display: block;
    }
    .page_process_each{
        width: 100%;
    }
}
@media (max-width: 560px) {
    .page_1_right{
        display: none;
    }
    .swiper-slide img{
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
    }
    
    .page_Scenario{
        display: block;
    }
    .page_Scenario_each{
        width: 100%;
    }
}