@font-face {
	font-family: 'bpmenu';
	src:url('../fonts/bpmenu/bpmenu.eot');
	src:url('../fonts/bpmenu/bpmenu.eot?#iefix') format('embedded-opentype'),
		url('../fonts/bpmenu/bpmenu.woff') format('woff'),
		url('../fonts/bpmenu/bpmenu.ttf') format('truetype'),
		url('../fonts/bpmenu/bpmenu.svg#bpmenu') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* Main menu wrapper */
.cbp-hsmenu-wrapper {
	position: relative;
}

/* Common style for all lists */
.cbp-hsmenu-wrapper ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
}
.main{
	width: 100%;
	height: 587px;
	background: url(../images/www_banner_01.jpg);
}
/* 100% width bar for menu */
.cbp-hsinner {
	/* background: #47a3da; */
	
	position: relative;
	z-index: 100;
}

/* Main menu style */
.cbp-hsmenu-wrapper .cbp-hsmenu {
	width: 90%;
	max-width: 69em;
	margin: 0 auto;
	padding: 0 1.875em;
}

.cbp-hsmenu > li {
	margin-left: 4em;
	display: inline-block;
}

.cbp-hsmenu > li:first-child {
	margin-left: 0;
}

/* Main menu link style */
.cbp-hsmenu > li > a {
	color: #fff;
	font-size: 1.2em;
	line-height: 3em;
	display: inline-block;
	position: relative;
	z-index: 10000;
	outline: none;
}

.no-touch .cbp-hsmenu > li > a:hover,
.no-touch .cbp-hsmenu > li > a:focus,
.cbp-hsmenu > li.cbp-hsitem-open > a {
	color: #2db0ff;
}

/* Add an arrow to the main menu link if it has a submenu (not the only child) */
.cbp-hsmenu > li > a:not(:only-child):before {
	display: inline-block;
	font-family: 'bpmenu';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	content: "\f107";
	font-size: 80%;
	margin-right: 0.3em;
	opacity: 0.4;
	vertical-align: middle;
}

.cbp-hsmenu > li.cbp-hsitem-open > a:not(:only-child):before {
	content: "\f106";
}

/* Add a triangle to currently open menu item link */
.cbp-hsmenu > li.cbp-hsitem-open > a:after {
	top: 100%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: transparent;
	border-top-color: #47a3da;
	border-width: 10px;
	left: 50%;
	margin-left: -10px;
}

/* Submenu style */
.cbp-hssubmenu {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	z-index: 0;
	text-align: center; /* for aligning the sub items */
	visibility: hidden;
}

.cbp-hssubmenu:before, 
.cbp-hssubmenu:after { 
	content: " "; 
	display: table; 
}
.cbp-hssubmenu:after { 
	clear: both; 
}

/* Let's allow 6 item in a row */
.cbp-hssubmenu > li {
	width: 16.2%;
	display: inline-block;
	vertical-align: top;
	/*box-shadow: -28px 0 0 -27px #ddd, 0 -28px 0 -27px #ddd;*/
	opacity: 0;
	-webkit-transition: opacity 0.1s 0s;
	-moz-transition: opacity 0.1s 0s;
	transition: opacity 0.1s 0s;
}

/* First 6 items don't have upper box shadow */
.cbp-hssubmenu > li:nth-child(-n+6) {
	/*box-shadow: -28px 0 0 -27px #ddd;*/
} 

/* Every 7th item does not have a left box shadow */
.cbp-hssubmenu > li:nth-child(6n+1) {
	/*box-shadow:  0 -28px 0 -27px #ddd;*/
}

/* The first one does not have any box shadow */
.cbp-hssubmenu > li:first-child {
	box-shadow: none;
}

.cbp-hssubmenu > li a {
	display: block;
	text-align: center;
	color: #a2a2a2;
	outline: none;
	padding: 2em 1em 1em 1em;
}

.no-touch .cbp-hssubmenu > li a:hover,
.no-touch .cbp-hssubmenu > li a:focus {
	color: #888;
}

