/*样式*/
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;
}

/*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: Source Han Sans CN;
	font-size: 30px;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
	line-height: 30px;
	
	margin-bottom: 50px;
}
p,div,span,a{
	font-family: Source Han Sans CN;
}



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

/*菜单---------------------------*/
#kx-menu{
	height: 130px;
	width: 100%;
	
	position: fixed;
	top: 0;
	left: 0;
	
	width: 100%;
	min-width: 1200px;
	
	background-color: rgba(0,0,0,0.4);
	
	z-index: 10;
}

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

#kx-menu .menu .menu-left .menu-logo{
	width: auto;
	height: 42px;
}
#kx-menu .menu .menu-left .menu-logo img{
	height: 100%;
	width: auto;
	border:0 none;
}
/*名字*/
#kx-menu .menu .menu-left .menu-name{
	/*苹果字体*/
	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-size: 24px;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
	
	padding: 0 55px;
	
	line-height: 130px;
	
	position: relative;
	
	height: 100%;
}
#kx-menu .menu .menu-right ul li a{
	color: #FFFFFF;
	text-decoration:none;
	
	display: inline-block;
	
	width: 100%;
	height: 100%;
	
}
#kx-menu .menu .menu-right ul li:hover{
	cursor: pointer;
	background-color: #E42826;
}

/*选中当前菜单*/
#kx-menu .menu .menu-right ul .menu-active{
	color: #FFFFFF;
	background-color: #E42826;
}
#kx-menu .menu .menu-right ul .menu-active a{
	color: #FFFFFF !important;
}

/*菜单结束--------------------------------------------*/


/*banner开始-----------------------------------------*/
#kx-banner{
	width: 100%;
	min-width: 1200px;
	/*height: 1000px;*/
	
	height: 1000px;
}
/*banner轮播*/
#kx-banner .banner-swiper{
	height: 100%;
	/*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;
}
/*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/banner1.png);
	
	background-size: cover;
	
}

#kx-banner .banner-swiper .swiper-slide1 div p{
	font-size: 110px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 150px;
	
	margin-bottom: 60px;
	
	text-align: center;
}
/*#kx-banner .banner-swiper .swiper-slide1 div p:nth-child(2){
	font-size: 60px;
	line-height: 60px;
	
	margin-bottom: 0;
}*/

/*第二个样式*/
#kx-banner .banner-swiper .swiper-slide2{
	background-image: url(../images/banner/banner2.png);
	
	background-size: cover;
}
#kx-banner .banner-swiper .swiper-slide2 div{
	
}
#kx-banner .banner-swiper .swiper-slide2 div p{
	font-size: 80px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: #000000;
	line-height: 110px;
	
	text-align: center;
	
}
 #kx-banner .banner-swiper .swiper-slide2 div p:nth-child(1){
	font-size: 60px;
	line-height: 60px;
	
	margin-bottom: 60px;
}
/*第三个banner*/
#kx-banner .banner-swiper .swiper-slide3{
	background-image: url(../images/banner/banner3.png);
	
	background-size: cover;
}

#kx-banner .banner-swiper .swiper-slide3>div{
	
}

#kx-banner .banner-swiper .swiper-slide3 div p{
	font-size: 110px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: #ffffff;
	line-height: 150px;
	
	text-align: center;
}

/*第四个banner*/
#kx-banner .banner-swiper .swiper-slide4{
	background-image: url(../images/banner/banenr5.jpg);
	
	background-size: cover;
}
#kx-banner .banner-swiper .swiper-slide4 div{
	
}

#kx-banner .banner-swiper .swiper-slide4 div p{
	font-size: 120px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 150px;
	
	text-align: center;
}
#kx-banner .banner-swiper .swiper-slide4 div p:first-child{
	font-size: 100px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 60px;
	
	text-align: center;
	
	margin-bottom: 40px;
}
/*banner结束------------------------------------------------*/




/*关于我们-------------------------------------------------*/

			
#about-us{
	width: 100%;
	background-color: #FFFFFF;
	
	padding-top: 80px;
}

/*title*/
#about-us h2{
	font-size: 48px;
	font-weight: bold;
	color: #333333;
	line-height: 48px;
	
	text-align: center;
}

#about-us h2 p:nth-child(2){
	font-size: 36px;
	
	color: #333333;
	line-height: 36px;
	
	margin: 28px 0;
}

#about-us h2 p:nth-child(3){
	width: 200px;
	height: 4px;
	background: #E42826;
	border-radius: 2px;
}

