body {
    background-color: #F6F8FB;
}

.kv {
    background-image: url("");
}

.multi-intro-group {
    margin-bottom: 0;
}

.multi-intro-group .contact-form-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 40px 0 60px 0;
}

.multi-intro-group .contact-form-group h3 {
    font-size: 26px;
    font-weight: bold;
}

.multi-intro-group .contact-form-group .tips {
    font-size: 14px;
    color: #666;
    margin: 20px 0 40px 0;
}

.multi-intro-group .contact-form-group form {
    width: 100%;
}

.multi-intro-group .contact-form-group form .row {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}

.multi-intro-group .contact-form-group form .row .item {
    width: 44%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.multi-intro-group .contact-form-group form .row .item input {
    border: none;
    outline: none;
    padding: 10px 0;
    border-bottom: 1px solid #CCC;
    position: relative;
}

.multi-intro-group .contact-form-group form .row .item input::placeholder {
    color: #AAA;
    font-size: 14px;
}

.multi-intro-group .contact-form-group form .full-row {
    width: 100%;
}

.multi-intro-group .contact-form-group form .full-row .item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.multi-intro-group .contact-form-group form .full-row .item textarea {
    border: none;
    outline: none;
    padding: 10px 0;
    border-bottom: 1px solid #CCC;
    position: relative;
}

.multi-intro-group .contact-form-group form .full-row .item textarea::placeholder {
    color: #AAA;
    font-size: 14px;
}

.multi-intro-group .contact-form-group form label {
    font-size: 16px;
    color: #333;
}

.multi-intro-group .contact-form-group form label span {
    color: #f00;
    font-size: 14px;
    margin-right: 10px;
}

.multi-intro-group .contact-form-group form .captcha {
    display: flex;
    align-items: center;
    gap: 10px;
}

.multi-intro-group .contact-form-group form .captcha input {
    max-width: 200px;
}

.multi-intro-group .contact-form-group form .captcha img {
    height: 36.5px;
    width: 118px;
}

.multi-intro-group .contact-form-group form .submit-row {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.multi-intro-group .contact-form-group form .submit-row .submit-btn {
    width: 44%;
    padding: 10px 0;
    font-size: 14px;
    background-color: #2E5EFB;
    color: white;
    border-radius: 4px;
    border: none;
    outline: none;
    cursor: pointer;
}

.multi-intro-group .contact-form-group form .submit-row .submit-btn:hover {
    opacity: 0.8;
}

.multi-intro-group .contact-form-group form .error-tips::before {
    position: absolute;
    content: "请填写正确内容";
    color: #c20707;
    font-size: 14px;
    top: 102%;
    left: 0;
    z-index: 2;
}

.multi-intro-group .map {
    width: 85%;
    margin: 100px auto 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.multi-intro-group .map::after {
    position: absolute;
    width: 150vw;
    left: -50%;
    height: 110%;
    background-color: #EEEFF4;
    z-index: -1;
    content: "";
}

.multi-intro-group .map .map-container {
    width: 400px;
    height: 400px;
}

.multi-intro-group .map .map-container img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.multi-intro-group .map .address h3 {
    margin-bottom: 30px;
}

.multi-intro-group .map .address .addr-text {
    color: #888;
    font-size: 16px;
    line-height: 2;
}

.multi-intro-group .map .address h4 {
    font-size: 20px;
    margin: 80px 0 20px 0;
}

.multi-intro-group .map .address .qrcode img {
    width: 160px;

}

@media screen and (max-width: 1025px) {
    .multi-intro-group .contact-form-group {
        width: 90vw;
        padding: 20px 0 30px 0;
    }

    .multi-intro-group .contact-form-group h3 {
        font-size: 18px;
    }

    .multi-intro-group .contact-form-group .tips {
        margin: 15px 0 30px 0;
    }

    .multi-intro-group .contact-form-group form {
        width: 100%;
    }

    .multi-intro-group .contact-form-group form .row {
        flex-direction: column;
        margin: 30px 0;
        gap: 30px;
    }

    .multi-intro-group .contact-form-group form .row .item,
    .multi-intro-group .contact-form-group form .row input {
        width: 100%;
    }

    .multi-intro-group .contact-form-group form .submit-row {
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    .multi-intro-group .contact-form-group form .submit-row .submit-btn {
        width: 44%;
        padding: 10px 0;
        font-size: 14px;
        background-color: #2E5EFB;
        color: white;
        border-radius: 4px;
        border: none;
        outline: none;
        cursor: pointer;
    }

    .multi-intro-group .contact-form-group form .submit-row .submit-btn:hover {
        opacity: 0.8;
    }

    .multi-intro-group .map {
        width: 90vw;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .multi-intro-group .map::after {
        top: -8%;
        height: 120%;
    }

    .multi-intro-group .map .address h4 {
        margin: 20px 0;
    }

    .multi-intro-group .map .map-container {
        width: 90vw;
        height: 250px;
    }

    .multi-intro-group .map .map-container img {
        width: 90vw;
        height: 250px;
    }
}

.founder-part {
    margin: 0 auto;
    padding: 0px 0 20px 0;
}

.founder-mesg {
    display: flex;
    align-items: flex-end;
    margin-bottom: 100px;
}

.founder-mesg .mesg {
    color: var(--primary-color);
    font-size: 22px;
    position: relative;
}

.founder-mesg .mesg::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 50px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.founder-mesg .mesg-eng {
    font-size: 12px;
    color: #DDD;
    margin-left: 10px;
}

.multi-intro-group .founder-mesg {
    margin-bottom: 50px;
}

@media screen and (max-width: 1025px) {
    .founder-part {
        width: 80vw;
        padding: 0 0 60px 0;
    }

    .founder-part .founder-mesg {
        margin-bottom: 60px;
    }

    .founder-part .founder-mesg .mesg {
        font-size: 18px;
    }

    .founder-part .founder-mesg .mesg::before {
        width: 30px;
        bottom: -10px;
    }

    .founder-part .founder-mesg .mesg-eng {
        font-size: 12px;
        color: #DDD;
        margin-left: 10px;
    }
}

.founder-container {
    padding: 0 0 120px 0;
}

#b3 .founder-info {
    margin-top: 140px;
}

.founder-info {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    padding-bottom: 30px;
}

.founder-info .avatar {
    width: 520px;
    height: 320px;
    min-width: 520px;
    border-radius: 50%;
    margin: -160px 0 0 0;
}

.founder-info .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.founder-info .detail-info .name {
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
}

.founder-info .detail-info .title {
    font-size: 18px;
    color: #666;
}

.founder-info .detail-info .desc {
    margin-top: 20px;
    color: #333;
    font-size: 16px;
    line-height: 2;
    position: relative;
    padding: 30px 0 60px 0;
}

.founder-info .detail-info .desc::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 0;
    width: 300vw;
    transform: translateX(-50%);
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.04;
    z-index: -1;
}

.team-part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 900px;
    margin: 0 auto;
    padding: 0px 0 120px 0;
}

.team-part .team-group {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

@media screen and (max-width: 1025px) {
    .founder-info {
        gap: 20px;
        padding-bottom: 30px;
        flex-direction: column-reverse;
        width: 80vw;
        margin: 0 auto;
    }

    #b3 .founder-info {
        margin-top: 0;
    }

    .founder-info::after {
        height: 180px;
    }

    .founder-info .avatar {
        width: 100vw;
        height: auto;
        min-width: auto;
        position: relative;
        left: 0;
        margin: 0;
        top: -30px;
    }

    .founder-info .detail-info .name {
        font-size: 26px;
    }

    .founder-info .detail-info .title {
        font-size: 16px;
    }

    .founder-info .detail-info .desc {
        margin-top: 20px;
        line-height: 1.5;
        padding: 20px 0 20px 0;
    }

    .team-part {
        width: 90vw;
        padding: 20px 0 60px 0;
    }

    .team-part .team-group {
        margin-top: 60px;
        display: flex;
        flex-direction: column;
        gap: 100px;
    }

    .team-part .team-group .founder-info:nth-child(even) {
        flex-direction: column-reverse;
    }
}

.jobs-part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0px 0 120px 0;
}

.job-select-icon {
    display: flex;
    gap: 20px;
    margin: 20px;
    justify-content: center;
}

.job-select-icon a {
    padding: 8px 20px;
    color: #333;
    font-size: 16px;
    cursor: pointer;
}

.job-select-icon a.active {
    border-bottom: 2px #fd6e00 solid;
    color: #fd6e00;
}

.job-select-icon a:hover {
    color: #fd6e00;
}


.job-city-list {
    display: flex;
    margin: 0 20px 20px 20px;
    gap: 10px;
}

.job-city-list a {
    padding: 4px 10px;
    color: #555;
    cursor: pointer;
    font-size: 14px;
}

.job-city-list a.active,
.job-city-list a:hover {
    color: #2C5DBC;
}

.job-tag-list {
    width: 100%;
    display: flex;
    margin: 0 20px 20px 20px;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
}

.job-tag-list a {
    padding: 4px 10px;
    cursor: pointer;
    color: #555;
    font-size: 14px;
}

.job-tag-list a.active,
.job-tag-list a:hover {
    color: #2C5DBC;
}




.jobs-part .job-search {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
}

.jobs-part .job-search input {
    border: 1px solid #EEE;
    padding: 14px 20px;
    font-size: 14px;
    width: 320px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.jobs-part .job-search .search-btn {
    background-color: var(--btn-color);
    color: white;
    cursor: pointer;
    transition: all 0.4s ease;
    height: 48px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.jobs-part .job-search .search-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.jobs-part .job-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 10px auto;
}

.job-list .job-bm {
    width: 95%;
    display: flex;
    flex-direction: column;
    margin: 10px 0;
}
.job-list .job-bm .addr{
    font-size: 14px;
    color: #555;
    padding-left: 25px;
}

.job-list .job-bm i {
    padding: 5px 0 0 20px;
    color: #2C5DBC
}

.job-list .job-bm h2 {
    font-size: 23px;
    line-height: 60px;
    color: #2C5DBC;
    padding: 0 0 0 25px;
}


.jobs-part .job-list .job-item {
    width: 95%;
    background: #fff;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    padding: 30px 30px;
    margin: 10px auto 5px auto;
}


.jobs-part .job-list .job-item:hover {
    box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    transition: 0.2s;
    z-index: 10;
}

.jobs-part .job-list .job-item:hover .job-title a {
    color: #2C5DBC;
}

.jobs-part .job-list .job-item .job-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 85%;
}

.jobs-part .job-list .job-item .job-title a {
    color: #333;
    font-size: 22px;
}

.jobs-part .job-list .job-item .job-title {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: baseline;
}

.jobs-part .job-list .job-item .job-more-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #999;
    font-size: 15px;
}

