/*样式*/
body,html{
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	font-size: 12px;
	font-family: Helvetica Neue,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Arial,sans-serif;
	
	min-width: 1200px;
	
	/*overflow-x: hidden;*/
	
	/*overflow-x: auto;*/
	
}
/*禁止图片选中*/
body img,body a{
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

ul,li,p,h2,h3{
	list-style: none;
	margin: 0;
	padding: 0;
}
a{
	text-decoration: none;
}




/*flex兼容-----------------------------------*/
.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;
}
/*反向排列*/
.flex-wrapReverse {
  	/* 09版 */
  	/*-webkit-box-lines: multiple;*/
  	/* 12版 */
  	-webkit-flex-wrap: wrap-reverse;
  	-moz-flex-wrap: wrap-reverse;
  	-ms-flex-wrap: wrap-reverse;
  	-o-flex-wrap: wrap-reverse;
  	flex-wrap: wrap-reverse;
}

/*justify-content-主轴对齐*/
/* 父元素-水平居中（主轴是横向才生效） */
.flex-juCenter {
	/*ms版本*/
	-ms-flex-pack: center;
  	/* 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{
	/*ms版本*/
	-ms-flex-pack: justify;
	/*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 {
	/*ms版本*/
	-ms-flex-pack: space-around;
	/*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 {
	/*ms版本*/
	-ms-flex-pack: end;
	/**/
    -webkit-box-pack: end;
    -moz-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
/* 父元素-水平头部对齐（主轴是横向才生效 */
.flex-juStart {
	/*ms版本*/
	-ms-flex-pack: start;
	/**/
    -webkit-box-pack: start;
    -moz-justify-content: start;
    -webkit-justify-content: start;
    justify-content: start;
}

/*align-items-侧轴对齐*/
/* 父元素-竖直居中（主轴是横向才生效） */
.flex-vCenter {
	/*ms*/
	-ms-flex-align:center;
 	 /* 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 {
	/*ms*/
	-ms-flex-align:start;
	/**/
    -webkit-box-align: start;
    -moz-align-items: start;
    -webkit-align-items: start;
    align-items: start;
}
/* 父元素-竖直底部对齐（主轴是横向才生效） */
.flex-vEnd {
	/*ms*/
	-ms-flex-align:end;
	/**/
    -webkit-box-align: end;
    -moz-align-items: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
/* 父元素-竖直文本基线对齐 （主轴是横向才生效）*/
.flex-vBaseline {
	/*ms*/
	-ms-flex-align:baseline;
	/**/
    -webkit-box-align: baseline;
    -moz-align-items: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
}

/* 父元素-竖直上下对齐并铺满（主轴是横向才生效） */
.flex-vStretch {
	/*ms*/
	-ms-flex-align:stretch;
	/**/
    -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: 1.0;
    -moz-flex-shrink: 1;
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
}
.flex-shrink0{
    -webkit-box-flex: 0;
    -moz-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

/*公共样式————————————————————————————————————————————————————————————————————————————*/
h2{
	font-family: PingFangSC-Semibold;
	font-size: 30px;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
	line-height: 30px;
	
	margin-bottom: 50px;
}
/*1200样式*/
.body-content{
	width: 1200px;
	min-width: 1200px;
	padding: 80px 0;
}





/*首页+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/*菜单---------------------------*/
#kx-menu{
	height: 60px;
	width: 100%;
	
	position: fixed;
	top: 0;
	left: 0;
	
	min-width: 1200px;
	
	opacity: 0.8;
	background: #171717;
	
	z-index: 10;
}

#kx-menu .menu{
	width: 1200px;
	height: 100%;
	min-width: 1200px;
}
/*logo部分*/
#kx-menu .menu .menu-left{
	margin-right: 290px;
}

#kx-menu .menu .menu-left .menu-logo{
	width: auto;
	height: 44px;
}
#kx-menu .menu .menu-left .menu-logo img{
	height: 100%;
	width: auto;
	border:0 none;
}
/*名字*/
#kx-menu .menu .menu-left .menu-name{
	/*苹果字体*/
	font-family: PingFangSC-Regular;
	font-size: 20px;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
	margin-left: 8px;
	
	white-space: nowrap;
	
	
}

/*菜单部分*/
#kx-menu .menu .menu-right{
	height: 100%;
	width: 100%;
}
#kx-menu .menu .menu-right ul{
	height: 100%;
}
#kx-menu .menu .menu-right ul li{
	/*	强制不换行*/
	white-space: nowrap;
	
	font-family: PingFangSC-Regular;
	font-size: 14px;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
	/*margin-right: 30px;*/
	padding: 0 15px;
	
	line-height: 60px;
	
	position: relative;
	
	
	height: 100%;
}
#kx-menu .menu .menu-right ul li a{
	color: #FFFFFF;
	text-decoration:none;
}
#kx-menu .menu .menu-right ul li:hover{
	cursor: pointer;
	color: #00A4EF;
}
#kx-menu .menu .menu-right ul li:hover a{
	color: #00A4EF;
}
/*选中当前菜单*/
#kx-menu .menu .menu-right ul .menu-active{
	color: #00A4EF;
}
#kx-menu .menu .menu-right ul .menu-active a{
	color: #00A4EF !important;
}
/*登陆*/
#kx-menu .menu .menu-right .menu-log{
	
}

#kx-menu .menu .menu-right .menu-log p{
	/*width: 80px;*/
	min-width: 80px;
	/* height: 32px; */
	padding: 0 10px;
	height: 44px;
	
	border: 1px solid rgba(0,164,234,0.3);
	border-radius: 4px;
	
	
	font-family: PingFangSC-Regular;
	font-size: 14px;
	

	
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
	
	background-color: #00A4EF;
	
	line-height: 44px;
}
/* 登录和注册不一样 */
#kx-menu .menu .menu-right .menu-log>p:first-child{
	min-width: 60px;
	height: 32px;
	line-height: 32px;
	
	background-color:transparent;
	
}
#kx-menu .menu .menu-right .menu-log p:first-child a{
	color: #00A4EF;
	
	white-space: nowrap;
}

#kx-menu .menu .menu-right .menu-log p a{
	/* color: #00A4EF;
	 */
	color: #FFFFFF;
	display: inline-block;
	width: 100%;
	height: 100%;
}
#kx-menu .menu .menu-right .menu-log p:first-child{
	margin-right: 20px;
}
#kx-menu .menu .menu-right .menu-log p:hover{
	cursor: pointer;
	/* background-color: #00A4EF; */
	background-color: transparent;
	color: #00A4EF;
}
#kx-menu .menu .menu-right .menu-log p:hover a{
	color: #00A4EF;
}

/* 划过 */
#kx-menu .menu .menu-right .menu-log>p:first-child:hover{

	background-color: #00A4EF;
}
#kx-menu .menu .menu-right .menu-log>p:first-child:hover a{
	color: #FFFFFF;
}

/*子菜单*/
#kx-menu .menu .menu-child{
	display: none;
	
	position: absolute;
	left: 0;
	bottom: -80px;
	
	width:150px;
	height: 80px;
	/*background: rgba(255,255,255,0.3);*/
	background: rgba(0,0,0,0.8);
	
}
#kx-menu .menu .menu-child p{
	height: 40px;
	width: 100%;
	line-height: 40px;
	
	text-align: center;
}
#kx-menu .menu ul li .menu-child p a{
	font-family: PingFangSC-Regular;
	font-size: 14px;
	color: #FFFFFF !important;
	letter-spacing: 0;
	
	line-height: 40px;
}
#kx-menu .menu ul li .menu-child p a:hover{
	cursor: pointer;
	color: #00A4EF !important;
}
#kx-menu .menu li:hover .menu-child{
	 display: block;
}
/*菜单结束--------------------------------------------*/


/*banner开始-----------------------------------------*/
#kx-banner{
	width: 100%;
	min-width: 1200px;
	/*height: 1000px;*/
	
	height: 100vh;
}
/*banner轮播*/
#kx-banner .banner-swiper{
	/*height: 860px;*/
	height: calc(100vh - 140px);
	width: 100%;
	position: relative;
}
/*轮播图按钮*/
#kx-banner .banner-swiper .swiper-btn{

}
#kx-banner .banner-swiper .swiper-btn p{
	width: 54px;
	height: 54px;
	background: rgba(255,255,255,0.2);
	
	position: absolute;
	top: 50%;
	z-index: 10;
	
	/*position: absolute;*/
}
#kx-banner .banner-swiper .swiper-btn p img{
	width: 16px;
	height: 28px;
}
#kx-banner .banner-swiper .swiper-btn p:hover{
	cursor: pointer;
}
#kx-banner .banner-swiper .swiper-btn p:first-child{
	left: 30px;
}
#kx-banner .banner-swiper .swiper-btn p:last-child{
	right: 30px;
}