/**/
#about-us .about-us{
	width: 100%;
	
	max-width: 1920px;
	min-width: 1200px;
	
	position: relative;
}
/*文字*/
#about-us .about-us .about-us-text{
	width: calc(100% - 40px);
	padding: 0 20px;
	margin-top: 70px;
	
	z-index: 3;
	position: absolute;
}

#about-us .about-us .about-us-text p{
	font-size: 36px;
	font-weight: bold;
	color: #333333;
	line-height: 72px;
}

/*图片*/
#about-us .about-us .about-us-bg{
	position: relative;
	
	z-index: 2;
}
#about-us .about-us .about-us-bg img{
	width: 100%;
	height: auto;
	display: block;
}

/*列表*/
#about-us .about-us .about-us-list{
	width: 100%;
}
#about-us .about-us .about-us-list>div{
	width: 100%;
}

#about-us .about-us .about-us-list>div .about-us-list-img{
	height: auto;
	width: 50%;
}

#about-us .about-us .about-us-list>div .about-us-list-img img{
	width: 100%;
	height: auto;
	
	display: block;
}
/*文字*/
#about-us .about-us .about-us-list>div .about-us-list-content{
	padding-left: 60px;
	
	width: 50%;
}
#about-us .about-us .about-us-list>div .about-us-list-content-right{
	padding-right: 60px;
}
/*标题*/
#about-us .about-us .about-us-list>div .about-us-list-content p:first-child{
	font-size: 48px;
	font-weight: bold;
	color: #333333;
	line-height: 60px;
}
/*文案*/
#about-us .about-us .about-us-list>div .about-us-list-content p:nth-child(2){
	width: 750px;
	
	font-size: 24px;
	font-weight: bold;
	color: #333333;
	line-height: 48px;
	
	margin: 60px 0 100px 0;
}
/*查看详情*/
#about-us .about-us .about-us-list>div .about-us-list-content p:nth-child(3){
	width: 160px;
	height: 60px;
	border: 1px solid #E42826;
	border-radius: 1px;
	
	font-size: 24px;
	font-weight: bold;
	color: #E42826;
	line-height: 60px;
	text-align: center;
}

#about-us .about-us .about-us-list>div .about-us-list-content p:nth-child(3):hover{
	cursor: pointer;
}

/*关于我们-----------------------------------------------*/


/*新闻咨询*/
#index-news{
	width: 100%;
	
	padding-top: 90px;
	padding-bottom: 70px;
}

#index-news h2{
	font-size: 48px;
	font-weight: bold;
	color: #333333;
	line-height: 48px;
	
	text-align: center;
}

#index-news h2 p:nth-child(2){
	font-size: 36px;
	
	color: #333333;
	line-height: 36px;
	
	margin: 28px 0;
}

#index-news h2 p:nth-child(3){
	width: 200px;
	height: 4px;
	background: #E42826;
	border-radius: 2px;
}

/*内容*/
#index-news .index-news{
	width: 100%;
	max-width: 1920px;
	min-width: 1200px;
}

#index-news .index-news ul{
	margin-bottom: 60px;
}

#index-news .index-news ul li{
	width: 480px;
	height: 560px;
	
	position: relative;
	
	display: block;
	
	margin: 0 16px;
}
#index-news .index-news ul li img{
	width: 100%;
	height: auto;
	
	min-height: 100%;
	min-height: 100%;
	display: block;
}

#index-news .index-news ul li p{
	width: calc(100% - 70px);
	height: 80px;
	
	background-color: rgba(0,0,0,0.3);
	
	font-size: 24px;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 80px;
	
	padding: 0 35px;
	
	word-break:keep-all;
  	white-space:nowrap;
  	overflow:hidden;
  	text-overflow:ellipsis; 
  	
  	position: absolute;
  	bottom: 0;
  	left: 0;
}

#index-news .index-news ul li p:hover{
	cursor: pointer;
	color:#E60026 ;
}

/*查看更多*/
#index-news .index-news .check-news{
	font-size: 24px;
	font-weight: bold;
	
	color: #999999;
	line-height: 36px;
	padding-bottom: 12px;
	
	border-bottom: 1px solid #999999;
}

#index-news .index-news .check-news:hover{
	cursor: pointer;
	color:#E60026;
	
	border-bottom-color: #E60026;
}
/*新闻咨询结束---------------------------------------------------------*/


/*footer底部-----------------------------------------------------*/
#kx-footer{
	/*width: 100%;*/
	/*height: 362px;*/
	background: #111111;
}
#kx-footer .footer{
	width: 1200px;
	min-width: 1200px;
}
/*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-logo{
	margin-right: 106px;
}
#kx-footer .footer .footer-top .footer-logo img{
	width:auto;
	height: 44px;
	display: block;
}

/*底部*/
#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;
}

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