.jobs-part .job-list .job-item .job-desc {
    width: 88%;
    color: #444;
    line-height: 30px;
    font-size: 15px;
    margin: 15px 0 0 0;
}

.jobs-part .job-list .job-item .job-btn {display: flex;align-items: center;flex-direction: column;gap: 20px;justify-content: center;}
.jobs-part .job-list .job-item .job-btn .share-btn{min-width:64px;}


.jobs-part .job-list .job-item .job-btn a {
    border-radius: 100px;
}



.job-step2 {
    width: 95%;
    margin: 10px auto;
    background-color: #eceff3ab;
    padding: 30px;
    border-radius: 8px;
}

.job-step2 h2 {
    font-size: 22px;
    line-height: 40px;
    color: #444;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: normal;
}

.job-step2 h2 img {
    height: 23px;
    width: auto;
    margin: 5px 5px 0 0;
}

.job-step2 p {
    color: #444;
    line-height: 26px;
    margin: 5px 0 6px 0;
}

.job-step2 a {
    color: #076ce0;
    cursor: pointer;
    text-decoration: underline;
}

.job-step2 a:hover {
    color: #2c5dbc;
    text-decoration:none;
}

.job-step {
    display: flex;
    width: 98%;
    max-width: 1200px;
    margin: 40px 0 40px 0;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #555;
    flex-wrap: wrap;
}