/*修改分页器样式*/
#kx-banner .banner-swiper .swiper-pagination{
	margin-bottom: 5%;
}
#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;
}


/* 手机号注册--------------------------- */
#kx-banner .swiper-login{
/* 	position: absolute;
	left: calc(50% - 425px);
	bottom: 10%;
	z-index: 10; */
	
	margin-top: 5vh;
}

/*手机号*/
#kx-banner .login-input{
	width: 850px;
	height: 100px;
	background: #FFFFFF;
	border-radius: 50px;
	
	margin-bottom: 70px;
}

#kx-banner .login-input input{
	width: 500px;
	height: 80px;
	background:none;  
	
	background-color: #FFFFFF;
	border-radius:40px 0 0 40px ;
	
	padding: 0;
	
	padding-left: 40px;
    outline:none;  
    border:none;
    
    font-family: PingFangSC-Regular;
	font-size: 30px;
	color: #999999;
	letter-spacing: 0;
}

#kx-banner .login-input .banner-btn{
	width: 300px;
	height: 80px;
	background: #00A4EF;
	border-radius: 40px;
	
	font-size: 36px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 80px;
	
	text-align: center;
	
	border: none;
}

#kx-banner .login-input .banner-btn:hover{
	background-color: rgba(0,164,234,0.8);
	cursor: pointer;
}



/*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(../imagess/banner/banner.jpg);
}

#kx-banner .banner-swiper .swiper-slide1 div .banner-title{
	font-family: PingFangSC-Semibold;
	font-size: 80px;
	color: #00A4EF;
	letter-spacing: 10px;
	text-align: center;
	
	margin-bottom: 10px;
	
	text-shadow: rgba(0, 0, 0, 0.4) 4px 0px 3px;
	font-weight: 560;
}
#kx-banner .banner-swiper .swiper-slide1 div .banner-title2{
	font-family: PingFangSC-Semibold;
	font-size: 50px;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
	line-height: 52px;
	margin-bottom: 40px;
	
	text-shadow: rgba(0, 0, 0, 0.4) 4px 0px 3px;
	font-weight: 560;
}
#kx-banner .banner-swiper .swiper-slide1 div .banner-login{
	
}
#kx-banner .banner-swiper .swiper-slide1 div .banner-login-name{
	background:none;  
	
	background-color: #FFFFFF;
	border-radius:100px 0 0 100px ;
	height: 50px;
	width: 350px;
	
	padding: 0;
	
	padding-left: 20px;
    outline:none;  
    border:none;
    
    font-family: PingFangSC-Regular;
	font-size: 16px;
	color: #999999;
	letter-spacing: 0;
}
#kx-banner .banner-swiper .swiper-slide1 div .banner-login-name:focus{
	border:none;
}

#kx-banner .banner-swiper .swiper-slide1 div .banner-btn{
	background: #00A4EF;
	border-radius:0  100px 100px 0;
	width: 120px;
	height: 50px;
	
	font-family: PingFangSC-Semibold;
	font-size: 16px;
	color: #FFFFFF;
	letter-spacing: 0;
	
	margin: 0;
	padding: 0;
	border: 1px solid transparent; 
	outline: none;    
}
#kx-banner .banner-swiper .swiper-slide1 div .banner-btn:hover{
	cursor: pointer;
	background:rgba(0,164,234,0.8) ;
}
#kx-banner .banner-swiper .swiper-slide1 div .banner-bottom-intro{
	width: 100%;
	position: absolute;
	bottom: 10px;
	left: 0;
	font-family: PingFang-SC-Medium;
	font-size: 20px;
	color: #FFFFFF;
	/*letter-spacing: 50px;*/
	text-align: center;
}
/*第二个样式*/

#kx-banner .banner-swiper .swiper-slide2{
	/* background:#A3121F; */
}

#kx-banner .banner-swiper .swiper-slide2:hover{
	cursor: pointer;
}

#kx-banner .banner-swiper .swiper-slide2 .banner{
	width:100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	
	background-image: url(../imagess/banner/2025-11/banner-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}


#kx-banner .banner-swiper .swiper-slide2 .banner>img:first-child{
	display: block;
	width: auto;
	/* width: 90%;
	 */
	height: 60%;
	
	margin-top: 85px;
	
	position: relative;
	z-index: 9;
}
#kx-banner .banner-swiper .swiper-slide2 .banner>img:nth-child(2){
	display: block;
	width: auto;
	height: 24%;
	margin-top: -40px;
	
	position: relative;
	z-index: 9;
}


/*第三个banner*/
#kx-banner .banner-swiper .swiper-slide3{
	background:#000000;
	
	overflow: hidden;
	
}

#kx-banner .banner-swiper .swiper-slide3 .banner{
	width:100%;
	height: 100%;
	/*max-width: 1920px;*/

	
	position: relative;
	
	background: rgba(0, 0, 0, 0.6);
	
}
#kx-banner .banner-swiper .swiper-slide3 .banner::after{
	content: " ";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	/* background-image:url(../imagess/banner/fs-bfy/bfy-bg.png) ; */
	background-image:url(../imagess/banner/fs-bfy/bfy-bg.jpg) ;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	
/* 	opacity: 0.6; */
	
	z-index: 7;
}


#kx-banner .banner-swiper .swiper-slide3 .banner::before{
	content: " ";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	
/* 	opacity: 0.6; */
	
	z-index: 8;
}
#kx-banner .banner-swiper .swiper-slide3 .banner>img{
	position: relative;
	display: block;
	
	/* width: 55%;
	height: auto; */
	
	width: auto;
	height:37%;
	
	z-index: 9;
	
	/* margin-top: 14.5vh; */
}

#kx-banner .banner-swiper .swiper-slide3 .banner p{
	position: relative;
	z-index: 9;
	width: 262px;
	height: 72px;
	
	border: 2px solid #00A4EF;
	border-radius: 35px;
	
	font-size: 36px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #00A4EF;
	
	line-height: 72px;
	text-align: center;
	
	margin-top: 60px;
}

#kx-banner .banner-swiper .swiper-slide3 .banner p:hover{
	cursor: pointer;
	background-color: #00a4ef;
	
	color: #FFFFFF;
}

#kx-banner .banner-swiper .swiper-slide3 .swiper-login{
	z-index: 9;
}

/*第四个banner*/
#kx-banner .banner-swiper .swiper-slide4{
	background-image: url(../imagess/banner/yingshi.jpg);
}
#kx-banner .banner-swiper .swiper-slide4 .banner4-content{
	width: 750px;
	height: 287px;
	background: rgba(0,0,0,0.50);
	
	padding: 40px 75px;
	position: relative;
}

#kx-banner .banner-swiper .swiper-slide4 .banner-title{
	width: 750px;
	
	font-family: PingFangSC-Semibold;
	font-size: 80px;
	letter-spacing: 0;
	text-align: center;
	line-height: 80px;
	
	 /*background-image:-webkit-linear-gradient(right,#1CD4F9,#00EFBB); 
    -webkit-background-clip:text; 
    -webkit-text-fill-color:transparent; */
    background-image: linear-gradient(to right, #00efbb, #1cd4f9);
    -webkit-background-clip:text; 
    -webkit-text-fill-color:transparent;
	/*修改问题*/
	/*text-shadow: rgba(0, 0, 0, 0.4) 4px 0px 3px;*/
	font-weight: 560;
	
	margin-bottom: 30px;
}
/*计算集群*/
#kx-banner .banner-swiper .swiper-slide4 .banner-title2{
	width: 750px;
	
	font-family: PingFangSC-Regular;
	font-size: 70px;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
	line-height: 70px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.50);
	
	margin-bottom: 50px;
}
#kx-banner .banner-swiper .swiper-slide4 .banner-superiority{
	width: 750px;
	
	background-image: linear-gradient(to right, #00efbb, #1cd4f9);
    -webkit-background-clip:text; 
    -webkit-text-fill-color:transparent;
}
#kx-banner .banner-swiper .swiper-slide4 .banner-superiority p{
	font-family: PingFangSC-Regular;
	font-size: 38px;
	/*color: #00A4EF;*/
	letter-spacing: 0;
	text-align: center;
	line-height: 48px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.50);
}
/*框框*/
#kx-banner .banner-swiper .swiper-slide4 .banner-line{
	position: absolute;
	
	width: 748px;
	height: 174px;
	border: 1px solid rgba(255,255,255,0.8);
	border-top: none;
	top: 80px;
	left: 75px;
}
#kx-banner .banner-swiper .swiper-slide4 .banner-line:after{
	position: absolute;
	left: 0;
	top: 0;
	content: ' ';
	width: 200px;
	height: 1px;
	background: rgba(255,255,255,0.8);
}
#kx-banner .banner-swiper .swiper-slide4 .banner-line:before{
	position: absolute;
	right: 0;
	top: 0;
	content: ' ';
	width: 200px;
	height: 1px;
	background: rgba(255,255,255,0.8);
}
/*第五个banner*/
#kx-banner .banner-swiper .swiper-slide5{
	width: 100%;
	/* background: #3865DC; */
	/*height: 1000px;*/
	
	overflow: hidden;
	background-image: url(../imagess/banner/gzh/banner-bg.jpg);
	/* background-image: url(../imagess/banner/gzh/banner-bg.png); */
	background-size: cover;
}

