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: #1EA66C;
    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: #2CDA9C;
}

.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: #1EA66C;
}

.toTop{
    display: none;
}

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

.swiper{
    width: 100%;
    /* height: 40rem; */
    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;
    margin-bottom: 1rem;
}

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

.swiper-slider{
    width: 100%;
}

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

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

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

.swiper-slider .slider .el-slider__button-wrapper .el-slider__button{
    width: 3.2rem;
    height: 3.2rem;
    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 2rem;
    font-size: 1.8rem;
}

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

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

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

.products{
    width: 100%;
    background: #1EA66C;
    padding: 3rem 2.4rem;
    box-sizing: border-box;
}

.products-item{
    border-radius: 1.6rem;
    padding: 1.6rem;
    background: rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin-bottom: 2rem;
    display: flex;
    color: #fff;
}

.products-item:last-child{
    margin-bottom: 0;
}

.products-it{
    width: calc(100% - 3.8rem);
    align-items: center;
    margin-bottom: 1rem;
}

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

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

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

.step{
    width: 100%;
    position: relative;
    background: #F7F8FB;
    padding: 3rem 2.4rem;
    line-height: 2.8rem;
}

.step-top{
    width: 100%;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.step-detail{
    margin-top: 1rem;
    line-height: 2.4rem;
}

.step-list{
    width: 100%;
}

.step-item{
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    line-height: 2.4rem
}

.step-item-word{
    padding: 1rem 0;
}

.step-item-title{
    font-size: 1.8rem;
    font-weight: bold;
}

.step-item-imgs,
.step-item-img{
    width: 100%;
    margin-bottom: 2rem;
}

.step-item-imgs img,
.step-item-img img{
    width: 100%;
}

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

.reparment{
    background: #fff;
}

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

.bt0{
    padding-top: 0;
}

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

.reparment-top{
    font-size: 2rem;
    color: #1EA66C;
    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;
    font-size: 1.8rem;
}

.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, #2CDA9C 0%, #1EA66C 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: #fff;
}

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

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

.question .el-collapse-item__content{
    background: #D2EDE2;
    font-size: 1.6rem;
    line-height: 2rem;
    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: url('/images/footer.jpg') no-repeat center center;
    background-size: auto 100%;
    color: #fff;
    padding: 3rem 2.4rem;
    box-sizing: border-box;
    position: relative;
    font-size: 1.6rem;
    line-height: 2.4rem;
}

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

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

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

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

.footer-serivce{
    font-size: 1.8rem;
    padding-left: 3.4rem;
    position: relative;
}

.footer-item{
    display: flex;
    align-items: center;
    color: #fff;
    margin-bottom: 0.6rem;
}

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

.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: #188556;
    color: #fff;
    font-size: 1.8rem;
    padding: 1rem 0;
    line-height: 2.4rem;
}

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

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

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

.footer-center-img img{
    height: 100%;
    margin-right: 2rem;
}

.footer-license{
    font-size: 1.5rem;
    line-height: 2rem;
}

.apply{
    width: 100%;
    position: relative;
    background: #F7F8FB;
}

.apply-list{
    width: 100%;
}

.apply-item{
    width: 100%;
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin-bottom: 1rem;
}

.apply-item:last-child{
    margin-bottom: 0;
}

.apply-title{
    font-size: 2rem;
    font-weight: bold;
    line-height: 2.8rem;
}