.cbp-hssubmenu > li a img {
	border: none;
	outline: none;
	display: inline-block;
	margin: 0;
	max-width: 100%;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

.no-touch .cbp-hssubmenu > li a:hover img {
	opacity: 0.5;
}

.cbp-hssubmenu > li a span {
	display: block;
	min-height: 3em;
	margin-top: 0.4em;
}

.cbp-hsmenu > li.cbp-hsitem-open .cbp-hssubmenu {
	z-index: 1000;
	visibility: visible;
}

.cbp-hsmenu > li.cbp-hsitem-open .cbp-hssubmenu > li {
	opacity: 1;
	-webkit-transition: opacity 0.5s 0.1s;
	-moz-transition: opacity 0.5s 0.1s;
	transition: opacity 0.5s 0.1s;
}

/* Helper div for animating the background */
.cbp-hsmenubg {
	background: #f7f7f7;
	position: absolute;
	width: 100%;
	top: 100%;
	left: 0;
	z-index: 0;
	height: 0px;
}

.no-touch .cbp-hsmenubg {
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	transition: height 0.3s;
}

@media screen and (max-width: 65em){
	.cbp-hsmenu-wrapper {
		font-size: 80%;
	}
}

@media screen and (max-width: 51.4375em){
	.cbp-hsmenu-wrapper {
		font-size: 100%;
	}

	.cbp-hsmenu-wrapper .cbp-hsmenu {
		padding: 0;
		max-width: none;
		width: 100%;
	}

	.cbp-hsmenu > li {
		border-top: 1px solid rgba(255,255,255,0.5);
		text-align: center;
		margin: 0 auto;
		display: block;
	}

	.cbp-hsmenu > li:first-child {
		border-top: none;
	}

	.cbp-hsmenu > li > a {
		display: block;
	}

	.cbp-hsmenu > li > a:not(:only-child):before {
		line-height: 1.8;
		right: 0;
		position: absolute;
		font-size: 200%;
	}

	.cbp-hsmenubg {
		display: none;
	}

	.cbp-hssubmenu {
		background: #f7f7f7;
		position: relative;
		overflow: hidden;
		height: 0;
	}

	.cbp-hsmenu > li.cbp-hsitem-open .cbp-hssubmenu {
		height: auto;
	}

	/* Let's only allow 3 item in a row now */
	.cbp-hssubmenu > li {
		width: 30%;
	}

	/* Reset box shadows for the 6 items in row case */
	.cbp-hssubmenu > li:nth-child(-n+6),
	.cbp-hssubmenu > li:nth-child(6n+1) {
		box-shadow: -28px 0 0 -27px #ddd, 0 -28px 0 -27px #ddd;
	}

	/* First 4 items don't have upper box shadow */
	.cbp-hssubmenu > li:nth-child(-n+3) {
		box-shadow: -28px 0 0 -27px #ddd;
	} 

	/* Every 5th item does not have a left box shadow */
	.cbp-hssubmenu > li:nth-child(3n+1) {
		box-shadow:  0 -28px 0 -27px #ddd;
	}

}

@media screen and (max-width: 25em){
	/* Let's only allow 1 item in a row now */
	.cbp-hssubmenu > li {
		width: 100%;
		display: block;
	}

	.cbp-hsmenu-wrapper .cbp-hssubmenu > li {
		box-shadow: 0 1px #cecece;
		text-align: left;
	}

	.cbp-hssubmenu > li a {
		text-align: left;
		line-height: 50px;
		padding: 0.4em 1em;
	}

	.cbp-hssubmenu > li a img {
		float: left;
		max-height: 50px;
	}

	.cbp-hssubmenu > li a span {
		min-height: 0;
		margin: 0;
	}
}
.banner-info{
	width: 1200px;
	padding-top: 170px;
	margin: 0 auto;
	color: #fff;
}
.banner-info .bgtit{
	font-size: 62px;
	color: #fff;
	margin-bottom: 10px;

}
.banner-info .mdtit{
	font-size: 30px;
	color: #fff;
	margin-bottom: 10px;

}
.banner-info .info{
	font-size:14px;
	color: #fff;
	line-height: 2.4;
}
.banner-info .more{
	display: inline-block;
	font-size: 20px;
	padding: 6px 13px;
	border-radius: 2px;
	margin-top: 12px;
	background: #ffec06;
	color: #000;

}
.zhengwen{
	width:1200px;
	/* height: 2000px; */
	color: #fff;
	margin:  0 auto;
	 /* background: #069fff;  */
}
.item-main-mdtit samp{
	position: relative;
}
.item-main-mdtit{
	font-size: 24px;
	font-weight: 600;
	color: #000000;
	text-align: center;
	margin-top: 60px;
    line-height: 34px;
    
}
.item-main-sminfo{
	color: #868787;
	font-size: 14px;
	text-align: center;
	line-height: 20px;
	margin-top: 9px;
}
.callChatWin{
	cursor: pointer;
}
.youshi{
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
}
.youshi .li{
	width: 190px;
	position:relative;
}
.youshi .li img{
	width: 100%;
}
.youshi .li .po{
	width: 157px;
	position: absolute;
	top:60px;
	left: 17px;
}
.youshi .li .po .p1{
	font-family:PingFang SC;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
}
.youshi .li .po .p2{
	margin-top: 20px;
	font-family: PingFang SC;
	font-style: normal;
	font-weight: normal;
	font-size: 13px;
	line-height: 180%;
	color: #fff;
	text-align: left;
}
.zhengwen .ad_box{		
	margin-top: 20px;

}
.zhengwen .ad_box img{
	width:1200px;

}
/* .gray{
	background: #F8F9FC;
} */
.padding60{	
	padding-bottom: 60px;
}
.width{
	width: 1200px;
	margin: 0 auto;
	position: relative;
	height: 100%;	
}
.title{
	padding-top: 5px;
	font-weight: 600;
	font-size: 24px;
	line-height: 34px;
	text-align: center;
	color: #000;
}
.title1{
	font-family:PingFang SC;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 160%;
	text-align: center;
	margin-top: 20px;
	color: #5345D2;
}
.why{
	margin-top: 35px;
	display: flex;
}
.why .left{
	flex: 1;
}
.why  .txt{
	padding-top: 76px;
	font-family:PingFang SC ;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 160%;
	color: #333333;
	position: relative;
}
.txt span{
	position: relative;
	z-index: 2;
}
.txt .whyImg{
	position: absolute;
	top: 0;
	left: 0;
	width: 89px;
	height: 117px;
}
.left .whyNum{
	margin-top: 15px;
	display: flex;
	justify-content: space-between;
}
.whyNum .w1{
	width: 170px;
	background: #fff;
	border-radius: 4px;
	position: relative;
}
.whyNum .wImg{
	width: 100%;
}
.whyNum .w1 .po{
	position: absolute;
	width: 130px;
	height: 140px;
	left: 20px;
	top: 106px;
	font-family:PingFang SC;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 20px;
	color:#333333;
}
.why .right{
	width: 550px;
	margin-left: 95px;
}
.why .txt .whyImg1{
	width: 100px;
}
.whyNum .w2{
	margin-top: 15px;
	background: #fff;
	border-radius: 4px;
	position: relative;
}
.whyNum .w2 .po{
	position: absolute;
	width: 450px;
	left: 80px;
	top: 30px;
	font-family:PingFang SC;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 20px;
	color: #333333;
}
 .item-main-2-wrap{
	margin-top: 20px;
}
.item-main-2-wrap .item-apply-list{
	width: 33.3333%;
	float: left;
	text-align: center;
	margin: 20px 0;
	cursor: pointer;
}
 .item-main-2-wrap .item-apply-list .icon{
	height: 80px;
	width: 80px;
	margin: 0 auto;
	background: #0096FF;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border:8px solid #c1e2f4;
	position: relative;
}
 .item-main-2-wrap .item-apply-list .icon i{
	color: #fff;
	font-size: 40px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -20px;
	margin-left: -20px;
}
.item-apply-list .text{
	font-size: 12px;
	color: #868787;
	line-height: 1.8;
	margin-top: 18px;
	padding: 0 100px;
}
.qingdan {
	margin: 0 auto;
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	width: 960px;
	justify-content: space-between;
  }
  .qingdan .li {
	width: 300px;
	margin-top: 30px;
	position: relative;
  }
  .qingdan .li .po {
	position: absolute;
	left: 71px;
	top: 40px;
	width: 200px;
	font-family: PingFang SC;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 22px;
	color: #FFFFFF;
  }
  .qingdan .li .po1 {
	top: 30px;
  }
  .qingdan .li:hover {
	transform: scale(1.02);
  }
  .qingdan .li img {
	border: none;
	width: 100%;
	height: auto;
	display: block;
  }
  .what {
	margin: 0 auto;
	margin-top: 40px;
	width: 993px;
	height: 426px;
	position: relative;
  }
  .what img {
	width: 100%;
  }
  .what .po1 {
	position: absolute;
	width: 299px;
	height: 25px;
	right: 66px;
	bottom: 103px;
	font-family: PingFang SC;
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 25px;
	text-align: center;
	color: #666666;
  }
  .what .po1:hover {
	transform: scale(1.02);
  }
  .what .po2 {
	bottom: 195px;
	right: 20px;
	width: 370px;
  }
  .what .po3 {
	bottom: 289px;
	right: 50px;
  }
  .what .po4 {
	bottom: 383px;
	right: 271px;
	width: 440px;
  }
  .what .po5 {
	bottom: 289px;
	right: 618px;
  }
  .what .po6 {
	bottom: 195px;
	right: 674px;
  }
  .what .po7 {
	bottom: 101px;
	right: 631px;
  }
  .liu {
	margin: 0 auto;
	margin-top: 12px;
	width: 1000px;
	cursor: pointer;
	position: relative;
  }
  .liu img {
	width: 100%;
  }
  .liu .p1 {
	position: absolute;
	width: 176px;
	height: 176px;
	top: 28px;
	left: 0;
	border-radius: 50%;
  }
  .liu .p1:hover {
	box-shadow: 0px 4px 40px rgba(125, 80, 231, 0.2);
  }
  .liu .p2 {
	top: 145px;
	left: 207px;
  }
  .liu .p3 {
	top: 38px;
	left: 412px;
  }
  .liu .p4 {
	top: 145px;
	left: 618px;
  }
  .liu .p5 {
	top: 28px;
	left: 824px;
  }
  .cgys{
	width:100%;
	background:url(../images/adv_bg.png) center no-repeat;
	height:756px;
	box-sizing: border-box;
  }
  .cgys>h1{
	padding-top:51px;
	font-size:32px;
	font-family:Microsoft YaHei;
	font-weight:400;
	color:rgb(0, 0, 0);
	text-align: center;
	width:1200px;
	margin:0 auto;
  }
  .cgys p{
	font-size:16px;
	font-family:Microsoft YaHei;
	font-weight:400;
	color:rgba(0, 0, 0, 0.5);
	text-align: center;
	margin:17px auto;
  }
  .cgys .cgbox{
	width:1200px;
	margin:17px auto 0 auto;
	box-sizing: border-box;
	padding:0 110px;
  }
  .cgys .cgbox .left{
	float: left;
	width:313px;	
	box-sizing: border-box;
  }
  .cgys .cgbox .left h1{
	text-align: center;
	font-size:26px;
	font-family:Source Han Sans CN;
	font-weight:400;
	color:rgb(0, 0, 0);
	line-height:48px;
	background:url(../images/adv_icon1.png) no-repeat;
  }
  .cgys .cgbox .left .cgtitbox{
	margin-top:55px;
  }
  .cgys .cgbox .left .cgtitbox h2{
	background:url(../images/jiantou1.png) no-repeat 0 8px;
	padding-left:15px;
	font-family:Source Han Sans CN;
	font-weight:400;
	color:#000000;
	font-size: 18px;
  }
  .cgys .cgbox .left .cgtitbox p{
	font-size:14px;
	font-family:Source Han Sans CN;
	font-weight:400;
	color:#a5aec6;
	text-align: left;
  }
  .cgys .cgbox .right{
	float: right;
	width:313px;	
	box-sizing: border-box;
  }
  .cgys .cgbox .right h1{
	padding-left:55px;
	font-size:26px;
	font-family:Source Han Sans CN;
	font-weight:400;
	color:#77E6E4;
	line-height:48px;
	background:url(../images/adv_icon2.png) no-repeat;
  }
  .cgys .cgbox .right .cgtitbox{
	margin-top:55px;
  }
  .cgys .cgbox .right .cgtitbox h2{
	background:url(../images/jaintou2.png) no-repeat 0 8px;
	padding-left:15px;
	font-family:Source Han Sans CN;
	font-weight:400;
	color:#67D6D4;
	font-size: 18px;
  }
  .cgys .cgbox .right .cgtitbox p{
	font-size:14px;
	font-family:Source Han Sans CN;
	font-weight:400;
	color:#56B3B1;
	text-align: left;
  }
  .cglc{
	width:100%;
	height:771px;
	background:url(../images/liucheng_bg.jpg) no-repeat center;
	padding-top:66px;
	box-sizing: border-box;
  }
  .cglc>h1{
	font-size:32px;
	font-family:Microsoft YaHei;
	font-weight:400;
	color:rgba(41,46,46,1);
	text-align: center;
  }
.liu {
  margin: 0 auto;
  margin-top: 12px;
  width: 1000px;
  cursor: pointer;
  position: relative;
}
.liu img {
  width: 100%;
}
.liu .p1 {
  position: absolute;
  width: 176px;
  height: 176px;
  top: 28px;
  left: 0;
  border-radius: 50%;
}
.liu .p1:hover {
  box-shadow: 0px 4px 40px rgba(125, 80, 231, 0.2);
}
.liu .p2 {
  top: 145px;
  left: 207px;
}
.liu .p3 {
  top: 38px;
  left: 412px;
}
.liu .p4 {
  top: 145px;
  left: 618px;
}
.liu .p5 {
  top: 28px;
  left: 824px;
}
.zhizhi .list {
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
  }
  .zhizhi .list .li {
	width: 181px;
  }
  .zhizhi .list .li img {
	border-radius: 50%;
	border: none;
	width: 100%;
	height: auto;
	display: block;
  }
  .zhizhi .list .li:hover img {
	box-shadow: 0px 4px 40px rgba(125, 80, 231, 0.2);
  }
  .zhizhi .p1 {
	margin-top: 15px;
	font-size: 18px;
	line-height: 25px;
	text-align: center;
	color: #333333;
  }
  .zhizhi .zhizhiBtm {
	margin: 0 auto;
	margin-top: 20px;
	width: 96px;
	height: 32px;
	border: 2px solid #ff7337;
	line-height: 32px;
	font-family: PingFang SC;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	text-align: center;
	color: #5345D2;
  }
  .pad_bot_80{
	padding-bottom: 80px!important;
}
 .item-main-jinpai-info p{
	color: #868787;
	font-size: 12px;
	line-height: 1.8;
	padding: 0 212px;
}
.friendlink-box{
	margin-top: 48px;
}
.friendlink-box .friendlink-list{
	width:16.666%;
	float: left;
	position: relative;
}
.friendlink-box .friendlink-list .friendlink-inner{
	background-repeat: no-repeat;
	background-position: center center;
	height: 120px;
	border:1px solid #dedede;
	display: block;
	margin-top: -1px;
	margin-left: -1px;
	background-color: #fff;
	z-index: 1;
	position: relative;
	transition: .4s;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
	cursor: pointer;
}
 .friendlink-box .friendlink-list .friendlink-inner:hover{
	box-shadow:0 0 22px #bfbfbf;
	-webkit-box-shadow:0 0 22px #bfbfbf;
	-moz-box-shadow:0 0 22px #bfbfbf;
	-ms-box-shadow:0 0 22px #bfbfbf;
	-o-box-shadow:0 0 22px #bfbfbf;
	z-index: 11;
}
.friendlink-box .friendlink-list:hover{
	cursor: pointer;
	background:#ddd;
}
.copyRight {
    height: 54px;
    line-height: 54px;
    text-align: center;
    font-size: 12px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
}

.copyRight span {
    opacity: 0.19;
}

.copyRight a {
    color: #fff;
    opacity: 0.19;
}

.copyRight a:hover {
    color: #05A4FF;
    opacity: 1;
}
.layout-footer{
	background: #3e3a39;
	color: #b0b1b1;
	margin-top: 15px;
}
 .container {
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.layout-footer .layout-footer-wrap{
	padding:39px 0 43px 0;
}
.layout-footer .layout-footer-wrap{
	padding:39px 0 43px 0;
}
.layout-footer .layout-footer-wrap .layout-contact,.layout-footer .layout-footer-wrap .quick-link{
	padding: 12px 0;
	border-bottom: 1px solid #b0b1b1;
}
.layout-footer .layout-footer-wrap .layout-contact span,.layout-footer .layout-footer-wrap .quick-link a{
	color: #fff;
	line-height: 24px;
	margin-right: 20px;
}
.layout-footer .layout-footer-wrap .copy-box{
	padding: 12px 0;
}
.layout-footer .layout-footer-wrap .copy-box span{
	position: relative;
	color: #b0b1b1;
	margin-right: 11px;
    padding-right: 15px;
    line-height: 24px;
}
.layout-footer .layout-footer-wrap .copy-box span::after{
	position: absolute;
	content:'';
	top: 0px;
    bottom: 2px;
	right: 0;
	border-right: 1px solid #b0b1b1;
}
.layout-footer .layout-footer-wrap .copy-box span.last::after{
	border-right: none;
}