#kx-banner .banner-swiper .swiper-slide5 .banner{
	width: 100%;
	height:100%;
	position: relative;
}

#kx-banner .banner-swiper .swiper-slide5 img{
	display: block;
	height: auto;
}

#kx-banner .banner-swiper .swiper-slide5 img:first-child{
	width: 60%;
	margin-bottom:100px ;
	/* margin-top: 14.5vh; */
}

#kx-banner .banner-swiper .swiper-slide5 img:nth-child(2){
	width: 60%;
	
	margin-left: 10%;
}

#kx-banner .banner-swiper .swiper-slide5 .swiper-login{
	margin-top: -15vh;
}


/*第六个banner*/
#kx-banner .banner-swiper .swiper-slide6{
	background-image: url(../imagess/banner/banner-yx-bg.png);
	background-size: 100% 100%;
}

#kx-banner .banner-swiper .swiper-slide6 div{
	width: 100%;
	height: 100%;
	
	/*position: relative;*/
}

#kx-banner .banner-swiper .swiper-slide6 img{
	/*position: absolute;*/
}

#kx-banner .banner-swiper .swiper-slide6 img:first-child{
	width: auto;
	height: 300px;
	
	position:absolute;
	
	left: 60px;
	top: 0;
	
	z-index: 5;
}

#kx-banner .banner-swiper .swiper-slide6 img:nth-child(2){
	width:auto;
	height: auto;
	
	max-height: 86%;
	max-width: 94%;
	
	z-index: 4;
	margin-top: 60px;
	margin-left:110px ;
}


/*第七个banner*/
/*banner*/
#kx-banner .banner-swiper .swiper-slide7{
	position: relative;
	
	background-image: url(../imagess/activity-raffle/f-k.png);
	background-repeat: repeat;
	background-size: 50px 50px;
	background-color: #3865DC;
}
#kx-banner .banner-swiper .swiper-slide7:hover{
	cursor: pointer;
}
#kx-banner .banner-swiper .swiper-slide7 .banner{
	width: 100%;
	height:100%;
	position: relative;
}
#kx-banner .banner-swiper .swiper-slide7 .banner>img{
	width: 1428px;
	height: auto;
	display: block;
}


/*banner 背景图标*/
#kx-banner .banner-swiper .swiper-slide7 .activity-icon img{
	position: absolute;
	
	height: auto;
	
	display: block;
}
/*1*/
#kx-banner .banner-swiper .swiper-slide7 .activity-icon img:first-child{
	left:0 ;
	top: 196px;
	
	width: 110px;
}
/*2*/
#kx-banner .banner-swiper .swiper-slide7 .activity-icon img:nth-child(2){
	left:135px ;
	bottom: 180px;
	
	width: 80px;
}
/*3*/
#kx-banner .banner-swiper .swiper-slide7 .activity-icon img:nth-child(3){
	left:25% ;
	top: 70px;
	
	width: 80px;
}
/*4*/
#kx-banner .banner-swiper .swiper-slide7 .activity-icon img:nth-child(4){
	left:50% ;
	bottom: 120px;
	
	width: 58px;
}
/*5*/
#kx-banner .banner-swiper .swiper-slide7 .activity-icon img:nth-child(5){
	right:0 ;
	top: 64px;
	
	width: 122px;
}
/*6*/
#kx-banner .banner-swiper .swiper-slide7 .activity-icon img:nth-child(6){
	right:76px;
	top: 382px;
	
	width: 116px;
}

#kx-banner .banner-swiper .swiper-slide7 .activity-icon img:nth-child(7){
	right:82px ;
	bottom:82px;
	
	width: 52px;
}

/*第八个banner*/
#kx-banner .banner-swiper .swiper-slide8{
	background-color: #E44D42;
	
	/* background-image: url(../imagess/banner/2023-15/xz.png);
	background-size: auto 100%;
	
	background-position: top right; */
}


#kx-banner .banner-swiper .swiper-slide8 .banner{
	width: 100%;
	height: 100%
}

#kx-banner .banner-swiper .swiper-slide8 .banner .banner-img{
	/* padding-top: 200px; */
	margin-left: 10%;
	
	position: relative;
	z-index: 9;
	width: 47%;
}

#kx-banner .banner-swiper .swiper-slide8 .banner .banner-img>img{
	height: auto;
	display: block;
}

#kx-banner .banner-swiper .swiper-slide8 .banner .banner-img>img:first-child{
	width: 100%;
	height: auto;
	/* margin-right: 72px; */
	
	/* margin-left: 10%; */
}


/**/

#kx-banner .banner-swiper .swiper-slide8 .banner .banner-icon{
	
}
#kx-banner .banner-swiper .swiper-slide8 .banner .banner-icon img{
	height: auto;
	
	position: absolute;
	z-index: 7;
	display: block;
}

#kx-banner .banner-swiper .swiper-slide8 .banner .banner-icon img:first-child{
	width:12%;
	
	left: 40px;
	top: 35px;
}

#kx-banner .banner-swiper .swiper-slide8 .banner .banner-icon img:nth-child(2){
	width:12%;
	
	right: 40px;
	top: 35px;
}
#kx-banner .banner-swiper .swiper-slide8 .banner .banner-icon img:nth-child(3){
	width:18%;
	
	left: 48%;
	top: 200px;
}


#kx-banner .banner-swiper .swiper-slide8 .banner .banner-icon img:nth-child(4){
	width:18%;
	
	right: -9%;
	top: 45%;
	z-index: 8;
}
#kx-banner .banner-swiper .swiper-slide8 .banner .banner-icon img:nth-child(5){
	width:18%;
	
	left: 10%;
	bottom: 60px;
}
#kx-banner .banner-swiper .swiper-slide8 .banner .banner-icon img:nth-child(6){
	width: 67%;
	
	right: 0;
	bottom: 0;
}
/*#kx-banner .banner-swiper .swiper-slide8 .banner .banner-icon img:nth-child(7){
	width:120px;
	
	left: 54px;
	bottom: 278px;
}*/


/*第九个banner*/
#kx-banner .banner-swiper .swiper-slide9{
	width:100%;
	height: 100%;
	position: relative;
	
	background-image: url(../imagess/banner/night/banner-bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#kx-banner .banner-swiper .swiper-slide9 .banner img{
	width: auto;
	height: auto;
	display: block;
}
#kx-banner .banner-swiper .swiper-slide9 .banner>img:first-child{
	position: absolute;
	
	left: 0;
	right: 0;
	top: 60px;
	
	margin: auto;
	
	width: auto;
	height: 60%;
	
	z-index: 4;
}

#kx-banner .banner-swiper .swiper-slide9 .banner>img:nth-child(2){
	position: absolute;
	
	left: 0;
	right: 0;
	bottom: 70px;
	
	margin: auto;
	
	width: auto;
	height: 67%;
	
	z-index: 4;
}

/*文案*/
#kx-banner .banner-swiper .swiper-slide9 .banner .banner-content{
	margin-bottom: 10%;
	
	z-index: 5;
}


#kx-banner .banner-swiper .swiper-slide9 .banner .banner-content .btn{
	width: 440px;
	height: 100px;
	border: 4px solid #FFFFFF;
	border-radius: 50px;
	
	font-size: 60px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 100px;
	
	text-align: center;
}

#kx-banner .banner-swiper .swiper-slide9 .banner .banner-content img{
	height: 20%;
	width: auto;
	display: block;
	
	margin: 50px 0 70px 0;	
}
#kx-banner .banner-swiper .swiper-slide9 .banner .banner-content>div {
	z-index: 5;
}
#kx-banner .banner-swiper .swiper-slide9 .banner .banner-content>div p{
	font-size: 30px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 54px;
	
	text-align: center;
}

#kx-banner .banner-swiper .swiper-slide9 .banner .banner-content>div>div p:first-child{
	margin-right: 50px;
}


#kx-banner .banner-swiper .swiper-slide9:hover{
	cursor: pointer;
}


/*第10个*/

#kx-banner .banner-swiper .swiper-slide10{
	width: 100%;
	
	background-color: #000;
	/*background-color: rgba(15,60,187,0.5);*/
	
	background-image: url(../imagess/banner/yyx/banner-bg.png);
	background-repeat: repeat;
	background-size: cover;
	
	
	position: relative;
}
#kx-banner .banner-swiper .swiper-slide10 .banner{
	width: 100%;
	height:100%;
	position: relative;
}
#kx-banner .banner-swiper .swiper-slide10 .banner>img{
	width: 69%;
	height: auto;
	display: block;
	/* padding-left: 10%; */
	
	/* margin-top: 14.5vh; */
	margin-bottom: 80px;
}