.pointers {
    cursor: pointer;
}

.step-item i {
    background-color: #2c5dbc;
    color: #fff;
    text-align: center;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    font-style: normal;
    position: relative;
    top: 20px;
    left: 35px;
    border: 1px #2c5dbc solid;
}

.step-item img {
    width: auto;
}

.step-item span {
    color: #555;
    text-align: center;
}

.step-item-icon {
    opacity: 0.5;
}

.step-item:hover {
    transform: translateY(-5px);
    transition: 0.4s;
}

.step-item:hover span {
    color: #2c5dbc
}

.step-item:hover i {
    background-color: #fff;
    color: #2c5dbc;
    border: 1px #2c5dbc solid;
}

.step-item h2 {
    font-style: normal;
    border-radius: 100%;
    font-weight: normal;
    text-align: center;
    font-size: 28px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border: 3px #2c5dbc solid;
    background-color: #2c5dbc;
    color: #fff;
}

.step-item .h2color {
    border: 3px #3adbff solid;
    background-color: #2c5dbc;
}

.step-item:hover h2 {
    background-color: #ffffffb8;
    color: #2c5dbc;
    border: 3px #2c5dbcde solid;
}


@media screen and (max-width: 1025px) {
    .jobs-part {
        width: 90vw;
        padding: 20px 0 60px 0;
    }

    .jobs-part .job-search input {
        padding: 8px 12px;
        font-size: 12px;
        width: 200px;
    }

    .jobs-part .job-search .search-btn {
        height: 34px;
        width: 80px;
        font-size: 13px;
    }

    .job-step2 {
        padding: 20px;
    }

    .jobs-part .job-list .job-item {
        padding: 20px;
        flex-direction: column;
    }

    .jobs-part .job-list .job-item .job-info {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .jobs-part .job-list .job-item .job-title {
        font-size: 18px;
    }

    .jobs-part .job-list .job-item .job-more-info {
        gap: 10px;
        font-size: 14px;
    }

    .jobs-part .job-list .job-item .job-btn {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-top: 10px;
    }

    .jobs-part .job-list .job-item .job-btn .btn {
        font-size: 14px;
    }
}

.contact-group-part h3 {
    font-size: 26px;
    font-weight: bold;
}

.contact-group-part .tips {
    font-size: 14px;
    color: #666;
    margin: 20px 0 40px 0;
}

.company-info {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    gap: 50px;
}

.company-info .info-detail {
    max-width: 430px;
}

.company-info .info-detail .company-name {
    font-size: 22px;
    font-weight: bold;
}

.company-info .info-detail .intro-desc {
    margin: 30px 0;
    font-size: 16px;
    color: #666;
    line-height: 2;
}

.company-info .info-detail .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.company-info .info-detail .contact-info .line {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.company-info .info-detail .contact-info .btn {
    font-size: 14px;
    padding: 4px 6px;
}

@media screen and (max-width: 1025px) {
    .company-info {
        flex-direction: column;
        margin-top: 60px;
        gap: 30px;
    }

    .company-info .info-detail {
        max-width: 100%;
    }

    .company-info .info-detail .company-name {
        font-size: 20px;
    }

    .company-info .info-detail .intro-desc {
        margin: 10px 0 20px 0;
        font-size: 16px;
    }

    .company-info .info-detail .contact-info {
        gap: 20px;
    }

    .company-info .info-detail .contact-info .line {
        flex-direction: column;
        justify-content: flex;
        font-size: 16px;
    }

    .company-info .info-detail .contact-info .btn {
        font-size: 14px;
        padding: 4px 6px;
    }
}

@media screen and (max-width: 850px) {
    .jobs-part {
        padding: 0px 0 60px 0;
    }

    .job-step {
        gap: 10px;
        flex-wrap: wrap;
        align-content: stretch;
        justify-content: space-evenly;
        width: 100%;
        margin: 30px 0 30px 0;
    }

    .step-item {
        flex-direction: column;
    }

    .step-item img {
        width: 40%;
    }

    .step-item i {
        width: 20px;
        height: 20px;
        top: 60px;
        left: -20px;
        font-size: 12px;
        line-height: 20px;
    }

    .jobs-part .job-list .job-item .job-info {
        width: 100%;
    }

    .jobs-part .job-list .job-item .job-title {
        flex-direction: column;
    }

    .jobs-part .job-list .job-item .job-more-info {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .jobs-part .job-list .job-item .job-desc {
        width: 100%;
    }

    .jobs-part .job-list .job-item {
        padding: 20px;
        width: 90%;
    }

    .job-step2 {
        width: 90%;
    }

    .jobs-part .job-list .job-item .job-btn {
        justify-content: center;
        margin: 15px 0 15px 0;
    }

    .jobs-part .job-list .job-item .job-btn a {
        width: 50%;
    }

    .job-list .job-bm {
        margin: 15px 0 0 0;
    }
}

@media screen and (max-width: 599px) {
    .step-item {}

    .job-step {
        gap: 5px;
    }

    .step-item span {}

    .step-item h2 {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .step-item-icon img {
        width: 70%;
    }
}

@media screen and (max-width: 485px) {
    .job-step2 h2 {
        font-size: 20px;
    }

    .job-step2 p {
        font-size: 15px;
    }

    .job-list .job-bm h2 {
        font-size: 20px;
        line-height: 30px;
        margin: 10px 0 10px 0;
    }

    .jobs-part .job-list .job-item .job-title a {
        font-size: 20px;
    }
}

@media screen and (max-width: 379px) {
    .step-item {
        gap: 5px;
    }

    .step-item span {
        color: #2c5dbc;
    }

    .step-item h2 {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 20px;
    }

    .job-step {
        gap: 25px;
        width: 80%;
        margin: 30px 0 30px 0;
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }

    .step-item-icon {
        display: none;
    }

    .job-list .job-bm h2 {
        font-size: 20px;
        line-height: 30px;
        margin: 10px 0 10px 0;
    }

    .job-step2 {
        width: 80%;
        padding: 20px;
    }

    .jobs-part .job-list .job-item {
        width: 80%;
        padding: 20px;
    }

}



#b4 {
    /* width: 1200px; */
}

#b4 .team-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

#b4 .team-list .staff-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 280px;
    cursor: pointer;
    padding: 60px 0;
    transition: all 0.4s ease;
    border-radius: 6px;
}

#b4 .team-list .staff-item .avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    transition: all 0.4s ease;
    border: 1px solid #EEE;
}

#b4 .team-list .staff-item .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

#b4 .team-list .staff-item .staff-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#b4 .team-list .staff-item .staff-info .name {
    font-size: 22px;
    color: #333;
}

