﻿/* 版心 */
.main {
    margin: 0 auto;
    max-width: 1420px;
    width: 100%;
}

.banner {
    width: 100%;
    height: 880px;
    background: url(../images/banner.png) no-repeat center center;
    background-size: cover;
}

.banner .header {
    width: 100%;
    margin: 0 auto;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    margin: 0 auto;
    z-index: 9999;
}

.banner .header.active {
    background: rgba(0, 139, 191, 0.9);
}

.banner .header_xx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

.banner .header.active .header_xx {
    padding: 10px 0;
}

.banner .header_xx .logo {
    width: 180px;
    /* height: 60px; */
}

.banner .header_xx a {
    position: relative;
    overflow: hidden;
    width: 102px;
    height: 45px;
    border-radius: 102px;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
    z-index: 1;
}

.banner .header_xx .gw {
    padding: 10px 0;
    margin-right: 28px;
    margin-left: auto;
}

.banner .header_xx .login {
    padding: 10px 32px;
    border: 1px solid #FFFFFF;
    margin-right: 18px;
}

.banner .header_xx .reg {
    padding: 10px 32px;
    background-color: #3176E9;
    border: 1px solid #3176E9;
}



.banner .header_xx a span {
    z-index: 2;
}

.banner .header_xx a::after {
    content: "";
    display: block;
    width: 0%;
    height: 102%;
    background-color: #30d0da;
    color: #FFFFFF;
    border-radius: 50px;
    position: absolute;
    top: -1%;
    left: -1%;
    transition: all 0.3s;
    z-index: -1;
}

.banner .header_xx a:hover::after {
    width: 102%;
}

.banner .header_xx a.gw:hover {
    border: 0;
}

.banner .header_xx a:hover {
    border: 1px solid #30d0da;
}



.banner .content {
    padding-top: 392px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner .content .title {
    font-size: 80px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
}

.banner .content .inp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 70px;
    width: auto;
    height: 66px;
    border: 1px solid #FFFFFF;
    background: #FFFFFF;
    border-radius: 100px;
    cursor: pointer;
    animation: inp_bc .5s infinite;
    animation-iteration-count: 1;
}

@keyframes inp_bc {
    from {
        background-color: #3176E9;
        border-color: #3176E9;
    }

    to {
        background-color: #FFFFFF;
        border-color: #FFFFFF;
    }
}

.banner .content .inp .txt {
    font-size: 22px;
    color: #969696;
}

.banner .content .inp .kh {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 192px;
    height: 56px;
    background: #3176E9;
    border-radius: 100px;
    margin: 5px;
    color: #FFFFFF;
    font-size: 25px;
    font-weight: bold;
    line-height: 56px;
    padding-left: 20px;

}

.banner .content .inp .kh i {
    position: absolute;
    left: 25px;
    top: 16px;
    width: 19px;
    height: 25px;
    display: inline-block;
    background: url('../images/icon_bf.png') no-repeat center center;
    background-size: cover;
    padding-right: 15px;
}


/* 第二屏 */
.collection ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

.collection ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 620px;
    height: 357px;
    margin: 100px 130px 80px 0;
    background: #FAFFFF;
    box-shadow: 0px 10px 20px 1px rgba(94, 204, 197, 0.1);
    border-radius: 16px;
    cursor: pointer;
}

.collection ul li::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(312deg, #04D2C4 0%, #0386DD 100%);
    box-shadow: 0px 10px 20px 1px rgba(94, 204, 197, 0.1);
    border-radius: 16px;
    opacity: 0;
}

.collection ul li:hover::before {
    opacity: 1;
}

.collection ul li:hover .t .title {
    color: #FFFFFF;
}

.collection ul li:hover .t .img {
    background: url(../images/sk1_1.png) no-repeat center center;
    background-size: cover;
}

.collection ul li:hover .xx p {
    color: #FFFFFF;
    background: url(../images/icon_jc0.png) no-repeat left center;
    background-size: 13px;
    font-weight: 700;
}