/*11个slide*/
#kx-banner .banner-swiper .swiper-slide12{
	width: 100%;
	position: relative;
	background-color: #a20d10;
	
}

#kx-banner .banner-swiper .swiper-slide12 .banner{
	width:100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	
	
	background-image: url(../imagess/banner/2024-yd/qx.png);
	background-size: 100% auto;
}

#kx-banner .banner-swiper .swiper-slide12 .banner .banner-txt{
	margin-right: 10%;
}
/*  */
#kx-banner .banner-swiper .swiper-slide12 .banner .banner-txt p:first-child{
	font-size: 48px;
	font-family: Source Han Sans CN;
	font-weight: 500;
	color: #FFFFFF;
	line-height: 72px;
}
#kx-banner .banner-swiper .swiper-slide12 .banner .banner-txt p:first-child span{
	display: inline-block;
}
/*  */

#kx-banner .banner-swiper .swiper-slide12 .banner .banner-txt p:last-child{
	font-size: 36px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #FFFFFF;
	
	letter-spacing: 8px;
} 
/*  */
#kx-banner .banner-swiper .swiper-slide12 .banner .banner-txt img{
	height: 27vh;
	width: auto;
	
	display: block;
	
	margin: 60px 0 80px 0;
}

/* 钟表 */
#kx-banner .banner-swiper .swiper-slide12 .banner>img:nth-child(2){
	height: 93%;
	width: auto;
	
	display: block;
	
	margin-right: -100px;
}

/*  */
#kx-banner .banner-swiper .swiper-slide12 .banner .banner-img{

	
}

#kx-banner .banner-swiper .swiper-slide12 .banner .banner-img img{
	position: absolute;
	width: auto;
}

#kx-banner .banner-swiper .swiper-slide12 .banner .banner-img img:first-child{
	height: 12.6%;
	
	left: 0;
	top: 50%;
}

#kx-banner .banner-swiper .swiper-slide12 .banner .banner-img img:nth-child(2){
	height: 16.4%;
	
	left: 50%;
	top: 10%;
}

#kx-banner .banner-swiper .swiper-slide12 .banner .banner-img img:last-child{
	height: 7.2%;
	
	left: 30%;
	bottom: 0;
}



/*11个slide*/
#kx-banner .banner-swiper .swiper-slide11{
	width: 100%;
	position: relative;
	
	background-color: #01239C;
}

#kx-banner .banner-swiper .swiper-slide11 .banner{
	width: 100%;
	height:100%;
	position: relative;
}

#kx-banner .banner-swiper .swiper-slide11 .banner>img{
	width:auto;
	height: 100%;
	
	display: block;
	
}
/*titel*/

#kx-banner .banner-swiper .swiper-slide11 .banner>div:first-child{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	
	overflow: hidden;
}
#kx-banner .banner-swiper .swiper-slide11 .banner div img{
	width: auto;
	height: auto;	
	
	display: block;
	
	position: absolute;
}
#kx-banner .banner-swiper .swiper-slide11 .banner div img:first-child{
	width: 40px;
	
	left: 0;
	top: 85px;
}
#kx-banner .banner-swiper .swiper-slide11 .banner div img:nth-child(2){
	width: 540px;
	
	left: 130px;
	top: 0;
}
#kx-banner .banner-swiper .swiper-slide11 .banner div img:nth-child(3){
	width: auto;
	height: 8px;
	
	right: 50px;
	top: 80px;
}

#kx-banner .banner-swiper .swiper-slide11 .banner div img:nth-child(4){
	width: 226px;
	
	left: 0;
	bottom: 0;
}

#kx-banner .banner-swiper .swiper-slide11 .banner div img:nth-child(5){
	width: 228px;
	/* max-height: 90%; */
	
	right: -0;
	bottom: calc(50% - 225px);
}

#kx-banner .banner-swiper .swiper-slide11 .banner div img:nth-child(6){
	width: auto;
	height: 40px;
	/* max-height: 90%; */
	
	right: 208px;
	bottom: 0;
}
/* 按钮 */
#kx-banner .banner-swiper .swiper-slide11 .banner>div .btn{
	width: 450px;
	height: 100px;
	background: #E1763D;
	border-radius: 50px;
	
	position: absolute;
	left:calc(50% - 225px);
	top:50vh ;
}

#kx-banner .banner-swiper .swiper-slide11 .banner div .btn a{
	display: inline-block;
	
	width: 100%;
	height: 100%;
	
	font-size: 48px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 100px;
	
	text-align: center;
	border-radius: 50px;
}

#kx-banner .banner-swiper .swiper-slide11 .banner div .btn a:hover{
	background-color: #cf642a;
}

#kx-banner .banner-swiper .swiper-slide11 .banner .swiper-login{
	position: absolute;
	left:calc(50% - 450px);
	top:55vh ;
}

/*13个banner*/
#kx-banner .banner-swiper .swiper-slide13{
	/*background-image: url(../imagess/banner/banner.jpg);*/
	/* background-image: url(../imagess/banner/banner-one-bg.jpg); */
	background-image: url(/bigfile/images/banner/banner-one-bg.jpg);
	background-size: cover;
	
	background-position: center bottom;
}

#kx-banner .banner-swiper .swiper-slide13 .banner{
	/*width: 100%;
	height: 100%;*/
	
	background-color:rgba(0,0,0,0.6);
	
	padding: 30px 100px;
	margin-top: 14.5vh;
	height: max-content;
}

#kx-banner .banner-swiper .swiper-slide13:hover{
	cursor: pointer;
}

/*开启云渲染*/
#kx-banner .banner-swiper .swiper-slide13 .banner .intro{
	font-size: 36px;
	font-family: Source Han Sans CN;
	font-weight: 500;
	color: #FFFFFF;
	line-height: 100px;
	
	height: 100px;
	
	border: 1px solid #FFFFFF;
	
	border-left: none;
	border-right: none;
	
	letter-spacing:20px;
	
	margin-bottom: 47px;
	
}

#kx-banner .banner-swiper .swiper-slide13 .banner .intro p:nth-child(2){
	color: #999999;
	
	margin-left: 20px;
	position: relative;
	letter-spacing:0px;
}

#kx-banner .banner-swiper .swiper-slide13 .banner .intro p:nth-child(2):after{
	position: absolute;
	
	content: " ";
	
	left: -6px;
	bottom: 48px;
	
	width: 112px;
	height: 6px;
	background-color: #FFF113;
	border-radius: 6px;
	
	transform: rotate(20deg);
}

#kx-banner .banner-swiper .swiper-slide13 .banner .intro p:nth-child(3){
	width: 112px;
	height: 56px;
	background: #FFF000;
	border-radius: 10px;
	
	font-size: 48px;
	color: #333333;
	text-align: center;
	
	line-height: 56px;
	
	margin-left: 30px;
	margin-right: 40px;
	
	letter-spacing:0px;
}
#kx-banner .banner-swiper .swiper-slide13 .banner .intro p:nth-child(3) span:first-child{
	font-weight: 600;
}
#kx-banner .banner-swiper .swiper-slide13 .banner .intro p:nth-child(3) span:last-child{
	font-size: 36px;
}

/*快又省*/
#kx-banner .banner-swiper .swiper-slide13 .banner .title{
	margin-bottom: 64px;
	letter-spacing:20px;
	
}

#kx-banner .banner-swiper .swiper-slide13 .banner .title:hover{
	cursor: pointer;
	
}

#kx-banner .banner-swiper .swiper-slide13 .banner .title p{
	font-size: 120px;
	font-family: Source Han Sans CN;
	font-weight: 500;
	color: #FEFEFE;
	line-height: 120px;
}
#kx-banner .banner-swiper .swiper-slide13 .banner .title p:first-child{
	margin-right: 100px;
}
#kx-banner .banner-swiper .swiper-slide13 .banner .title p:first-child span:nth-child(2){
	color: #FFF111;
}
#kx-banner .banner-swiper .swiper-slide13 .banner .title p:nth-child(2) span:nth-child(2){
	color: #00A4EF;
}



/*下载*/
#kx-banner .banner-swiper .swiper-slide13 .banner .dowload{
	
}

#kx-banner .banner-swiper .swiper-slide13 .banner .dowload .dowload-content{
	z-index: 5;
}
#kx-banner .banner-swiper .swiper-slide13 .banner .dowload>div{
	width: 400px;
	height: 90px;
	border: 2px solid #FFFFFF;
	border-radius: 45px;
	
	position: relative;
	
	margin: 0 50px;
}
#kx-banner .banner-swiper .swiper-slide13 .banner .dowload div img{
	width: 36px;
	height: 36px;
	
	display: block;
}