#b4 .team-list .staff-item .staff-info .title {
    font-size: 16px;
    color: #888;
}

#b4 .team-list .staff-item:hover .avatar {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1025px) {
    #b4 {
        width: 90vw;
    }

    #b4 .team-list {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}


.slick-dots {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: "";
    border: none;
    outline: none;
    background-color: #ECF0FB;
    color: transparent;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.slick-dots li button:hover {
    background-color: #d3daea;
}

.slick-dots .slick-active button {
    background-color: #d6dce9;
}


.hot-line {
    margin: 0px auto 40px auto;
}

.hot-line ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    width: 88%;
    margin: 0 auto;
}

.hot-line ul li {
    list-style: none;
    font-size: 18px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    width: 33%;
    color: #555;
}

.hot-line ul li:first-child {
    width: 99%;
}

.hot-line ul li img {
    width: 40px;
    margin: 0 10px 0 0;
}

.hot-line ul li span {}

img.maps {
    width: 88%;
    margin: 10px auto 120px auto;
}

img.maps:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 800px) {
    .hot-line {
        margin: 0 0 0 0;
    }

    img.maps {
        width: 220%;
        position: relative;
        left: -60%;
    }

    .hot-line ul {
        width: 95%;
    }

    .hot-line ul li {
        width: 100%;
        margin: 12px 0;
        font-size: 16px;
    }

    .founder-mesg .mesg {
        font-size: 20px;
    }
}








