/*样式*/
body,html{
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	font-family: Helvetica Neue,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Arial,sans-serif;
	
	/*min-width: 1200px;*/
	
	/*overflow-x: hidden;*/
	
	/*overflow-x: auto;*/
}

ul,li,p,h2,h3{
	list-style: none;
	margin: 0;
	padding: 0;
}
a{
	text-decoration: none;
}


/*公共样式*/
h2{
	font-family: PingFangSC-Semibold;
	font-size: 0.36rem;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
	line-height: 1;
	
	margin-bottom: 0.5rem;
}


/*兼容---------------------------------------------*/
.box{
	display: box;              /* OLD - Android 4.4- */
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.flex1{
	-prefix-box-flex: 1; 	  /*OLD - Android 4.4- */
	-webkit-box-flex: 1;      /* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex: 1;         /* OLD - Firefox 19- */
	-webkit-flex: 1;          /* Chrome */
	-ms-flex: 1;              /* IE 10 */
	flex: 1;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/*flex-direction*/
/* 父元素-横向排列-从左到右（主轴） */
.flex-row {
 	 /* 09版 */
  	-webkit-box-orient: horizontal;
  	/* 12版 */
 	 -webkit-flex-direction: row;
  	-moz-flex-direction: row;
  	-ms-flex-direction: row;
  	-o-flex-direction: row;
  	flex-direction: row;
}
/* 父元素-横向排列-从右到左（主轴） */
.flex-rowReverse {
    -webkit-box-pack: end;
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -moz-flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
/* 父元素-纵向排列-从上到下（主轴） */
.flex-column {
  	/* 09版 */
  	-webkit-box-orient: vertical;
  	/* 12版 */
  	-webkit-flex-direction: column;
  	-moz-flex-direction: column;
  	-ms-flex-direction: column;
  	-o-flex-direction: column;
 	flex-direction: column;
}
/* 父元素-纵向排列-从下到上（主轴） */
.flex-columnReverse {
    -webkit-box-pack: end;
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

/*flex-wrap*/
/* 父元素-横向换行 */
.flex-wrap {
  	/* 09版 */
  	/*-webkit-box-lines: multiple;*/
  	/* 12版 */
  	-webkit-flex-wrap: wrap;
  	-moz-flex-wrap: wrap;
  	-ms-flex-wrap: wrap;
  	-o-flex-wrap: wrap;
  	flex-wrap: wrap;
}

/*justify-content-主轴对齐*/
/* 父元素-水平居中（主轴是横向才生效） */
.flex-juCenter {
  	/* 09版 */
  	-webkit-box-pack: center;
  	/* 12版 */
  	-webkit-justify-content: center;
  	-moz-justify-content: center;
  	-ms-justify-content: center;
  	-o-justify-content: center;
  	justify-content: center;
  	/* 其它取值如下：
	    align-items     主轴原点方向对齐
	    flex-end        主轴延伸方向对齐
	    space-between   等间距排列，首尾不留白
	    space-around    等间距排列，首尾留白
   */
}
/*父元素-水平两端对齐（主轴是横向才生效）*/
.flex-juBetween{
	/*09版*/
    -webkit-box-pack: justify;
    /*12版*/
    -moz-box-pack:space-around;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
/*父元素-水平平等分对齐（主轴是横向才生效）*/
.flex-juAround {
	/*09版*/
	-webkit-box-pack:space-around;
	/*12版*/
	-moz-box-pack:space-around;
	-webkit--moz-box-pack:space-around;
	-webkit-justify-content:space-around;
	justify-content: space-around;
}
/*父元素-水平末尾对齐（主轴是横向才生效）*/
.flex-juEnd {
    -webkit-box-pack: end;
    -moz-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
/* 父元素-水平头部对齐（主轴是横向才生效 */
.flex-juStart {
    -webkit-box-pack: start;
    -moz-justify-content: start;
    -webkit-justify-content: start;
    justify-content: start;
}

/*align-items-侧轴对齐*/
/* 父元素-竖直居中（主轴是横向才生效） */
.flex-vCenter {
 	 /* 09版 */
  	-webkit-box-align: center;
  	/* 12版 */
  	-webkit-align-items: center;
  	-moz-align-items: center;
  	-ms-align-items: center;
  	-o-align-items: center;
  	align-items: center;
}
/* 父元素-竖直头部对齐（主轴是横向才生效） */
.flex-vStart {
    -webkit-box-align: start;
    -moz-align-items: start;
    -webkit-align-items: start;
    align-items: start;
}
/* 父元素-竖直底部对齐（主轴是横向才生效） */
.flex-vEnd {
    -webkit-box-align: end;
    -moz-align-items: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
/* 父元素-竖直文本基线对齐 （主轴是横向才生效）*/
.flex-vBaseline {
    -webkit-box-align: baseline;
    -moz-align-items: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
}

/* 父元素-竖直上下对齐并铺满（主轴是横向才生效） */
.flex-vStretch {
    -webkit-box-align: stretch;
    -moz-align-items: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
}

/* 子元素-显示在从左向右（从上向下）第1个位置，用于改变源文档顺序显示 */
.flex-o1 {
  	-webkit-box-ordinal-group: 1;   /* OLD - iOS 6-, Safari 3.1-6 */
  	-moz-box-ordinal-group: 1;      /* OLD - Firefox 19- */
  	-ms-flex-order: 1;              /* TWEENER - IE 10 */
  	-webkit-order: 1;               /* NEW - Chrome */
  	order: 1;                       /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 是否允许子元素伸缩 */
.flex-grow1 {
    -webkit-box-flex: 1.0;
    -moz-flex-grow: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.flex-shrink{
    -webkit-box-flex: 0;
    -moz-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.flex-shrink0{
    -webkit-box-flex: 0;
    -moz-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}


/*首页+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/*菜单---------------------------*/
#kx-menu{
	height: 0.88rem;
	width: 100%;
	
	position: fixed;
	top: 0;
	left: 0;
	
	background: #000000;
	
	z-index: 10;
}
#kx-menu .menu{
	width: 100%;
	height: 100%;
	position: relative;
}
#kx-menu .menu-content{
	width: 100%;
	height: 100%;
	z-index: 9;
	background: #000000;
	position: relative;
}
#kx-menu .menu .menu-logo{
	margin-left: 0.32rem;
	/*width: 0.6rem;
	height: 0.6rem;*/
}
#kx-menu .menu .menu-logo img{
	/*width: 100%;
	height: 100%;*/
	height: 0.88rem;
	width: auto;
	display: block;
}
#kx-menu .menu .menu-name{
	font-family: PingFang-SC-Bold;
	font-size: 0.3rem;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
	line-height: 1;
	
	margin-left: 0.1rem;
}
/*右侧图标*/
#kx-menu .menu .menu-right{
	margin-right: 0.3rem;
}
#kx-menu .menu .menu-right img{
	display: block;
	width: 100%;
	height: 100%;
}
#kx-menu .menu .menu-right .user-icon{
	/*width: 0.44rem;*/
	height: 0.44rem;
	
	margin-right: 0.4rem;
}
#kx-menu .menu .menu-right .user-icon img{
	width: 0.44rem;
}
#kx-menu .menu .menu-right .menu-icon{
	width: 0.44rem;
	height: 0.44rem;
}
#kx-menu .menu .menu-right .menu-icon-show{
	display: none;
}