#kx-banner .banner-swiper .swiper-slide13 .banner .dowload .download-img2{
	display: none;
} 

#kx-banner .banner-swiper .swiper-slide13 .banner .dowload p{
	font-size: 30px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 90px;
	
	margin-left: 20px;
}


#kx-banner .banner-swiper .swiper-slide13 .banner .dowload div:hover{
	border-color: #00A4EF;
	cursor: pointer;
}
#kx-banner .banner-swiper .swiper-slide13 .banner .dowload div:hover .download-img{
	display: none;
}
#kx-banner .banner-swiper .swiper-slide13 .banner .dowload div:hover .download-img2{
	display: block;
}
#kx-banner .banner-swiper .swiper-slide13 .banner .dowload div:hover p{
	color: #00A4EF;
}


/*下载使用*/

#kx-banner .banner-swiper .swiper-slide13 .banner .dowload .tooltip{
	width:120px;
	height: 40px;
	
	position: absolute;
	top: -24px;
	right: -56px;
	
	z-index: 6;
}
#kx-banner .banner-swiper .swiper-slide13 .banner .dowload .tooltip .tooltip-content{
	background-color: #FFF111;
	
	width: 100%;
	height: 100%;
	font-size: 24px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #333333;
	line-height: 40px;
	
	text-align: center;
	
	border-radius: 5px;
	position: relative;
}
#kx-banner .banner-swiper .swiper-slide13 .banner .dowload .tooltip .tooltip-content:after{
	position: absolute;
	content: " ";
	
	left: 36px;
	bottom: -14px;
	
	width: 0;
	height: 0;
	
	border-top: 15px solid #FFF111;
	border-right: 15px solid transparent;
}

#kx-banner .banner-swiper .swiper-slide13 .banner .dowload .dowload-video .tooltip{
	display: none;
}

#kx-banner .banner-swiper .swiper-slide13 .banner .dowload-video:hover+.dowload-picture .tooltip{
	display: none;
}

#kx-banner .banner-swiper .swiper-slide13 .banner .dowload .dowload-video:hover .tooltip{
	display: block;
}

/*中秋banner*/
#kx-banner .banner-swiper .swiper-slide14{
	/*background: #941F20;*/
/* 	background-image: url(../imagess/banner/fj-bg.png);
	background-repeat: repeat; */
	/* background-position: center bottom; 
	background-size:cover; */
}


#kx-banner .banner-swiper .swiper-slide14 .banner{
	width:100%;
	height: 100%;
	position: relative;
	
	background:url("../imagess/banner/banner-hyr.jpg") ;
	background-size: cover;
	background-repeat: no-repeat;
}
/* #kx-banner .banner-swiper .swiper-slide14 .banner img{
	width:auto;
	height: 83%;
	position: relative;
}
 */

/*banner底部-----------------------------*/
#kx-banner .banner-bottom{
	height: 140px;
	width: 100%;
	background: #00A4EF;
}
#kx-banner .banner-bottom .banner-bottom2{
	height: 100%;
}
#kx-banner .banner-bottom .banner-content{
	width: 400px;
	height: 100%;
	
	position: relative;
}
#kx-banner .banner-bottom .banner-content:before{
	position: absolute;
	right: -1px;
	top: 20px;
	content: ' ';
	width: 2px;
	height: 100px;
	background: #FFFFFF;
}
#kx-banner .banner-bottom .banner-content:last-child:before{
	display: none;
}
/*图标*/
#kx-banner .banner-bottom .banner-content .banner-icon{
	width:70px ;
	height: 70px;
	background-color: #FFFFFF;
	border-radius: 50%;
	text-align: center;
	line-height: 74px;
}

#kx-banner .banner-bottom .banner-content span{
	color: #00A4EF ;
	font-size: 50px;
}

#kx-banner .banner-bottom .banner-content i{
	background-image: url(../imagess/icon/xiaoguotu.svg);
	background-position: center center;
	background-size: 100% 100%;
	
}

/*文案*/
#kx-banner .banner-bottom .banner-content .banner-intro{
	margin-left: 20px;
}

#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:first-child{
	font-family: PingFangSC-Semibold;
	font-size: 22px;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 22px;
}
#kx-banner .banner-bottom .banner-content .banner-intro p:nth-child(2){
	font-family: PingFangSC-Regular;
	font-size: 16px;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 16px;
	
	margin-top: 16px;
}
#kx-banner .banner-bottom .banner-content .banner-intro p:nth-child(3){
	font-family: PingFangSC-Regular;
	font-size: 14px;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 16px;
	
	margin-top: 5px;
}
/*红包活动*/
.red-packet{
	display: none;
	
	position: fixed;
	z-index: 15;
	
	width: 100vw;
	height: 100vh;
	
	top: 0;
	left: 0;
	
	background: rgba(0,0,0,0.5);
	
}
.red-packet .packet-img{
	margin-bottom: 140px;
}
.red-packet .packet-img img{
	display: block;
}
.red-packet .packet-img img:first-child{
	width: 34px;
	height: 34px;
}
.red-packet .packet-img img:last-child{
	width: 500px;
	height: 600px;
}
.red-packet .packet-img img:hover{
	cursor: pointer;
}

/*banner结束------------------------------------------------*/

/*我们的优势-------------------------------------------------*/
#superiority{
	width: 100%;
	background-color: #202020;
}
#superiority .superiority{

}

#superiority .superiority ul{
	
}
#superiority .superiority ul li{
	/*margin-right: 20px;
	padding: 30px 20px;*/
	/*width: 224px;*/
	width: 235px;
	margin-right: 33px;
	background: transparent;
	height: 270px;
	padding: 30px 20px;
	
}
#superiority .superiority ul li:last-child{
	margin: 0;
}
#superiority .superiority ul li:hover{
	/*cursor: pointer;*/
	background: rgba(255,255,255,0.05);
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10);
}
/*头部样式*/
#superiority .superiority ul li .superiority-top{
	/*margin-top: 30px;*/
	margin-bottom: 30px;
}
/*图标*/
#superiority .superiority ul li .superiority-top .superiority-icon{
	width:100px ;
	height:100px ;
	margin-bottom: 20px;
	
	text-align: center;
}
#superiority .superiority ul li .superiority-top .superiority-icon img{
	width: 100%;
	height: 100%;
	/*display: block;*/
}
/**/
#superiority .superiority ul li .superiority-content{
	display: flex;
	flex-direction: column;
	
	align-items: center;
	justify-content: flex-start;
	/*height: 76px;*/
}
/*标题*/
#superiority .superiority ul li .superiority-top .superiority-title{
	font-family: PingFangSC-Semibold;
	font-size: 18px;
	color: #00A4EF;
	letter-spacing: 0;
	text-align: center;
}

#superiority .superiority ul li .superiority-content{
	
}
#superiority .superiority ul li .superiority-content p{
	margin-bottom: 22px;
	font-family: PingFangSC-Regular;
	font-size: 14px;
	color: #999999;
	letter-spacing: 0;
	line-height: 22px;
	width: 210px;
	text-align: center;
	margin-bottom: 0;
}
/*我们的优势结束-----------------------------------------------*/


/*兼容软件*/
#plug-in{
	width: 100%;
	/*height: 360px;*/
	/*opacity: 0.1;*/
	/*background: #000000;*/
	/*background-color: rgba(0,0,0,0.9);*/
	background-color: #1c1c1c;
}
#plug-in .plug-in{

}
/*标题*/
#plug-in .plug-in h2{
	margin-bottom: 0;
}

#plug-in .plug-in ul{
	
}
#plug-in .plug-in ul li{
	width: 240px;
	margin-top: 50px;
}
/*图标*/
#plug-in .plug-in ul li div{
	width: 80px;
	height: 80px;
	background-image: url(../imagess/index/plug-in/bg1.png);
	background-position: center center;
	/*background-size:;*/
	background-repeat: no-repeat;
	
	
	/*background-color: rgba(255,255,255,0.05);*/
	
	margin-bottom: 20px;
}
#plug-in .plug-in ul li div img{
	width: 40px;
	height: 40px;
	margin-top: 20px;
	margin-left: 20px;
}
#plug-in .plug-in ul li p{
	font-family: PingFangSC-Regular;
	font-size: 14px;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
}

/*插件结束——-----------------------------------------------*/


/*案例开始--------------------------------------------------*/
#case{
	width: 100%;
	height: 1696px;
	background: #202020;
}

#case .case-exhibition{

}

#case .case-exhibition .case-swiper {
	width: 100%;
	height: ;
}
#case .case-exhibition .case-swiper .swiper-slide{
	cursor: pointer;
}
/*按钮*/
#case .case-exhibition .case-swiper .btn-navigation{
	margin-bottom: 40px;
}
#case .case-exhibition .case-swiper .btn-navigation p{
	background: rgba(255,255,255,0.10);
	width: 44px;
	height: 44px;
}
#case .case-exhibition .case-swiper .btn-navigation p:hover{
	cursor: pointer;
	background: rgba(255,255,255,0.05);
}
#case .case-exhibition .case-swiper .btn-navigation p:first-child{
	margin-right: 40px;
}
#case .case-exhibition .case-swiper .btn-navigation p img{
	width: 14px;
	height:auto ;
	margin-top: 10px;
	margin-left: 15px;
}

