html {
    font-size: 10px;
}

/* 移动端的标准都是根据iphone手机来指定标准的
   微信：是按照iphone6的设计标准设计的，可以参考微信的标准
   iphone6的分辨率 750*1334   在pc端 显示的比例375*667
*/

@media screen and (min-width:300px) {
    html {
        font-size: 8px !important;
    }
}

@media screen and (min-width:320px) {
    html {
        font-size: 8.53px !important;
    }
}

/* iphone6/7/8 */
@media screen and (min-width:375px) {
    html {
        font-size: 10px !important;
    }
}

/* iphone12p */
@media screen and (min-width:390px) {
    html {
        /* 10*390/375= */
        font-size: 10.4px !important;
    }
}

/* iphone6p/7p/8p */
@media screen and (min-width:414px) {
    html {
        /* 10*414/375= */
        font-size: 11.04px !important;
    }
}

@media screen and (min-width:540px) {
    html {
        /* 10*540/375= */
        font-size: 14.4px !important;
    }
}

@media screen and (min-width:600px) {
    html {
        /* 10*600/375= */
        font-size: 16px !important;
    }
}

@media screen and (min-width:700px) {
    html {
        /* 10*700/375= */
        font-size: 18.66px !important;
    }
}

/* ipad */
@media screen and (min-width:768px) {
    html {
        /* 10*768/375= */
        font-size: 20.48px !important;
    }
}

/* ipad Air*/
@media screen and (min-width:820px) {
    html {
        /* 10*820/375= */
        font-size: 21.86px !important;
    }
}

body,
html {
    padding: 0;
    margin: 0;
    background: #fff;
}

input,
button,
select,
textarea {
    font-family: SFPro, SFPro;
}

dl,
dt,
dd,
ul,
li,
ol,
h1,
h2,
h3,
p,
form {
    padding: 0;
    margin: 0;
}

ul,
li,
ol {
    list-style: none;
}

img {
    vertical-align: top;
    display: inline-block;
}

.clear {
    clear: both;
}

a {
    color: #8B9AAD;
    text-decoration: none;
}

a:hover {
    color: #212229;
    transition: 0.2s ease color;
}

.one-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.two-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.three-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.display-no{
    display: none !important;
}

.head-white {
    width: 100%;
    position: relative;
}

header {
    width: 100%;
    height: 5rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: url('/images/headbg.jpg') no-repeat center center;
    background-size: 100% 100%;
    /* transition: all .4s; */
}

.head {
    width: 100%;
    height: 100%;
    padding: 0 2.4rem;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    color: #fff;
    margin:  0 auto;
}

.head-bg{
    /* background: rgba(255, 255, 255, 0.5); */
}