/*右侧登陆*/
.menu-icon-login{
	border: 1px solid #00A4EF;
	border-radius: 0.04rem;
	
	width: 0.98rem;
	height: 0.46rem;
	font-family: PingFang-SC-Bold;
	font-size: 0.28rem;
	color: #00A4EF;
	letter-spacing: 0;
	line-height: 0.46rem;
	text-align: center;
}
.menu-icon-user{
	display: none;
	width: 0.44rem;
}
/*菜单列表*/
.menu-list{
	display: ;
	position: absolute;
	left: 0;
	top: -20rem;
	background: #FFFFFF;
	width: 100%;
	height: auto;
	z-index: 8;
	
	transition: top 0.5s;
	
}
#kx-menu .menu .menu-hide{
	top: -20rem;
	transition: top 0.5s;
}
#kx-menu .menu .menu-show{
	top: 0.88rem;
	transition: top 0.5s;
}
.menu-list ul{
	/*padding: 0 3rem;*/
	width: 100%;
	margin-bottom: 0.5rem;
	line-height: 0;
}
.menu-list ul li{
	border-bottom: 1px solid #DDDDDD;
	height: 0.88rem;
	margin: 0 0.3rem;
}
.menu-list ul li a{
	display: inline-block;
	width: 100%;
	height: 100%;
	line-height: 0.88rem;
	text-align: left;
	
	font-family: PingFangSC-Regular;
	font-size: 0.28rem;
	color: #333333;
	letter-spacing: 0;
}
.menu-list ul .active-menu a{
	color: #00A4EF;
}
/*登陆按钮*/
.menu-user{
	display: ;
	position: absolute;
	left: 0;
	top: -20rem;
	/*top: 0.88rem;*/
	background: #FFFFFF;
	/*width: 100%;*/
	height: auto;
	z-index: 8;
	
	width: -webkit-calc(100% - 0.6rem);
	width: -moz-calc(100% - 0.6rem);
	width: calc(100% - 0.6rem);
	
	padding: 0.5rem 0.3rem;
}
/*登陆注册按钮*/
.menu-user .menu-user-btn{
	margin-bottom: 0.5rem;
	width: 100%;
}
.menu-user .menu-user-btn .login-user-btn{
	width: 3rem;
	height: 0.88rem;
	
	background: #00A4EF;
	border-radius: 0.44rem;
	
	font-family: PingFangSC-Regular;
	font-size: 0.28rem;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
	
	line-height: 0.88rem;
}
.menu-user .menu-user-btn .register-user-btn{
	width: 3rem;
	height: 0.88rem;
	
	background: #FFFFFF;
	border: 1px solid #00A4EF;
	border-radius: 0.44rem;
	
	font-family: PingFangSC-Regular;
	font-size: 0.28rem;
	color: #00A4EF;
	letter-spacing: 0;
	text-align: center;
	
	line-height: 0.88rem;
}
/*登录后的个人信息*/
.menu-user .user-content{
	/*display: block;*/
	margin-bottom: 0.5rem;
}
.menu-user .user-content .user-img{
	width: 0.8rem;
	height: 0.8rem;
	margin-right: 0.2rem;
}
.menu-user .user-content .user-img img{
	width: 100%;
	height: 100%;
	display: block;
}
.menu-user .user-content .user-name{
	font-family: PingFangSC-Regular;
	font-size: 0.3rem;
	color: #333333;
	letter-spacing: 0;
	line-height: 1;
	
	margin-bottom: 0.2rem;
}
.menu-user .user-content .user-member{
	font-family: PingFangSC-Regular;
	font-size: 0.22rem;
	color: #749F17;
	letter-spacing: 0;
	line-height: 1;
}
/*登录后的菜单列表*/
.menu-user ul{
	width: 100%;
}
.menu-user ul .menu-list-li{
	border-top: 1px solid #DDDDDD;
	line-height: 0;
	/*height: 0.88rem;*/
}
.menu-user ul .menu-list-li a{
	font-family: PingFangSC-Regular;
	font-size: 0.28rem;
	color: #333333;
	letter-spacing: 0;
	line-height: 0.88rem;
	
	display: inline-block;
	width: 100%;
	height: 100%;
}
.menu-user ul .menu-list-li p{
	/*border-bottom: 1px solid #DDDDDD;*/
	
	font-size: 0.28rem;
	color: #333333;
	letter-spacing: 0;
	line-height: 0.88rem;
}
.menu-user ul .menu-list-li p span:last-child{
	font-size: 0.4rem;
	font-weight: 600;
	line-height: 0.88rem;
	
	display: inline-block;
	width:0.44rem;
	text-align: center;
}
/*子菜单*/
.menu-user ul .menu-list-li ul{
	padding-left: 0.3rem;
	display: none;
}
/*登陆按钮---退出账号*/
.menu-user .menu-user-exit{
	margin-top: 0.5rem;
	
	width: 6.9rem;
	height: 0.88rem;
	border: 1px solid #00A4EF;
	border-radius: 0.04rem;
	
	font-family: PingFangSC-Regular;
	font-size: 0.28rem;
	color: #00A4EF;
	letter-spacing: 0;
	text-align: center;
	
	line-height: 0.88rem;
}
/*登陆页面*/
.menu-login{
	display: ;
	position: absolute;
	left: 0;
	top: -20rem;
	/*top: 0.88rem;*/
	background: #FFFFFF;
	/*width: 100%;*/
	height: auto;
	z-index: 8;
	
	width: -webkit-calc(100% - 0.6rem);
	width: -moz-calc(100% - 0.6rem);
	width: calc(100% - 0.6rem);
	padding: 0.5rem 0.3rem;
}
.menu .menu-login-input{
	width: 100%;
	height: auto;
	margin-bottom: 0.5rem;
	line-height: 0;
	position: relative;
}
/**/
.menu .menu-login .menu-login-input:nth-child(2){
	margin-bottom: 0.5rem;
}
.menu .menu-login-input input{
	/*width: 100%;*/
	height: 0.88rem;
	
	font-family: PingFangSC-Regular;
	font-size: 0.28rem;
	
	background:none;  
    outline:none;  
    border:none;
    padding: 0;
    border:  1px solid #DDDDDD;
    border-radius: 0.04rem;
    
    width: -webkit-calc(100% - 0.3rem);
	width: -moz-calc(100% - 0.3rem);
	width: calc(100% - 0.3rem);
    padding-left: 0.3rem;
}
.menu .menu-login-input input:focus{   
    border:none;
    border:  1px solid #DDDDDD;
}
.menu .menu-login-input .error-text{
	position: absolute;
	bottom: -0.2rem;
	left: 0;
	font-size: 0.24rem;
	color:#DB5050 ;
	display: none;
}
.menu .menu-login-input .wrong-msg{
	position: absolute;
	bottom: -0.6rem;
	left: 0;
	font-size: 0.24rem;
	color:#DB5050 ;
	
}
/*登陆--忘记密码*/
.menu .forget-pass{
	font-family: PingFangSC-Regular;
	font-size: 0.24rem;
	color: #00A4EF;
	letter-spacing: 0;
	text-align: right;
	line-height: 1;
	
	margin-bottom: 30px;
}
.menu .menu-login-text{
	margin-bottom: 0.4rem;
}
.menu .menu-login-text p:first-child{
	font-family: PingFang-SC-Bold;
	font-size: 0.4rem;
	color: #333333;
	letter-spacing: 0;
	line-height: 1;
}
.menu .menu-login-text p:last-child{
	font-family: PingFangSC-Regular;
	font-size: 0.28rem;
	color: #999999;
	letter-spacing: 0;
	text-align: right;
}
.menu .menu-login-text p:last-child a{
	color: #00A4EF;
}
/*登陆---立即登陆*/
.menu .login-btn{
	width: 100%;
	height: 0.88rem;
	background: #00A4EF;
	border-radius: 0.04rem;
	
	font-family: PingFangSC-Regular;
	font-size: 0.28rem;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
	
	line-height: 0.88rem;
}
/*忘记密码*/
.forget-password{
	display: ;
	position: absolute;
	left: 0;
	top: -20rem;
	/*top: 0.88rem;*/
	background: #FFFFFF;
	/*width: 100%;*/
	height: auto;
	z-index: 8;
	
	width: -webkit-calc(100% - 0.6rem);
	width: -moz-calc(100% - 0.6rem);
	width: calc(100% - 0.6rem);
	padding: 0.5rem 0.3rem;
}