/*下面那个swiper*/
#case .case-exhibition .swiper-container2{
	overflow: hidden;
}
#case .case-exhibition .swiper-container2 .swiper-slide .case-name{
	font-family: PingFangSC-Semibold;
	font-size: 20px;
	color: #00A4EF;
	letter-spacing: 0;
	text-align: center;
	line-height: 20px;
	
	background-image: url(../imagess/guangying.png);
	background-position: center bottom;
	background-size: inherit;
	background-repeat: no-repeat;
	
	padding-bottom: 20px;
	margin-bottom: 30px;
}
#case .case-exhibition .swiper-container2 .swiper-slide .case-intro{
	font-family: PingFangSC-Regular;
	font-size: 14px;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 14px;
}
#case .case-exhibition .swiper-container2 .swiper-slide .case-intro span{
	margin-right: 50px;
}

/*一站式渲染*/
#case .case-one-stop{
	padding-top: 0;
	padding-bottom: 80px;
}

#case .case-one-stop ul{
	
}
#case .case-one-stop ul li{
	width: 374px;
	height: 500px;
	margin-right: 40px;
	
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
#case .case-one-stop ul li:hover{
	cursor: pointer;
	box-shadow: 0 2px 20px 0 rgba(0,0,0,0.60);
}
#case .case-one-stop ul li:first-child{
	background-image: url(../imagess/index/yingshi.jpg);
}
#case .case-one-stop ul li:nth-child(2){
	background-image: url(../imagess/index/sanweidonghua.jpg);
}
#case .case-one-stop ul li:last-child{
	background-image: url(../imagess/index/xiaoguotu.jpg);
}

#case .case-one-stop ul li:last-child{
	margin-right: 0;
	width: 372px;
}
#case .case-one-stop ul li .render-title{
	width: 172px;
	height: 64px;
	background: #00A4EF;
	margin-top: 40px;
	text-align: center;
	
	font-family: PingFangSC-Semibold;
	font-size: 28px;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 64px;
}
#case .case-one-stop ul li .render-intro{
	font-family: PingFangSC-Regular;
	font-size: 14px;
	color: #FFFFFF;
	letter-spacing: 0;
	
	margin-top: 26px;
	padding-left: 30px;
}

/*案例结束————————————————————---------------------------------*/


/*四连击++++-----------------------------------------------------*/
#kx-introduce{
	width: 100%;
	height: 164px;
	background: rgba(0,0,0,0.9);
}
#kx-introduce .introduce{
	width: 1200px;
	min-width: 1200px;
	height: 100%;
}
#kx-introduce .introduce ul{
	height: 100%;
}
#kx-introduce .introduce ul li{
	width: 300px;
	height: 100%;
}
/*图标*/
#kx-introduce .introduce ul li .introduce-icon{
	width:64px ;
	height: 64px;
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 50%;
	
	margin-right: 20px;
	text-align: center;
	line-height: 64px;
}
#kx-introduce .introduce ul li .introduce-icon span{
	font-size: 36px;
	color: #999999;
}
#kx-introduce .introduce ul li .introduce-title{
	font-family: PingFang-SC-Medium;
	font-size: 20px;
	color: #999999;
	letter-spacing: 0;
}
/*四连击结束--------------------------------------------------*/


/*四连击新+++++++++++++++++++++++++++++++++++++++++++*/
#kx-introduce2{
	width: 100%;
	/*height: 164px;*/
	background: rgba(0,0,0,0.9);
}
#kx-introduce2 .introduce{
	width: 1200px;
	min-width: 1200px;
	height: 100%;
	
	padding: 50px 0;
}

/*五个圈圈*/
#kx-introduce2 .about-superiority{
	/*margin-bottom: 50px;*/
}
#kx-introduce2 .about-superiority div{
	width: 140px;
	height: 140px;
	
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 50%;
	
	margin:0 30px ;
}
#kx-introduce2 .about-superiority div p:first-child{
	font-family: PingFangSC-Semibold;
	font-size: 24px;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
	
	margin-bottom: 16px;
}
#kx-introduce2 .about-superiority div p:last-child{
	font-family: PingFangSC-Regular;
	font-size: 14px;
	color: #999999;
	letter-spacing: 0;
	text-align: center;
}

/*四连击结束--------------------------------------------------*/

/* 讲师开始------------------------------------------------------ */
#kx-lecturer{
	width: 100%;
	/*height: 180px;*/
	background:#202020;
}
#kx-lecture h2{
	
}
#kx-lecturer .lecturer{
	/* padding: 80px 60px; */
	/* width: calc(1200px - 120px);*/
	width:1200px;
	position: relative;
}
#kx-lecturer .swiper-container {
	width: calc(1200px - 120px);
	margin-left: 60px;
	/* width: 100%; */
	
}

/* 左右 */
/* #kx-lecturer .swiper-container .swiper-button-prev{
	left: -20px;
}
#kx-lecturer .swiper-container .swiper-button-next{
	right: -20px;
}
 */
#kx-lecturer .swiper-container .swiper-wrapper{
	
}
/* slide */
#kx-lecturer .swiper-container .swiper-slide{
	width: 120px;
	
}
#kx-lecturer .swiper-container .swiper-slide:hover{
	cursor: pointer;
}
/* 头像 */
#kx-lecturer .swiper-container .swiper-slide div{
	width:90px ;
	height: 90px;
	border-radius: 50%;
	
	margin-bottom: 32px;
}
#kx-lecturer .swiper-container .swiper-slide div img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: block;
}
/* 名字 */
#kx-lecturer .swiper-container .swiper-slide p{
	width: 100%;
	
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 20px;
	text-align: center;
	
	overflow: hidden;

	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* 左右按钮 */
#kx-lecturer .swiper-btn{
	
}

#kx-lecturer .swiper-btn p{
	position: absolute;
	top: 50%;
}

#kx-lecturer .swiper-btn p:first-child{
	left: 20px;
}

#kx-lecturer .swiper-btn p:last-child{
	right: 20px;
}

#kx-lecturer .swiper-btn p:hover{
	cursor: pointer;
	transform:scale(1.1);
}

#kx-lecturer .swiper-btn p img{
	width:20px;
	height: auto;
	display: block;
}


/* 讲师结束------------------------------------------------------ */


/*立即注册开始---------------------------------------------------*/
#promptly-login{
	width: 100%;
	/*height: 180px;*/
	background: #00A4EF;
}
#promptly-login .promptly{
	padding: 37px 0;
}
/*左边文案*/
#promptly-login .promptly .promptly-left{
	
}
#promptly-login .promptly .promptly-left p:first-child{
	font-family: PingFangSC-Regular;
	font-size: 24px;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 24px;
}
#promptly-login .promptly .promptly-left p:nth-child(2){
	font-family: PingFang-SC-Bold;
	font-size: 36px;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 36px;
	
	margin: 15px 0;
}
#promptly-login .promptly .promptly-left p:nth-child(3){
	font-family: PingFangSC-Regular;
	font-size: 16px;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 16px;
}
/*按钮*/
#promptly-login .promptly .promptly-btn{
	width: 150px;
	height: 50px;
	
	background: #FFFFFF;
	border-radius: 4px;
	
	font-family: PingFangSC-Regular;
	font-size: 18px;
	color: #00A4EF;
	letter-spacing: 0;
	text-align: center;
	
	line-height:50px ;
}
#promptly-login .promptly .promptly-btn a{
	color: #00A4EF;
}
/*自己理解写的*/
#promptly-login .promptly .promptly-btn:hover{
	cursor: pointer;
	background: #F0AB12;
	color: #FFFFFF;
}
#promptly-login .promptly .promptly-btn:hover a{
	color: #FFFFFF;
}
/*立即注册结束---------------------------------------------------------*/


/*footer底部-----------------------------------------------------*/
#kx-footer{
	/*width: 100%;*/
	/*height: 362px;*/
	background: #111111;
}
#kx-footer .footer{
	width: 1200px;
	min-width: 1200px;
	/*height: 302px;*/
}
/*top*/
#kx-footer .footer .footer-top{
	width: 100%;
	height: 220px;
	margin-top: 82px;
}
#kx-footer .footer .footer-top .footer-content{
	
}

/*标题*/
#kx-footer .footer .footer-top  p{
	font-family: PingFangSC-Regular;
	font-size: 14px;
	color: #999999;
	letter-spacing: 0;
	line-height: 14px;
	margin-bottom: 20px;
}
#kx-footer .footer .footer-top .footer-menu-title{
	font-family: PingFangSC-Semibold;
	font-size: 16px;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: left;
	
	margin-bottom: 20px;
}