.header-content{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.head-left {
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.head-left .logo-img {
    width: 3rem;
    height: 3rem;
}

.head-left .logo-img img{
    width: 100%;
    height: 100%;
}

.head-locale .no{
    width: 2.4rem;
    height: 2.4rem;
    margin-left: 1rem;
}

.head-locale .no img{
    width: 100%;
    height: 100%;
}

.head-locale{
    display: flex;
    align-items: center;
    height: 2.8rem;
    line-height: 2.8rem;
    text-align: center;
    font-size: 1.6rem;
    margin: 1.4rem 0;
}

.head-locale .lang-btn{
    width: 2.8rem;
    height: 2.8rem;
    margin-left: 1rem;
    background: #D8D8D8;
    color: #fff;
    border-radius: 0.8rem;
    cursor: pointer;
    transition: all .2s;
}

.head-locale .active{
    background: #2874F6;
}

.drawer{
    width: 100dvw;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.4);
    transition: all 1s;
    display: none;
}

.drawer.show {
    display: block;
}

.drawer-shadow{
    width: 100%;
    height: 100%;
}

.drawer-content{
    position: fixed;
    top: 0;
    right: -120dvw;
    z-index: 99999;
    width: 80%;
    height: 100%;
    background: #fff;
    transition: right 1s;
    padding: 0 2.4rem;
    box-sizing: border-box;
}

.drawer-content.show {
  right: 0;
}

.drawer-close{
    display: flex;
    justify-content: right;
    padding: 2rem 0;
    box-sizing: border-box;
}

.close-img,
.close-img img{
    width: 2rem;
    height: 2rem;
}

.drawer .el-anchor__list{
    display: flex;
    flex-wrap: wrap;
}

.drawer .el-anchor__list .el-anchor__item{
    width: 100%;
    padding: 1rem 0 !important;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
}

.drawer .el-anchor .el-anchor__marker{
    display: none;
    opacity: 0;
}

.drawer .el-anchor__list .el-anchor__item .el-anchor__link{
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}

.drawer .el-anchor .el-anchor__list .el-anchor__item .active-no,
.drawer .el-anchor__list .el-anchor__item .el-anchor__link.is-active{
    color: #2874F6;
}

.toTop{
    display: none;
}

.el-backtops{
    width: 5rem !important;
    height: 5rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
}

.to-top{
    width: 5rem !important;
    height: 5rem !important;
    background: url('/images/totop.png') no-repeat center center;
    background-size: 100% 100%;
}
.carousel{
    width: 100%;
    position: relative;
}

.swiper{
    width: 100%;
    /* height: 28rem; */
    background: url('/images/banner.jpg') no-repeat center center;
    background-size: 100% 100%;
    position: relative;
    text-align: center;
    color: #fff;
    padding: 0 2.4rem;
    box-sizing: border-box;
    line-height: 2.8rem;
}

.swiper-notice{
    position: fixed;
    top: 5.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    line-height: 2rem;
    padding: 0.4rem 1rem;
    font-size: 1.6rem;
    color: #fff;
    display: flex;
    align-items: center;
    z-index: 9;
}

.swiper-notice::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
    background: #FFC000;
    opacity: 0.4;
    z-index: -1;
}

.notice-word{
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    margin: 0 1rem;
}


