@charset "utf-8";

/*header*/
header {
    position: fixed;
    left: 0;
    width: 100%;
    transition: transform .5s ease-out;
    z-index: 999;
}

.header {
    padding-left: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: background-color .4s;
    z-index: 4;
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    height: 1px;
    background-color: rgba(255, 255, 255, 0.10);
}
@media (min-width: 768px) {
    #headerInnerWrap.hide {
        transform: translate(0, -160px);
    }
}

.header .logo {
    height: 100%;
    max-width: 205px;
    display: flex;
    align-items: center;
}

.logo img:nth-child(2) {
    display: none;
}

.apply_btn {
    display: flex;
    height: 100%;
}

.apply_btn a {
    display: flex;
    padding: 10px 32px;
    justify-content: center;
    align-items: center;
    background: linear-gradient(0deg, #015EEA 0%, #015EEA 100%), #0234C5;
    color: var(--white-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
}

.menu ul {

    display: flex;
    justify-content: space-between;
}

.menu ul>li {
    position: relative;
    padding: 0 56px;
}

.menu ul>li>a {
    position: relative;
    padding: 31px 0;
    display: flex;
    color: var(--white-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.menu ul>li>a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--white-color);
    transform-origin: bottom right;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.menu ul>li.active>a::before,
.menu ul>li.current>a::before,
.menu ul>li>a:hover::before {
    transform-origin: bottom left;
    transform: scaleX(1);
}

.menu>ul>li .sub-menu {
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    position: absolute;
    top: 100%;
    padding-top: 8px;
    display: flex;
    padding: 40px;

    transition: all 0.4s ease-out;
    z-index: 9;
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
}
.menu>ul>li .sub-menu::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 100%;
    height: calc(100% - 8px);
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.25);
   z-index: -1;
}
.sub_left {
    display: flex;
    margin-left: -16px;
    margin-right: -16px;
}

.sub_left .loop {
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    flex-flow: column;
}

.sub_left .loop a {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    width: 240px;
}

.sub_left .loop a:last-child {
    margin-bottom: 0;
}

.sub_left .icon {
    display: flex;
    margin-right: 12px;
    padding: 10px;
    width: 56px;
    height: 56px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #F0F3F7;
}
.sub_left .icon img {
    max-width: 30px;
}
.sub_left .right_t .t {
    color: var(--dark-color);
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.sub_left .right_t .des {
    padding-top: 6px;
    font-size: 16px;
    color: #AEAEAE;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.sub_left a:hover .right_t .t {
    color: var(--main-color);
}

.sub_right {
    padding-left: 32px;
    margin-left: 32px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.sub_right>div {
    cursor: pointer;
}

.sub_right .video {
    position: relative;
    width: 300px;
    height: 180px;
    border-radius: 12px;
    background: #C2C2C2;
    overflow: hidden;
}
.sub_right .video a {
    display: block;
}
.sub_right .video>img {
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    -webkit-transition: transform .4s;
}

.sub_right .video .play_icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 50%;
}
.sub_right .video .play_icon svg {
    width: 100%;
    height: 100%;
}
.sub_right .video:hover .play_icon {
   background-color: var(--main-color);
}
.sub_right .video:hover .play_icon svg path {
    stroke: var(--white-color);
    fill: var(--white-color);
}
.sub_right .video:hover>img {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}
.sub_right .video_t {
    padding-top: 16px;
    color: var(--dark-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
}

.sub_right .video_a {
    padding-top: 8px;
    display: flex;
    align-items: center;
    color: var(--main-color);
    text-align: justify;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.sub_right .video_a i {
    margin-left: 8px;
    transition: all .3s;
}

.sub_right .video_trigger:hover .video_a i {
    transform: rotate(45deg);
}

.menu>ul>li.current .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scaleY(1);
}

@media (max-width:1680px) {
    .menu>ul>li:last-child .sub-menu {
        margin-left: -200px;
    }
}

@media (max-width:1440px) {}

/* menu eject */

.head_menu {
    position: absolute;
    right: 160px;
    display: none;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 90px;
    cursor: pointer;
    z-index: 4;
}

.header .head_menu i img:nth-child(2),
.head_menu .close {
    display: none;
}

.header .head_menu.is-active {
    right: 20px;
}

.header .head_menu.is-active i img:nth-child(1),
.header .head_menu.is-active i img:nth-child(2) {
    display: none !important;
}

.head_menu.is-active .close {
    display: block;
}

/*导航弹出*/
.ovh {
     position: fixed;
     width: 100%;
    overflow: hidden;
}
.ovh header {
    padding-right: 4px;
}

.header-nav {
    position: fixed;
    padding-top: 230px;
    padding-bottom: 90px;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    background-color:var(--main-color);
    z-index: 3;
    opacity: 0;
    visibility: hidden;
}

.header-nav:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    z-index: -1;
}

.f-cb {
    zoom: 1;
}

.por {
    position: relative;
}

.header-nav.active {
    opacity: 1;
    visibility: visible;
}

.logo_eject {
    position: absolute;
    left: 20px;
    top: 20px;
    max-width: 140px;
    opacity: 0;
    transform: translate(0, 30px);
    transition: all 0.6s cubic-bezier(0.79, -0.27, 0.21, 0.82);
    transition-delay: 0.16s;
}

.pu_select .my-container {
    height: 100%;

}

.pu_select>div>.pu_container {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-flow: column;
    justify-content: space-between;
}

.pu_select>div>.pu_container::-webkit-scrollbar {
    width: 2px;
    height: 2px
}

.pu_select>div>.pu_container::-webkit-scrollbar-button:vertical {
    display: none
}

.pu_select>div>.pu_container::-webkit-scrollbar-corner,
.pu_select>div>.pu_container::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.20);
}