#kx-footer .footer .footer-top .footer-content .footer-menu{
	margin-right: 100px;
}
#kx-footer .footer .footer-top .footer-content .footer-menu p:last-child{
	margin-bottom: 0;
}
#kx-footer .footer .footer-top .footer-content .footer-contact p:last-child{
	margin-bottom: 0;
}
#kx-footer .footer .footer-top .footer-content .footer-menu p a{
	color: #999999;
}
/*菜单跳转*/
#kx-footer .footer .footer-top .footer-content .footer-menu p a:hover{
	cursor: pointer;
	color: #00A4EF;
}
/*联系方式 图标*/
#kx-footer .footer .footer-top .footer-content .footer-contact p span:first-child{
	font-size: 14px;
	margin-right: 10px;
	display: block;
}

/*公众号那一片*/
#kx-footer .footer .footer-top .footer-gzh div{
	margin-right: 16px;
	
	
}
#kx-footer .footer .footer-top .footer-gzh img{
	width:88px;
	height: 88px;
	display: block;
	/* 
	width: 100px;
	height: 100px; */
	border: 1px solid #999999;
	padding: 5px;
}
#kx-footer .footer .footer-top .footer-gzh p:last-child{
	font-family: PingFangSC-Regular;
	font-size: 12px;
	color: #999999;
	letter-spacing: 0;
	
	margin-top: 10px;
	
	text-align: center;
}

/*
 友情链接*/
#kx-footer .footer-blogroll{
	width: 1200px;
	
	margin: 18px 0 0 0;
}
#kx-footer .footer-blogroll p{
	margin-right: 20px;
	margin-bottom: 18px;
}
#kx-footer .footer-blogroll p:first-child{
	margin-right: 0;
	opacity: 0.4;
}
#kx-footer .footer-blogroll p{
	font-size: 12px;
	font-family: PingFangSC-Regular;
	/*font-weight: bold;*/
	color: #FFFFFF;
	/* line-height: 36px; */
	line-height: 18px;
	
}

#kx-footer .footer-blogroll p a{
	font-size: 12px;
	font-family: PingFangSC-Regular;
	/*font-weight: bold;*/
	color: #FFFFFF;
	opacity: 0.4;
}
#kx-footer .footer-blogroll p a:hover{
	cursor: pointer;
	opacity: 1;
}

/*底部*/
#kx-footer .footer-bottom{
	/*width: 100%;*/
	height: 60px;
	border-top: 1px solid #2C2C2C;
	width: 1200px;
}
#kx-footer .footer-bottom p{
	
	
	font-family: PingFangSC-Regular;
	font-size: 14px;
	color: #999999;
	letter-spacing: 0;
	text-align: center;
	
	margin-top: 18px;
}
#kx-footer .footer-bottom p a{
	color: #999999;
}
#kx-footer .footer-bottom p a:hover{
	color: #00A4EF;
}


/*联系右边++++++++++++++++++-----------------------------------*/
#customer{
	width: 50px;
	height: 204px;
	background: #000000;
	border-radius: 40px;
	
	position: fixed;
	right: 0;
	top: calc(50% - 102px);
	
	z-index: 20;
}

#customer .customer-icon:hover>span{
	color: #00A4EF !important;
	cursor: pointer;
}
/**/
#customer .customer-tel{
	margin: 25px 0;
}

#customer .customer-icon>span:first-child{
	color: #FFFFFF;
	font-size: 28px;
}


/*电话*/
.customer-tel{
	position: relative;
	
}
.customer-tel p{
	position: absolute;
	right: -400px;
	top: -10px;
	
	width: 180px;
	height: 50px;
	
	background: rgb(19, 203, 117);
	
	font-size: 14px;
	color: #FFFFFF;
	line-height: 26px;
	
	z-index: 9999;
	
	transition: right 0.5s ease-in-out 0s,opacity 1s ease-in-out 0s;
}
.customer-tel p span{
	margin-left: 15px;
}
.customer-tel:hover p{
	right: 40px;
	opacity: 1;
	
	transition: right 0.5s ease-in-out 0s,opacity 1s ease-in-out 0s;
}



/*第二个版本右边---------------------------------------*/
#customer2{
	width: 300px;
	/*height: 204px;*/
	/*background: #000000;*/
	/*border-radius: 40px;*/
	
	position: fixed;
	right: -260px;
	/*right: 0;*/
	top: calc(50% - 100px);
	
	z-index: 20;
}

#customer2 .customer2-left{
	width: 40px;
	height: 180px;
	background: #00A4EF;
	border-radius: 30px;
	
	margin-bottom: 40px;
	
	position: relative;
	z-index: 20;
}

#customer2 .customer2-left:hover{
	cursor: pointer;
	
}
#customer2 .customer2-left:hover + .customer2-right>div{
	/*transform: translateX(-240px);*/
	left: -240px;
	transition: left 0.5s ease-in-out 0s;
}

#customer2 .customer2-left img{
	width: 18px;
	height: auto;
	
	display: block;
	
	margin-bottom: 10px;
}


#customer2 .customer2-left p{
	font-size: 16px;
	font-family: Source Han Sans CN;
	font-weight: 500;
	color: #FFFFFF;
	line-height: 28px;
	width: 30px;
	text-align: center;
}


/*右边*/

#customer2 .customer2-right{
	width: 240px;
	height: 700px;
	position: relative;
	z-index: 21;
}



#customer2 .customer2-right>div{
	position: absolute;
	left: 0;
	top: 0;
	
	width: 100%;
}

#customer2 .customer2-right:hover>div{
	cursor: pointer;
	
	left: -240px;
	transition: left 0.5s ease-in-out 0s;
}

#customer2 .customer2-right div div{
	width: 100%;
	background: #00A4EF;
	border-radius: 10px;
}
/*第一个暂时注释*/
/*#customer2 .customer2-right div div:first-child{
	height: 200px;
}

#customer2 .customer2-right div div:first-child:hover{
	animation: 0.3s linear 0s 2 normal both running qqRotatez;
}

#customer2 .customer2-right div div:first-child>p:first-child{
	font-size: 20px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 20px;
	
	text-align: center;
}

#customer2 .customer2-right div div:first-child>div{
	width: 160px;
	height: 54px;
	background: #FFFFFF;
	border-radius: 10px;
	
	margin: 20px 0;

}

@-webkit-keyframes qqRotatez{
	0%{
		transform: translate(0);
	}

	20%{
		transform: translate(-2px,2px);
	}

	40%{
		transform: translate(-2px,-2px);
	}
	
	60%{
		transform: translate(2px,2px);
	}
	
	80%{
		transform: translate(2px,-2px);
	}
		
	100%{
		transform: translate(0);
	}
}

#customer2 .customer2-right div div:first-child>div:hover{
	cursor: pointer;
}

#customer2 .customer2-right div div:first-child>div>img{
	width: 26px;
	height: auto;
	display: block;	
	
	margin-right: 10px;
}

#customer2 .customer2-right div div:first-child>div>p{
	font-size: 24px;
	font-family: Source Han Sans CN;
	font-weight: 500;
	color: #00A4EF;
	line-height: 54px;
	
}

#customer2 .customer2-right div div:first-child>p:nth-child(3){
	font-size: 18px;
	font-family: Source Han Sans CN;
	font-weight: 300;
	color: #FFFFFF;
	line-height: 20px;
	
	text-align: center;
}
*/
/**/
#customer2 .customer2-right>div>div{
	height: 240px;
	width: 100%;
	
	font-size: 16px;
	font-family: Source Han Sans CN;
	font-weight: 300;
	color: #FFFFFF;
	line-height: 16px;
	
	text-align: center;
	
	margin: 10px 0;
}
#customer2 .customer2-right>div>div img{
	width: 140px;
	height: auto;
	
	display: block;
	
	margin-top: 20px;
}
#customer2 .customer2-right>div>div:nth-child(3){
	height: 240px;
	width: 100%;
	
	font-size: 16px;
	font-family: Source Han Sans CN;
	font-weight: 300;
	color: #FFFFFF;
	line-height: 16px;
	
	text-align: center;
}
#customer2 .customer2-right>div>div:nth-child(3) img{
	width: 140px;
	height: auto;
	
	display: block;
	
	margin-top: 20px;
}



/*qq弄跑*/
.class_qidian_wpa{
	left: -500px;
}
#_QD_INVITE_IFRAME_ID_PREFIX_2885803123{
	left: -500px !important;
}
/*百度商桥弄跑*/
#newBridge #nb_icon_wrap{
	right: -500px;
}


/*秒杀活动弹窗*/
.dialog-seckill{
	width: 100%;
	height: 100%;
	
	position: fixed;
	left: 0;
	top: 0;
	
	z-index: 30;
	
	background: rgba(0,0,0,0.4);
}