.disabled-btn {
    background-color: #c0c0c0;
    cursor: not-allowed;
}


.show-hr-qrcode {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100vw;
    height: 100vh;
    z-index: 999;
}

.hr-qrcode-container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    max-width: 300px;
}

#close-hr-qrcode {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.2s ease;
    cursor: pointer;
}

#close-hr-qrcode:hover {
    transform: translateX(-50%) scale(1.1);
}

.hr-tips {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 30px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    z-index: 999;
    color: white;
    font-size: 20px;
}

.multi-intro-group .intro-group .intro-item .info .description p { text-indent: 0;}

.multi-intro-group .intro-group .intro-item .info .description ul {display: flex;flex-direction: row;flex-wrap: wrap;gap: 20px;margin: 10px 0;}

.multi-intro-group .intro-group .intro-item .info .description ul li {list-style: none; display: flex; flex-direction: row; align-items: center;gap: 10px;margin: 5px 0;}

.multi-intro-group .intro-group .intro-item .info .description ul li div {}

.items-list {
    width: 99%;
    margin-top: 30px;
    margin-bottom: 100px;
}

.items-list .intro-item .btn-group {margin: 0px 0 20px 0;display: flex;gap: 20px;}

.items-list .intro-item {
    position: relative;
    top: 0;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
    transition: all .2s ease-in-out;
    border-radius: 8px;
}

