@charset "utf-8";
/* CSS Document */
@font-face {
  src: url(../fonts/Manrope-Regular.otf);
  font-family: "myfont";
}
@font-face {
  src: url(../fonts/Manrope-Medium.otf);
  font-family: "title";
}
@font-face {
  src: url(../fonts/Manrope-Light.otf);
  font-family: "title2";
}
@font-face {
  src: url(../fonts/impact.ttf);
  font-family: "num";
}
* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  list-style: none;
  font-family: "myfont", sans-serif;
}
@font-face {
  font-family: "iconfont";
  src: url(../icons/iconfont.eot);
  src: url(../icons/iconfont.eot?#iefix) format("embedded-opentype"),
    url(../icons/iconfont.woff) format("woff"),
    url(../icons/iconfont.ttf) format("truetype"),
    url(../icons/iconfont.svg#iconfont) format("svg");
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
.clear {
  clear: both;
}
a {
  text-decoration: none;
}
p{
  font-size: 1.6rem;
  line-height: 1.8;
  color: #666666;
  margin: 1rem 0;
  font-family: "title";
}
img{
  display: block;
}
/*index*/
.w_all {
  width: 1140px;
  margin: auto;
}
.w_all2 {
  width: 62%;
  margin: auto;
}
html,body {
  width: 100%;
  position: relative;
  font-size: 62.5%;
}
header {
  width: 100%;
  z-index: 99;
  background: #380085;
}
header .top{
  border-bottom: 1px solid #FFFFFF29;
  padding: 2.1rem 0;
}
header .tbox{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF91;
}
header .top a{
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  color: #fff;
}
header .top a img{
  margin-right: 5px;
  width:2rem;
  margin-top: 1px;
}
header .top .search i{
  font-size: 2rem;
  cursor: pointer;
}
.searchbox{
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 9999;
  display: none;
}
.searchbox .sbx.active{
  transform: scale(1);
}
.searchbox .sbx{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s linear 0.3s;
  transform: scale(0);
  background: rgba(0, 0, 0, .5);
}
.searchbox .sbx input{
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  background: none;
  border: none;
  box-shadow: none;
  margin: auto;
  width: 100%;
}
.searchbox .sbx input::placeholder{
  color:#fff;
}
.searchbox .close img{
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.6rem;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.4s linear;
}
.searchbox .close img:hover{
  opacity: 1;
}
header .top .tt{
  opacity: 0.5;
  transition: all 0.4s linear;
}
header .top .tt:hover{
  opacity: 1;
}
header .nav_box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0;
  position: relative;
  z-index: 3;
}
header nav {
  display: flex;
  align-items: center;
}
header .logo {
  height: 40px;
}
header .logo img {
  height: 100%;
}
header nav> ul {
  display: flex;
}
header nav> ul li {
  position: relative;
  margin: 0 3rem;
  cursor: pointer;
}
header nav> ul li h2 {
  color: #FFFFFFBA;
  font-size: 1.6rem;
  font-weight: normal;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  line-height: 56px;
}
header nav> ul li:hover h2 {
  color: #fff;
}
header nav> ul li::before{
	content: "";
	width: 0;
  height: 1px;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.3s ease;
}
header nav> ul li:hover::before{
  width: 100%;
  opacity: 1;
}
header nav> ul li.sm h2::after{
	content: "";
	width: 0;
  height: 0;
  border-top: 5px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  margin-left: 5px;
  border-radius: 8px;
}
header .others {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 1.3rem;
}
header .others .ls {
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  border-radius: 4px;
  padding: 15px 3.5rem;
  transition: all 0.4s ease;
  cursor: pointer;
}
header .others .ls2{
  background-color: #FFD500;
  color: #380085 !important;
  border-color: transparent;
  box-shadow: 0px 0px 40px 0px rgba(216.00000000000003, 228, 254, 0.19);
}
header .others .ls:hover {
  color: #FFD500;
}
header .others .ls2:hover{
  color: #380085;
  background-color: #f7f7f7;
}
.s_menu{
	position: absolute;
  z-index: 9;
	width: max-content;
  min-width: 100%;
	left: 0px;
	top:99%;
	background: #fff;
	box-sizing: border-box;
	display: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.s_menu ul{
	width:100%;
  padding: 1rem 0;
}
.s_menu li{
  margin: 0;
	font-size: 1.3rem;
	padding:0.7rem 3rem 0.7rem 2rem;
	color: #888;
	cursor: pointer;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.s_menu li:hover{
	color: #2D3A56;
}
.navBtn {
  cursor: pointer;
  display: none;
  position: relative;
  z-index: 9;
}
.navBtn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 6px auto;
  border-radius: 2px;
}
.nav_btn_active {
  margin-top: 5px;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.nav_btn_active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav_btn_active span:nth-of-type(2) {
  margin-top: -8px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.nav_btn_active span:nth-of-type(3){
  opacity: 0;
}
/*banner*/
.banner {
  position: relative;
  width: 100%;
  padding: 11rem 0;
}
.banner .txt{
  line-height: 1.5;
  color: #fff;
  z-index: 2;
  position: relative;
}
.banner h3{
  font-size: 7rem;
  font-family: "title";
  margin-bottom: 10%;
  line-height: 1.1;
  color: #FFD500;
}
.banner p{
  width: 56%;
  color: #fff;
  font-size: 1.48rem;
  opacity: 0.5;
  margin: 1rem 0;
  font-weight: normal;
  
}
.more {
  font-size: 1.4rem;
  font-weight: 400;
  border-radius: 10px;
  padding: 2rem 4rem;
  transition: all 0.4s ease;
  cursor: pointer;
  background: #FFD500;
  color: #000000;
  display: flex;
  margin-top: 4rem;
  align-items: center;
  justify-content: center;
  width: max-content;
  box-shadow: 0px 0px 40px 0px rgba(216.00000000000003, 228, 254, 0.19);
}
.more i{
  margin-left: 1rem;
  font-weight: bold;
}
.more:hover {
  background: #938bf7;
}
.more2{
  background: #fff;
}
.more2:hover {
  background: #FFD500;
}
.title{
  position: relative;
  font-size: 3rem;
  margin-bottom: 5rem;
}
.title p{
  margin-top: 2rem;
  color: #737373;
  font-size: 1.8rem;
}
.title2 h3{
  font-size: 2.6rem;
  color: #333;
  margin-bottom:2rem;
  line-height: 1.4;
}
.title2 p{
  color: #908f8f;
  margin: 1rem 0;
  font-size: 1.8rem;
}
.index_box {
  padding: 8rem 0;
  position: relative;
}
.index_boxs2 {
  padding: 7% 0;
  position: relative;
}
.index_bar2{
  text-align: center;
  background: #380085;
}
.index_bar2 .contain{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index_bar2 .ll{
  width: 22%;
  font-size: 5rem;
  color: #FFD500;
  font-weight: bold;
  font-family: "title";
  text-align: left;
  line-height: 1;
  box-sizing: border-box;
  border-right: 5px solid #FFD500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index_bar2 ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 75%;
}
.index_bar2 ul li{
  width: 25%;
  transition: all 0.4s ease-out;
  cursor: default;
  box-sizing: border-box;
}
.index_bar2 ul li b{
  display: block;
  position: relative;
}
.index_bar2 ul li img{
  margin: auto;
  transition: all 0.4s ease-out;
}
.index_bar2 ul li p{
  line-height: 1.4;
  font-size: 1.8rem;
  width: 76%;
  margin: auto;
  color: #fff;
  font-family: "title";
  text-align: left;
}
.index_bar3{
  background: #f8f8f8;
}
.index_bar3 .top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}
.title2 h3{
  color: #2D3A56;
  font-size: 5rem;
  line-height: 1.3;
  font-family: "title";
}
.index_bar3 .title2{
  width: 44%;
}
.index_bar3 .top .tt{
  width: 42%;
}
.index_bar3 .top p{
  margin: 0;
  color: #333;
  letter-spacing: 0;
  line-height: 1.9;
}
.index_bar3 .uls ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 3%;
}
.index_bar3 .uls ul li{
  width: 31.5%;
  color: #380085;
  font-size: 1.7rem;
  position: relative;
  padding:5rem 0 12rem;
  background: #380085;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.index_bar3  .uls ul li .tt{
  background: #4F44E6;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80%;
  text-align: center;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index_bar3 .uls ul li .tt p{
  font-size: 2rem;
  color: #fff;
}
.index_bar3 .uls ul li .tt i{
  display: block;
  margin-left: 1rem;
  font-size: 1.8rem;
  color: #fff;
  transform: rotate(180deg);
}
.index_bar3 .top2{
  display: flex;
  padding-bottom: 0;
  justify-content: space-between;
}
.index_bar3 .top2 ul{
  width: 45%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index_bar3 .top2 ul li{
  width: 30.3%;
  background: #FFD500030;
  color: #fff;
  font-size: 1.8rem;
  padding: 5%;
  box-sizing: border-box;
  margin: 2% 0;
  font-family: "title";
  line-height: 1.2;
}
.index_bar3 .top2 .tt{
  width: 48.5%;
}
.index_bar3 .top2 .tt h3{
  margin-bottom: 5rem;
}
.index_bar3 .top2 .tt p{
  opacity: 0.7;
  font-size: 1.5rem;
  letter-spacing: 0;
  width: 88%;
}
.index_bar1 {
  background: #f8f8f8;
  padding-top: 0;
}
.index_bar1 .contain {
  overflow: hidden;
  height: 100%;
  position: relative;
}
.index_bar1 .img {
  width: 55%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 20px;
}
.index_bar1 .txt{
  width: 40%;
  float: left;
  padding: 2% 0 0;
}
.index_bar1 h6{
  font-size: 1.4rem;
  color: #888;
  font-weight: normal;
  letter-spacing: 1px;
  display: flex;
  margin-bottom: 3rem;
  align-items: center;
}
.index_bar1 h6::before{
  content: '';
  display: block;
  width: 6rem;
  height: 1px;
  background: #999;
  margin-right: 1rem;
  opacity: 0.8;
}
.index_bar4{
  background: #f8f8f8;
}
.index_bar4 .contain {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.index_bar4 .ll{
  width: 50%;
  float: right;
}
.index_bar4 .ll h6{
  font-size: 1.8rem;
  color: #2D3A56;
  margin-bottom: 2rem;
  font-weight: normal;
}
.index_bar4 .rr{
  width: 44%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.index_bar4 .rr img{
  height:  100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  display: block;
}
.index_bar4 ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.index_bar4 ul li{
  width: 46%;
  text-align: center;
  padding: 5% 0 0;
}
.index_bar4 ul li h5{
  color: #2D3A56;
  font-size: 4.6rem;
}
.index_bar4 ul li p{
  margin: 0;
  color: #8992A4;
  line-height: 1.2;
  font-size: 2rem;
}
.index_bar5 {
  background: #f6f6f6;
}
.index_bar5 .title2 h3::after{
  content: '';
  width: 5rem;
  height: 2px;
  background: #000;
  display: block;
  margin-top: 2rem;
} 
.index_bar5 ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin:2.5rem auto 0; 
}
.index_bar5 ul li{
  width: 31.3%;
  margin: 0 3%  0 0;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  transition: all 0.3s linear;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
}
.index_bar5 ul li:nth-of-type(3n){
  margin-right: 0;
}
.index_bar5 ul li b{
  display: block;
  width: 100%;
  height: 20rem;
  transition: all 0.4s ease;
  opacity: 0.9;
}
.index_bar5 ul li:hover b{
  opacity: 1;
}
.index_bar5 ul li .tt{
  padding: 2.5rem 2.5rem 3rem;
  box-sizing: border-box;
}
.index_bar5 ul li p{
  font-size: 2.2rem;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 2rem;
}
.index_bar5 ul li:hover{
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, .15);
}
.mores{
  color: #000000;
  font-family: "title";
  font-weight: bold;
}
footer {
  position: relative;
  z-index: 3;
  background: #000000;
}
footer .top .rr{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .top ul h6{
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
}
footer .top ul li{
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
  margin:0.6rem 0 0 0 ;
  font-family: "title2";
  display: flex;
  align-items: center;
}
footer .top ul li img{
  width: 1.8rem;
  margin-right: 1rem;
}
footer .copy{
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.2)
}
footer .copy .ll img{
  height: 4rem;
}
footer .copy p{
  color: rgba(255,255,255,0.6);
  font-size: 1.3rem;
}
.o_ban {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.o_ban::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
}
.o_ban .bg img{
  width: 100%;
  display: block;
}
.o_ban .txt{
  position: absolute;
  left: 50%;
  top: 31%;
  line-height: 1.5;
  transform: translate(-50%,-0%);
  z-index: 6;
}
.o_ban h3{
  font-size:7rem;
  font-weight: normal;
  font-family: "title";
  margin-bottom: 3rem;
  line-height: 1.3;
  color: #fff;
}
.o_ban p{
  width: 60%;
  color: #fff;
  opacity: 0.7;
  font-size: 1.6rem;
}
.abouts{
  background: #f6f6f6;
}
.about_1 .title2{
  padding-bottom: 2%;
}
.about_1 .img{
  width: 40%;
}
.about_1 .txt{
  width: 55%;
  padding: 0;
}
.abouts p{
  margin: 0 0 3rem 0;
  color: #333;
  line-height: 1.8;
  font-size: 1.6rem;
}
.about_2 .contain{
  padding: 4%;
  background: #dedede;
  box-sizing: border-box;
  border-radius: 20px;
}
.about_2 .txt p img{
  max-width: 100%;
  display: block;
  border-radius: 20px;
}
.about_2 .txt p{
  margin: 0 0 3rem 0;
  color: #2D3A56;
}
.about_3 .contain {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 3%;
  box-sizing: border-box;
}
.about_3 .ll{
  width: 60%;
}
.about_3 .ll p{
  margin: 1rem 0;
}
.about_3 .rr{
  width: 35%;
}
.about_3 .rr img{
  width: 100%;
  display: block;
}
.about_4 .contain{
  padding: 0 3%;
  box-sizing: border-box;
}
.about_4 ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 88%;
  margin:5rem auto 0;
}
.about_4 ul li{
  width: 20%;
  transition: all 0.4s ease;
  text-align: center;
  margin: 1rem 0;
}
.about_4 ul li:hover{
  transform: translateY(-10px);
}
.about_4 ul li b{
  display: block;
  position: relative;
  width: 70%;
  margin: auto;
}
.about_4 ul li img{
  display: block;
  width: 100%;
}
.about_4 ul li p{
  font-weight: bold;
  margin: 1rem 0 0;
}
.o_ban .txt2{
  position: absolute;
  left: 50%;
  top:46%;
  transform: translate(-50%,-50%);
}
.pnav{
	display: flex;
	align-items: center;
}
.pnav span{
	font-size: 1.6rem;
	color: #999;
	position: relative;
	padding: 1rem 1rem;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	display: block;
	cursor: pointer;
  margin-right: 3rem;
}
.pnav span:before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	height: 2px;
  background: #FFD500;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
  opacity: 0;
}
.pnav span.active:before{
	opacity: 1;
  
}
.pnav span.active{
  color: #380085;
  font-family: "title";
}
.pnav span:hover{
  color: #380085;
}
.obans .txt h3{
  margin-bottom: 5%;
  color: #fff;
}
.obans .txt p{
  opacity: 0.8;
  font-size: 1.8rem;
}
.obans2{
  padding: 6rem 0;
}
.obans2l .txt h3{
  margin-bottom: 2%;
}
.obans3{
  padding:8rem 0;
}
.news .contain{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  margin-top: 3%;
}
.news ul{
  width: 60%;
}
.news ul a{
	display: block;
	width: 100%;
	margin-bottom: 5%;
}
.news ul li{
	display: flex;
  border: 1px solid #c3c3c3;
  padding: 2rem;
  border-radius: 10px;
  justify-content: space-between;
  box-sizing: border-box;
  align-items: center;
}
.news ul li b{
	width: 43%;
	overflow: hidden;
	display: block;
  border-radius: 20px;
}
.news ul li b img{
	width: 100%;
	display: block;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.news ul li:hover b img{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.news ul li .txt{
	width: 52%;
	position: relative;
	box-sizing: border-box;
}
.news h3{
	font-size: 2rem;
	color: #2D3A56;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	position: relative;
}
.news ul li:hover h3{
	color: #FFD500;
}
.news dl dd:hover h3{
	color: #FFD500;
}
.news h4{
	font-size: 1.2rem;
	color: #333;
	font-weight: normal;
  margin: 1.3rem 0;
  display: flex;
}
.news h4 span{
  color: #999999;
  margin-left: 3rem;
}
.news p{
	font-size: 1.3rem;
	color: #333;
	line-height: 1.6;
}
.news dl{
  width: 36%;
}
.news dl dd{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.news dl dd .ll{
  width: 30%;
}
.news dl dd .ll img{
  width: 100%;
  display: block;
  border-radius: 10px;
}
.news dl dd .rr{
  width: 65%;
}
.news dl dd .rr h3{
  color: #333;
  font-weight: normal;
  font-size: 1.6rem !important;
}
.news dl dd p{
  display: block;
  opacity: 0.5;
}
.news_d .title2{
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  padding-bottom: 3%;
  margin-bottom: 4%;
}
.news_d h4{
  font-size: 1.4rem;
  color: #888;
  font-weight: normal;
}
.news_d .bar1 p{
  margin: 0 0 4rem 0;
  color: #333;
  line-height: 1.8;
  font-size: 1.6rem;
}
.news_d .bar1  p img{
  display: block;
  max-width: 100%;
  border-radius: 20px;
}
.news_d  .bar1 .share{
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: #333;
}
.news_d .bar1  .share b{
  width: 1.8rem;
  border-radius: 50%;
  background: #ecebeb;
  padding: 10px;
  margin-left: 1.5rem;
}
.news_d .bar1  .share b img{
  width: 100%;
}
.news_d .bar2{
  padding-top: 5rem;
  margin-top: 5rem;
  border-top: 1px solid rgba(51, 51,51, 0.64);
}
.news_d .bar2 ul{
  width: 100%;
}
.news_d .bar2 ul li b{
  width: 30%;
}
.news_d .bar2 ul li .txt{
  width: 66%;
}
.news_d .bar2 ul li .txt p{
  min-height: 10rem;
  line-height: 2;
}
.news_d  .bottom .more{
  margin: auto;
  padding: 1.6rem 4rem;
}
.ban_ps{
  height: calc(100vh - 185px);
}
.ban_ps .txt{
  text-align: center;
}
.ban_ps .txt h3{
  text-align: center;
  color: #fff;
  font-size: 4rem;
}
.ban_ps .txt  p{
  margin: auto;
}
.peisong_1{
  background: #efeeee;
}
.peisong_1 .contain{
  margin-top: -30vh;
  background: #fff;
  border-radius: 10px;
  padding:0 2%;
  box-sizing: border-box;
  position: relative;
  z-index: 6;
  box-shadow: 0px 20px 38px 0px rgba(0, 0, 0, 0.13);
}
.peisong_1 table{
  width: 100%;
}
.peisong_1 table tr td{
  padding: 2rem 5rem;
  box-sizing: border-box;
  font-size: 1.6rem;
  color: #333;
  line-height: 1.8;
  border-right: 1px solid #d7d5d5;
  border-bottom: 1px solid #d7d5d5;
}
.peisong_1 table tr td:nth-of-type(2){
  width: 62%;
  border-right: none;
}
.peisong_1 table tr:last-of-type td{
  border-bottom: none;
}
.peisong_1 table tr:first-of-type td{
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 1px;
}
.peisong_2 ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.peisong_2 ul li{
  width: 20%;
  position: relative;
  margin-top: 2%;
  transition: all 0.4s ease;
  cursor: default;
}
.peisong_2 ul li:hover{
  transform: translateY(-10px);
}
.peisong_2 ul li b{
  display: block;
  width: 100%;
}
.peisong_2 ul li b img{
  display: block;
  width: 100%;
}
.peisong_2 ul li h6{
  position: absolute;
  left: 0%;
  text-align: center;
  width: 80%;
  top: 12%;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  height: 40px;
  line-height: 20px;
  justify-content: center;
}
.peisong_2 ul li .tt{
  position: absolute;
  left: 50%;
  top: 32%;
  width: 65%;
  transform: translateX(-50%);
}
.peisong_2 ul li .tt img{
  height: 3.5rem;
  display: block;
  margin: auto;
}
.peisong_2 ul li .tt p{
  font-size: 1.3rem;
  line-height: 1.6;
  color: #333;
}
.peisong_3{
  background: #efeeee;
}
.peisong_3 .contain{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.peisong_3 .ll{
  width: 46%;
}
.peisong_3 .rr{
  width: 46%;
}
.peisong_3 .rr img{
  width: 100%;
  display: block;
  border-radius: 20px;
}
.faq ul li{
	cursor: pointer;
}
.faq ul li .txt{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	padding: 2rem 0;
}
.faq ul li .txt i{
	font-size: 3rem;
	color: #333;
	transition: all 0.4s ease;
}
.faq ul li.active .txt i{
	transform: rotate(45deg);
}
.faq ul li h3{
	font-size: 1.7rem;
	color: #333;
	display: flex;
	align-items: center;
	font-weight: normal;
	font-family: "title";
  transition: all 0.4s ease;
}
.faq ul li:hover h3{
  color: #380085;
}
.faq ul li .txt2 {
	padding: 2% 0 1% 2.4%;
	display: none;
}
.faq ul li .txt2 p{
	font-size: 1.46rem;
	line-height: 1.8;
	margin: 10px 0;
}
.faq .more{
  display: block;
  margin:6rem auto 0;
  padding: 1.5rem 2rem;
}
.location{
  background: #f8f8f8;
}
.location ul{
  display: flex;
  flex-wrap: wrap;
}
.location ul li{
  width: 31.3%;
  margin: 3% 3% 3% 0;
  text-align: center;
}
.location ul li:nth-of-type(3n){
  margin-right: 0;
}
.location ul li img{
  width: 100%;
}
.location ul li h3{
  font-weight: normal;
  font-size: 2rem;
  color: #000;
  font-family: "title2";
}
.location2{
  padding-top: 0;
  background: #f8f8f8;
}
.location2 .contain{
  padding: 6% 8%;
  box-sizing: border-box;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.location2 .contain::before{
  content: '';
  position: absolute;
  left: 0;
  top:0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
}
.location2 .txt{
  width: 48%;
  position: relative;
  z-index: 6;
  color: #fff;
}
.location2 .txt h3{
  line-height: 1.2;
  margin-bottom:10%;
}
.location2 .txt p{
  color: #FFFFFF85;
  font-size: 1.5rem;
  width: 80%;
}
.solution_0{
  background: #f8f8f8;
}
.solution_0 .contain{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.solution_0 .rr{
  width: 46%;
  position: relative;
}
.solution_0 .rr > img{
  width: 100%;
  border-radius: 20px;
}
.solution_0 .rr a img{
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 90%;
  transform: translate(-50%,-50%);
}
.solution_0 .ll{
  width: 50%;
  padding-left: 10%;
  box-sizing: border-box;
}
.solution_0 .ll h3{
  margin-bottom: 3rem;
}
.solution_0 .ll p{
  width: 75%;
  line-height: 2;
  color: #8992A4;
  font-size: 1.5rem;
}
.solution_0 .ll .more{
  margin-top: 8rem;
}
.solution .ll{
  width: 27%;
}
.solution ul{
  width: 70%;
}
.solution ul li{
  width: 33.3%;
}
.solution ul li p{
  width: 78%;
}
.solution ul li p:first-of-type{
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
.solution ul li p:not(:first-of-type){
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.9;
}
.solution_3 .top .title2{
  width: 100%;
  display: block;
  text-align: center;
}
.solution_3 .uls ul li{
  width: 23%;
  padding: 0;
  height: 30rem;
  overflow: hidden;
  border-radius: 0;
}
.solution_3 .uls ul li img{
  height: 100%;
}
.solution_3 .uls ul li .tt{
  border-radius: 0 30px 0 0;
  background: #0E0E0E;
}
.solution_3 .top2 .title2{
  width: 100%;
}
.solution_3 .top2 .tt{
  width: 36%;
}
.solution_3 .top2 dl{
  width:59%;
}
.solution_3 {
  padding-bottom: 0;
}
.solution_3 .bar3 .title2 h5{
  font-size: 1.8rem;
  color: #2D3A56;
  margin-bottom: 2rem;
  font-weight: normal;
}
.solution_3 .bar3 .title2{
  width: 100%;
  padding-bottom: 4%;
}
.solution_3 .bar3 h3{
  padding-left: 2%;
  box-sizing: border-box;
}
.solution_3 .bar3 .swiper-slide{
  position: relative;
  background: #000000;
}
.solution_3 .bar3 .swiper-slide b{
  height: 23rem;
  display: block;
  opacity: 0.8;
  transition: all 0.5s linear;
}
.solution_3 .bar3 .swiper-slide:hover b{
  opacity: 0.5;
}
.solution_3 .bar3 .t1{
  position: absolute;
  width: 90%;
  left: 5%;
  top: 2rem;
  display: flex;
}
.solution_3 .t1 span{
  border: 1px solid hsla(0, 0%, 100%, .3);
  border-radius: 2px;
  font-size: 1.2rem;
  padding: 4px 6px;
  color: #fff;
  margin-right: 5px;
}
.solution_3 .bar3 .t2{
  position: absolute;
  width: 90%;
  left: 5%;
  bottom: 8%;
  display: flex;
}
.solution_3 .bar3 .t2 .tl img{
  width: 5rem;
  border-radius: 50%;
  margin-right: 1rem;
}
.solution_3 .bar3 .t2 p{
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  width: 70%;
}
.solution_3 .bar3 .t2 p:first-of-type{
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.solution_3 .bar3 .t2 p img{
  height: 2rem;
  display: inline-block;
  margin-left: 1rem;
}
.solution_3 .bar3 .t2 p:last-of-type{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.btn{
  display: flex;
  justify-content: center;
  margin-top: 3%;
}
.btn .ll{
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  margin: 5px;
  -webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, .05);
}
.btn .ll:hover{
  background: #27b0f9;
}
.btn .ll i{
	font-size: 1.1rem;
	color: #27b0f9;
	display: block;
  font-weight: bold;
}
.btn .ll:hover i{
  color: #fff;
}
.btn .llr1 i{
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	display: block;
}
.solution_5{
  background: #380085;
}
.solution_5 .contain{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.solution_5 .ll{
  width: 53%;
  color: #fff;
}
.solution_5 .ll h3{
  color: #fff;
  font-size: 4rem;
  margin-bottom: 6rem;
}
.solution_5 .bb{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.solution_5 .bb input{
  color: #fff;
  padding:2rem;
  width:70%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.3);
  border-radius: 20px 0px 0px 20px;
}
.solution_5 .bb input::placeholder{
  color: rgba(255,255,255,0.6);
}
.solution_5 .bb button{
  width:30%;
  background: #332A2C;
  color: #fff;
  padding:2rem;
  cursor: pointer;
  box-sizing: border-box;
  border-radius: 0px 20px 20px 0px;
}
.solution_5 .rr{
  width: 35%;
}
.solution_5 .rr img{
  width: 100%;
  border-radius: 20px;
}
.solutions3_0 .ll{
  padding: 0;
  width: 45%;
}
.solutions3_0 .ll .t2{
  margin-top: 4rem;
}
.solutions3_0 .ll .t2 p{
  padding-left: 3rem;
  position: relative;
}
.solutions3_0 .ll .t2 p::before{
  content: '';
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  left: 0;
  top: 0.5rem;
  background: url(../images/ok.png) no-repeat center/contain;
}
.solutions3_0 .rr{
  width: 50%;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 6%;
  margin-left: -5%;
}
.solutions3_0 .rr >img{
  width: 62%;
}
.solutions3_0 .rr a img{
  left: 0;
  top: inherit;
  bottom: 0;
  transform: none;
  max-width:80%;
}
.solution3_3{
  background: #f8f8f8;
}
.solution3_3 .title2 h3{
  text-align: center;
}
.solution3_3 ul{
  display: flex;
  flex-wrap: wrap;
  padding: 5% 6%;
  box-sizing: border-box;
}
.solution3_3 ul li{
  margin: 2% 1%;
  width: 31.3%;
  background: #fff;
  padding: 4%;
  box-sizing: border-box;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border-radius: 15px 15px 15px 70px;
}
.solution3_3  ul li h4{
  font-size: 2rem;
  color: #3d4459;
}
.solution3_3 ul li p{
  color: #3d4459;
  line-height: 1.6;
  font-size: 1.5rem;
}
.solution3_4 .imgs{
  padding: 3% 0;
}
.solution3_4 img{
  width: 100%;
}
.solution3_4 .title2{
  text-align: center;
}
.solution3_6{
  text-align: center;
}
.solution3_6  ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.solution3_6  ul li{
  width: 33.3%;
  background: #1A49BA05;
  padding: 5% 3%;
  box-sizing: border-box;
  border-radius: 15px;
  transition: all 0.3s linear;
}
.solution3_6  ul li img{
  margin: 0 auto 1rem;
}
.solution3_6  ul li h6{
  color: #2D3A56;
  font-size: 2.2rem;
  font-weight: normal;
  margin-bottom: 2rem;
}
.solution3_6  ul li:nth-of-type(2){
  background: #fff;
}
.solution3_6  ul li:hover{
  background: #fff;
}
.solution3_6  ul li p{
  color: #8992A4;
}
.solution3_5 .contain{
  background: #380085;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  padding:7% 8%;
  box-sizing: border-box;
}
.solution3_5 .contain .ll{
  width: 40%;
}
.solution3_5 .contain .ll h3{
  color: #fff;
}
.solution3_5 .contain .ll p{
  color: #fff;
  opacity: 0.6;
}
.solution3_5 .contain .rr{
  width: 50%;
}
.solution3_5 .contain .rr img{
  width: 100%;
  border-radius: 20px;
}
.pbans {
  text-align: center;
}
.pbans .txt p{
  margin: auto;
}
.search2{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius:5px;
  overflow: hidden;
  margin: 3rem auto ;
  width: 60rem;
  box-shadow: 0px 0px 20px 0px rgba(216.00000000000003, 228, 254, 0.19)
}
.search2 input{
  width: 85%;
  line-height: 2;
  padding: 10px 3rem;
  color: #333;
  font-size: 1.6rem;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.13);
}
.search2 button{
  width: 24%;
  background: #FFD500;
  line-height: 2;
  padding: 13px 0;
  color: #380085;
  font-size: 1.4rem;
  box-sizing: border-box;
}
.pro1 .title2 h3{
  text-align: center;
  margin-bottom: 0;
}
.pro1 .mores0{
  display: flex;
  justify-content: flex-end;
}
.pro1 .more{
  margin: 0;
  border: 1px solid #999;
  background: none;
  border-radius: 6px;
  padding:0.8rem 2rem;
  color: #333;
}
.pro1 .more:hover{
  background: #380085;
  color: #fff;
}
.pro1 .contain ul{
  display: flex;
  flex-wrap: wrap;
}
.pro1 .contain ul a{
  display: block;
  width: 23.5%;
  margin-right: 2%;
  margin-top: 2%;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 12px rgba(0,0,0,.08);
}
.pro1 .contain ul a:nth-of-type(4n){
  margin-right: 0;
}
.pro1 .contain ul li b{
  display: block;
  width: 100%;
  overflow: hidden;
}
.pro1  .contain ul li b img{
  display: block;
  width: 100%;
  transition: all 0.4s ease;
}
.pro1 .contain ul li:hover b img{
  transform: scale(1.06);
}
.pro1 .contain ul li h4{
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0;
  padding: 2rem 1rem;
  box-sizing: border-box;
  color: #333333;
  line-height: 1.4;
  transition: all 0.4s ease;
}
.pro1 .contain ul li:hover h4{
  color: #380085;
}
.pro1 .contain ul li p{
  color: #333;
}
.pro2{
  background: #f6f6f6;
}
.tk{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  background: rgba(0,0,0,.6);
  display: none;
}
.tk .bbox{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tk .bb{
  background: #fff;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius:5px;
  position: relative;
}
.tk .bb input{
  border: 1px solid #d6d0d0;
  padding:1rem 1rem;
  width: 30rem;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}
.tk .bb input::placeholder{
  color: #999;
}
.tk .bb button{
  height: 4.5rem;
  background: #380085;
  color: #fff;
  padding: 0 1.5rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 0px 10px 10px 0;
}
.tk .bb button:hover{
  
  background: #FFD500;
  color: #380085;
}
.tk .close img{
  position: absolute;
  right: -13px;
  top: -13px;
  background: #fff;
  padding: 3px;
  border-radius: 50%;
  cursor: pointer;
  width:20px;
  height: 20px;
}
.pages{
	text-align: center;
	margin-top: 3%;
}
.pages ul{
  display: flex;
  justify-content: center;
}
.pages ul li{
	font-size: 1.4rem;
  margin: 0 5px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 50px;
	margin: 8px;
	padding: 4px;
	background: #eee;
	cursor: pointer;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
  color: #333;
}
.pages ul li a{
  font-size: 1.4rem;
  color: #333;
  -webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.pages ul li:hover ,.pages ul li.active{
	color: #fff;
  background: #380085;
}
.pages ul li:hover a,.pages ul li.active a{
  color: #fff;
}
.pages ul li.disabled{
  cursor: not-allowed;
}