/*图片验证码*/
.forget-password .catcha-forget{
	
}
.forget-password .catcha-forget div{
	
}

.forget-password .catcha-forget div input{
	width: 40%;
}

.forget-password .catcha-forget div img{
	width: 40%;
	height: auto;
	display: block;
}

.forget-password .catcha-forget div p{
	font-size: 0.3rem;
	line-height: 0.3rem;
}

.forget-password .catcha-forget div p:active{
	color: #00A4EF;
}

/*忘记密码-----获取验证码*/
.forget-password .forget_btn,.menu-register .register_btn{
	width: 2rem;
	height: 0.88rem;
	background: #77B94B;
	border-radius: 0 0.04rem 0.04rem 0;
	border: none;
	border: 1px solid #77B94B;
	
	font-family: PingFangSC-Regular;
	font-size: 0.28rem;
	color: #FFFFFF;
	letter-spacing: 0;
	
	line-height: 0.88rem;
}
.menu .forget-password .menu-login-input:nth-child(6){
	margin-bottom: 1rem;
}
/*隐藏的class*/
.menu-div-none{
	display: none;
}
/*显示的class*/
.menu-div-block{
	display: block;
}
/*菜单结束--------------------------------------------*/

/*banner开始-----------------------------------------*/
#kx-banner{
	width: 100%;
	height: 100vh;
}
/*banner轮播*/
#kx-banner .banner-swiper{
	/*height: 860px;*/
	height: -webkit-calc(100% - 2.08rem);
	height: -moz-calc(100% - 2.08rem);
	height: calc(100% - 2.08rem);
	
	width: 100%;
	position: relative;
}
/*修改分页器样式*/
#kx-banner .banner-swiper .swiper-pagination{
	margin-bottom: 0.11rem;
}
#kx-banner .banner-swiper .swiper-pagination .swiper-pagination-bullet{
	width: 16px;
	height: 6px;
	border-radius: 3px;
}
#kx-banner .banner-swiper .swiper-pagination-bullet-active{
	background-color: #FFFFFF;
}
/*banner轮播图*/
#kx-banner .banner-swiper .swiper-container{
	height: 100%;
}
#kx-banner .banner-swiper .swiper-slide{
	background-position: center center;
	/*background-size: cover;*/
	background-size: cover;
	background-repeat: no-repeat;
}
#kx-banner .banner-swiper .swiper-slide1{
	
	background-image: url(../images/banner/banner-1.png);
	
	background-size: cover;
	
	background-position: center bottom;
}