.items-list .intro-item:hover {
    top: -2px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.items-list .intro-item:hover .info .title{color:#2C5DBC}

.multi-intro-group .intro-group .intro-item .intro-image img {
    border-radius: 0;
}

.multi-intro-group .intro-group {
    gap: 30px;
}

.multi-intro-group .intro-group .intro-item {
    background-color: white;
}

.multi-intro-group .intro-group .intro-item .info {
    width: 45vw;
    /* padding-left: 4vw; */
    padding: 30px 0 30px 4vw;
}

.multi-intro-group .intro-group .intro-item:nth-child(even) {
    flex-direction: row;
}

.multi-intro-group .intro-group .intro-item .intro-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}


.multi-intro-group .intro-group .intro-item .intro-image {
    width: 38vw;
    max-width: 500px;
    padding: 20px;
    margin-right: 20px;
}

.process-text{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    width: 300px;
    font-size: 14px;
}

.process {
    width: 300px;
    height: 10px;
    border-radius: 80px;
    background-color: #EEE;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.process::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    background-color: #2C5DBC;
    border-radius: 80px;
    z-index: 2;
}

.process-10::after {
    width: 10%;
}

.process-20::after {
    width: 20%;
}

.process-30::after {
    width: 30%;
}

.process-40::after {
    width: 40%;
}

.process-50::after {
    width: 50%;
}

.process-60::after {
    width: 60%;
}

.process-70::after {
    width: 70%;
}

.process-80::after {
    width: 80%;
}

.process-90::after {
    width: 90%;
}

.process-100::after {
    width: 100%;
}


.slick-dots {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}
.slick-dots li button {
  width: 38px;
  height: 4px;
  content: "";
  border: none;
  outline: none;
  background-color: #ECF0FB;
  color: transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.slick-dots li button:hover {
  background-color: #a6aec1;
}
.slick-dots .slick-active button {
  background-color: #a1a7b3;
}


.services-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    row-gap: 0;
    margin-bottom: 40px;
}


.service-item {
    width: 370px;
    /* background-color: white; */
    /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.1); */
    /* border-radius: 2px; */
    position: relative;
    top: 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    width: 100%;
}

