﻿* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
}

header {
    box-shadow: 0 3px 3px rgba(0,0,0,.1);
    background: #fff;
}

    header.active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 101;
    }

        header.active .header_top {
            display: none;
        }

        header.active .iconfont {
            top: 50%;
        }

.header_pack {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 135px;
    padding: 0 !important;
}

    .logo a {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .logo img {
        max-height: 70%;
        display: block;
    }

.w_nav {
    display: flex;
}

    .w_nav > li {
        padding: 0 30px;
        display: flex;
        align-items: center;
        position: relative;
    }

        .w_nav > li:nth-child(2)::after,
        .w_nav > li:nth-child(5)::after {
            content: "";
            border-top: 4px solid;
            border-right: 4px solid transparent;
            border-bottom: 4px solid transparent;
            border-left: 4px solid transparent;
            display: block;
            margin-left: 5px;
        }

        .w_nav > li > a {
            font-size: 16px;
            color: #121316;
            line-height: 41px;
        }

        .w_nav > li:hover > a,
        .w_nav > .active > a {
            color: #007bf9;
            border-bottom: 1px solid #007bf9;
        }

        .w_nav > li:hover::after,
        .w_nav > .active::after {
            border-top-color: #007bf9;
        }

.banner {
    position: relative;
}

    .banner img {
        width: 100%;
        display: block;
    }

.banner_title {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0);
    padding: 20px 0;
}

    .banner_title h3 {
        font-size: 40px;
        line-height: 48px;
        color: #212529;
        text-align: center;
        font-weight: bold;
        text-transform: uppercase;
    }

.er_nav {
    min-width: 170px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 101;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,.1);
    border-radius: 5px;
    padding: 5px 0;
    display: none;
}

    .er_nav li a, .er_nav li {
        display: block;
        padding: 0 20px;
        font-size: 16px;
        line-height: 32px;
        color: #212529;
    }

        .er_nav li a:hover {
            background: #007bf9;
            color: #fff;
        }

.w_nav > li:nth-child(4) .er_nav {
    width: 200px;
}

.puablic {
    padding: 80px 0;
}

.public_title {
    font-size: 60px;
    line-height: 72px;
    margin-bottom: 8px;
    font-weight: bold;
    text-align: center;
}

.our_team_list {
    margin: 10px -14.7px 0;
    display: flex;
    flex-wrap: wrap;
}

    .our_team_list li {
        width: 25%;
        padding: 0 30px;
        margin-bottom: 20px;
    }

.our_team_list_img img {
    width: 100%;
    display: block;
}

.out_team_list_cont {
    width: 100%;
    text-align: center;
    background: #139df8;
    padding: 15px 0;
    font-size: 18px;
    color: #fff;
}

footer {
    background: #fff;
    padding: 55px 0;
}