/* 注册按钮--------------- */
#kx-banner .swiper-login{
	margin-top: 5vh;
}

/*手机号*/
#kx-banner .login-input{
	width: 6rem;
	height: 0.8rem;
	background: #FFFFFF;
	border-radius: 0.4rem;
}

#kx-banner .login-input input{
	width: 2.6rem;
	height: 0.8rem;
	background:none;  
	
	background-color: #FFFFFF;
	border-radius:0.4rem 0 0 0.4rem ;
	
	padding: 0;
	
	padding-left: 0.4rem;
    outline:none;  
    border:none;
    
    font-family: PingFangSC-Regular;
	font-size: 0.3rem;
	color: #999999;
	letter-spacing: 0;
}

#kx-banner .login-input .banner-btn{
	width: 2.6rem;
	height: 0.6rem;
	background: #00A4EF;
	border-radius: .4rem;
	
	font-size: 0.3rem;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 0.6rem;
	
	text-align: center;
	
	border: none;
}


/*开启云渲染*/
#kx-banner .banner-swiper .swiper-slide1 .banner .intro{
	font-size: 0.3rem;
	font-family: Source Han Sans CN;
	font-weight: 500;
	color: #FFFFFF;
	line-height: 0.76rem;
	
	height: 0.76rem;
	
	border: 1px solid #FFFFFF;
	
	border-left: none;
	border-right: none;
	
	letter-spacing:0.1rem;
	
	margin-bottom: 1.4rem;
}

#kx-banner .banner-swiper .swiper-slide1 .banner .intro p:nth-child(2){
	color: #999999;
	
	margin-left: 0.2rem;
	position: relative;
	letter-spacing:0px;
}

#kx-banner .banner-swiper .swiper-slide1 .banner .intro p:nth-child(2):after{
	position: absolute;
	
	content: " ";
	
	left: -0.06rem;
	bottom: 0.3rem;
	
	width: 0.86rem;
	height: 0.06rem;
	background-color: #FFF113;
	border-radius: 0.06rem;
	
	transform: rotate(20deg);
}

#kx-banner .banner-swiper .swiper-slide1 .banner .intro p:nth-child(3){
	width: 0.88rem;
	height: 0.48rem;
	background: #FFF000;
	border-radius: 0.1rem;
	
	font-size: 0.36rem;
	color: #333333;
	text-align: center;
	
	line-height: 0.48rem;
	
	margin-left: 0.2rem;
	margin-right: 0.2rem;
	
	letter-spacing:0px;
}
#kx-banner .banner-swiper .swiper-slide1 .banner .intro p:nth-child(3) span:first-child{
	font-weight: 600;
}
#kx-banner .banner-swiper .swiper-slide1 .banner .intro p:nth-child(3) span:last-child{
	font-size: 0.3rem;
}