.collection ul li .t {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 50px 0 70px;
    z-index: 1;
}

.collection ul li .t .title {
    font-size: 36px;
    font-weight: bold;
    color: #59D0C1;
    line-height: 60px;
    align-self: center;
}

.collection ul li .t .img {
    width: 128px;
    height: 128px;
    background: url(../images/sk1.png) no-repeat center center;
    background-size: cover;
}

.collection ul li .xx {
    padding: 0 79px 54px 60px;
    z-index: 1;
    white-space: nowrap;
    /* position: relative; */
}

.collection ul li .xx p {
    font-size: 18px;
    color: #646464;
    line-height: 40px;
    padding-left: 20px;
    background: url(../images/icon_jc1.png) no-repeat left center;
    background-size: 13px;
}

.collection ul li:nth-child(2) {
    background: #FFFDFA;
    box-shadow: 0px 10px 20px 1px rgba(255, 178, 144, 0.1);
    margin-top: 220px;
    margin-right: 0;
}

.collection ul li:nth-child(2)::before {
    background: linear-gradient(133deg, #FE9B71 0%, #FCC225 100%);
    box-shadow: 0px 10px 20px 1px rgba(255, 178, 144, 0.1);
}

.collection ul li:nth-child(2):hover .t .title {
    color: #FFFFFF;
}

.collection ul li:nth-child(2):hover .t .img {
    background: url(../images/sk2_2.png) no-repeat center center;
    background-size: cover;
}

.collection ul li:nth-child(2):hover .xx p {
    color: #FFFFFF;
    background: url(../images/icon_jc0.png) no-repeat left center;
    background-size: 13px;
}

.collection ul li:nth-child(2) .t .title {
    color: #FE9B71;
}

.collection ul li:nth-child(2) .t .img {
    background: url(../images/sk2.png) no-repeat center center;
    background-size: cover;
}

.collection ul li:nth-child(2) .xx p {
    background: url(../images/icon_jc2.png) no-repeat left center;
    background-size: 13px;
}

.collection ul li:nth-child(3) {
    background: #FAFCFF;
    box-shadow: 0px 10px 20px 1px rgba(73, 191, 252, 0.1);
    margin-top: -120px;
    margin-bottom: 0;
}

.collection ul li:nth-child(3)::before {
    background: linear-gradient(314deg, #59C3FC 0%, #207DFC 100%);
    box-shadow: 0px 10px 20px 1px rgba(73, 191, 252, 0.1);
}

.collection ul li:nth-child(3):hover .t .title {
    color: #FFFFFF;
}

.collection ul li:nth-child(3):hover .t .img {
    background: url(../images/sk3_3.png) no-repeat center center;
    background-size: cover;
}

.collection ul li:nth-child(3):hover .xx p {
    color: #FFFFFF;
    background: url(../images/icon_jc0.png) no-repeat left center;
    background-size: 13px;
}

.collection ul li:nth-child(3) .t .title {
    color: #39B9FE;
}

.collection ul li:nth-child(3) .t .img {
    background: url(../images/sk3.png) no-repeat center center;
    background-size: cover;
}

.collection ul li:nth-child(3) .xx p {
    background: url(../images/icon_jc3.png) no-repeat left center;
    background-size: 13px;
}


.collection ul li:nth-child(4) {
    background: #FDFCFF;
    box-shadow: 0px 10px 20px 1px rgba(213, 162, 250, 0.1);
    margin: 0;
}

.collection ul li:nth-child(4)::before {
    background: linear-gradient(312deg, #BD64FF 0%, #705BE5 100%);
    box-shadow: 0px 10px 20px 1px rgba(213, 162, 250, 0.1);
}

.collection ul li:nth-child(4):hover .t .title {
    color: #FFFFFF;
}

.collection ul li:nth-child(4):hover .t .img {
    background: url(../images/sk4_4.png) no-repeat center center;
    background-size: cover;
}

.collection ul li:nth-child(4):hover .xx p {
    color: #FFFFFF;
    background: url(../images/icon_jc0.png) no-repeat left center;
    background-size: 13px;
    background-position-y: 14px;
}

.collection ul li:nth-child(4) .t .title {
    color: #C065FE;
}

.collection ul li:nth-child(4) .t .img {
    background: url(../images/sk4.png) no-repeat center center;
    background-size: cover;
}

.collection ul li:nth-child(4) .xx p {
    background: url(../images/icon_jc4.png) no-repeat left center;
    background-size: 13px;
    font-size: 17px;
}

/* 解决外贸人的一切收付款难题 */
.foreign {
    width: 100%;
    height: 867px;
    background: url(../images/foreign.png) no-repeat center center;
    background-size: cover;
    margin-top: 100px;
}

.foreign .foreign_c {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.foreign .foreign_c .title {
    font-size: 50px;
    font-weight: bold;
    color: #FFFFFF;
    margin-top: 100px;
    margin-bottom: 60px;
}

.foreign .foreign_c ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.foreign .foreign_c ul li {
    display: flex;
    width: 695px;
    height: 159px;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

.foreign .foreign_c ul li:hover {
    background-color: rgba(255, 255, 255, .3);
}

.foreign .foreign_c ul li:hover .xx .ms {
    font-weight: 700;
}

.foreign .foreign_c ul li:nth-child(odd) {
    margin-right: 30px;
    margin-bottom: 30px;
}

.foreign .foreign_c ul li .img {
    width: 84px;
    height: 84px;
    background: url(../images/foreign1.png) no-repeat center center;
    background-size: cover;
    margin: 30px 30px 0 90px;
}

.foreign .foreign_c ul li:nth-child(2) .img {
    background: url(../images/foreign2.png) no-repeat center center;
    background-size: cover;
}

.foreign .foreign_c ul li:nth-child(3) .img {
    background: url(../images/foreign3.png) no-repeat center center;
    background-size: cover;
}

.foreign .foreign_c ul li:nth-child(4) .img {
    background: url(../images/foreign4.png) no-repeat center center;
    background-size: cover;
}

.foreign .foreign_c ul li:nth-child(5) .img {
    background: url(../images/foreign5.png) no-repeat center center;
    background-size: cover;
}

.foreign .foreign_c ul li:nth-child(6) .img {
    background: url(../images/foreign6.png) no-repeat center center;
    background-size: cover;
}


.foreign .foreign_c ul li .xx {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.foreign .foreign_c ul li .xx .name {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.foreign .foreign_c ul li .xx .ms {
    width: 400px;
    height: 52px;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
}

/* 外贸收付 一户掌握 */
.payment {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment .title {
    font-size: 50px;
    font-weight: bold;
    color: #323232;
    margin-top: 100px;
    margin-bottom: 60px;
}

.payment .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 9;
}

.payment .content .list {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 1180px;
    margin: 0 auto;
}

.payment .content .list:nth-child(2) {
    width: 1300px;
}

.payment .content .list:nth-child(3) {
    width: 1420px;
}

.payment .content .list:nth-child(4) {
    width: 1300px;
}

.payment .content .list .item {
    position: relative;
    top: 0;
    left: 0;
    width: 229px;
    height: 67px;
    background: #FFFFFF url(../images/payment1.png) no-repeat center center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 60px;
    margin-bottom: 40px;
    cursor: pointer;
    transition: all .2s;
}

.payment .content .list .item:hover {
    top: -10px;
}

.payment .content .list .item:nth-child(even) {
    background: #FFFFFF url(../images/payment2.png) no-repeat center center;
    background-size: cover;
}

.payment .zj {
    position: absolute;
    left: 50%;
    top: 300px;
    width: 562px;
    height: 310px;
    margin-left: -281px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.payment .zj .img {
    width: 336px;
    height: 324px;
    background: url(../images/payment_cn.png) no-repeat center center;
    background-size: cover;
}

.payment .zj .sk {
    font-size: 30px;
    font-weight: 600;
    color: #0386DD;
    line-height: 73px;
}

.payment .zj .fk {
    font-size: 30px;
    font-weight: 600;
    color: #00B7AB;
    line-height: 73px;
}


.payment .box_x_bg {
    position: absolute;
    left: 50%;
    top: 333px;
    width: 843px;
    height: 313px;
    margin-left: -422px;
    background: url(../images/payment_box_x.png) no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.payment .box_x_q {
    position: absolute;
    left: 50%;
    top: 327px;
    width: 843px;
    height: 313px;
    margin-left: -428px;
    z-index: 1;
}

.payment .box_x_q .xq {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #04D2C4;
    border-radius: 50%;
    transform: none;
    animation:
        box_x_q_animX 6s cubic-bezier(0.36, 0, 0.64, 1) -3s infinite alternate,
        box_x_q_animY 6s cubic-bezier(0.36, 0, 0.64, 1) 0s infinite alternate,
        box_x_q_scale 12s cubic-bezier(0.36, 0, 0.64, 1) 0s infinite alternate;
    z-index: 2;
}

@keyframes box_x_q_animX {
    0% {
        left: 843px;
    }

    100% {
        left: 0;
    }
}

@keyframes box_x_q_animY {
    0% {
        top: 313px;
    }

    100% {
        top: 0;
    }
}

@keyframes box_x_q_scale {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {

        transform: scale(0.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.payment .box_d_bj {
    position: absolute;
    left: 50%;
    top: 302px;
    width: 1197px;
    height: 419px;
    margin-left: -602px;
    background: url(../images/payment_box_d.png) no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.payment .box_d_q {
    position: absolute;
    left: 50%;
    top: 296px;
    width: 1197px;
    height: 419px;
    margin-left: -608px;
    z-index: 1;
}

.payment .box_d_q .xq {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #0386DD;
    border-radius: 50%;
    transform: none;
    animation:
        box_d_q_animX 6s cubic-bezier(0.36, 0, 0.64, 1) -3s infinite alternate,
        box_d_q_animY 6s cubic-bezier(0.36, 0, 0.64, 1) 0s infinite alternate,
        box_d_q_scale 12s cubic-bezier(0.36, 0, 0.64, 1) 0s infinite alternate;
    z-index: 2;
}

@keyframes box_d_q_animX {
    0% {
        left: 0;
    }

    100% {
        left: 1197px;
    }
}

@keyframes box_d_q_animY {
    0% {
        top: 0;
    }

    100% {
        top: 419px;
    }
}

@keyframes box_d_q_scale {
    0% {
        transform: scale(0.5);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.5);
        opacity: 0.5;
    }
}

/* 深耕跨境支付7年，实现一个账户全球收付 */
.flobal {
    height: 739px;
    background: #F5F8FC;
    margin-top: 100px;
}

.flobal .flobal_c {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flobal .flobal_c .title {
    margin-top: 100px;
    margin-bottom: 70px;
    font-size: 50px;
    font-weight: bold;
    color: #323232;
    line-height: 100px;
}

.flobal .flobal_c .content {
    width: 100%;
}

.flobal .flobal_c .content ul {
    display: flex;
    justify-content: space-between;
}

.flobal .flobal_c .content ul li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.flobal .flobal_c .content ul li .img {
    width: 280px;
    height: 240px;
    background: url(../images/flobal1.png) no-repeat center center;
    background-size: cover;
}

.flobal .flobal_c .content ul li:nth-child(2) .img {
    background: url(../images/flobal2.png) no-repeat center center;
    background-size: cover;
}

.flobal .flobal_c .content ul li:nth-child(3) .img {
    background: url(../images/flobal3.png) no-repeat center center;
    background-size: cover;
}

.flobal .flobal_c .content ul li .ms {
    width: 353px;
    height: 110px;
    font-size: 32px;
    font-weight: 400;
    color: #646464;
    line-height: 56px;
    margin-top: 15px;
    text-align: center;
}

.flobal .flobal_c .content ul li .ms span {
    font-size: 46px;
    font-weight: 700;
    color: #000;
    margin: 0 2px;
}

/* 客户说 */
.prepare {
    background-color: #FFFFFF;
    margin-bottom: 100px;
}

.prepare .prepare_x {
    font-size: 50px;
    font-weight: bold;
    margin-top: 100px;
    margin-bottom: 60px;
    color: #323232;
    text-align: center;
}

.prepare .swiper-container {
    width: 1128px;
    height: 320px;
    margin: 0 auto;
    padding: 10px 0;
}

.prepare .swiper-container .swiper-slide {
    width: 80%;
    height: auto;
    background: #FAFCFF;
    box-shadow: 0px 5px 10px 1px rgba(50, 50, 50, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
    padding: 35px 30px;
    display: flex;
    justify-content: center;
}

.prepare .swiper-container .swiper-slide .limg {
    width: 260px;
    height: 230px;
    margin-right: 30px;
    color: #323232;
    line-height: 34px;
}

.prepare .swiper-container .swiper-slide .xx {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 5px;
}

.prepare .swiper-container .swiper-slide .xx .title {
    font-size: 22px;
    color: #323232;
    line-height: 34px;

}

.prepare .swiper-container .swiper-slide .xx .mc {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}

.prepare .swiper-container .swiper-slide .xx .mc .user .name {
    font-size: 24px;
    font-weight: 600;
    color: #068CDC;
}

.prepare .swiper-container .swiper-slide .xx .mc .user .position {
    font-size: 16px;
    color: #323232;
    line-height: 16px;
    margin-top: 20px;
}

.prepare .swiper-container .swiper-slide .xx .mc .dz {
    font-size: 16px;
    color: #333333;
    line-height: 16px;
}

.prepare .swiper-container .swiper-slide .xx .mc .dz::after {
    content: '';
    position: absolute;
    right: 38px;
    bottom: 0;
    width: 11px;
    height: 15px;
    background: url("../images/prepare_icon.png") no-repeat center;
    background-size: cover;
}

.prepare_main {
    width: 100%;
    position: relative;
}

.prepare_main .prev {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: url("../images/prepare_zuojt.png") no-repeat center center;
    background-size: cover;
    z-index: 9;
    cursor: pointer;
}

.prepare_main .prev:hover {
    background: url("../images/prepare_zuojt_active.png") no-repeat center center;
    background-size: cover;
}


.prepare_main .next {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: url("../images/prepare_youjt.png") no-repeat center center;
    background-size: cover;
    z-index: 9;
    cursor: pointer;
}

.prepare_main .next:hover {
    background: url("../images/prepare_yuojt_active.png") no-repeat center center;
    background-size: cover;
}


/* 现在注册，即可领取外贸人专属优惠方案 */
.register {
    width: 100%;
    height: 330px;
    background: linear-gradient(90deg, #0386DD 0%, #04D2C4 100%);
}

.register .register_c {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 1170px;
    height: auto;
    margin: 0 auto;
}

.register .register_c .title {
    margin-top: 100px;
    font-size: 38px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 70px;
}

.register .register_c .btn {
    margin-top: 30px;
    width: 160px;
    height: 49px;
    background: linear-gradient(#056DFB, #056DFB);
    border-radius: 100px 100px 100px 100px;
    border: 2px solid #5CA1FF;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 44px;
    cursor: pointer;

    animation: shine 2s ease-out infinite;
}


@keyframes shine {
    0% {
        background-image: linear-gradient(-45deg, #056DFB 80%, #4F98FC 100%, );
    }

    5% {
        background-image: linear-gradient(-45deg, #056DFB 60%, #4F98FC 80%, #056DFB);
    }

    10% {
        background-image: linear-gradient(-45deg, #056DFB 40%, #4F98FC 60%, #056DFB 80%);
    }

    15% {
        background-image: linear-gradient(-45deg, #056DFB 20%, #4F98FC 40%, #056DFB 60%);
    }

    20% {
        background-image: linear-gradient(-45deg, #4F98FC 20%, #056DFB 40%);
    }

    25% {
        background-image: linear-gradient(-45deg, #4F98FC, #056DFB 20%);
    }

    26% {
        background: linear-gradient(#056DFB, #056DFB);
    }

    100% {
        background: linear-gradient(#056DFB, #056DFB);
    }
}

.register .register_c img {
    position: absolute;
    right: 80px;
    top: 16px;
}

.register .register_c .register_t {
    position: absolute;
    left: 60px;
    top: -37px;
    width: 126px;
    height: 73px;
    background: url(../images/register_t.png) no-repeat center;
    background-size: cover;
}

.register .register_c .register_b {
    display: none;
    position: absolute;
    right: -10px;
    bottom: -55px;
    width: 53px;
    height: 44px;
    background: url(../images/register_b.png) no-repeat center;
}

/* 合作伙伴 */
.cooperative {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cooperative .title {
    margin: 100px auto;
    font-size: 50px;
    font-weight: bold;
    color: #323232;
}

.cooperative img {
    width: 100%;
    height: auto;
    margin-bottom: 60px;
}

.section_container_con {
    max-width: 1430px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}


/* 底部 */

.header .header_right .nav-toggle {
    display: none;
}

.phone_hearder_nav {
    display: none;
}

.footer {
    /* font-family: "Microsoft YaHei", Helvetica, sans-serif, "Source Han Serif", FontAwesome; */
    width: 100%;
    height: auto;
    background: #121E36;
}

.footer .footer_top {
    width: 100%;
    height: auto;
    padding: 100px 0 60px;
    box-sizing: border-box;
}

.footer_top_box {
    width: 100%;
    height: auto;
}

.footer_top_box .footer_left {
    float: left;
    width: 42%;
    height: auto;
}

.footer_top_box .footer_left .numbers_box {
    display: flex;
    align-items: flex-start;
}

.footer_top_box .footer_left .numbers_box h3 {
    font-size: 40px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 56px;
    letter-spacing: 0.01px;
    margin-right: 80px;
}

.footer_top_box .footer_left .numbers_box p {
    font-size: 16px;
    color: #1F78F0;
    line-height: 22px;
}

.footer_top_box .footer_left .numbers_box .numbers {
    font-size: 40px;
    font-weight: bold;
    color: #1F78F0;
    line-height: 56px;
    margin-bottom: 16px;
}

.footer_top_box .footer_left .code_box {
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    /* border: 1px solid #707070; */
    float: left;
    padding: 32px 50px;
    margin-top: 60px;
}

.footer_top_box .footer_left .code_box .pic_box {
    float: left;
    width: 140px;
    height: auto;
    text-align: center;
    cursor: pointer;
}

.footer_top_box .footer_left .code_box .pic_line {
    float: left;
    width: 1px;
    height: 178px;
    padding-left: 58px;
    padding-right: 56px;
}

.footer_top_box .footer_left .code_box .pic_line img {
    display: block;
    width: 1px;
    height: 100%;
}

.footer_top_box .footer_left .code_box .pic_box img {
    display: block;
    width: 140px;
    height: auto;
    margin: 0 auto;
}

.footer_top_box .footer_left .code_box .pic_box p {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 22px;
    margin-top: 16px;
}

.footer_top_box .footer_right {
    float: right;
    width: 52%;
    height: auto;
}

.footer_top_box .footer_right ul {
    float: right;
    width: 100%;
    height: auto;
}

.footer_top_box .footer_right ul li {
    float: left;
    width: 20%;
    height: auto;
}

.footer_top_box .footer_right ul li .li_con {
    width: 115px;
    height: auto;
    float: right;
}

.footer_top_box .footer_right ul li a {
    display: block;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 28px;
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.3;
}

.footer_top_box .footer_right ul li a:hover {
    opacity: 1;
}

/* .footer_top_box .footer_right ul li a.m_right {
    text-align: left;
    padding-left: 29px;
  } */

.footer_top_box .footer_right ul li p a {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 28px;
    opacity: 1;
}

.footer_bottom {
    width: 100%;
    height: auto;
    padding: 0 110px;
    box-sizing: border-box;
}

.footer_bottom p {
    width: 100%;
    height: auto;
    font-size: 16px;
    font-weight: 400;
    color: #343E53;
    line-height: 22px;
    padding: 35px 0;
    box-sizing: border-box;
    border-top: 1px solid #343E53;
    border-bottom: 1px solid #343E53;
}

.footer_bottom p a {
    display: inline-block;
    color: #343E53;
}

.footer_bottom p a:hover {
    color: #fff;
}

/* 侧边栏 */
.sidebar_box {
    width: 54px;
    height: auto;
    position: fixed;
    top: 40%;
    right: 10px;
    margin-top: -120px;
    z-index: 999;
  }
  
  .sidebar_box_conter {
    width: 100%;
    height: auto;
    position: relative;
  }
  
  .sidebar_box_conter ul {
    border-radius: 27px;
    overflow: hidden;
    box-shadow: 0 0 2px 0px #b0b0b0;
  }
  
  .sidebar_box_conter ul li {
    float: left;
    width: 54px;
    height: 60px;
    padding: 17px 15px;
    box-sizing: border-box;
    text-align: center;
    background: rgba(31, 120, 240, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
  }
  
  .sidebar_box_conter ul li.zhiCustomBtn {
    border-radius: 27px 27px 0 0;
  }
  
  .sidebar_box_conter ul.zx_active {
    border-radius: 0 0 27px 27px;
  }
  
  .sidebar_box_conter ul.ul_box li.zhiCustomBtn {
    border-radius: 0 0 0 0;
  }
  
  .sidebar_box_conter ul li.registerCustonBtn {
    border-radius: 0 0 27px 27px;
  }
  
  .sidebar_box_conter ul.reg_active {
    border-radius: 27px 27px 0 0;
  }
  
  .sidebar_box_conter ul.ul_box li.registerCustonBtn {
    border-radius: 0 0 0 0;
  }
  
  .sidebar_box_conter ul.ul_box.last_active {
    border-radius: 27px 27px 27px 27px;
  }
  
  .sidebar_box_conter ul.ul_box.last_active.zx_active {
    border-radius: 0px 0px 27px 27px;
  }
  
  
  .sidebar_box_conter ul li.gotop {
    display: none;
  }
  
  .sidebar_box_conter ul li p {
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 16px;
  }
  
  .sidebar_box_conter ul li .text_box {
    width: 0px;
    height: 60px;
    background: #3774ea;
    box-sizing: border-box;
    padding: 20px 0px;
    box-sizing: border-box;
    opacity: 0;
    position: absolute;
    right: 54px;
    z-index: 99;
  }
  
  .sidebar_box_conter ul li .text_box p {
    width: 150px;
    font-size: 20px;
    color: #fff;
    line-height: 20px;
    text-align: center;
    box-sizing: border-box;
    margin: 0 auto;
  }
  
  .sidebar_box_conter ul li.zhiCustomBtn .text_box {
    top: 0px;
  }
  
  .sidebar_box_conter ul li.sidebar_box_telephone .text_box {
    top: 60px;
  }
  
  .sidebar_box_conter ul li.qaCustonBtn .text_box {
    top: 180px;
  }
  
  .sidebar_box_conter ul li.registerCustonBtn .text_box {
    top: 240px;
  }
  
  .sidebar_box_gzh .gzh {
    position: absolute;
    left: -176px;
    top: 76px;
    box-shadow: 0 0 6px 0px #b0b0b0;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    display: none;
    transition: all 0.3s;
  }
  
  .sidebar_box_gzh .gzh img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  .sidebar_box_gzh:hover .gzh {
    display: block;
  }

  .lottery {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    z-index: 9999;
    cursor: pointer;
  }
  .close_lottery {
    position: absolute;
    height: 50px;
    width: 50px;
    right: 0;
    top: 0; 
  }