.footer_pack {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_contact {
    width: 30%;
    padding-right: 30px;
}

    .footer_contact p {
        font-size: 16px;
        line-height: 1.8;
        color: #0b1419b5;
    }

.footer_nav {
    width: 25%;
    padding-left: 15px;
}

    .footer_nav a {
        display: block;
        color: #0b1419b5;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 8px;
    }

        .footer_nav a::before {
            content: "|";
            font-weight: 300;
            font-size: 20px;
            left: 0;
            color: #fff;
            display: inline-block;
            padding-right: 5px;
        }

.footer_email {
    width: 30%;
}

    .footer_email h3 {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: 2px;
        margin-bottom: 20px;
        color: #0b1419b5;
    }

.footer_input {
    display: flex;
    align-items: center;
}

    .footer_input input {
        width: 280px;
        line-height: 38px;
        font-size: 16px;
        padding: 0 10px;
        /*background: #0b1419b5;*/
    }

.footer_submit {
    width: calc(100% - 270px);
    font-size: 16px;
    color: #000;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 3px;
    background: #f0f0f0;
    cursor: pointer;
}

.copyright a {
    border-top: 3px solid #010c13b5;
    color: #000;
    font-size: 12px;
    text-align: center;
    padding: 8px 0;
    background: #fff;
    display: block;
}

.contact_pack {
    display: flex;
}

    .contact_pack > div {
        width: 50%;
        padding: 0 15px;
        margin: 0 auto;
    }

    .contact_pack .contact_left_cont {
        margin-top: 30px;
    }

.contact_left_cont p {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 8px;
}

    .contact_left_cont p img {
        width: 23px;
        display: block;
        margin-right: 10px;
    }

.contact_right_input {
    margin-bottom: 16px;
}

    .contact_right_input label {
        font-size: 16px;
        line-height: 1.5;
        color: #212529;
        font-weight: 600;
        display: block;
        margin-bottom: 8px;
    }

        .contact_right_input label span {
            color: red;
        }

    .contact_right_input input {
        width: 100%;
        padding: 0 10px;
        font-size: 16px;
        line-height: 36px;
        color: #495057;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #ced4da;
        border-radius: 4px;
    }

    .contact_right_input textarea {
        width: 100%;
        font-size: 16px;
        padding: 0 10px;
        line-height: 2;
        height: 135px;
        border: 1px solid #ced4da;
        border-radius: 4px;
    }

.contact_right_code {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

    .contact_right_code img {
        width: 120px;
        height: 38px;
    }

.Captcha_btn {
    width: 102px;
    line-height: 38px;
    color: #fff;
    background-color: #6c757d;
    font-size: 16px;
    border-radius: 4px;
    margin-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .Captcha_btn i {
        width: 16px;
        height: 16px;
        background: url(../images/xh.png) no-repeat center/100% 100%;
        display: block;
        margin-right: 5px;
    }

.submit {
    width: 87px;
    line-height: 38px;
    border-radius: 4px;
    background: #007bff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    /*margin-left:calc(100% - 87px);*/
}

    .submit i {
        width: 16px;
        height: 16px;
        background: url(../images/submit.png) no-repeat center/100% 100%;
        margin-right: 5px;
        display: block;
    }

.Financial_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .Financial_list li {
        padding: 20px;
        max-width: 330px;
        margin: 20px 0;
        box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    }

.Financial_list_pack {
    background: #fff;
    height: 100%;
}

.Financial_list_img {
    width: 175px;
    margin: 0 auto 16px;
}

    .Financial_list_img img {
        width: 100%;
        display: block;
    }

.Financial_list_cont h3 {
    font-size: 28px;
    margin-bottom: 8px;
    text-align: center;
    color: #212529;
    font-weight: bold;
}

.Financial_list_cont p {
    font-size: 16px;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    margin-bottom: 16px;
}

.Financial_list_pack a {
    display: block;
    width: 130px;
    line-height: 38px;
    text-align: center;
    color: #fff;
    background: #007bf9;
    border-radius: 4px;
    font-size: 16px;
    margin: 0 auto;
}

.rules_list li {
    margin-bottom: 48px;
}

    .rules_list li:last-child {
        margin-bottom: 0;
    }

.rules_list_pack {
    display: flex;
}

.rules_list_img {
    width: 280px;
}

    .rules_list_img img {
        width: 100%;
        display: block;
    }

.rules_list_cont {
    width: calc(100% - 280px);
    padding-left: 30px;
}

    .rules_list_cont p {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        color: #212529;
        margin-bottom: 16px;
    }

        .rules_list_cont p:last-child {
            margin-bottom: 0;
        }

.rules_list li:nth-child(2n) .rules_list_pack {
    flex-direction: row-reverse;
}

.rules_list li:nth-child(2n) .rules_list_cont {
    padding: 0 30px 0 0;
}

.benefits_pack h3 {
    line-height: 1.2;
    font-weight: 700;
    font-size: 28px;
    color: #212529;
    margin-bottom: 8px;
}

.benefits_list {
    margin-top: 30px;
}

    .benefits_list li {
        margin-bottom: 20px;
    }

        .benefits_list li:last-child {
            margin-bottom: 0;
        }

.benefits_list_pack {
    display: flex;
    align-items: center;
}

.benefits_list_img {
    width: 50px;
    margin-right: 5px;
}

    .benefits_list_img img {
        width: 100%;
        display: block;
    }

.benefits_list_cont {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
}

.UList-box {
    display: none;
}

.login {
    min-height: 650px;
    padding-top: 100px;
}

.login_pack {
    width: 66%;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 4px;
    background-color: #fff;
}

    .login_pack h3 {
        padding: 12px 20px;
        margin-bottom: 0;
        background-color: rgba(0,0,0,.03);
        border-bottom: 1px solid rgba(0,0,0,.125);
        font-size: 16px;
        line-height: 1.5;
        color: #212529;
    }

.login_form {
    padding: 20px;
}

.login_input {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

    .login_input label {
        width: 33.333%;
        display: block;
        padding: 7px 15px;
        line-height: 1.5;
        color: #212529;
        font-size: 16px;
        font-weight: 600;
        text-align: right;
        margin-bottom: 0;
    }

    .login_input input {
        margin: 0 15px;
        width: 50%;
        border: 1px solid #ced4da;
        border-radius: 4px;
        color: #495057;
        font-size: 16px;
        line-height: 38px;
        padding: 0 10px;
    }

.login_checkbox {
    margin-left: calc(33.33% + 15px);
    display: flex;
    align-items: center;
}

    .login_checkbox label {
        font-size: 16px;
        line-height: 1.5;
        color: #212529;
        font-weight: 600;
        margin: 0 0 0 5px;
    }

.login_submit {
    margin-left: calc(33.33% + 15px);
    text-align: center;
    width: 70px;
    color: #fff;
    background-color: #007bff;
    font-size: 16px;
    line-height: 38px;
    border-radius: 4px;
    margin-top: 16px;
    cursor: pointer;
}

    .login_submit:hover {
        opacity: .8;
    }

.ouraim_list li {
    margin-bottom: 30px;
}

.ouraim_list_pack {
    padding-left: 43px;
    position: relative;
    border-left: 2px solid #139df8;
    font-size: 16px;
    line-height: 1.5;
    color: #757580;
}

    .ouraim_list_pack h3 {
        font-size: 28px;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 8px;
    }

.events h3 {
    font-size: 32px;
    margin-bottom: 24px;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    font-weight: bold;
}

.events_list li {
    padding: 30px 0 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

    .events_list li a {
        display: flex;
        align-items: center;
    }

.events_list_pack {
    width: 250px;
}

    .events_list_pack img {
        width: 100%;
        display: block;
    }

.events_list_cont {
    width: calc(100% - 250px);
    padding-left: 20px;
}

    .events_list_cont h3 {
        color: #212529;
        font-size: 32px;
        font-weight: 500;
        line-height: 1.2;
        text-align: left;
    }

    .events_list_cont span,
    .events_list_cont p {
        display: block;
        font-weight: 400;
        line-height: 1.5;
        color: #212529;
        font-size: 16px;
        margin: 16px 0;
    }

    .events_list_cont p {
        margin: 0;
    }

.events_list li a:hover h3 {
    text-decoration: underline;
}

.become_form {
    width: 50%;
    margin: 0 auto;
    padding: 20px 30px;
}

    .become_form textarea {
        height: auto;
    }

.select_list_cont {
    max-height: 240px;
    overflow: auto;
    border: 1px solid #666;
    border-radius: 4px;
    border-top: none;
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: #fff;
    z-index: 10;
}

    .select_list_cont span {
        display: block;
        font-size: 16px;
        line-height: 17px;
        padding: 5px 10px;
        color: #444;
    }

        .select_list_cont span:hover {
            background: #007bf9;
            color: #fff;
        }

.select_list {
    position: relative;
}

    .select_list input {
        position: relative;
    }

    .select_list div:first-child::after {
        content: "<>";
        transform: rotate(90deg) translateX(-50%);
        color: #333;
        right: 11px;
        top: 45%;
        padding: 0 0 2px;
        border-bottom: 1px solid #999;
        position: absolute;
        font-size: 17px;
    }

.phone_pack {
    display: flex;
    position: relative;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.phone_left_cont,
.phone_left_cont2 {
    width: 92px;
}

.phone_top,
.phone_top2 {
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    padding: 0 6px 0 8px;
    height: 38px;
    border-radius: 4px 0 0 4px;
    position: relative;
}

    .phone_top::after,
    .phone_top2::after {
        content: "";
        border-top: 4px solid #555;
        border-left: 3px solid transparent;
        border-bottom: 4px solid transparent;
        border-right: 3px solid transparent;
        position: absolute;
        top: 50%;
        right: 6px;
        transform: translateY(-50%);
    }

    .phone_top img,
    .phone_top2 img {
        width: 20px;
        height: 14px;
        object-fit: cover;
        display: block;
    }

    .phone_top span,
    .phone_top2 span {
        font-size: 16px;
        color: #212529;
        margin-left: 6px;
    }

    .phone_top i,
    .phone_top2 i {
        display: none;
    }

.phone_list_cont,
.phone_list_cont2 {
    width: 90%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 5px rgba(0,0,0,.2);
    display: none;
}

.phone_list_cont {
    z-index: 10;
}

    .phone_list_cont li,
    .phone_list_cont2 li {
        padding: 5px 10px;
        display: flex;
        align-items: center;
    }

        .phone_list_cont li:hover,
        .phone_list_cont2 li:hover {
            background: rgba(0, 0, 0, 0.05);
        }

        .phone_list_cont li img,
        .phone_list_cont2 li img {
            width: 20px;
            display: block;
            margin-right: 6px;
        }

        .phone_list_cont li p,
        .phone_list_cont2 li p {
            font-size: 16px;
            line-height: 1.5;
            color: #212529;
            margin-right: 6px;
        }

        .phone_list_cont li span,
        .phone_list_cont2 li span {
            font-size: 16px;
            line-height: 1.5;
            color: #999;
        }

.phone_input,
.phone_input2 {
    width: calc(100% - 92px);
}

    .phone_input input,
    .phone_input2 input {
        border: none;
    }

.contact_right_input input:focus,
.contact_right_input textarea:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.directory_classify {
    display: flex;
    height: 50px;
    line-height: 50px;
    background: #007bf9;
    border-radius: 5px;
    padding: 0 15px;
}

    .directory_classify li a {
        color: #FFFFFF;
        font-size: 16px;
        font-weight: 400;
        padding: 0 20px;
        display: block;
    }

        .directory_classify li a:hover,
        .directory_classify .active a {
            background: #448bf9;
        }

.directory_list_cont {
    margin: 30px 0 0;
    border: 1px solid #DDDDDD;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.firectory_list_title {
    background: #F5F5F5;
    display: flex;
    justify-content: space-between;
}

    .firectory_list_title span {
        width: 50%;
        text-align: center;
        display: block;
        font-size: 18px;
        font-weight: 400;
        color: #333333;
        line-height: 57px;
    }

        .firectory_list_title span:nth-child(2) {
            width: 22%;
        }

.directory_list_text {
    display: flex;
    justify-content: space-between;
    padding: 35px 0;
    border-bottom: 1px dashed #E5E5E5;
}

    .directory_list_text:last-child {
        border: none;
    }

.directory_list_left {
    width: 13%;
    text-align: center;
    margin-right: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    line-height: 48px;
}

.directory_list {
    width: 100%;
}

    .directory_list li {
        padding: 10px 0
    }

.directory_list {
    padding: 10px;
}

    .directory_list li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 0 8px 2px #eee;
        border-radius: 5px;
        padding: 10px;
    }

        .directory_list li a .company {
            display: flex;
            align-items: center;
            overflow: hidden;
        }

            .directory_list li a .company .company-logo {
                width: 150px;
                margin-right: 10px;
            }

        .directory_list li a .company-country {
            display: flex;
        }

            .directory_list li a .company-country img {
                width: 26px;
                /*display: block;*/
                object-fit: contain;
                margin-right: 10px;
                /*filter: drop-shadow(#007bf9 0 50px);
                transform: translateY(-50px);*/
            }

        .directory_list li a div p {
            line-height: 30px;
            font-size: 14px;
            color: #333333;
            font-weight: 400;
        }

        .directory_list li a span {
            color: #999;
            min-width: 14%;
            margin-left: 20px;
            font-size: 16px;
            font-weight: 400;
            line-height: 48px;
            display: block;
        }

.directory_list_pack > div {
    border-bottom: 1px dashed #E5E5E5;
}

    .directory_list_pack > div:last-child {
        border: none;
    }

.directory_nav {
    line-height: 50px;
    display: block;
    padding: 0 10px;
    font-size: 16px;
    color: #333333;
    background: #f7f7f7;
}

    .directory_nav a {
        color: #333333;
    }

.directory_Detail_hader {
    display: flex;
    background: #007bf9;
    border: 1px solid #007bf9;
    border-radius: 5px;
    margin-bottom: 10px;
    position: relative;
    padding: 35px;
}

.directory_Detail_hader_img {
    width: 170px;
}

    .directory_Detail_hader_img img {
        width: 100%;
        height: 95px;
        object-fit: cover;
        display: block;
    }

.directory_Detail_hader_cont {
    width: calc(100% - 170px);
    padding-left: 20px;
}

    .directory_Detail_hader_cont h1 {
        font-size: 18px;
        color: #fff;
        margin-bottom: 15px;
        padding-right: 50px;
    }

    .directory_Detail_hader_cont p span {
        line-height: 28px;
        border: 1px solid #fff;
        border-radius: 5px;
        padding: 0 10px;
        margin: 0 2px;
        font-size: 14px;
        color: #fff;
        display: inline-block;
    }

.directory_Detail_center {
    margin-top: 50px;
}

.directory_Detail_center_table {
    margin-bottom: 20px;
}

    .directory_Detail_center_table span {
        display: inline-block;
        font-size: 22px;
        font-weight: 400;
        color: #333333;
        margin-right: 60px;
        padding-bottom: 5px;
    }

        .directory_Detail_center_table span.active,
        .directory_Detail_center_table span:hover {
            color: #007bf9;
            border-bottom: 4px #007bf9 solid;
        }

.directory_Detail_center_cont {
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    padding: 50px;
}

.directory_DetailCompany_Info {
    display: flex;
    border-bottom: 1px #E5E5E5 solid;
    padding-bottom: 50px;
    margin-bottom: 50px;
}

    .directory_DetailCompany_Info:last-child {
        border: none;
        margin: 0;
        padding: 0;
    }

.directory_DetailCompany_Info_img {
    width: 465px;
    border-radius: 10px;
    overflow: hidden;
}

    .directory_DetailCompany_Info_img img {
        width: 100%;
        display: block;
    }

.directory_DetailCompany_Info_left {
    width: calc(100% - 465px);
}

    .directory_DetailCompany_Info_left h3 {
        font-size: 22px;
        font-weight: 400;
        color: #007bf9;
        border-left: 4px #007bf9 solid;
        padding-left: 15px;
        line-height: 1;
        margin-bottom: 20px;
    }

    .directory_DetailCompany_Info_left p {
        display: flex;
        font-size: 16px;
        font-weight: 400;
        color: #333333;
        padding: 17px 0 0;
        word-break: break-all;
        align-items: center;
    }

        .directory_DetailCompany_Info_left p img {
            width: 20px;
            margin-right: 30px;
            display: block;
        }

        .directory_DetailCompany_Info_left p a {
            color: #007bf9;
        }

.directory_DetailCompany_Info2 .directory_DetailCompany_Info_left {
    width: 100%;
}

.directory_Detail_table_cont > div {
    display: none;
}

.directory_Detail_bottom h3 {
    padding: 50px 0 30px 0;
    text-transform: uppercase;
    font-size: 28px;
    text-align: center;
    font-weight: 400;
    color: #007bf9;
}

.contact_left_cont p span {
    width: calc(100% - 33px);
}

.directory_Detail_bottom_contact {
    padding: 30px;
    background: #F5F5F5;
    border-radius: 10px;
}

.directory_Detail_bottom_contact_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
}

    .directory_Detail_bottom_contact_list li {
        padding: 0 15px;
        width: 33.333%;
        margin-bottom: 30px;
    }

        .directory_Detail_bottom_contact_list li .directory_Detail_bottom_pack {
            background: #FFFFFF;
            border: 1px solid #E5E5E5;
            border-radius: 10px;
            padding: 10px 22px;
            margin-bottom: 30px;
            height: 100%;
        }

.directory_Detail_bottom_pack p {
    display: flex;
    align-items: center;
    padding: 11px 0 5px 0;
    font-size: 16px;
    font-weight: 400;
}

    .directory_Detail_bottom_pack p img {
        width: 20px;
        object-fit: cover;
        display: block;
        margin-right: 20px;
    }

    .directory_Detail_bottom_pack p span {
        width: calc(100% - 40px);
        display: block;
    }

.home_swiper, .banner {
    overflow: hidden;

}

    .home_swiper a {
        height: 100%;
        display: block;
    }

    .home_swiper img, .banner img {
        width: 100%;
        display: block;
        height: 100%;
        object-fit: cover;
    }

.cooperator {
    padding: 50px 0;
    background: #F5F5F5;
}

    .cooperator h3 {
        font-size: 28px;
        font-weight: 400;
        color: #3966FD;
        line-height: 36px;
        margin: 0 20px;
        text-align: center;
        text-transform: uppercase;
    }

        .cooperator h3 a {
            display: block;
            color: #3966FD;
        }

        .cooperator h3::after {
            content: "";
            width: 132px;
            border-bottom: 1px #DDD solid;
            display: block;
            margin: 26px auto 0;
        }

.cooperator_cont {
    margin-top: 30px;
}

    .cooperator_cont > p {
        padding-bottom: 40px;
        font-size: 16px;
        text-align: center;
        color: #333333;
    }

.cooperator_swiper {
    overflow: hidden;
}

    .cooperator_swiper a {
        border: 1px solid #3966FD;
        display: block;
        border-radius: 10px;
        font-size: 18px;
        font-weight: 400;
        color: #333333;
        position: relative;
        height: 160px;
        overflow: hidden;
    }

.cooperator_cont1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.cooperator_cont1_img {
    width: 60px;
}

    .cooperator_cont1_img img {
        width: 100%;
        display: block;
    }

.cooperator_cont1_text {
    padding-left: 29px;
}

.cooperator_cont2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(75, 116, 252, .9);
    opacity: 0;
}

.cooperator_cont2_img {
    width: 50px;
    margin: 24px auto 16px;
    overflow: hidden;
    height: 50px;
}

    .cooperator_cont2_img img {
        width: 100%;
        display: block;
        filter: drop-shadow(#fff 0 60px);
        transform: translateY(-60px);
    }

.cooperator_cont2_text {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 24px;
    text-align: center;
    padding: 0 10px;
}

.cooperator_swiper a:hover .cooperator_cont2 {
    opacity: 1;
}

.ids {
    margin-top: 30px;
}

.numder {
    display: flex;
    justify-content: center;
}

    .numder p {
        color: #333;
        margin-right: 50px;
        font-size: 16px;
    }

        .numder p span {
            font-size: 30px;
            color: #FF5533;
            font-weight: 500;
        }

.home_plate2 {
    padding: 50px 0;
}

    .home_plate2 .container {
        display: flex;
        /*justify-content:space-between;*/
    }
        /*.home_plate2 .container > div {
        width: 30%;
        padding: 20px 0 30px 0;
        border-radius: 15px;
        border: 1px solid #fff9ee45;
        min-height:320px;
    }*/
        .home_plate2 .container .home_plate2_img:first-child {
            margin-right: 20px;
        }

    .home_plate2 .home_plate2_img {
        width: 49%;
        min-height: 320px;
    }

        .home_plate2 .home_plate2_img img {
            width: 100%;
        }

.home_plate2_cont1 {
    background: #0d4d92;
    color: #fff;
}

.home_plate2_cont1_img {
    width: 120px;
    margin: 0 auto;
}

    .home_plate2_cont1_img img {
        width: 100%;
        display: block;
    }

.home_plate2_cont1_text {
    padding: 0 10px;
}

    .home_plate2_cont1_text h3,
    .home_plate2_cont2 h3,
    .home_plate2_cont3 h3 {
        margin-bottom: 20px;
        font-weight: 700;
        line-height: 1.2;
        font-size: 28px;
        text-align: center;
    }

    .home_plate2_cont1_text p {
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 16px;
    }

    .home_plate2_cont1_text a {
        color: #fff;
        background-color: #007bff;
        width: 130px;
        line-height: 38px;
        font-size: 16px;
        text-align: center;
        display: block;
        margin: 30px auto 0;
        border-radius: 4px;
    }

.home_plate2_cont2 {
    background: #007bff1c;
}

.home_plate2_cont2_img {
    width: 160px;
    margin: 0 auto;
}

    .home_plate2_cont2_img img {
        width: 100%;
        display: block;
    }

.home_plate2_cont2 a,
.home_plate2_cont3 > a {
    display: block;
    width: 150px;
    line-height: 38px;
    border-radius: 4px;
    color: #fff;
    background: #007bff;
    font-size: 16px;
    text-align: center;
    margin: 30px auto 0;
}

.home_plate2_cont3 {
    background: #e9ecef;
}

.home_plate2_cont3_list {
    padding: 0 16px;
}

    .home_plate2_cont3_list li {
        margin-bottom: 8px;
    }

        .home_plate2_cont3_list li a {
            display: flex;
        }

.home_plate2_cont3_list_time {
    width: calc(16px * 3);
    text-align: center;
}

    .home_plate2_cont3_list_time p {
        border: 1px solid #999;
        background: #fff;
        color: #000;
        font-size: 20px;
        font-weight: 700;
        border-radius: 4px 4px 0 0;
        line-height: 1.5;
    }

    .home_plate2_cont3_list_time span {
        display: block;
        padding: 1.6px;
        margin-top: 0;
        background: #000;
        font-size: 12px;
        color: #fff;
    }

.home_plate2_cont3_list_cont {
    width: calc(100% - 48px);
    padding-left: 13px;
}

    .home_plate2_cont3_list_cont h4 {
        font-size: 17.6px;
        font-weight: 500;
        color: #333;
        line-height: 1.5;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .home_plate2_cont3_list_cont p {
        font-size: 14px;
        color: #333;
        line-height: 1.5;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

.home_plate2_cont3_list li a:hover {
    background: #d5d5d5;
}

.home_plate2_cont2 a:hover,
.home_plate2_cont3 > a:hover,
.home_plate2_cont1_text a:hover {
    background: #0069d9;
}

.home_plate3 {
    padding: 60px 0;
    background: rgb(238 245 253);
}

    .home_plate3 li {
        background: rgb(238 245 253);
    }

        .home_plate3 li .Financial_list_pack {
            background: transparent;
        }

.home_plate4 {
    background: url(../images/testimonials-bg-bkk-desk.jpg) no-repeat center/cover;
    padding: 120px 0;
}

    .home_plate4 h2 {
        color: #fff;
        text-align: center;
        padding: 20px;
        background: rgb(0 0 0 / 43%);
        margin-bottom: 40px;
        font-size: 32px;
        line-height: 1.2;
        font-weight: 700;
    }

.home_plate4_swiper {
    overflow: hidden;
}

    .home_plate4_swiper a {
        display: block;
    }

.home_plate4_swiper_img {
    width: 130px;
    margin: 0 auto -50px;
}

    .home_plate4_swiper_img img {
        width: 100%;
        display: block;
    }

.home_plate4_swiper_cont {
    padding: 16px 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    background: #fff;
    border-radius: 10px;
}

    .home_plate4_swiper_cont h4 {
        margin-top: 55px;
        font-size: 24px;
        line-height: 1.2;
        font-weight: bold;
        text-align: center;
        color: #007bf9;
        margin-bottom: 8px;
    }

    .home_plate4_swiper_cont h5 {
        margin-bottom: 15px;
        font-size: 12px;
        color: #007bff;
        text-align: center;
    }

    .home_plate4_swiper_cont p {
        margin: 10px auto 30px auto;
        line-height: 28px;
        max-width: 360px;
        font-size: 16px;
        color: #212529;
        text-align: center;
    }

.home_plate5 {
    padding: 30px 0;
}

    .home_plate5 h2 {
        margin-bottom: 30px;
        font-size: 32px;
        line-height: 1.2;
        color: #212529;
        text-align: center;
        font-weight: 500;
    }

.Vendors_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

    .Vendors_list li {
        margin-bottom: 15px;
    }

        .Vendors_list li a {
            display: block;
            height: 36px;
            margin: 0 10px;
        }

            .Vendors_list li a img {
                max-height: 100%;
                display: block;
            }

.home_plate4_swiper .swiper-slide {
    opacity: .5;
}

.home_plate4_swiper .swiper-slide-active {
    opacity: 1;
}

.header_top {
    background: linear-gradient(0deg, #175FCB, #007bf9);
}

.header_top_pack {
    display: flex;
    justify-content: flex-end;
    padding: 15px 0;
}

.header_top_text {
    color: #FFFFFF;
    font-size: 16px;
    padding: 0 22px;
    border-radius: 30px;
    line-height: 30px;
    /*background: #FF8B00;*/
    display: flex;
    justify-content: space-between;
    /* width: 450px;  */
    width: auto; 
}

    .header_top_text a:first-child {
        margin-right: 10px;
    }

    .header_top_text a:last-child:hover {
    }

    .header_top_text a {
        background: #FF8B00;
        border-radius: 30px;
    }

.header_top_pack a {
    line-height: 30px;
    color: #FFFFFF;
    font-size: 16px;
    padding: 0 22px;
    position: relative;
}

    .header_top_pack a .icon-angle-down {
        display: inline-block;
        transition: all 0.5s;
    }

    .header_top_pack a.active .icon-angle-down {
        transform: rotate(180deg);
    }

@media(max-width:1200px) {
    .w_nav > li {
        padding: 0 22px;
    }

    .home_swiper {
     
    }

    .banner {
        height: auto;
    }

        .banner img {
            height: 100%;
            object-fit: cover;
        }

    .Financial_list li {
        width: 32%;
    }

    .footer_input input {
        width: 200px;
    }

    .footer_submit {
        width: calc(100% - 200px);
    }

    .out_team_list_cont {
        padding: 5px 0;
        font-size: 16px;
    }

    .directory_classify {
        flex-wrap: wrap;
        height: auto;
    }

    .directory_DetailCompany_Info_img {
        width: 400px;
    }

    .directory_DetailCompany_Info_left {
        width: calc(100% - 400px);
        padding-right: 10px;
    }

        .directory_DetailCompany_Info_left p {
            padding-top: 10px;
        }

            .directory_DetailCompany_Info_left p img {
                margin-right: 15px;
            }
}

@media(max-width:1000px) {
    .iconfont {
        width: 40px;
        height: 40px;
        position: absolute;
        right: 15px;
        top: 81%;
        transform: translateY(-50%);
    }

    .header_top_pack {
        display: block;
        padding: 7px 0;
    }

        .header_top_pack a {
            display: block;
            text-align: center;
            margin-top: 5px;
        }

    .iconfont i {
        width: 100%;
        height: 100%;
        position: absolute;
    }

    .iconfont .cha {
        background: url(../images/cha.png) no-repeat center/100% 100%;
        display: none;
    }

    .iconfont .nav {
        background: url(../images/nav.png) no-repeat center/100% 100%;
    }

    .logo {
        height: 70px;
        padding: 10px 15px;
    }

    .navlist {
        position: absolute;
        width: 100%;
        top: 100%;
        left: 0;
        background: #fff;
        padding: 10px;
        border-top: 1px solid #f1f1f1;
        display: none;
        z-index: 101;
    }

    .w_nav {
        display: block;
    }

    header {
        position: relative;
    }

    .w_nav > li > a, .language_on span {
        line-height: 30px;
        text-align: center;
    }

    .er_nav {
        position: static;
        width: 100%;
        box-shadow: 0 0 0 0;
    }

    .w_nav > li {
        display: block;
    }

        .w_nav > li:after {
            position: absolute;
            top: 13px;
            right: 0;
        }

    .banner img {
        height: 200px;
        object-fit: cover;
    }

    .banner_title {
        padding: 10px 0;
    }

        .banner_title h3 {
            font-size: 25px;
            line-height: 32px;
        }

    .puablic {
        padding: 30px 0;
    }

    .ouraim_list_pack {
        padding-left: 20px;
    }

        .ouraim_list_pack h3 {
            font-size: 18px;
        }

    .ouraim_list_pack,
    .footer_contact p {
        font-size: 14px;
    }

    .footer_nav {
        display: none;
    }

    .footer_pack {
        display: block;
    }

    .footer_contact,
    .footer_email {
        width: 100%;
    }

    .footer_email {
        margin-top: 20px;
    }

    footer {
        padding: 30px 0;
    }

    .footer_email h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .footer_input input {
        width: 230px;
    }

    .footer_submit {
        width: calc(100% - 230px);
    }

    .public_title,
    .events h3 {
        font-size: 20px;
        line-height: 35px;
    }

    .our_team_list {
        margin: 10px 0 0 0;
    }

        .our_team_list li {
            width: 100%;
            padding: 0;
        }

    .events h3 {
        margin-bottom: 10px;
    }

    .events_list li {
        padding: 15px 0;
        margin-bottom: 15px;
    }

        .events_list li a {
            display: block;
        }

    .events_list_pack {
        width: 70%;
        margin: 0 auto;
    }

    .events_list_cont {
        width: 100%;
        padding: 0;
        margin-top: 20px;
    }

        .events_list_cont span, .events_list_cont p {
            margin: 10px 0;
        }

    .directory_list_cont {
        width: 100%;
        overflow: auto;
    }

    .firectory_list_title,
    .directory_list_pack {
        width: 200%;
    }

        .firectory_list_title span {
            font-size: 16px;
            line-height: 45px;
        }

    .directory_list_text {
        padding: 17px 0;
    }

    .directory_list li a span {
        font-size: 14px;
    }

    .directory_Detail_hader {
        display: block;
    }

    .directory_Detail_hader_img {
        margin: 0 auto;
        width: 200px;
    }

        .directory_Detail_hader_img img {
            height: auto;
        }

    .directory_Detail_hader {
        padding: 15px;
    }

    .directory_Detail_hader_cont {
        width: 100%;
        padding: 0;
        margin-top: 20px;
    }

        .directory_Detail_hader_cont h1 {
            font-size: 16px;
        }

    .directory_Detail_center {
        margin-top: 30px;
    }

    .directory_Detail_center_table span {
        font-size: 18px;
        margin-right: 20px;
    }

    .directory_Detail_center_cont {
        padding: 15px;
    }

    .directory_DetailCompany_Info {
        display: block;
        padding-bottom: 25px;
        margin-bottom: 25px;
    }

    .directory_DetailCompany_Info_left {
        width: 100%;
        padding: 0;
    }

        .directory_DetailCompany_Info_left h3 {
            margin-bottom: 10px;
        }

    .directory_DetailCompany_Info_img {
        width: 100%;
        margin-top: 20px;
    }

    .directory_nav {
        line-height: 30px;
    }

    .directory_Detail_bottom h3 {
        padding: 30px 0 15px 0;
        font-size: 20px;
    }

    .directory_Detail_bottom_contact {
        padding: 15px;
    }

    .directory_Detail_bottom_contact_list li {
        width: 100%;
        padding: 0 0;
    }

    .directory_Detail_bottom_contact_list li {
        margin-bottom: 20px;
    }

    .directory_Detail_bottom_contact_list {
        margin: 0 0 -20px;
    }

    .rules_list_pack {
        display: block;
    }

    .rules_list_img {
        width: 100%;
    }

    .rules_list_cont {
        width: 100%;
        padding: 0;
        margin-top: 20px;
    }

        .rules_list_cont p {
            font-size: 14px;
        }

    .rules_list li {
        margin-bottom: 20px;
    }

    .benefits_list_cont {
        width: calc(100% - 45px);
        font-size: 14px;
    }

    .benefits_list_img {
        width: 40px;
    }

    .benefits_pack h3 {
        font-size: 20px;
        text-align: center;
    }

    .Financial_list {
        margin: 0;
    }

        .Financial_list li {
            width: 100%;
            max-width: 100%;
            margin: 0 0 20px;
            padding: 20px;
        }

    .become_form {
        width: 100%;
        padding: 10px;
    }

    .contact_pack {
        display: block;
    }

        .contact_pack > div {
            width: 100%;
        }

    .contact_left_cont {
        margin-bottom: 20px;
    }

        .contact_left_cont p,
        .contact_right_input label,
        .contact_right_input input {
            font-size: 14px;
        }

            .contact_left_cont p img {
                width: 20px;
            }

    .submit {
        margin: 20px auto 0;
    }

    .login {
        padding: 50px 0;
        min-height: 300px;
    }

    .login_pack {
        width: 100%;
    }

    .login_input {
        display: block;
    }

        .login_input label {
            width: 100%;
            padding: 0;
            font-size: 14px;
            text-align: left;
        }

        .login_input input {
            margin: 0;
            width: 100%;
            margin-top: 10px;
            font-size: 14px;
            line-height: 30px;
        }

    .cooperator {
        padding: 30px 0;
    }

        .cooperator h3 {
            font-size: 20px;
            line-height: 28px;
            margin: 0;
        }

            .cooperator h3::after {
                margin-top: 15px;
            }

    .cooperator_cont > p {
        font-size: 14px;
    }

    .home_swiper img {

        object-fit: cover;
    }

    .cooperator_cont > p {
        padding-bottom: 20px;
    }

    .numder {
        justify-content: space-between;
    }

        .numder p {
            width: 25%;
            margin-right: 0;
            text-align: center;
        }

            .numder p span {
                font-size: 25px;
                line-height: 35px;
            }

    .home_plate2 {
        padding: 30px 0;
    }

        .home_plate2 .container {
            display: block;
        }

            .home_plate2 .container > div {
                width: 100%;
                margin-bottom: 20px;
            }

    .home_plate3 {
        padding: 30px 0;
    }

    .Financial_list_cont h3 {
        font-size: 20px;
    }

    .Financial_list_cont p,
    .Financial_list_pack a,
    .home_plate2_cont1_text p,
    .home_plate2_cont1_text a {
        font-size: 14px;
    }

    .home_plate4 {
        padding: 30px 0;
    }

    .home_plate2_cont1_text h3, .home_plate2_cont2 h3, .home_plate2_cont3 h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .Vendors_list li {
        width: 50%;
    }

        .Vendors_list li img {
            width: 100%;
            object-fit: cover;
        }

    .directory_list_left {
        width: 16%;
    }

    .contact_left_cont p span {
        width: calc(100% - 30px);
    }

    .home_swiper {
       
    }
}


/* 个人中心 */
.Personal {
    padding: 40px 0;
}

    .Personal .container {
        display: flex;
        flex-wrap: wrap;
        padding-top: 0px;
    }

    .Personal .Personal-nav {
        width: 230px;
    }

        .Personal .Personal-nav ul {
            box-shadow: 0 2px 8px 2px rgba(198, 201, 208, 0.5);
            /*display: flex;
    flex-wrap: wrap;
     justify-content: center;*/
        }

            .Personal .Personal-nav ul li {
                /*width: 20%;*/
                text-align: center;
                padding: 0 10px;
            }

                .Personal .Personal-nav ul li a {
                    display: block;
                    /*box-shadow: 0 0 10px 3px #eee;*/
                    padding: 20px 10px;
                    font-size: 16px;
                    color: #333;
                    border-bottom: 1px solid #eee;
                }

                .Personal .Personal-nav ul li:hover a,
                .Personal .Personal-nav ul li.cur a {
                    background-color: #0069d9;
                    color: #fff;
                }

.ykt-subject {
    width: calc(100% - 250px);
    margin-left: 20px;
}

    .ykt-subject .subject-div {
        padding: 40px;
        background: #fff;
        box-shadow: 0 2px 8px 2px rgba(198, 201, 208, 0.5);
        /*height: calc(100vh - 290px);*/
        /*overflow: auto;*/
        border-radius: 10px;
    }

.title-qy {
    position: relative;
    font-size: 18px;
    color: #333;
    font-weight: bold;
    border-bottom: solid 1px #f1f1f1;
    padding-bottom: 10px;
    padding-left: 10px;
}

    .title-qy:before {
        content: '';
        position: absolute;
        top: 5px;
        left: 0;
        width: 2px;
        height: 18px;
        background: #0090da;
    }

.qydata .qydata-in {
    overflow: hidden;
    padding: 20px 0;
}

    .qydata .qydata-in .input {
        width: 50%;
        padding: 0 40px;
        float: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 20px;
    }

    .qydata .qydata-in .input-a {
        width: 100%;
    }

.qydata .qydata-in2 .input {
    float: none;
    margin: 20px auto;
}

.qydata .qydata-in .input p {
    font-size: 16px;
    color: #9a9a9a;
    width: 210px;
    text-align: right;
}

    .qydata .qydata-in .input p span {
        color: #df0000;
    }

.qydata .qydata-in .input input {
    width: calc(100% - 230px);
    height: 40px;
    border: solid 1px #eee;
    border-radius: 10px;
    font-size: 14px;
    text-indent: 10px;
}

.qydata .qydata-in .input select {
    width: calc(100% - 160px);
    height: 40px;
    border: solid 1px #eee;
    border-radius: 10px;
    font-size: 14px;
    text-indent: 10px;
}

.qydata .qydata-in .input textarea {
    width: calc(100% - 230px);
    height: 100px;
    border: solid 1px #eee;
    border-radius: 10px;
    font-size: 14px;
    text-indent: 10px;
}

.qydata .qydata-in .input-tp {
    width: 100%;
    height: auto;
}

    .qydata .qydata-in .input-tp .file-pic {
        width: calc(100% - 230px);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        cursor: pointer;
    }

        .qydata .qydata-in .input-tp .file-pic .img-pic {
            border: solid 1px #eee;
            border-radius: 5px;
            width: 100px;
            height: 100px;
            position: relative;
            /* display: flex;
    align-items: center;
    justify-content: center;*/
        }

            .qydata .qydata-in .input-tp .file-pic .img-pic p {
                position: absolute;
                width: 100%;
                background-color: #18171736;
                bottom: 0;
                text-align: center;
                font-size: 14px;
                color: #fff;
            }

            .qydata .qydata-in .input-tp .file-pic .img-pic img {
                max-width: 100%;
                max-height: 100%;
                object-fit: cover;
            }

        .qydata .qydata-in .input-tp .file-pic .but {
            width: auto;
            border: none;
            margin-right: 10px;
            border-radius: 5px;
            padding: 5px 15px;
            background-color: #0069d9;
            color: #fff;
        }

        .qydata .qydata-in .input-tp .file-pic span {
            font-size: 14px;
            color: #666;
        }

        .qydata .qydata-in .input-tp .file-pic .file {
            display: none;
        }

.qydata-but {
    border-top: solid 4px #f1f1f1;
    padding: 40px 0;
    text-align: center;
}

    .qydata-but input {
        width: 160px;
        height: 50px;
        font-size: 14px;
        color: #fff;
        background: #0090da;
        border: none;
        border-radius: 10px;
        cursor: pointer;
    }

        .qydata-but input:hover {
            opacity: 0.8;
        }

.beizhu {
    font-size: 16px;
    color: #9a9a9a;
}

    .beizhu span {
        color: #df0000;
    }

@media(max-width:1000px) {
    /* 个人中心 */
    .Personal {
        padding: 40px 0;
    }

        .Personal .Personal-nav ul {
            /* display: flex;
            flex-wrap: wrap;
            justify-content: center;*/
        }

            .Personal .Personal-nav ul li {
                /*width: 50%;*/
                text-align: center;
                padding: 0 10px;
                margin-bottom: 20px;
            }

                .Personal .Personal-nav ul li a {
                    display: block;
                    /*box-shadow: 0 0 10px 3px #eee;*/
                    padding: 10px 10px;
                    font-size: 16px;
                    color: #333;
                }

        .Personal .container {
            padding-top: 0
        }

    .ykt-subject {
        padding-top: 0px;
        padding: 0;
        width: 100%;
        margin: 0
    }

    .Personal .Personal-nav {
        width: 100%
    }

    .ykt-subject .subject-div {
        padding: 10px;
    }

    .title-qy {
        position: relative;
        font-size: 16px;
        color: #333;
    }

        .title-qy:before {
            content: '';
            position: absolute;
            top: 3px;
            left: 0;
            width: 2px;
            height: 18px;
            background: #0090da;
        }

    .qydata .qydata-in {
        overflow: hidden;
        padding: 20px 0;
    }

        .qydata .qydata-in .input {
            width: 100%;
            padding: 0 10px;
            float: left;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            margin-top: 10px;
        }

        .qydata .qydata-in .input-a {
            width: 100%;
        }

    .qydata .qydata-in2 .input {
        float: none;
        margin: 20px auto;
    }

    .qydata .qydata-in .input p {
        font-size: 14px;
        color: #9a9a9a;
        width: 100%;
        text-align: left;
    }

        .qydata .qydata-in .input p span {
            color: #df0000;
        }

    .qydata .qydata-in .input input {
        width: 100%;
        margin-top: 5px;
        height: 40px;
        border: solid 1px #f1f1f1;
        border-radius: 10px;
        font-size: 14px;
        text-indent: 10px;
    }

    .qydata .qydata-in .input select {
        width: 100%;
        height: 40px;
        border: solid 1px #f1f1f1;
        border-radius: 10px;
        font-size: 14px;
        text-indent: 10px;
    }

    .qydata .qydata-in .input textarea {
        width: 100%;
        height: 100px;
        border: solid 1px #f1f1f1;
        border-radius: 10px;
        font-size: 14px;
        text-indent: 10px;
    }

    .qydata .qydata-in .input-tp {
        width: 100%;
        height: auto;
    }

        .qydata .qydata-in .input-tp .file-pic {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

            .qydata .qydata-in .input-tp .file-pic .but {
                width: auto;
                border: none;
                margin-right: 10px;
                border-radius: 5px;
                padding: 5px 15px;
                background-color: #0069d9;
                color: #fff;
            }

            .qydata .qydata-in .input-tp .file-pic span {
                font-size: 14px;
                color: #666;
            }

            .qydata .qydata-in .input-tp .file-pic .file {
                display: none;
            }

    .qydata-but {
        border-top: solid 4px #f1f1f1;
        padding: 40px 0;
        text-align: center;
    }

        .qydata-but input {
            width: 160px;
            height: 50px;
            font-size: 14px;
            color: #fff;
            background: #0090da;
            border: none;
            border-radius: 10px;
            cursor: pointer;
        }

            .qydata-but input:hover {
                opacity: 0.8;
            }

    .beizhu {
        font-size: 16px;
        color: #9a9a9a;
    }

        .beizhu span {
            color: #df0000;
        }
}

.RiskList-ul {
    padding: 30px 0 40px;
}

    .RiskList-ul ul {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -10px;
    }

        .RiskList-ul ul li {
            width: 33.3%;
            padding: 10px;
        }

            .RiskList-ul ul li a {
                display: block;
                height: 100%;
                box-shadow: 0 0 10px 3px #eee;
                padding: 15px;
            }

                .RiskList-ul ul li a .li-top {
                    display: flex;
                    align-items: center;
                }

                    .RiskList-ul ul li a .li-top img {
                        width: 50px;
                    }

                    .RiskList-ul ul li a .li-top h3 {
                        width: calc(100% - 50px);
                        padding-left: 10px;
                        font-size: 16px;
                        color: #333;
                    }

                .RiskList-ul ul li a .li-fite {
                    display: flex;
                    padding-top: 15px;
                }

                    .RiskList-ul ul li a .li-fite .tet-fl {
                        width: calc(100% - 70px);
                        padding-right: 10px;
                        font-size: 14px;
                        color: #666;
                    }

                    .RiskList-ul ul li a .li-fite .tet-fr {
                        width: 70px;
                    }

                        .RiskList-ul ul li a .li-fite .tet-fr img {
                            width: 100%
                        }

.RiskList-detail {
    padding: 40px 0;
}

    .RiskList-detail .detail-title {
        text-align: center;
        border-bottom: solid 1px #0069d9;
        padding-bottom: 20px;
    }

        .RiskList-detail .detail-title h3 {
            font-size: 22px;
            color: #333;
        }

    .RiskList-detail .detail-tet {
        padding-top: 20px;
        font-size: 14px;
        color: #666;
        line-height: 25px;
    }

.GuaranteeService-ul {
    padding: 20px 0;
}

    .GuaranteeService-ul li {
        padding: 15px 0;
        border-bottom: solid 1px #eee;
    }

        .GuaranteeService-ul li a {
            display: flex;
            align-items: center;
        }

            .GuaranteeService-ul li a div:first-child {
                width: 150px;
                /*height: 150px;*/
                margin-right: 20px;
            }

        .GuaranteeService-ul li h3 {
            font-size: 16px;
            font-weight: bold;
            color: #333;
        }

        .GuaranteeService-ul li span {
            font-size: 14px;
            color: #999;
            display: block;
            padding: 5px 0 10px 0;
        }

        .GuaranteeService-ul li p {
            font-size: 14px;
            color: #666;
            line-height: 25px;
        }

        .GuaranteeService-ul li:hover h3,
        .GuaranteeService-ul li:hover span,
        .GuaranteeService-ul li:hover p {
            color: #0069d9;
        }

        .GuaranteeService-ul li:hover {
            border-bottom: solid 1px #0069d9;
        }

@media(max-width:1000px) {
    .RiskList-ul ul {
        margin: 0;
    }

        .RiskList-ul ul li {
            width: 100%;
            padding: 0px;
        }
}

.Appeal-title {
    padding-top: 40px;
    border-bottom: solid 1px #eee;
    padding-bottom: 10px;
}

    .Appeal-title a {
        display: inline-block;
        padding: 8px 20px;
        border-radius: 5px;
        background-color: #0069d9;
        color: #fff;
        font-size: 16px;
    }

.Appeal-list {
    padding: 20px 0 40px;
}

    .Appeal-list ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

        .Appeal-list ul li {
            width: 48.5%;
            box-shadow: 0 0 10px 3px #eee;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 30px;
        }

            .Appeal-list ul li .tet-title {
                display: flex;
                justify-content: space-between;
                align-items: center;
                border-bottom: solid 1px #eee;
                padding-bottom: 10px;
            }

                .Appeal-list ul li .tet-title h3 {
                    font-size: 16px;
                    color: #333;
                }

                .Appeal-list ul li .tet-title span {
                    font-size: 14px;
                    color: #999;
                }

                    .Appeal-list ul li .tet-title span.zt1 {
                        color: #0069d9;
                    }

                    .Appeal-list ul li .tet-title span.zt2 {
                        color: #ff0000;
                    }

            .Appeal-list ul li .tet-top {
                padding: 10px 0;
            }

                .Appeal-list ul li .tet-top p {
                    font-size: 14px;
                    color: #666;
                    padding: 5px 0;
                }

                .Appeal-list ul li .tet-top .fite-one {
                    display: flex;
                    flex-wrap: wrap;
                }

                    .Appeal-list ul li .tet-top .fite-one p {
                        width: 100%;
                    }

            .Appeal-list ul li .tet-but {
                border-top: solid 1px #eee;
                padding-top: 10px;
                text-align: right;
            }

                .Appeal-list ul li .tet-but a {
                    display: inline-block;
                    padding: 6px 10px;
                    border-radius: 5px;
                    background-color: #0069d9;
                    color: #fff;
                    font-size: 14px;
                }

.detail-tet-p p {
    font-size: 14px;
    color: #666;
    padding: 5px 0;
}

.detail-tet-p h3 {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    padding-bottom: 10px;
}

.detail-tet-p .fite-one {
    display: block;
    align-items: center;
}

    .detail-tet-p .fite-one a {
        color: #0069d9;
        font-size: 14px;
    }

@media(max-width:1000px) {
    .Appeal-title {
        padding-top: 20px;
    }

    .Appeal-list ul li {
        width: 100%;
    }

    .Appeal-title a {
        font-size: 14px;
    }
}

.index-hylist {
    padding: 40px 0;
    background-color: #f8f8f8;
}

    .index-hylist h2 {
        margin-bottom: 30px;
        font-size: 32px;
        line-height: 1.2;
        color: #212529;
        text-align: center;
        font-weight: 500;
    }

    .index-hylist .index-hylist-mian {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

.hylist-div {
    width: 48.5%;
    padding: 20px;
    border: 5px;
    background-color: #fff;
    margin-bottom: 20px;
}

    .hylist-div a {
        display: block;
        height: 100%;
        display: flex;
        align-items: center;
    }

        .hylist-div a .hy-pic {
            width: 100px;
        }

        .hylist-div a .hy-tet {
            width: calc(100% - 100px);
            padding-left: 15px;
        }

            .hylist-div a .hy-tet h3 {
                font-size: 18px;
                font-weight: bold;
                color: #333;
            }

            .hylist-div a .hy-tet .tet-f {
                display: flex;
                align-items: center;
                font-size: 14px;
                color: #666;
                padding-top: 15px;
            }

                .hylist-div a .hy-tet .tet-f img {
                    width: 40px;
                }

                .hylist-div a .hy-tet .tet-f p {
                    padding-left: 20px;
                }

        .hylist-div a:hover h3 {
            color: #0069d9;
        }

@media(max-width:1000px) {
    .index-hylist h2 {
        font-size: 24px;
    }

    .hylist-div {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
    }

        .hylist-div a .hy-tet h3 {
            font-size: 16px;
        }
}

.foot-link {
    display: flex;
    padding-top: 20px
}

    .foot-link a {
        /*background:#fff;*/
        width: 40px;
        height: 40px;
        display: block;
        margin-right: 10px
    }

.footer_pack .web_about {
    font-size: 18px;
    font-style: italic;
    color: #23b6d1;
    font-weight: bold;
}


.myscroll{
  height: 400px;
  overflow: hidden;
}
.myscroll ul li{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 140px;
    overflow: hidden;
    transition:all 0.5s
}
.myscroll2{
    height: 600px;
    overflow: hidden;
  }
  .myscroll2 ul li{
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      height: 200px;
      overflow: hidden;
      transition:all 0.5s
  }
  

@media(max-width:1000px) {
    .myscroll ul li{

        height: 280px;

    }
    .myscroll2 ul li{

        height: 335px;

    }
}