/*快又省*/
#kx-banner .banner-swiper .swiper-slide1 .banner .title{
	/* margin-bottom: 2rem; */
	letter-spacing:0.1rem;
	
}
#kx-banner .banner-swiper .swiper-slide1 .banner .title p{
	font-size: 1.5rem;
	font-family: Source Han Sans CN;
	font-weight: 500;
	color: #FEFEFE;
	line-height: 1.5rem;
}
#kx-banner .banner-swiper .swiper-slide1 .banner .title p:first-child{
	margin-bottom: 0.4rem;
}
#kx-banner .banner-swiper .swiper-slide1 .banner .title p:first-child span:nth-child(2){
	color: #FFF111;
}
#kx-banner .banner-swiper .swiper-slide1 .banner .title p:nth-child(2) span:nth-child(2){
	color: #00A4EF;
}

/* #kx-banner .banner-swiper .swiper-slide1 div .banner-btn{
	background: #00A4EF;
	border-radius:0.44rem;
	width: 3rem;
	height: 0.88rem;
	
	font-family: PingFangSC-Semibold;
	font-size: 0.3rem;
	color: #FFFFFF;
	letter-spacing: 0;
	
	margin: 0;
	padding: 0;
	border: none; 
	outline: none;    
} */
/*第二个样式*/
#kx-banner .banner-swiper .swiper-slide2{
	width: 100%;
	position: relative;
	
	background-image: url(../images/banner/activity-11/bg.png);
	background-size: cover;
	background-position: center center; 
	
}
#kx-banner .banner-swiper .swiper-slide2 .banner{
	width: 100%;
	height:100%;
	position: relative;
}

#kx-banner .banner-swiper .swiper-slide2 .banner>img{
	width: 6.8rem;
	height: auto;
	display: block;	
	
	margin-bottom: 1.6rem;
}
#kx-banner .banner-swiper .swiper-slide2 .banner div{
	
}
#kx-banner .banner-swiper .swiper-slide2 .banner div img{
	position: absolute;
	height: auto;
}
/*titel*/
#kx-banner .banner-swiper .swiper-slide2 .banner div img:first-child{
	width: 2.5rem;
	/*margin-bottom: 0.3rem;*/
	left:0;
	top: 0;
}

#kx-banner .banner-swiper .swiper-slide2 .banner img:nth-child(2){
	width: 1.44rem;
	right: 0;
	top: 0;
}
/**/
#kx-banner .banner-swiper .swiper-slide2 .banner div img:nth-child(3){
	width:1.8rem;
	
	right: 0;
	bottom: 0;
}
#kx-banner .banner-swiper .swiper-slide2 .banner div img:nth-child(4){
	width: 2.17rem;
	
	left: 0;
	bottom: 0;
}
#kx-banner .banner-swiper .swiper-slide2 .banner div img:nth-child(5){
	width: 1rem;
	
	top: 1.3rem;
	left: calc(50% - 0.5rem);
}



/*第三个banner*/
#kx-banner .banner-swiper .swiper-slide3{
	background-color: #3F4AF6;
}

#kx-banner .banner-swiper .swiper-slide3 .banner{
	height: 100%;
	width: 100%;
}

#kx-banner .banner-swiper .swiper-slide3 .banner>img{
	height: auto;
	width:100%;
	
	display: block;
	
	position: relative;
	z-index: 7;
}

#kx-banner .banner-swiper .swiper-slide3 .banner div img{
	width: 100%;
	height: auto;
	z-index: 8;
	
	position: absolute;
	
	left: 0;
	top: 0;
}



/*第四个banner*/
#kx-banner .banner-swiper .swiper-slide4{
	background-image: url(../images/banner/banner-gpu-bg.png);
	background-size: 100% 100%;
}
#kx-banner .banner-swiper .swiper-slide4 img{
	width: 6.4rem;
	height: auto;
	display: block;
}


/*第五个banner*/
#kx-banner .banner-swiper .swiper-slide5{
	background: rgba(0, 0, 0);
	overflow: hidden;
}

#kx-banner .banner-swiper .swiper-slide5 .banner{
	width: 100%;
	height: 100%;
	position: relative;
	
	
}
#kx-banner .banner-swiper .swiper-slide5 .banner::after{
	content: " ";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 8;
	
	background-image: url(../images/banner/fs-bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	opacity: 0.6;
}

#kx-banner .banner-swiper .swiper-slide5 .banner>img{
	width: 78%;
	height: auto;
	max-height: 67%;
	
	margin-bottom: 0.54rem;
	
	display: block;
	position: relative;
	
	z-index: 9;
}

#kx-banner .banner-swiper .swiper-slide5 .banner p{
	width: 2.62rem;
	height: 0.74rem;
	border: 0.02rem solid #00A4EF;
	border-radius: 0.36rem;
	
	font-size: 0.36rem;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #00A4EF;
	text-align: center;
	line-height: 0.74rem;
	
	position: relative;
	z-index: 11;
}

#kx-banner .banner-swiper .swiper-slide5 .banner .swiper-login{
	z-index: 10;
}


/*第六个banner---夜间模式*/
#kx-banner .banner-swiper .swiper-slide6{
	width:100%;
	height: 100%;
	position: relative;
	
	background-image: url(../images/banner/night/banner-bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

#kx-banner .banner-swiper .swiper-slide6 .banner{
	width: 100%;
	height: 100%;
}

