html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
a{
    text-decoration: none;
	color: #2F372F;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
video:focus{
    outline: 0;
}
body{
    margin: 0;
    color: #2F372F;
    min-width: 1200px;
    font-size: 14px;
    font-family: "微软雅黑", Arial, Verdana, Helvetica, sans-serif;
    background-color: #fff;
}
.container{
    margin: 0 auto;
    width: 1200px;
}
/* 布局 */
.flex{
    display: -webkit-box; 
    display: -moz-box; 
    display: -ms-flexbox; 
    display: -webkit-flex; 
    display: flex; 
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.flex-column{
    webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column; 
    flex-direction:column;
}
.flex-wrap{
    flex-wrap: wrap;
}
.flex-1{
    -webkit-box-flex: 1; 
    -moz-box-flex: 1; 
    -webkit-flex: 1; 
    -ms-flex: 1; 
    flex: 1;
}
.align-center {
    -webkit-box-align: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    align-items: center;
}
.align-start {
    -webkit-box-align: flex-start;
    -moz-align-items: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
.align-end {
    -webkit-box-align: flex-end;
    -moz-align-items: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
.space-between {
    -webkit-box-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.space-center {
    -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
.space-end {
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
}
.space-around{
	justify-content: space-around;
}
.space-start{
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
}
.none{
	display: none;
}
.block{
	display: block;
}
/* 字体 */
.font-12{
    font-size: 12px;
}
.font-13{
    font-size: 13px;
}
.font-14{
    font-size: 14px;
}
.font-16{
    font-size: 16px;
}
.font-18{
    font-size: 18px;
}
.font-20{
    font-size: 20px;
}
.font-22{
    font-size: 22px;
}
.color-gray{
    color: rgb(9 9 9 / 50%);
}
.color-green{
    color: #34A589;
}
.color-blue{
    color: #2468F2 !important;
}
.color-black{
    color: #0B0C0C;
}
.color-white{
	color: #FFFFFF !important;
}
.color-red{
    color: #F56C6C !important;
}
.color-yellow{
    color: #F5BA31 !important;
}
.color-purple{
    color: #AE7AFE !important;
}

/* 间距 */
.mt-5{
    margin-top: 5px;
}
.mt-10{
    margin-top: 10px;
}
.mt-15{
    margin-top: 15px;
}
.mt-20{
    margin-top: 20px;
}
.mt-30{
    margin-top: 30px;
}
.mb-30{
    margin-bottom: 30px;
}
.ml-60{
    margin-left: 60px;
}
.mr-5{
	margin-right: 5px;
}
.mr-10{
	margin-right: 10px;
}
.mr-20{
	margin-right: 20px;
}
.text-center{
    text-align: center;
}
.img{
    display: block;
}
.ellipsis{
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}

/* 页面头部 */
.header-wrap{
	position: fixed;
    height: 90px;
    width: 100%;
	top: 0;
	z-index: 999;
    background: #ffffff;
}
.header{
    height: 90px;
    position: relative;
    z-index: 9;
}
.header .logo{
    width: 134px;
}
.header .nav-item{
    width: 120px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    position: relative;
    height: 80px;
    line-height: 80px;
}
.header .nav-item::after{
	content: "";/*content用来定义插入内容必须有值至少是空*/
	display: block; /*默认情况下伪元素的display的默认值是inline可以通过设置block来改变其显示。*/
	transition: all 400ms ease-in-out 0s;/*有过渡的效果*/
	border-top: 2px solid #AE7AFE;
	margin: 0 auto;/*从中间向两边扩开*/
	width: 0;
}
.header .nav-item a{
    display: block;
    color:#232323;
}
.header .nav-item.active a{
    color: #AE7AFE;
}
.header .nav-item:hover::after{
	width: 100%;
}
.header .nav-item:hover>a{
    color:#AE7AFE;
}
.header .nav-img{
    margin-left: 40px;
}
.header .nav-img img{
    vertical-align: middle;
    width: 34px;
    margin-right: 10px;
}
.header .nav-layout{
    position: absolute;
    top: 90px;
    left: 0;
    width: 120px;
    z-index: 99999;
    padding: 5px 10px 5px 10px;
    background:rgba(255,255,255,0.9);
    text-align: center;
    display: none;
    box-sizing: border-box;
}
.header .nav-layout .nav-sub-item{
    font-size: 15px;
    line-height: 18px;
    margin: 15px 0;
}
.header .nav-layout .nav-sub-item a{
    color:rgb(47 55 47 / 70%);
}
.header .nav-layout .nav-sub-item a:hover{
    color:#3EA836;
}
.header .btn{
    width: 100px;
	font-size: 16px;
    padding: 8px 0;
    border-radius: 18px;
    box-sizing: border-box;
    text-align: center;
}
.header .login-btn{
    color: #AE7AFE;
    border: 1px solid #AE7AFE;
}
.header .reg-btn{
	background: #AE7AFE;
	border-radius: 18px;
	margin-left: 18px;
	color: #fff;
}
.header .avater{
	width: 32px;
	height: 32px;
    border-radius: 50%;
	display: inline-block;
	margin-right: 10px;
    cursor: pointer;
    vertical-align: middle;
}
.header .name{
	font-size: 14px;
	color: #232323;
    cursor: pointer;
}

/* banner */
.banner{
    width: 100%;
    height: 760px;
}
.banner .img{
    width: 100%;
}
.banner .banner-img{
    width: 100%;
    height: 100%;
}
.banner .banner{
    width: 100%;
}
.banner-inner{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
	width: 1200px;
    height: 100%;
    padding-top: 170px;
    padding-bottom: 150px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.banner-inner .title{
	font-size: 60px;
	font-weight: bold;
    color: #A677FF;
}
.banner-inner .color-purple{
    font-size: 20px;
    color: #AE7AFE;
    padding: 7px 47px;
    background: linear-gradient( 278deg, #DBEBFF 0%, #E5EEF9 55%, #E2E4FB 100%);
    box-shadow: 0px 3px 6px 1px #CADEFE;
    border-radius: 29px 29px 29px 29px;
    border: 1px solid rgba(255,255,255,0.67);
    margin-top: 28px;
}
.banner-inner .sub-title{
    max-width: 52%;
	font-size: 28px;
    font-weight: bold;
    line-height: 40px;
	margin-top: 28px;
    color: #0A0C0E;
}
.banner-inner .btn-warp{
    display: flex;
    align-items: center;
    margin-top: 48px;
}
.banner-inner .btn-warp .btn{
    display: flex;
    align-items: center;
    background: #A677FF;
    padding: 12px 44px;
    border-radius: 32px;
    font-size: 20px;
    color: #fff;
}
.banner-inner .btn-warp .btn:hover{
    opacity: 0.8;
}
.banner-inner .btn-warp .img{
    width: 30px;
    height: 30px;
    display: block;
    margin-right: 12px;
}
@media screen and (max-width: 1600px) {
	.banner-text-box .box-title{
		font-size: 40px;
	}
	.banner-text-box .box-content{
		font-size: 20px;
	}
	.banner-text-box .box-bottom h3{
		font-size: 20px;
	}
}

/* 头部优势 */
.advantage-warp{
    margin-top: -75px;
    z-index: 99;
    position: relative;
}
.advantage-inner{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F9FAFE;
    border: 1px solid #AE7AFE;
    border-radius: 15px;
    padding: 16px 0 28px 0;
}
.advantage-warp .item{
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.advantage-warp .img{
    width: 80px;
    height: 80px;
    display: block;
    margin-right: 8px;
}
.advantage-warp .num{
    font-size: 22px;
    font-weight: bold;
    color: #232323;
}
.advantage-warp .txt{
    font-size: 16px;
    color: #6C747B;
    margin-top: 4px;
}

/* 标题 */
.box .title{
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 26px;
}
.box .title-warp{
    display: flex;
    align-items: center;
    justify-content: center;
}
.box .title-warp .img{
    width: 28px;
    height: 28px;
    display: block;
}
.box .title-warp .title{
    margin: 0;
    font-size: 40px;
    margin: 0 37px;
}
.box .sub-title{
    text-align: center;
    font-size: 16px;
	line-height: 40px;
    color: #6C747B;
    padding: 0 140px;
}
.box .look-more-wrap{
    text-align: center;
    margin-top: 60px;
}
.box .look-more-txt{
    color: #2F372F;
    font-size: 14px;
    padding-top: 6px;
    border-bottom: 1px solid #2F372F;
}
.box .look-more-wrap img{
    width: 44px;
    margin-left: 10px;
    vertical-align: middle;
}
/* 底部 */
.advantage-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 42px 0;
    border-top: 1px solid rgba(112, 112, 112, 0.19);
}
.advantage-wrap .item{
    display: flex;
    align-items: center;
    font-size: 20px;
}
.advantage-wrap .img{
    width: 62px;
    height: 62px;
    display: block;
    margin-right: 20px;
}
.footer-wrap{
    background: #040B1F;
    color: rgba(255, 255, 255, 0.8);
}
.footer-wrap .info-box{
    width: 300px;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 20px;
    margin-right: 146px;
}
.footer-wrap .info-box .name{
    font-size: 24px;
    margin-bottom: 24px;
    color: #ffffff;
}
.footer-wrap .footer-box{
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 50px 0;
    box-sizing: border-box;
}
.footer-wrap p{
    font-size: 16px;
    margin-bottom: 30px;
}
.footer-wrap a p{
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}
.footer-wrap .service{
    font-size: 16px;
    color: #ffffff;
    background:#AE7AFE;
    border-radius: 32px;
    padding: 11px 44px;
    display: inline-block;
}
.footer-wrap .link-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 30px 0;
    color: #818181;
    font-size: 14px;
    box-sizing: border-box;
}
.footer-wrap .link-wrap a{
    color: #818181;
    margin-left: 10px;
}
.copyright{
    font-size: 14px;
    color: #818181;
    margin-bottom: 0 !important;
}
/* 侧边栏 */
.sidebar-warp{
    width: 90px;
    position: fixed;
    top: 30%;
    right: 5px;
    background: #FFFFFF;
    border-radius: 84px;
    padding: 24px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    z-index: 99;
    box-shadow: 0px 3px 10px 1px rgba(0,0,0,0.07);
}
.sidebar-warp .item{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 0;
    cursor: pointer;
}
.sidebar-warp a:not(:last-child) .item{
    border-bottom: 1px solid rgba(10, 12, 14, 0.08);
}
.sidebar-warp .img{
    width: 32px;
    height: 32px;
    display: block;
    margin-bottom: 8px;
}
.sidebar-warp .txt{
    font-size: 14px;
    line-height: 20px;
    color: #6C747B;		
}


/* 分页 */
.pagination{
    margin-bottom: 60px;
    text-align: center;
}
.pagination a{
    display: inline-block;
    width: 36px;
    height: 36px;
    margin: 0 5px;
    text-align: center;
    line-height: 36px;
    border-radius:4px;
    color: rgb(11 12 12 / 60%);
    background: #f5f5f5;
    cursor: pointer;
}
.pagination a.active{
    background: #3EA836;
    color: #ffffff;
}

/* 面包屑 */
.crumbs-wrap{
    background: #F5F5F5;
    padding: 18px 0;
    font-size: 14px;
    color: rgb(47 55 47 / 60%);
}

.crumbs-wrap img{
    width: 16px;
    vertical-align: middle;
}
.crumbs-wrap span{
    margin: 0 5px;
}
.crumbs-wrap a{
    color: rgb(47 55 47 / 60%);
}
.crumbs-wrap a.active{
    color: #2F372F;
}
.social-wrap{
    margin-top: 10px;
    margin-top: 30px;
}
.social-wrap .social-img{
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 4px;
    border-radius: 2px;
}
.form-wrap{
    background: #ffffff;
    margin: 30px 0 60px;
    border: 1px solid rgb(47 55 47 / 20%);
}
.form-wrap .title {
    background: #f5f5f5;
    font-weight: bold;
    font-size: 20px;
    color: #3EA836;
    padding: 20px 25px;
}
.form-wrap .desc{
    font-size: 14px;
    color: rgba(0,0,0,0.5);
    margin-left: 10px;
}
.form-wrap .form-con{
    padding: 30px 10px;
    font-size: 15px;
}
.form-input-item{
    width: 33.3%;
    padding: 0 25px ;
    margin-bottom: 30px;
    box-sizing: border-box;
}
.form-texteare-item{
    width: 100%;
    padding: 0 25px;
    align-items: flex-start;
    box-sizing: border-box;
}
.form-input-item .requrie,
.form-texteare-item .requrie{
    color: red;
    margin-right: 4px;
}
.form-input-item .label,
.form-texteare-item .label{
    font-size: 15px;
    color: rgba(0,0,0,0.5);
}
.form-input-item .input,
.form-input-item .select{
    display: block;
    padding: 12px ;
    margin-top: 10px;
    width: 100%;
    border: 0;
    color: #2F372F;
    font-size: 16px;
    border: 1px solid #DEDEDE;
    box-sizing: border-box;
}

.form-texteare-item textarea{
    border: 1px solid #DEDEDE;
    margin-left: 20px;
    height: 100px;
    padding: 10px;
    font-size: 16px;
    line-height: 20px;
    font-family: "微软雅黑", Arial, Verdana, Helvetica, sans-serif;
}
.form-checkbox-item{
    margin: 20px 25px;
}
.form-checkbox-item label{
    cursor: pointer;
}
.form-checkbox-item a{
    color: #2F372F;
}
input:focus{
    outline: 0;
    border: 1px solid #3EA836!important;
}
select:focus{
    outline: 0;
}
button:focus{
    outline: 0;
}
textarea:focus{
    outline: 1px solid #3EA836;
}
.common-btn{
    display: block;
    background: #3EA836;
    text-align: center;
    color: #ffffff;
    width: 150px;
    font-size: 16px;
    padding: 13px 0;
    border-radius: 2px;
    margin-top: 20px;
    border: 0;
    cursor: pointer;
}
.form-con .submit-btn{
    margin: 40px 25px 20px;
}
.contact-us-silde{
    position: fixed;
    right: 0;
    top: 40%;
    background:#3EA836;
    z-index: 999;
}
.contact-us-silde .item{
    height: 56px;
    position: relative;
    padding: 0 20px;
}
.contact-us-silde.ch .icon{
    display: block;
    width: 24px;
    padding-top: 16px;
    margin: 0 auto;
    box-sizing: border-box;
}
.contact-us-silde.ch .layout{
    background: #3EA836;
    position: absolute;
    right: 65px;
    bottom: 0;
    display: none;
    padding: 2px;
    box-sizing: border-box; 
}
.contact-us-silde.ch .layout .txt{
    color: #ffffff;
    font-size: 16px;
    height: 52px;
    line-height: 52px;
    padding:  0 15px;
    box-sizing: border-box; 
}
.contact-us-silde.ch .item:hover .layout{
    display: block;
}
.contact-us-silde.ch img{
    display: block;
}
.contact-us-silde.ch .qrcode-img{
    width: 120px;
    height: 120px;
}
.contact-us-silde.en{
    right: -124px;
    background:rgb(234 235 234);
    padding-top: 10px;
}
.contact-us-silde.en .service-img{
    width: 180px;
    margin-top: 5px;
}
.contact-us-silde.en .close-img,
.contact-us-silde.en  .open-img{
    margin-bottom: 5px;
    padding-left: 15px;
    width: 40px;
    height: 40px;
}
.contact-us-silde.en .close-img{
    display: none;
}
.contact-us-silde.en .icon{
    display: block;
    width: 26px;
    height: 22px;
    margin-right: 12px;
    box-sizing: border-box;
}

.contact-us-silde.en  .txt{
    color: #2F372F;
    font-size: 15px;
}
.contact-us-silde.en img{
    display: block;
}


/* 实心蓝色小按钮 */
.blue-btn-small{
	font-size: 18px;
	color: #fff;
	padding: 10px 42px;
	background: #AE7AFE;
	border-radius: 30px;
	border: none;
    cursor: pointer;
}
.blue-btn-small-hollow{
	font-size: 18px;
	color: #AE7AFE;
	padding: 10px 42px;
	background: #fff;
	border-radius: 30px;
	border: 1px solid #AE7AFE;
}
/* 空心按钮 */
.blue-btn-hollow{
	font-size: 20px;
	color: #AE7AFE;
	border: 1px solid #AE7AFE;
	padding: 17px 47px;
	border-radius: 30px;
}
.white-btn-hollow{
	background: #fff;
	font-size: 20px;
	color: #AE7AFE;
	padding: 17px 47px;
	border-radius: 30px;
}

.reg-btn{
	color: #fff;
	font-size: 16px;
	background: #AE7AFE;
	padding: 15px 96px;
	border-radius: 40px;
	box-sizing: border-box;
	border: none;
}
.reg-btn-white{
	font-size: 16px;
	background: #fff;
	padding: 15px 96px;
	border-radius: 40px;
	color: #AE7AFE;
	box-sizing: border-box;
	border: none;
}


/* 登录、注册页 */
.login-warp .title{
	font-size: 24px;
	font-weight: bold;
	color: #191A24;
	text-align: center;
	margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.login-warp .title::after{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';
    width: 94px;
    height: 3px;
    background: #AE7AFE;
}
.login-warp .input{
	width: 100%;
	font-size: 16px;
	color: #000;
	margin-top: 32px;
	background: rgba(108, 116, 123, 0.1);
	border-radius: 32px;
	padding: 19px 24px;
	border: none;
	box-sizing: border-box;
	border: 1px solid rgba(108, 116, 123, 0.1);
}
.login-warp .blue-btn{
	width: 100%;
	margin-top: 24px;
	box-sizing: border-box;
	font-size: 16px;
    font-weight: bold;
	color: #fff;
	border-radius: 32px;
	padding: 18px 0;
	background: #AE7AFE;
	border: none;
    cursor: pointer;
}
.login-warp .blue-btn[disabled]{
    opacity: 0.5;
}
.login-warp .login-bottom{
	width: 100%;
	margin-top: 20px;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.login-warp .login-bottom a{
	color: #AE7AFE;
}
input::placeholder{
	color: #9AA1B5;
}

.login-warp .input-box{
	margin-top: 20px;
}
.login-warp .input-box .input{
	margin-top: 0;
}

.login-warp .blue-btn-small{
    width: 160px;
    flex: 0 0 160px;
	font-size: 18px;
	color: #AE7AFE;
	border-radius: 32px;
	padding: 12px 0;
	border: 1px solid #AE7AFE;
    background: #fff;
	margin-left: 20px;
	box-sizing: border-box;
    text-align: center;
}

input:focus{
    outline: none;
    border: 1px solid #AE7AFE !important;
}
textarea:focus{
    outline-color: #AE7AFE !important;
}
table td{
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
input[type="checkbox"]{
    accent-color: #AE7AFE !important;
    color: #fff !important;
}

.safety-form{
    padding: 20px;
}
.safety-form input{
    width: 100%;
    background: #F4F6F8;
    border-radius: 6px;
    border: 1px solid #F4F6F8 !important;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
}
.safety-form .tips{
    display: flex;
    align-items: center;
}
.safety-form .tips img{
    width: 16px;
    margin-right: 5px;
}
.loggedin-wrap{
    display: none;
}
.cursor{
    cursor: pointer
}

/* 整体滚动条 */
::-webkit-scrollbar {
    width: 8px;
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    background: #C2C2C2;
    border-radius: 10px;
}

/* 滚动条滑块在鼠标悬停时的样式 */
::-webkit-scrollbar-thumb:hover {
    background: #B7B7B7;
}