.service-item:hover {
    /* top: -6px; */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

div.service-item:last-child{border-bottom: 0px;}

.service-item .service-info {
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.service-item .service-image img {
    width: 100%;
    border-radius: 2px;
}

.service-item .left-part {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 10px;

}

.service-info .info-title {
    font-size: 20px;
    /* font-weight: bold; */
    /* padding-bottom: 10px; */
    /* border-bottom: 1px solid #EEE; */
    /* margin-bottom: 20px; */
    display: flex;
    align-items: center;
    gap: 10px;
}
.service-info:hover .info-title {color:#2C5DBC}

.service-info .info-desc2 {font-size: 16px;color: #333;}
.service-info .info-desc2 a{cursor: pointer;text-decoration: underline;color: #2C5DBC}

.service-info .info-desc {
    /* margin-bottom: 20px; */
    margin-left: 30px;
    font-size: 14px;
    color: #777;
}

.bottom-submit-btn {
    display: flex;
    justify-content: center;
    padding: 20px 0 120px 0;
}

.policy-list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 1200px;
    gap: 5px;
    margin: 20px 0 100px 0;
    row-gap: 0;
}

.policy-list p {
    width: calc(50% - 5px);
    padding: 5px 30px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
    text-indent: 12px;
}

.policy-list a {
    color: #666;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
    }

 .policy-list a:before {
    content: "·";
    display: block;
    float: left;
    width: 16px;height: 22px;
    /*background-image: url('/guang/images/p_line.svg');
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center;*/
    opacity: 0.5; 
    z-index: -1; 
    font-size: 28px;line-height: 20px;
}


.policy-list a:hover {
    /* box-shadow:  0 0 20px rgba(0, 0, 0, 0.1); */
    color: #2C5DBC;
    text-decoration:underline;
}

@media screen and (max-width: 860px) {

    .policy-list {
        margin-bottom: 50px;
    }

    .policy-list p {
        width: 50%;
    }

    .service-info .info-title{
        font-size: 18px;
    }

    .service-item .service-info,.service-item .left-part{
        flex-direction: column;
        align-items: flex-start;
    }

    .left-part .info-desc{
        margin-bottom: 20px;
    }

    .bottom-submit-btn{
        padding-bottom: 60px;
    }
}


@media screen and (max-width: 670px) {
    .policy-list p {width: 100%;}
    .policy-list{max-height:100%;}
    .items-list .intro-item .btn-group {margin: 0px 0 20px 0;display: flex;gap: 10px;    flex-wrap: wrap;}
    .items-list .intro-item .btn-group .grey-btn {padding: 5px 10px;}
    
}
.checkbox {
    position: relative;
    width: 17px;
    height: 17px;
    border-radius: 3px;
    border: 1px solid #AAA;
}
.checkbox img{
    position: absolute;
    width: 18px;
    left: -1px;
    bottom: -1px;
}
.hide {
    display: none !important;
}


.pagination {
    margin-bottom: 120px;
}

.pagination ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.pagination ul li {
    cursor: pointer;
}

.pagination ul li:hover {
    opacity: 0.7;
}

.pagination .page {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    /* border: 2px solid #CCC; */
}

.pagination .arrow {
    width: 18px;
    height: 18px;
    position: relative;
}

.pagination .prev {
    transform: rotateY(180deg);
    color: var(--primary-color);
    margin-right: 10px;
}

.pagination .next {
    color: var(--primary-color);
    margin-left: 10px;
}

.pagination .disabled {
    color: #CCC;
    cursor: not-allowed;
}

.pagination .active {
    color: var(--primary-color);
    border-color: var(--primary-color);
    /* background-color: #ebf0fb; */
}

@media screen and (max-width: 1025px) {
    .news-list {
        width: 90vw;
        padding: 0 0 40px 0;
    }

    .news-list .news-item {
        width: 100%;
        gap: 20px;
        padding-bottom: 20px;
        margin-top: 20px;
    }

    .news-list .news-item .title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
    }

    .news-list .news-item .date span {
        font-size: 12px;
    }

    .news-list .news-item .date span:first-child {
        font-size: 20px;
        line-height: 26px;
    }

    .news-list .news-item .date::after {
        right: -11px;
        height: 26px;
        top: 6px;
    }

    .news-list .news-item .news-detail .title {
        font-size: 16px;
        color: #444;
    }

    .pagination {
        margin-bottom: 80px;
    }

    .pagination ul {
        gap: 13px;
    }

    .pagination .page {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .pagination .arrow {
        width: 18px;
        height: 18px;
    }
}

.service-container{
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.service-container .services-list{
    width: 65%;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px;
}


.service-container .service-cart{
    height: fit-content;
    width: 30%;
    background-color: white;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: sticky;
    top: 0;
    right: 0;
}

.service-cart .head-title{
    background-color: #eff2f6;
    color: #666;
    text-align: center;
    padding: 10px 0;
}
.service-cart .btn-group{
    display: flex;
    justify-content: center;
    padding: 20px 0;
}
.service-cart .btn-group .btn{
    width: 70%;
}
.empty-tips{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #999;
    height: 200px;
}
.confirm-list{
    min-height: 200px;
    margin-bottom: 30px;
}

.confirm-list .selected-item{
    font-size: 14px;
    color: #666;
    padding: 14px 20px 10px 20px;
    position: relative;
    border-bottom: 1px solid #f3f3f3;
}

.confirm-list .selected-item::after{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: "";
    background-color: #7192fc;
}

@media screen and (max-width: 900px) {

    .items-list{
        margin-bottom: 30px !important;
    }

    .multi-intro-group .intro-group .intro-item:nth-child(even){
        flex-direction: column;
    }

    .multi-intro-group .intro-group .intro-item .info {
        width: 90%;
        padding: 20px;
    }


    .multi-intro-group .intro-group .intro-item .intro-image img {
        width: 100%;
        max-width: 500px;
        height: auto;
    }


    .multi-intro-group .intro-group .intro-item .intro-image {
        width: 90%;
        margin: 0 auto;
        max-width: auto;
        padding: 0;
    }

    .process-text{
        width: 90%;
    }

    .process {
        width: 90%;
    }



    .service-container{
        flex-direction: column;
    }

    .service-container .services-list{
        width: 100%;
        padding: 0;
    }

    .service-container .service-cart{
        width: 100%;
    }

    .job-tag-list{ margin-left: 0;    }
        
    
    .service-container{margin-bottom: 0px;}
}


.multi-intro-group .intro-group .intro-item .intro-image .intro-image-item{
    border-radius: 8px;
    overflow: hidden;
    /* margin-right: 20px; */
    aspect-ratio: 8/5;
}
.multi-intro-group .intro-group .intro-item .intro-image img{
    /* object-fit: contain; */
    border-radius: 8px;
    aspect-ratio: 8/5;
}


@media screen and (max-width: 900px) {

    .multi-intro-group .intro-group .intro-item .intro-image .intro-image-item{
        margin-right: 0;
    }

    .btn{
        padding: 8px 18px;
    }
}


.service-sp-cart{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 94vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 3vw;
    background-color: #f7f7f7;
    font-size: 14px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #EEE;
    z-index: 9;
}
.service-sp-cart .head-title{
    display: flex;
    align-items: center;
    gap: 5px;
}
.service-sp-cart .red-tips{
    color: rgb(174, 29, 29);
    padding: 0 5px;
}
.service-sp-cart .ani-btn{
    padding: 5px 20px;
}

.sp-selected-item{
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    background-color: #f7f7f7;
    display: none;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.sp-selected-item .item{
    padding:  10px;
    border-bottom: 1px solid #F2f2f2;
}


.row{
  display: flex;
  align-items: center;
}

.file-upload{
  gap: 10px;
}

.file-upload-btn{
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 14px;
  border: 1px solid #CCC;
  cursor: pointer;
}

.file-upload-btn:hover{
  background-color: #DDD;
}

.upload-tips{
  font-size: 14px;
  color: #333;
}

.file-list{
  font-size: 14px;
  color: #666;
  padding: 4px 0 0 0;
}



 .back-btn {padding: 7px 22px;
    background-color: #7aa4c3;
}




.zhaosheng{
    color: #076ce0;
    font-size: 16px;
    position: relative;
    left: 130px;
    bottom: 34px;
}

.sp_clear_btn{
    display: none !important;
}

.sevalue{
width: 120px;border-color: transparent;border-style: solid;border-width: 1px; outline: none;padding: 14px;border-radius: 5px; background-color: #fff;font-size: 16px;    color: #333;font-family: auto;
}


.city-search{ display: flex; align-items: center;}
.city-search input{ height: 12px; width: 150px; border-color: #d0d7e3;border-style: solid;border-width: 1px; outline: none;padding: 14px;
    border-top-left-radius: 5px;border-bottom-left-radius: 5px;background-color: #fff;font-size: 16px;    color: #333;font-family: auto;
    border-right: none;font-size: 14px;color: #666;}
.city-search input::placeholder{font-size: 14px;}
.city-search .search-btn{  height: 40px;border-top-right-radius: 5px;  border-bottom-right-radius: 5px;  color: #333;
    display: flex;  justify-content: center;align-items: center;padding: 0 10px;cursor: pointer;transition: all 0.2s ease-in-out;    border: 1px solid #d0d7e3; border-left: none;width:20px;background: url(../images/search.png) #EEE no-repeat;background-position: center;background-size: 45%;font-size: 0px;}
.city-search .search-btn:hover{   background-color: #D5d5d5;}


@media screen and (max-width: 550px) {
    .back-btn{padding: 4px 10px;}
    .city-search{width:92%;margin:0 auto;}
    .city-search input{width:73%;}
}

@media screen and (max-width: 370px) {
    .city-search{ margin:0 auto;}
}
.btn-group{
    position: relative;
}

.share-qrcode{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    font-size: 24px;
    color: white;
    gap: 10px;
}


.share-qrcode img{
    width: 320px;
    height: 320px;
}

@media screen and (max-width: 768px) {


    .share-qrcode{
        font-size: 20px;
    }
        
    .share-qrcode img{
        width: 160px;
        height: 160px;
        padding: 20px;
        background-color: white;
    }
}

.share-qrcode .close-btn{
    margin-top: 20px;
    cursor: pointer;

}