.marquee {
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

.swiper-notice[v-show="false"] {
    display: none !important;
}

.notice-img,
.notice-img img{
    height: 1.6rem;
}

.swiper-title {
    width: 100%;
    padding-top: 9.4rem;
}

.swiper-top{
    font-size: 2rem;
    font-weight: bold;
    line-height: 2.2rem;
    /* margin-bottom: 1rem; */
}

.swiper-word{
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.swiper-slider{
    width: 100%;
}

.swiper-slider .slider .el-slider__runway,
.swiper-slider .slider .el-slider__bar{
    height: 1.6rem;
    border-radius: 1rem;
}

.swiper-slider .slider .el-slider__bar{
    background: linear-gradient(to right,#00B240,#4CEB9F);
}

.swiper-slider .slider .el-slider__button-wrapper{
    width: 1.8rem;
    height: 1.8rem;
    top: -6px;
}

.swiper-slider .slider .el-slider__button-wrapper .el-slider__button{
    width: 2.8rem;
    height: 2.8rem;
    background: #fff;
    /* background: url('/images/toggle.png') no-repeat center center; */
    background-size: 100% 100%;
    border: none;
}

.swiper-money{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 1rem auto 1rem;
    font-size: 1.8rem;
}

.swiper-btn3{
    padding-bottom: 3rem;
}

.swiper-btn{
    width: 28rem;
    height: 5.2rem;
    line-height: 5.2rem;
    font-weight: 500;
    background: #2874F6;
    font-size: 2rem;
    border-radius: 6.4rem !important;
    cursor: pointer;
    margin: 0 auto;
}

.core{
    padding: 0 2.4rem;
    text-align: center;
    z-index: 2;
}

.core-list{
    color: #666;
    margin-top: 2rem;
}

.core-item{
    width: 100%;
    border-radius: 0.5rem;
    background: #F5FAFF;
    border-radius: 1.6rem;
    box-shadow: 0px 4px 8px 0px #E4E7EC;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 1rem 0;
    margin-bottom: 2rem;
    transition: all .4s;
    cursor: pointer;
    line-height: 2.2rem;
}

.core-list .active{
    background: #FEF0E1;
}

.core-item-img{
    width: 2.8rem;
    height: 2.8rem;
    margin: 0 1rem;
    display: flex;
    align-items: center;
}

.core-item-img img{
    width: 100%;
}

.core-item-word{
    flex: 1;
}

.main {
    width: 100%;
    position: relative;
    font-size: 1.6rem;
    color: #212229;
}

.products{
    width: 100%;
    background: #fff;
    padding: 0 2.4rem;
    box-sizing: border-box;
    margin: 3rem 0;
}

.products-list{
}

.products-item{
    border: 0.2rem solid #A3C5FF;
    border-radius: 1.6rem;
    padding: 1.6rem;
    box-sizing: border-box;
    font-size: 1.8rem;
    line-height: 2.8rem;
    margin-bottom: 2rem;
}

.products-it{
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.products-item-img{
    width: 2.8rem;
    height: 2.8rem;
    margin-right: 1rem;
}

.products-item-img img{
    width: 100%;
    height: 100%;
}

.products-item-title{
    font-size: 2rem;
    font-weight: bold;
}

.products-title{
    font-size: 2rem;
    font-weight: bold;
}

.products-problem{
    font-size: 1.8rem;
}

.products-problem-item{
    position: relative;
    padding-left: 2rem;
}

.products-problem-item::after{
    position: absolute;
    content: '';
    width: 1.2rem;
    height: 1.2rem;
    top: 0.8rem;
    left: 0;
    background: #25D366;
    border-radius: 50%;
}

.step{
    width: 100%;
    height: 28rem;
    position: relative;
    display: flex;
    background: #CCDFFF;
}

.step-top{
    width: 100%;
    position: absolute;
    top: 2rem;
    left: 0;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    z-index: 2;
}

.step-item{
    width: calc(100% / 3);
    text-align: center;
    padding-top: 6rem;
    box-sizing: border-box;
    line-height: 2.8rem;
    position: relative;
}

.step-item:nth-child(2)::before{
    content: '';
    position: absolute;
    top: 50%;
    right: -1.6rem;
    transform: translateY(-50%);
    width: 3.2rem;
    height: 3.2rem;
    background: url('/images/step1.png') no-repeat center center;
    background-size: 100% 100%;
    z-index: 2;
}

.step-item:last-child::before{
    content: '';
    position: absolute;
    top: 50%;
    left: -1.6rem;
    transform: translateY(-50%);
    width: 3.2rem;
    height: 3.2rem;
    background: url('/images/step2.png') no-repeat center center;
    background-size: 100% 100%;
    z-index: 2;
}

.step-item:nth-child(3){
    background: #A3C5FF;
}

.step-item:last-child{
    background: #7FAEFF;
}

.step-item-img{
    height: 10rem;
    margin-bottom: 2rem;
}

.step-item-img img{
    height: 100%;
}

.reparment{
    background: #fff;
}

.reparment-content{
    width: 100%;
    padding:  0 2.4rem;
    margin: 3rem 0;
    box-sizing: border-box;
}

.reparment-contents{
    margin: 0;
    padding:  3rem 2.4rem;
}

.reparment-top{
    font-size: 2rem;
    color: #2874F6;
    font-weight: bold;
    text-align: center;
}

.reparment-info{
    font-size: 1.8rem;
    line-height: 2.8rem;
    padding: 1rem 0;
}

.bank{
    position: relative;
    line-height: 2.8rem;
}

.bank-title{
    font-size: 2rem;
    font-weight: bold;
}

.p2,
.p20{
    padding-top: 2rem;
}

.pb20{
    padding-bottom: 2rem;
}

.bank-item{
    position: relative;
    padding-left: 2rem;
    font-size: 1.8rem;
}

.bank-item::after{
    position: absolute;
    content: '';
    width: 1.2rem;
    height: 1.2rem;
    top: 0.8rem;
    left: 0;
    background: #2874F6;
    border-radius: 50%;
}

.bank-please{
    font-size: 1.8rem;
    color: #2874F6;
}

.bank-kz{
    display: inline-block;
    background: #D5EAFF;
    border-radius: 0.8rem;
    font-size: 2rem;
    padding: 0.5rem 1.2rem;
    margin-top: 1rem;
}

.bank-info{
    font-size: 1.8rem;
}

.bank-img{
    display: flex;
    justify-content: right;
    z-index: 1;
}

.bank-img img{
    width: 16rem;
}

.term{
    padding-top: 5.4rem;
}

.terms{
    width: 100%;
    position: relative;
}

.terms-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 1.6rem;
    margin-top: 2rem;
}

.terms-item{
    width: 48%;
    min-height: 10rem;
    color: #fff;
    border-radius: 1.6rem;
    padding: 1.2rem;
    box-sizing: border-box;
    background: linear-gradient( 202deg, #8CB2F4 0%, #2874F6 100%);
    margin-bottom: 2rem;
    cursor: pointer;
    position: relative;
    line-height: 2.2rem;
}

.cursor{
    cursor: pointer;
}

.terms-word{
    white-space: normal;
    text-overflow: -o-ellipsis-lastline;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.terms-item-img{
    height: 2.2rem;
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
}

.terms-item-img img{
    height: 100%;
    margin-left: 1rem;
}

.terms-item:nth-child(3n){
    margin-right: 0;
}

.more{
    text-align: center;
    font-size: 1.6rem;
}

.mb0{
    margin-bottom: 0;
}

.m5{
    margin-top: 2rem;
}

.collapse-m5{
    margin-top: 2rem;
    border: none !important;
}

.question{
    background: #D5EAFF;
}

.question .el-collapse-item{
    border-radius: 1.8rem;
    padding: 0 1.6rem;
    overflow: hidden;
    background: #F5FAFF;
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 2rem;
    border: none !important;
}

.question .el-collapse-item__header{
    min-height: 3.6rem;
    height: auto;
    padding: 1rem  0;
    line-height: 2rem;
    background: #F5FAFF;
    font-size: 1.6rem;
    color: #666;
}

.question .el-collapse-item__content{
    background: #F5FAFF;
    font-size: 1.6rem;
    line-height: 2rem;
    color: #666;
    border-top: 1px solid #ccc;
    padding-top: 1rem;
}

.icon-ele{
    display: inline-block;
    /* width: 2.8rem;
    height: 2.8rem; */
}

.icon-ele img{
    width: 2.8rem;
}

.icon-ele .rotate{
    transform: rotate(180deg);
}

.bold{
    font-weight: bold;
}

.footer{
    width: 100%;
    background: #2874F6;
    color: #fff;
    padding: 3rem 2.4rem;
    box-sizing: border-box;
    position: relative;
    font-size: 1.6rem;
    line-height: 2.4rem;
}

.footer-left{
    margin-bottom: 2rem;
}

.footer-img img{
    width: 3.2rem;
    height: 3.2rem;
    margin-right: 1rem;
}

.footer-word{
    margin-top: 1rem;
}

.footer-word-top{
    font-size: 1.8rem;
}

.footer-serivce{
    font-size: 1.8rem;
    padding-bottom: 1rem;
    position: relative;
}

.footer-serivce::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 1px;
    background: #D5EAFF;
}

.footer-ul{
    margin-top: 1rem;
}

.footer-item{
    display: flex;
    align-items: center;
    color: #D5EAFF;
    margin-top: 1rem;
}

.footer-item a,
.footer-item a:hover{
    color: #D5EAFF;
}

.footer-item-img{
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 1rem;
}

.footer-item-img img{
    width: 100%;
}

.footer-bottom{
    width: 100%;
    text-align: center;
    background: #0B2751;
    color: #A09FAF;
    font-size: 1.8rem;
    padding: 1rem 0;
    line-height: 2.4rem;
}

.footer-bottom a{
    color: #A09FAF;
}

.footer-bottom a:hover{
    color: #fff;
}


.footer-down{
    margin: 1rem 0;
}

.footer-dimg{
    width: 100%;
    height: 3.6rem;
    display: flex;
    flex-wrap: wrap;
}

.footer-down-img{
    height: 100%;
    cursor: pointer;
    margin-right: 2rem;
}

.footer-down-img img{
    height: 100%;
    margin: 0;
}

.right-app{
    position: fixed;
    top: 85%;
    /* top: 33.8rem; */
    right: 0;
    transform: translateY(-50%);
    width: 9.7rem;
    height: 3.6rem;
    z-index: 999;
}

.right-app-img{
    width: 100%;
    height: 100%
}

.right-app-img img{
    width: 100%;
}

.cp{
    cursor: pointer;
}

/* complaint */
.c-header{
    width: 100%;
    height: 5.4rem;
    background: #4257CD;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}
.c-header-down{
    width: 100%;
    height: 5.4rem;
}
.c-head{
    width: 100%;
    height: 100%;
    padding: 0 2.4rem;
    display: flex;
    justify-content: right;
    align-items: center;
}

.c-head-right{
    height: 2.8rem;
    color: #000;
}

.c-head-right .el-dropdown-link{
    line-height: 2.8rem;
    font-size: 2rem;
    color: #fff;
}

.c-head-right .el-dropdown-link img{
    width: 2.8rem;
    height: 2.8rem;
    margin-right: 1rem;
}

.c-head-right .active{
    color: #ADBAFF;
}

.c-menu .el-dropdown-menu__item{
    color: #000;
}

.c-menu .el-dropdown-menu__item:hover,
.c-menu .el-dropdown-menu__item:focus{
  background: #e5e5e5 !important; /* 改成你想要的颜色 */
  color: #000 !important;
}

.c-main{
    width: 100%;
    padding: 0 2.4rem;
}

.c-top{
    font-weight: 500;
    font-size: 2rem;
    line-height: 2.4rem;
    margin: 2rem 0 1rem;
}

.c-form .el-form-item{
    margin-bottom: 2rem;
}

.c-form .el-input{
    height: 4.6rem;
    font-size: 1.6rem;
}

/* .c-form .date-pick .el-input__inner, */
.c-form .date-pick .el-input__wrapper,
.c-form .el-select .el-select__wrapper{
    height: 4.6rem;
    font-size: 1.6rem;
}

.c-form .el-textarea__inner{
    font-size: 1.6rem;
}

.c-form .date-pick .el-icon,
.c-form .el-select .el-icon{
    font-size: 2rem;
    color: #4257CD !important;
}
.c-form .el-scrollbar .el-select-dropdown__item{
    height: 4.6rem;
    font-size: 1.6rem;
}

.c-form .el-form-item__error{
    font-size: 1.4rem;
}

.dialog-footer{
    width: 100%;
    display: flex;
    justify-content: center;
}

.dialog-footer .submit{
    width: 100%;
    height: 4.6rem;
    font-weight: 500;
    font-size: 2rem;
}

.footer-please{
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.pleaseword{
    padding: 1.5rem;
    font-size: 1.5rem;
    background: #EAF0FE;
    border-radius: 0.6rem;
}

.upload-add{
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

.dialog{
    width: 85% !important;
    padding: 2rem !important;
    border-radius: 1.2rem !important;
}

.dialog-word{
    color: #000;
    font-size: 1.2rem;
}

.dialog-imgs{
    display: flex;
    justify-content: right;
    margin-bottom: 1.6rem;
}

.dialog-img{
    width: 1.6rem;
    height: 1.6rem;
    cursor: pointer;
}

.dialog-img img {
    width: 100%;
}

.dialog-btn{
    margin-top: 1rem;
    width: 90% !important;
    height: 4.8rem !important;
}