/* 顶部 */
.index1{
	width: 100%;
	height: 80px;
	background-color: #fff;
	position: fixed;
	top: 0px;
	z-index: 10;
}
.index1 .left{
	float: left; 
	width: 340px;
}
.index1 .zj{
	float: left; 
	width: 660px; 
	line-height: 80px; 
	height: 80px;
	margin-right: 60px;
}
.index1 .zj ul{
	display: flex;
}
.index1 .zj ul li{
	flex: 1;
	text-align: center;
}
.index1 .zj ul li a{
	display: block;
	line-height: 80px;
	height: 80px;
	font-size: 16px;
	color: #333333;
}
.index1 .zj ul li a:hover{
	color: #0061da;
	border-bottom: 2px solid #0061da;
}
.index1 .right{
	float: right; 
	width: 140px;
	margin-top: 20px;
}
.index1 .right a{
	background: url(../img/4.jpg) left no-repeat #0061da;
	line-height: 40px;
	color: #fff;
	height: 40px;
	font-size: 16px;
	padding-left: 45px;
	display: block;
}
.index1 .right a:hover{
	background: url(../img/3.jpg) left no-repeat #0054b4;
}
.img-replace {
  /* replace text with an image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-popup-trigger {

}

/* -------------------------------- 

xpopup 

-------------------------------- */
.cd-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(94, 110, 141, 0.9);
  opacity: 0;
  z-index: 9999;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.cd-popup1 {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(94, 110, 141, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.cd-popup1.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-popup.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-popup-container {
  position: relative;
  width: 90%;
  max-width: 400px;
  margin: 4em auto;
  background: #FFF;
  border-radius: .25em .25em .4em .4em;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.cd-popup-container p {
 text-align: center;
 padding: 20px 0px 0px 0px;
  font-size: 16px;
  color: #000;
}
.cd-popup-container .cd-buttons:after {
  content: "";
  display: table;
  clear: both;
}
.cd-popup-container .cd-buttons li {
  float: left;
  width: 50%;
}
.cd-popup-container .cd-buttons a {
  display: block;
  height: 60px;
  line-height: 60px;
  text-transform: uppercase;
  color: #FFF;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.cd-popup-container .cd-buttons li:first-child a {
  background: #fc7169;
  border-radius: 0 0 0 .25em;
}
.no-touch .cd-popup-container .cd-buttons li:first-child a:hover {
  background-color: #fc8982;
}
.cd-popup-container .cd-buttons li:last-child a {
  background: #b6bece;
  border-radius: 0 0 .25em 0;
}
.no-touch .cd-popup-container .cd-buttons li:last-child a:hover {
  background-color: #c5ccd8;
}
.cd-popup-container .cd-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
}
.cd-popup-container .cd-popup-close::before, .cd-popup-container .cd-popup-close::after {
  content: '';
  position: absolute;
  top: 12px;
  width: 14px;
  height: 3px;
  background-color: #8f9cb5;
}
.cd-popup-container .cd-popup-close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 8px;
}
.cd-popup-container .cd-popup-close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 8px;
}
.is-visible .cd-popup-container {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
@media only screen and (min-width: 1170px) {
  .cd-popup-container {
    margin: 8em auto;
  }
}


.index2{
	background-color: #f5f5f5;
	border-radius: 5px;
	line-height: 80px;
	height: 80px;
	color: #a1a1a1;
}
.index2 span{
	color: #0061da;
}
.index3{
	padding: 20px;
}
.index4{
	padding: 50px 0px 50px 0px;
  background-color: #f7faff;
}
.index5{
	position: relative;
}
.index5 .left{
	width: 584px;
	margin-right: 30px;
}
.index5 .right{
	width: 586px;
}
.index5 img{
	border-radius: 5px;
	position: relative;
	z-index: 1;
}
.index5 h3{
	position: absolute;
	bottom: 0px;
	height: 65px;
	padding-left: 20px;
	line-height: 65px;
	font-size: 18px;
	color: #fff;
	z-index: 3;
}
.index5 ul{
	display: flex;
	position: relative;
}
.index5 ul li{
	flex: 1;
	margin-right: 30px;
}
.index5 ul li:last-child{
	margin-right: 0px;
}
.index6{
	padding: 50px 0px;
}
.index7{
	width: 310px;
	margin: 0 auto;
}
.index8{
	display: flex; 
	margin-bottom: 40px;
}
.index8 li{
	flex: 1;
	background: url(../img/13.jpg) left no-repeat;
	padding-left: 25px;
}

.btn-primary{
	width: 400px;
	height: 50px;
	line-height: 50px;
	padding: 0px;
	font-size: 16px;
	background-color: #0061da;
}
.btn-primary:hover{
	background-color: #0259c6;
}
.index9{
	display: flex;
}
.index9 li{
	flex: 1;
	margin-right: 20px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 5px 10px 10px #efefef;
	padding: 10px;
}
.index9 li:last-child{
	margin-right: 0px;
}
.index9 li img{
	border-radius: 10px;
}
.index9 li h3{
	padding: 20px 0px;
	color: #000;
	font-size: 18px;
	font-weight: bold;
}
.index9 li p{
	margin-bottom: 10px;
}
.index9 li a{
	line-height: 30px;
	height: 30px;
	background: url(../img/15.jpg) left no-repeat;
	padding-left: 20px;
	color: #798ea2;
	display: block;
}
.index10{
	display: flex;
  width: 310px;
  margin: 0 auto;
	margin-bottom: 40px;
}
.index10 li{
	flex: 1;
	background: url(../img/13.jpg) left no-repeat;
	padding-left: 25px;
}
.index11{
  display: flex;
}
.index11 li{
  flex: 1;
  margin-right: 20px;
  background-color: #fff;
  border-radius: 15px;
  padding: 45px;
}
.index11 li:last-child{
  margin-right: 0px;
}
.index11 li h3{
  text-align: center;
  padding: 10px 0px;
  font-weight: bold;
  font-size: 18px;
  color: #000;
}
.index11 li p{
  text-align: center;
}
.index12{
  margin: 50px 0px;
}
.index13{
  height: 390px;
  background: url(../img/22.jpg) center no-repeat;
  padding: 60px 660px 60px 60px;
}
.index13 h3{
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 25px;
}
.index13 p{
  color: #fff;
  line-height: 30px;
  margin-bottom: 30px;
}
.index14{
  height: 320px;
  background: url(../img/23.jpg) center no-repeat;
  padding-top: 120px;
  text-align: center;
}
.index14 h1{
	font-size: 30px;
	font-weight: bold;
	color: #FFFFFF;
	margin-bottom: 20px;
}
.index14 h2{
	font-size: 35px;
	font-weight: bold;
	color: #FFFFFF;
}
.index15{
	padding: 0px 0px 50px 0px;
}
.index16{
	box-shadow: 10 10 10px #dadada;
	padding: 20px;
	border-radius: 10px;
	border: 1px solid #f8f8f8;
}
.index16 h3{
	font-size: 18px;
	font-weight: bold;
	height: 40px;
	color: #000;
	overflow: hidden;
}
.index16 p{
	padding-top: 15px;
	line-height: 26px;
	height: 70px;
	overflow: hidden;
}
.index16 img{
	height: 170px;
	border-radius: 15px;
}
.dian{
	margin-top: 50px;
}
.index17{
	height: 400px;
	background: url(../img/25.jpg) center no-repeat;
	margin-bottom: 50px;
	padding-top: 100px;
}
.index17 .left{
	width: 530px;
	margin-right: 54px;
	color: #fff;
}
.index17 .right{
	width: 616px;
}
.index17 h3{
	font-size: 30px;
	margin-top: 20px;
	margin-bottom: 30px;
	color: #fff;
}
.index17 p{
	line-height: 30px;
	font-size: 16px;
}
footer{
	width: 100%;
	background-color: #f8f8f8;
	padding: 40px 0px;
	text-align: center;
}
.index18{
	display: flex;
	width: 1000px;
	margin: 0 auto;
	margin-bottom: 40px;
}
.index18 li{
	flex: 1;
	background: url(../img/26.jpg) right no-repeat;
	text-align: center;
}
.index18 li:last-child{
	background: url(../img/27.jpg) right no-repeat;
}
.index18 li a{
	font-size: 16px;
}
.index19{
	padding: 50px 0px;
}
.index20{
	box-shadow: 5px 5px 10px #efefef;
	padding: 15px;
	border-radius: 10px;
}
.index20 p{
	line-height: 40px;
	height: 40px;
	text-align: center;
	overflow: hidden;
	font-size: 14px;
	font-weight: bold;
	color: #666;
}
.neiye{
	height: 80px;
}
.neiye1{
	background: url(../img/29.jpg) center no-repeat;
	height: 300px;
}
.neiye2{
	padding: 50px 0px;
}
.neiye3{
	padding-bottom: 50px;
}
.neiye4{
	line-height: 30px;
}
.neiye4 h5{
	font-size: 20px;
	color: #333;
	font-weight: bold;
	text-align: center;
}
.neiye4 h6{
	font-size: 12px;
	text-align: center;
	padding: 20px 0px 40px 0px;
}
.neiye5{
	background: url(../img/30.jpg) center no-repeat;
	height: 300px;
}
.neiye6{
	background: url(../img/31.jpg) center no-repeat;
	height: 300px;
}
.neiye7{
	background: url(../img/32.jpg) center no-repeat;
	height: 300px;
}
.neiye8{
	background: url(../img/33.jpg) center no-repeat;
	height: 300px;
}
.neiye9{
	background: url(../img/34.jpg) center no-repeat;
	height: 300px;
}
.neiye10{
	display: flex;
	padding-bottom: 35px;
	border-bottom: 1px solid #eaebed;
	margin-bottom: 20px;
}
.neiye10 li:nth-child(1){
	width: 355px;
	margin-right: 25px;
}
.neiye10 li:nth-child(1) img{
	width: 355px;
	height: 174px;
	border-radius: 15px;
}
.neiye10 li:nth-child(2){
	width: 820px;
	padding-top: 15px;
}
.neiye10 li:nth-child(2) h3{
	height: 50px;
	line-height: 50px;
	font-size: 18px;
	font-weight: bold;
	overflow: hidden;
}
.neiye10 li:nth-child(2) h3 a{
	color: #333;
}
.neiye10 li:nth-child(2) h3 a:hover{
	color: #0da3f8;
}
.neiye10 li:nth-child(2) p{
	margin-bottom: 15px;
	overflow: hidden;
	height: 60px;
}
.neiye11{
	text-align: right;
	width: 100px;
	float: right;
	background: url(../img/36.jpg) left no-repeat;
}