.dialog-seckill div{
	width: 560px;
	height: 420px;
	
	position: relative;
}

.dialog-seckill div img:first-child{
	width: 100%;
	height: 100%;
	
	display: block;
}

.dialog-seckill div img:first-child:hover{
	cursor: pointer;
}

.dialog-seckill div img:last-child{
	width: 30px;
	height: 30px;
	
	position: absolute;
	right: 10px;
	top: 10px;
	
	z-index: 31;
}

.dialog-seckill div img:last-child:hover{
	cursor: pointer;
	
	transform:rotate(90deg);
	transition: transform 0.1s ;
}



/*最强鹰榜*/

.eagle-dialog{
	/*width: 800px;
	height: 500px;*/
}
.eagle-dialog .eagle-dialog-lang{
	/*display: none;*/
	
	position: fixed;
	z-index: 10;
	
	left: calc(50% - 400px);
	top: calc(50% - 250px);
}
.eagle-dialog .eagle-dialog-lang div{
	position: relative;
	
	width: auto;
}
.eagle-dialog .eagle-dialog-lang img:first-child{
	width: 800px;	
	height: 500px;
	
	display: block;
}

.eagle-dialog .eagle-dialog-lang img:last-child{
	width: 38px ;	
	height: 38px;
	
	display: block;
	
	position: absolute;
	right: 15px;
	top: 15px;
}

.eagle-dialog .eagle-dialog-lang img:last-child:hover{
	cursor: pointer;
		
	transform: rotate(45deg);
	
	transition: transform 0.2s;
}


/*右边*/
.eagle-dialog .eagle-dialog-small{
	width: 300px;
	height: 80px;
	display: block;
	
	position: fixed;
	left: 0;
	top: calc(50% - 40px);
	
	/*display: none;*/
	
	z-index: 10;
}

.eagle-dialog .eagle-dialog-small:hover{
	cursor: pointer;
	
	transform: translateY(10px);
	
	transition: transform 0.2s;
}



/*提示检测已有账户*/
#prompt-login{
	position: fixed;
	z-index: 20;
	
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
#prompt-login div{
	width: 540px;
	height: 240px;
	background: #FFFFFF;
	box-shadow: 0px 1px 22px 2px rgba(0, 0, 0, 0.17);
	border-radius: 10px;
	
	padding: 30px;
}

#prompt-login div p:first-child{
	font-size: 30px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: #333333;
	line-height: 36px;
	
	width: 100%;
	
	text-align: left;
}

#prompt-login div p:nth-child(2){
	font-size: 24px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: #666666;
	line-height: 40px;
	
	margin: 30px 0;
	
	width: 440px;
	text-align: center;
}


#prompt-login div p:nth-child(3){
	width: 140px;
	height: 50px;
	border: 2px solid #00A4EF;
	border-radius: 10px;
	background: #FFFFFF;
	
	font-size: 24px;
	font-family: Source Han Sans CN;
	/*font-weight: bold;*/
	color: #00A4EF;
	line-height: 48px;
	text-align: center;
}

#prompt-login div p:nth-child(3) a{
	color: #00A4EF;
}

#prompt-login div p:nth-child(3):hover{
	background: #00A4EF;
	color: #FFFFFF;
}

#prompt-login div p:nth-child(3):active{
	background: #0099FF;
	color: #FFFFFF;
}

#prompt-login div p:nth-child(3):hover a{
	color: #FFFFFF;
}





/*右侧浮窗*/

#customer-picture{
	display: none;
	
	position: fixed;
	
	bottom: 0;
	right: 50px;
	
	padding: 10px;
	
	border: 1px solid #00A4EF;
	border-radius: 10px;
	
	background: #FFFFFF;
	
	z-index: 11;
}

#customer-picture .icon-close{
	width: 100%;
	height: auto;
	
	margin-bottom: 12px;
}
#customer-picture .icon-close img{
	width: 12px;
	height: 12px;
	max-height: 100%;
	
	display: block;
}
#customer-picture .icon-close img:hover{
	cursor: pointer;
	
	transform: rotate(30deg);
}

#customer-picture .content{
	width: 280px;
	height: 400px;
	
	background-image: url(../imagess/dialog-1.png);
	background-size: cover;
	
	padding-top: 30px;
}




/*开启云渲染*/
#customer-picture .content .intro{
	font-size: 14px;
	font-family: Source Han Sans CN;
	font-weight: 500;
	color: #FFFFFF;
	line-height: 40px;
	
	height: 40px;
	
	border: 1px solid #FFFFFF;
	
	border-left: none;
	border-right: none;
	
	letter-spacing:2px;
	
	margin-bottom: 28px;
	
}

#customer-picture .content .intro p:nth-child(2){
	color: #999999;
	
	margin-left: 5px;
	position: relative;
	letter-spacing:0px;
}

#customer-picture .content .intro p:nth-child(2):after{
	position: absolute;
	
	content: " ";
	
	left: -2px;
	bottom: 18px;
	
	width: 44px;
	height: 2px;
	background-color: #FFF113;
	border-radius: 2px;
	
	transform: rotate(20deg);
}

#customer-picture .content .intro p:nth-child(3){
	width: 36px;
	height: 28px;
	background: #FFF000;
	border-radius: 4px;
	
	font-size: 18px;
	color: #333333;
	text-align: center;
	
	line-height: 28px;
	
	margin-left: 10px;
	margin-right: 10px;
	
	letter-spacing:0px;
}
#customer-picture .content .intro p:nth-child(3) span:first-child{
	font-weight: 600;
}
#customer-picture .content .intro p:nth-child(3) span:last-child{
	font-size: 14px;
}

/*快又省*/
#customer-picture .content .title{
	margin-bottom: 20px;
	letter-spacing:20px;
}

#customer-picture .content .title p{
	font-size: 48px;
	font-family: Source Han Sans CN;
	font-weight: 500;
	color: #FEFEFE;
	line-height: 48px;
}
#customer-picture .content .title p:first-child{
	margin-bottom: 20px;
}
#customer-picture .content .title p:first-child span:nth-child(2){
	color: #FFF111;
}
#customer-picture .content .title p:nth-child(2) span:nth-child(2){
	color: #00A4EF;
}

/*手机号*/
#customer-picture .content .login-input{
	width: 220px;
	height: 32px;
	background: #FFFFFF;
	border-radius: 16px;
	
	margin-bottom: 38px;
}

#customer-picture .content .login-input input{
	width: 118px;
	height: 28px;
	background:none;  
	
	background-color: #FFFFFF;
	border-radius:14px 0 0 14px ;
	
	padding: 0;
	
	padding-left: 5px;
    outline:none;  
    border:none;
    
    font-family: PingFangSC-Regular;
	font-size: 12px;
	color: #999999;
	letter-spacing: 0;
}

#customer-picture .content .login-input .banner-btn{
	width: 80px;
	height: 28px;
	background: #00A4EF;
	border-radius: 14px;
	
	font-size: 12px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 28px;
	
	text-align: center;
	
	border: none;
}

#customer-picture .content .login-input .banner-btn:hover{
	background-color: rgba(0,164,234,0.8);
	cursor: pointer;
}


/*下载*/
#customer-picture .content .dowload{
	
}

#customer-picture .content .dowload .dowload-content{
	z-index: 5;
}
#customer-picture .content .dowload>div{
	width: 140px;
	height: 30px;
	border: 1px solid #FFFFFF;
	border-radius: 15px;
	
	position: relative;
}
#customer-picture .content .dowload>div:first-child{
	margin-top: 14px;
}

#customer-picture .content .dowload p{
	font-size: 14px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 30px;
	
	/*margin-left: 20px;*/
}


#customer-picture .content .dowload div:hover{
	border-color: #00A4EF;
	cursor: pointer;
}
#customer-picture .content .dowload div:hover p{
	color: #00A4EF;
}


/*下载使用*/

#customer-picture .content .dowload .tooltip{
	width:60px;
	height: 28px;
	
	position: absolute;
	top: -25px;
	right: -38px;
	
	z-index: 6;
}
#customer-picture .content .dowload .tooltip .tooltip-content{
	background-color: #FFF111;
	
	width: 100%;
	height: 100%;
	font-size: 12px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #333333;
	line-height: 28px;
	
	text-align: center;
	
	border-radius: 2px;
	position: relative;
}
#customer-picture .content .dowload .tooltip .tooltip-content:after{
	position: absolute;
	content: " ";
	
	left: 18px;
	bottom: -8px;
	
	width: 0;
	height: 0;
	
	border-top: 10px solid #FFF111;
	border-right: 10px solid transparent;
}

#customer-picture .content .dowload .dowload-video .tooltip{
	display: none;
}

#customer-picture .content .dowload-video:hover+.dowload-picture .tooltip{
	display: none;
}

#customer-picture .content .dowload .dowload-video:hover .tooltip{
	display: block;
}