/*内容*/
#kx-banner .banner-swiper .swiper-slide6 .banner .banner-content{
	position: relative;
	
	padding-top: 1.68rem;
}

#kx-banner .banner-swiper .swiper-slide6 .banner .banner-content img:first-child{
	width: 100%;
	height: auto;
	
	position: absolute;
	left: 0;
	top: 0;
	
	z-index: 4;
}
#kx-banner .banner-swiper .swiper-slide6 .banner .banner-content img:nth-child(2){
	width: 100%;
	height: auto;
	
	position: absolute;
	left: 0;
	top: 5rem;
	
	z-index: 4;
}

#kx-banner .banner-swiper .swiper-slide6 .banner .banner-content .btn{
	width: 2.2rem;
	height: 0.56rem;
	border: 0.02rem solid #FFFFFF;
	border-radius: 0.28rem;
	text-align: center;
	
	font-size: 0.3rem;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 0.56rem;
	
	z-index: 5;
	
}

#kx-banner .banner-swiper .swiper-slide6 .banner .banner-content .banner-d{
	width: 6rem;
	height: auto;
	
	margin-top: 0.76rem;
	
	z-index: 5;
}

#kx-banner .banner-swiper .swiper-slide6 .banner .banner-content div{
	margin-top: 1rem;
	
	z-index: 5;
}

#kx-banner .banner-swiper .swiper-slide6 .banner .banner-content div p{
	font-size: 0.24rem;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 0.48rem;
	
	text-align: center;
}

#kx-banner .banner-swiper .swiper-slide6 .banner .banner-btn{
	width: 4.2rem;
	height: auto;
	
	margin-bottom: 1.8rem;
	
	z-index: 5;
}


/*按钮*/
#kx-banner .banner-swiper .swiper-slide6 .slide-content .btn{
	width: 4.1rem;
	height: 0.84rem;
	
	background-image: url(../images/banner/encore/btn.png);
	background-size: 100% 100%;
	
	font-size: 0.36rem;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: #E73C40;
	line-height: 0.84rem;
	text-align: center;
	
	letter-spacing: 4px;
	
	margin-bottom: 0.4rem;
}






/*第七个banner*/
#kx-banner .banner-swiper .swiper-slide7{
	background-image: url(../images/banner/banner-07.jpg);
}
/*新人注册*/
#kx-banner .banner-swiper .swiper-slide7 .banner-title{
	font-family: PingFang-SC-Bold;
	font-size: 0.4rem;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 0.4rem;
	
	margin-bottom: 0.16rem;
}
/*送60元*/
#kx-banner .banner-swiper .swiper-slide7 .banner-title2{
	font-family: .PingFangSC-Semibold;
	font-size: 0.7rem;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 0.7rem;
	
	margin-bottom: 0.3rem;
}
#kx-banner .banner-swiper .swiper-slide7 .banner-title2 span:nth-child(2){
	color: #FECD39;
}
/*横线*/
#kx-banner .banner-swiper .swiper-slide7 .banner-line{
	width: 0.8rem;
	height: 0.06rem;
	/*background: #FFFFFF;*/
	background: rgba(255,255,255,0.5);
	
	margin-bottom: 0.3rem;
}
/*立减10元*/
#kx-banner .banner-swiper .swiper-slide7 .banner-title3{
	font-family: PingFang-SC-Bold;
	font-size: 0.32rem;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 0.32rem;
	
	margin-bottom: 0.2rem;
}
/*更多优惠*/
#kx-banner .banner-swiper .swiper-slide7 .banner-title4{
	font-family: PingFang-SC-Regular;
	font-size: 0.28rem;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 0.28rem;
	
	margin-bottom:0.4rem;
}
/*立即注册*/
#kx-banner .banner-swiper .swiper-slide7 .banner-btn{
	width: 2.2rem;
	height: 0.8rem;
	border-radius: 0.1rem;
	background: #00A4EF;
	
	font-family: PingFangSC-Regular;
	font-size: 0.32rem;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 0.8rem;
	text-align: center;
}
/*第八个banner*/
#kx-banner .banner-swiper .swiper-slide8{
	background-color: #000;
	
}

#kx-banner .banner-swiper .swiper-slide8 .banner{
	width: 100%;
	height: 100%;
	
	background-image:url(../images/banner/yyx/banner-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom right;
}
#kx-banner .banner-swiper .swiper-slide8 .banner>img{
	height: auto;
	width: 6.2rem;
	
	display: block;
	
}




/*第九个banner*/
#kx-banner .banner-swiper .swiper-slide9{
	/*background-image: url(../images/banner/banner-15.png);*/
	/*background-image: url(../images/banner/banner-32.png);*/
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% 100%;
}
#kx-banner .banner-swiper .swiper-slide9 img{
	width: 100%;
	height: 100%;
	display: block;
	/*margin-bottom: 2.5rem;*/
}


/*第10个banner*/
#kx-banner .banner-swiper .swiper-slide10{
	width: 100%;
	background: #3865DC;
	/*height: 1000px;*/
	
	overflow: hidden;
}
#kx-banner .banner-swiper .swiper-slide10 .banner{
	width:100%;
	height: 100%;
	/*max-width: 1920px;*/
	
	position: relative;
}
#kx-banner .banner-swiper .swiper-slide10 .banner img{
	/*width: 100%;*/
	display: block;
	/*height: auto;*/
	width: auto;
	position: absolute;
	
}