.pu_select>div>.pu_container::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.50);
}

.pu_select .ct_1 {
    width: 100%;
    opacity: 0;
    transform: translate(0, 30px);
    transition: all 0.6s cubic-bezier(0.79, -0.27, 0.21, 0.82);
    transition-delay: 0.26s;
}

.pu_select .ct_1 .slide .one a {
    font-size: 22px;
    color: var(--white-color);
    font-weight: 700;
}

.pu_select .ct_1 .slide .one i {
    display: none;
}

.pu_select .ct_1 .slide .one i {
    width: 18px;
    height: 22px;
    float: right;
    background-image: url(../images/menu_icon_open_one.svg);
   
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.pu_select .ct_1 .slide .one i.ico {
     background-image: url(../images/menu_icon_pressed_one.svg);
}

.pu_select .ct_1 .slide .two {
    padding-top: 8px;
}

.pu_select .ct_1 .slide .two a {
    display: block;
    transition: 0.4s;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.60);
    line-height: 26px;
    margin: 8px 0 0;
}

.pu_select .ct_1 .slide .two a:hover {
    color: #fff;
}

.pu_select .ct_2 {
    margin: 40px 0 0 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.50);
    opacity: 0;
    transform: translate(0, 30px);
    transition: all 0.6s cubic-bezier(0.79, -0.27, 0.21, 0.82);
    transition-delay: 0.36s;
}

.pu_select .ct_2 .le_box {
    flex-wrap: wrap;
    flex: 1;
}

.pu_select .ct_2 .le_box .item {
    margin-right: 55px;
}

.pu_select .ct_2 .le_box .item>div:first-child {
    color: rgba(255, 255, 255, 0.50);
    font-size: 16px;
    font-weight: 400;
}

.pu_select .ct_2 .le_box .item .svg {
    margin: 0 14px 0 0;
}

.pu_select .ct_2 .le_box .item .svg img {
    width: 24px;
}