#kx-banner .banner-swiper .swiper-slide10 .banner img:first-child{
	left: 0;
	right: 0;
	bottom: 24%;
	margin: auto;
	
	width: 100%;
	/*height: 89%;*/
	
	z-index: 5;
}

#kx-banner .banner-swiper .swiper-slide10 .banner img:nth-child(2){
	left: 0;
	top: 0;
	width: 50%;
	/*height: 100%;*/
	
	max-width: 50%;
	z-index: 6;
}

#kx-banner .banner-swiper .swiper-slide10 .banner img:nth-child(3){
	left: 0;
	bottom: 0;
	/*width: 100%;*/
	height:24% ;
	z-index: 7;
}

#kx-banner .banner-swiper .swiper-slide10 .banner img:nth-child(4){
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	/*width: 100%;*/
	height: 90%;
	
	z-index: 8;
}

/*第12个banner*/
#kx-banner .banner-swiper .swiper-slide12{
	/* background-color: #A3121F;
	overflow: hidden; */
}

#kx-banner .banner-swiper .swiper-slide12 .banner{
	width: 100%;
	height: 100%;
	position: relative;
	
	
}
#kx-banner .banner-swiper .swiper-slide12 .banner::after{
	content: " ";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 8;
	
	background-image: url(../images/banner/activity-2024-618/banner-bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	/* opacity: 0.6; */
}

#kx-banner .banner-swiper .swiper-slide12 .banner>img{
	width: 6.6rem;
	height: auto;
	/* max-height: 100%; */
	
	/* margin-bottom: 0.54rem; */
	
	display: block;
	position: relative;
	
	z-index: 9;
}
#kx-banner .banner-swiper .swiper-slide12 .banner .swiper-login{
	z-index: 9;
}


/**/
#kx-banner .banner-swiper .swiper-slide14{
	background: #941F20;
	background-image: url(../images/banner/banner-syx.png);
	background-repeat: repeat;
	background-position: center bottom; 
	background-size:cover; 
}

#kx-banner .banner-swiper .swiper-slide14 img{
	width: 5.5rem;
	height: auto;
	display: block;
}


/*banner底部*/
#kx-banner .banner-bottom{
	height: 2.08rem;
	width: 100%;
	background: #00A4EF;
}
#kx-banner .banner-bottom .banner-bottom2{
	height: 100%;
	width: 100%;
}
#kx-banner .banner-bottom .banner-content{
	/*width: 25rem;*/
	width: 33.3%;
	height: 100%;
	
	position: relative;
}
/*图标*/
#kx-banner .banner-bottom .banner-content .banner-icon{
	width:0.8rem ;
	height: 0.8rem;
	background-color: #FFFFFF;
	border-radius: 50%;
}
#kx-banner .banner-bottom .banner-content span{
	font-size: 0.5rem;
	color: #00A4EF ;
}

#kx-banner .banner-bottom .banner-content i{
	background-image: url(../images/icon/xiaoguotu.svg);
	background-position: center center;
	background-size: 100% 100%;
	
}

/*文案*/
#kx-banner .banner-bottom .banner-content .banner-intro{
	margin-top: 0.2rem;
}

#kx-banner .banner-bottom .banner-content:hover{
	cursor: pointer;
	background: rgba(0,0,0,0.1);
}

#kx-banner .banner-bottom .banner-content .banner-intro p{
	font-family: PingFangSC-Semibold;
	font-size: 0.28rem;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 1;
}

/*banner结束------------------------------------------------*/

/*我们的优势-------------------------------------------------*/
#superiority{
	width: 100%;
	/*height: 730px;*/
	background-color: #202020;
}
#superiority .superiority{
	padding-top: 0.8rem;
}
#superiority .superiority h2{}
#superiority .superiority ul{
	
}
#superiority .superiority ul li{
	margin: 0.3rem;
	margin-top: 0;
	padding: 0.3rem 0.2rem;
	/*width: 224px;*/
	/*height: 489px;*/
	
	background: rgba(0,0,0,0.1);
}
#superiority .superiority ul li:last-child{
	margin-bottom: 0;
}
/*头部样式*/
#superiority .superiority ul li .superiority-top{
	/*margin-top: 30px;*/
	margin-right: 0.2rem;
}
/*图标*/
#superiority .superiority ul li .superiority-top .superiority-icon{
	width:1rem ;
	height:1rem ;
	
	text-align: center;
}
#superiority .superiority ul li .superiority-top .superiority-icon img{
	width: 100%;
	height: 100%;
	display: block;
}
/*标题*/

#superiority .superiority ul li .superiority-content{
	
}
#superiority .superiority ul li .superiority-content .superiority-title{
	font-family: PingFangSC-Semibold;
	font-size: 0.28rem;
	color: #00A4EF;
	letter-spacing: 0;
	
	margin-bottom: 0.1rem;
}
#superiority .superiority ul li .superiority-content p{
	font-family: PingFangSC-Regular;
	font-size: 0.22rem;
	color: #999999;
	letter-spacing: 0;
	line-height: 1.36;
}
/*我们的优势结束-----------------------------------------------*/

/*兼容软件*/
#plug-in{
	width: 100%;
	background: #202020;
}
#plug-in .plug-in{
	padding: 0.8rem 0;
	width: 100%;
}
/*标题*/
#plug-in .plug-in h2{
	margin-bottom: 0;
}

#plug-in .plug-in ul{
	margin: 0 0.3rem;
	width: -webkit-calc(100% - 0.6rem);
	width: -moz-calc(100% - 0.6rem);
	width: calc(100% - 0.6rem);
}
#plug-in .plug-in ul li{
	width: 33%;
	margin-top: 0.5rem;
}
/*图标*/
#plug-in .plug-in ul li div{
	width: 0.8rem;
	height: 0.8rem;
	background-image: url(../icon/index/plug-in/bg1.png);
	background-position: center center;
	background-size:100% 100%;
	background-repeat: no-repeat;
	
	/*background-color: rgb(255,255,255,0.05);*/
	
	margin-bottom: 0.2rem;
}
#plug-in .plug-in ul li div img{
	width: 0.4rem;
	height: 0.4rem;
	/*margin-top: 0.2rem;
	margin-left: 0.2rem;*/
}
#plug-in .plug-in ul li p{
	font-family: PingFangSC-Regular;
	font-size: 0.22rem;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
}

/*插件结束——-----------------------------------------------*/


/*立即注册开始---------------------------------------------------*/
#promptly-login{
	width: 100%;
	/*height: 180px;*/
	padding: 0.5rem 0;
	background: #00A4EF;
}
#promptly-login .promptly{
	padding: 0 0.3rem;
	width: -webkit-calc(100% - 0.6rem);
	width: -moz-calc(100% - 0.6rem);
	width: calc(100% - 0.6rem);
}
/*左边文案*/
#promptly-login .promptly .promptly-left{
	font-family: PingFang-SC-Bold;
	font-size: 0.36rem;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 1;
	
	text-align: left;
}
#promptly-login .promptly .promptly-left .promptly-title{
	
}
#promptly-login .promptly .promptly-left .promptly-title2{
	font-family: PingFang-SC-Bold;
	font-size: 0.26rem;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 1;
	
	margin-left: 0.05rem;
	margin-top: 0.16rem;
}
/*按钮*/
#promptly-login .promptly .promptly-btn{
	font-family: PingFangSC-Regular;
	width: 2rem;
	height: 0.8rem;
	
	background: #FFFFFF;
	/*border: 1px solid #FFFFFF;*/
	border-radius: 0.4rem;
	padding: 0;
	margin: 0;
	
	text-align: center;
	line-height:0.2;
	
	font-family: PingFangSC-Regular;
	font-size: 0.3rem;
	letter-spacing: 0;
	color: #00A4EF;
	
	line-height: 0.8rem;
}
/*立即注册结束---------------------------------------------------------*/


/*footer底部-----------------------------------------------------*/
#kx-footer{
	width: 100%;
	background: #111111;
}
#kx-footer .footer{
	padding: 0.5rem 0.3rem;
	width: -webkit-calc(100% - 0.6rem);
	width: -moz-calc(100% - 0.6rem);
	width: calc(100% - 0.6rem);
}
/*top*/
#kx-footer .footer .footer-top{
	width: 100%;
}
#kx-footer .footer .footer-top .footer-content{
	
}

/*标题*/
#kx-footer .footer .footer-top  p{
	font-family: PingFangSC-Regular;
	font-size: 0.2rem;
	color: #999999;
	letter-spacing: 0;
	
	margin-bottom: 0.2rem;
}
#kx-footer .footer .footer-top .footer-menu-title{
	font-family: PingFangSC-Semibold;
	font-size: 0.28rem;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: left;
	
	margin-bottom: 0.3rem;
}
/*公众号那一片*/
#kx-footer .footer .footer-top .footer-gzh{
	margin-left: 0.8rem;
}
#kx-footer .footer .footer-top .footer-gzh img{
	width:1.2rem;
	height: 1.2rem;
	display: block;
}


/*底部*/
#kx-footer .footer-bottom{
	width: 100%;
	padding: 0.2rem 0;
	border-top: 1px solid #2C2C2C;
}
#kx-footer .footer-bottom p{
	width: 100%;
	
	font-family: PingFangSC-Regular;
	font-size: 0.2rem;
	color: #999999;
	letter-spacing: 0;
	text-align: center;
}
/*qq弄跑*/
.class_qidian_wpa{
	left: -500px;
}
/*百度商桥弄跑*/
#newBridge #nb_icon_wrap{
	right: -500px;
}


/*联系右边*/
#customer{
	width: 1rem;
	height: 2.5rem;
	background: #000000;
	border-radius: 0.5rem;
	
	position: fixed;
	right: 0;
	top: -webkit-calc(50% - 1rem);
	top: -moz-calc(50% - 1rem);
	top: calc(50% - 1rem);
	
	z-index: 20;
}
#customer .customer-icon{
	width: 0.6rem;
	height: 0.6rem;
	
	line-height: 0.2rem;
}
#customer .customer-icon span{
	font-size: 0.56rem;
	color: #FFFFFF;
}

/*电话*/
.customer-tel{
	position: relative;
	margin-bottom: 0.4rem;
}


/*qq弄跑*/
.class_qidian_wpa{
	left: -500px;
}
/*百度商桥弄跑*/
#newBridge #nb_icon_wrap{
	right: -500px;
}