.pu_select .ct_2 .le_box .item p {
    padding-left: 38px;
    padding-top: 10px;
    color: var(--white-color);
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.pu_select .ct_2 .le_box .item:first-child p {
    font-size: 32px;
    font-weight: 600;
    font-family: 'Montserrat';
}

.pu_select .ct_2 .le_box .item a {
    transition: 0.4s;
    color: var(--white-color);
}

.pu_select .ct_2 .ri_box img {
    width: 120px;
    border-radius: 6px;
}

.pu_select .ct_2 .ri_box p {
    padding-top: 8px;
    color: var(--white-color);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}


.header-nav.active .logo_eject,
.header-nav.active .ct_1,
.pu_select.active .ct_2 {
    opacity: 1;
    transform: translate(0, 0);
}


@media screen and (max-height:880px) {
    .pu_select .ct_2 {
        margin: 30px 0 0 0;
        padding-top: 30px;
    }

}

@media screen and (max-height:800px) {
    .pu_select {
        padding-top: 160px;
        padding-bottom: 50px;
    }

    .pu_select .ct_1 .slide .two a {
        margin: 16px 0 0;
    }

    .pu_select .ct_2 {
        margin: 40px 0 0 0;
        padding-top: 30px;
    }

}

@media screen and (max-width:1280px) {

    .pu_select .ct_2 .ri_box {
        text-align: center;
    }

    .pu_select .ct_2 .ri_box img {
        width: 90px;
        margin: 0 auto;
    }

    .pu_select .ct_2 .ri_box p {
        font-size: 14px;
    }
}
@media screen and (max-width:991px) {

.head_menu {
        /*right: 118px;*/
    right: 10px;
        height: 70px;
    }
}

@media screen and (max-width:767px) {
    

    .header-nav:before {
        background-position: center bottom;
    }

    .pu_select .ct_1 {
        flex-wrap: wrap;
    }

    .pu_select .ct_1 .slide {
        width: 100%;
        margin-bottom: 26px;
    }

    .pu_select .ct_1 .slide .two {
        display: block;
        padding-top: 20px;
        width: 100%;
    }

    .pu_select .ct_1 .slide .two a {
        margin-right: 10px;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .pu_select .ct_1 .slide .one i {
        display: inline-block;
    }

    .pu_select .search_box {
        display: none;
        margin-right: 0;
        padding-right: 0;
    }

    .pu_select .search_box {
        width: calc(100% - 40px);
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .pu_select .search_bg {
        width: 100%;
    }

    .pu_select {
        padding: 100px 0 0;
    }

    .pu_select .my-container {
        overflow-y: auto;
        height: calc(100% - 30px);
    }

    .pu_select>div>.pu_container {
        display: block;
    }

    .pu_select .ct_2 {
        flex-wrap: wrap;
        width: 100%;
        margin: 0;
        padding-top: 20px;
    }

    .pu_select .ct_2 .le_box {
        width: 100%;
    }

    .pu_select .ct_2 .le_box .item {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
    }

    .pu_select .ct_2 .ri_box {
        width: 100%;
        display: none;
    }

    .pu_select .ct_2 .le_box .item p {
        line-height: 1.2;
        padding-top: 5px;
    }

    .pu_select .ct_2 .le_box .item:first-child p {
        font-size: 24px;
    }

    .pu_select .head_copy {
        display: block;
    }
}

/*header hover*/
.header.grey_head,
.header.headerColor2,
.header.headerColor3 {
    background-color: var(--white-color);
    border-bottom: transparent;
    backdrop-filter: inherit;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);

}

.header.grey_head::before,
.header.headerColor2::before,
.header.headerColor3::before {
    background-color: rgba(255, 255, 255, 0);
}


.header.grey_head .logo img:nth-child(1),
.header.white_head .logo img:nth-child(1),
.header.headerColor2 .logo img:nth-child(1),
.header.headerColor3 .logo img:nth-child(1) {
    display: none;
}

.header.grey_head .logo img:nth-child(2),
.header.white_head .logo img:nth-child(2),
.header.headerColor2 .logo img:nth-child(2),
.header.headerColor3 .logo img:nth-child(2) {
    display: block;
}

.header.grey_head .apply_btn a {
    background-color: var(--main-color);
}

.header.grey_head .menu ul>li>a,
.header.white_head .menu ul>li>a,
.header.headerColor2 .menu ul>li>a,
.header.headerColor3 .menu ul>li>a {
    color: var(--dark-color);
}
.header.grey_head .menu ul>li.active>a,
.header.grey_head .menu ul>li.current>a,
.header.headerColor2 .menu ul>li.active>a,
.header.headerColor2 .menu ul>li.current>a{
    color: var(--main-color);
}
.header.grey_head .menu ul>li>a::before,
.header.white_head .menu ul>li>a::before,
.header.headerColor2 .menu ul>li>a::before,
.header.headerColor3 .menu ul>li>a::before {
    background-color: var(--main-color);
}



.header.grey_head .head_menu i img:nth-child(1),
.header.headerColor2 .head_menu i img:nth-child(1) {
    display: none;
}

.header.grey_head .head_menu i img:nth-child(2),
.header.headerColor2 .head_menu i img:nth-child(2) {
    display: block;
}


.header.headerColor3 .is-active i {
    background-image: url(../images/close_black.svg);
}


@media (max-height:750px) {
    .header-nav {
        padding-top: 130px;
    }

    .header_eject_menu ul li {
        margin-bottom: 15px;
    }
}

@media (max-height:700px) {
    .header-nav {
        padding-top: 120px;
        padding-bottom: 30px;
    }

    .header_eject_menu ul li {
        margin-bottom: 12px;
    }
}

@media (max-height:650px) {
    .header-nav {
        padding-top: 110px;
        padding-bottom: 20px;
    }

    .header_eject_menu ul li {
        margin-bottom: 8px;
    }

    .menu_contact .item {
        margin-bottom: 8px;
    }
}

@media (max-width:1440px) {

    .header_eject_menu ul li a {
        font-size: 36px;
    }

}

@media (max-width:1366px) {
    .menu>ul>li {
        padding-left: 30px;
        padding-right: 30px;
    }

    .header_eject_menu ul li a {
        font-size: 34px;
    }

}

@media (max-width:1280px) and (min-height:700px) {
    .header_eject_menu ul li a {
        font-size: 32px;
    }

    .header_eject_menu ul li {
        margin-bottom: 15px;
    }
}

@media (max-width:1280px) {
    .header_eject_menu ul li a {
        font-size: 32px;
    }
}

@media (max-width:1279px) {
    .header .logo {
        width: 160px;
    }

    .menu>ul>li {
        padding-left: 25px;
        padding-right: 25px;
    }

    .header_eject_menu ul li a {
        font-size: 30px;
    }

    .header_eject_menu {
        margin-left: 190px;
    }
}

@media (max-width:1100px) {

    .menu {
        display: none;
    }

    .head_menu {
        display: flex;
        /*display: contents;*/
    }
    /*.apply_btn{*/
    /*    display: none;*/
    /*}*/

}

@media (max-width:360px) {
    .header_nav_bottom {
        padding-top: 20px;
    }

}

.visibles {
    visibility: visible;
    opacity: 1;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: 99;
}

.hidden {
    display: none;
    transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.menu ul li {
    transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.menu.is-closed {
    -webkit-animation-name: specialFadeIn;
    animation-name: specialFadeIn;
    -webkit-animation-delay: 30ms;
    animation-delay: 30ms;
    -webkit-animation-duration: 400ms;
    animation-duration: 400ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.menu.hidden {
    -webkit-animation-name: specialFadeOut;
    animation-name: specialFadeOut;
    -webkit-animation-delay: 245ms;
    animation-delay: 245ms;
    -webkit-animation-duration: 400ms;
    animation-duration: 400ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@media (max-width:991px) {
    .header {
        padding-left: 20px;
        height: 70px;
    }

    .header .logo {
        width: 140px;
    }

    .apply_btn a {
        padding: 10px 20px;
        font-size: 16px;
    }

}

/* 申请试用表单 */
.solution_mask {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: -1;
}

.asside_mask {
    background-color: transparent;
}

.solution_eject {
    position: fixed;
    display: flex;
    flex-flow: column;
    border-radius: 24px;
    background-color: var(--white-color);
    overflow: hidden;
    z-index: -100;
}
@media (min-width:768px) {
   .solution_eject {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -30%);
    width: 620px;
    max-width: 95%;
    opacity: 0;

    transition: transform 0.67s ease-in-out;

}
    
}
.solution_eject .solution_close {
    position: absolute;
    right: 32px;
    top: 32px;
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 58px;
    border: 1px solid #DEDEDE;
    cursor: pointer;
}

.solution_eject .solution_close img {
    transition: all .3s;
}

.solution_eject .solution_close:hover img {
    transform: rotate(180deg);
}

.solution_eject.show {
    opacity: 1;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.solution_form {
    display: flex;
    width: 100%;
    height: 100%;
}

.solution_form .item_left {
    flex: 1;
    position: relative;
}

.solution_form .item_right {
    padding: 55px 80px 55px 90px;
    display: flex;
    flex-flow: column;
    width: 100%;
}

.solution_form .item_left .thumb {
    width: 100%;
    height: 100%;
}

.solution_form .item_left .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution_form .apply_left_bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 40px;
}

.apply_left_bottom .t {
    padding-bottom: 16px;
    margin-bottom: 16px;
    color: #333;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.apply_left_bottom .apply_number {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.apply_left_bottom .apply_number .s {
    color: var(--blue-color);
    font-family: "Outfit";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.apply_left_bottom .apply_number p {
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.solution_title span {
    color: var(--blue-color);
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.solution_text {
    padding-top: 16px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.item_right .m_scoll {
    flex: 1;
    padding-right: 10px;
    overflow-y: auto;
    margin-top: 48px;
    max-height: 65vh;
}

.item_right .col {
    position: relative;
    margin-bottom: 24px;
    display: flex;
    height: 56px;
    padding: 12px 16px;
    align-items: center;
    align-self: stretch;
    width: 100%;
    border-radius: 30px;
    background: #F2F3F4;
}

.item_right .col>span {
    display: flex;
    align-items: center;
    color: rgba(0, 0, 0, 0.40);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.item_right .col>span img {
    margin-right: 8px;
    width: 24px;
}

.item_right .col>span em {
    font-style: normal;
}

.item_right .input-container {
    flex: 1;
}

.item_right .input-container input {
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    height: 32px;
    border: 0;
    color: var(--dark-color);
    line-height: 32px;
    font-size: 18px;
    font-weight: 400;
     font-family: 'Microsoft YaHei UI';
    text-align: left;
}
.input_select_box01 input,
.input_select_box02 input{
    cursor: pointer;
}

.item_right input::placeholder,
.input-container textarea::placeholder {
    color: rgba(0, 0, 0, 0.40);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
     font-family: 'Microsoft YaHei UI'
}

.item_right input:-moz-placeholder,
.input-container textarea::-moz-placeholder {
    color: rgba(0, 0, 0, 0.40);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
     font-family: 'Microsoft YaHei UI'
}

.item_right input::-moz-placeholder,
.input-container textarea::-moz-placeholder {
    color: rgba(0, 0, 0, 0.40);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
     font-family: 'Microsoft YaHei UI'
}

.input-container input:focus::placeholder,
.input-container textarea:focus::placeholder {
    opacity: 0;
    transition: all .2s linear;
}

.input-container input[readonly]:focus::placeholder {
    opacity: 1;
}


.item_right .agreen_ment {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-left: 20px;
    width: 100%;
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.item_right .agreen_ment .agree_ej {
    color: var(--blue-color);
}

.text-area label {
    position: absolute;
    bottom: -20px;
    left: 45px;
    color: red;
}

.item_right .col.yanzheng {
    padding-right: 0;
}

.yanzheng .messyz {
    width: 140px;
    height: 56px;
    border-radius: 30px;
    overflow: hidden;
}

.yanzheng .messyz img {
    width: 100%;
    height: 100%;
}

.submit-btn,.st_submit {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 60px;
    padding: 16px;
    border: none;
    border-radius: 48px;
    opacity: 0.3;
    background: var(--blue-color);
    color: var(--white-color);
    font-size: 18px;
      font-family: 'Microsoft YaHei UI';
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    cursor: not-allowed;
    transition: background-color 0.2s;
}

.submit-btn.enabled,
.st_submit.enabled {
    opacity: 1;
    cursor: pointer;
}

.checkbox {
    position: relative;
    margin: 0;
    margin-right: 8px;
    width: 22px;
    height: 22px;
}

.agreen_ment input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 9;
}

.agreen_ment input[type="checkbox"]+label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    width: 100%;
    height: 100%;
}

.agreen_ment input[type="checkbox"]+label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: 4px;
    border: 1px solid #666;
    background-color: #FFF;
}

.agreen_ment input[type="checkbox"]:checked+label:before {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.agreen_ment input[type="checkbox"]:checked+label:after {
    content: "\2713";
    position: absolute;
    top: 1px;
    left: 7px;
    font-size: 14px;
    color: var(--white-color);
    line-height: 20px;
     font-family: 'Microsoft YaHei UI';
}

.agreen_ment input[type="checkbox"]+label:before {
    transition: all 0.3s ease;
}

@media (max-width:1365px) {
    .solution_form .item_right {
        padding: 55px 50px 55px 60px;
    }
}

@media (max-width:1279px) {
    .item_right .m_scoll {
        margin-top: 30px;
    }

}

@media (max-width:991px) {
    .solution_form .item_right {
        padding: 55px 30px 55px 40px;
    }

    .solution_eject .solution_close {
        right: 20px;
        top: 20px;
    }

    .item_right .agreen_ment {
        font-size: 16px;
    }

    .solution_form .apply_left_bottom {
        padding: 40px 20px;
    }

}

@media (max-width:767px) {
.solution_mask {
    transition: all 0.4s ease-in-out;
}
    .solution_eject {
        width: 100%;
        left: 0;
        bottom: -100%;
        height: calc(100% - 70px);
        opacity: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        transition:all 0.4s;
    }
    .solution_eject.show {
        transform:inherit;
        opacity: 1;
         bottom: 0;
    }
    .solution_form .item_left {
       
        display: none !important;
    }

    .solution_form .item_right {
        width: 100%;
    }

    .solution_form .item_right {
        padding: 45px 20px 30px 20px;
    }

    .submit-btn {
        height: 50px;
        padding: 12px;
        font-size: 18px;
        line-height: 28px;
    }
.item_right .agreen_ment {
    /* padding-left: 0; */
}


}