@charset "utf-8";
/* CSS Document */
@font-face {
  src: url(../fonts/HelveticaNeueLTPro-Roman.otf);
  font-family: "myfont";
}
@font-face {
  src: url(../fonts/HelveticaNeueLTPro-Md.otf);
  font-family: "title";
}
@font-face {
  src: url(../fonts/HelveticaNeueLTPro-Lt.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: #fff;
  margin: 1rem 0;
  font-family: "title2";
  letter-spacing: 0.5px;
}
img{
  display: block;
}
/*index*/
.w_all {
  width: 82%;
  margin: auto;
}
.w_all2 {
  width: 62%;
  margin: auto;
}
.w_all3 {
  width: 54%;
  margin: auto;
}
html,body {
  width: 100%;
  position: relative;
  font-size: 64.5%;
  overflow-x: hidden;
}
header {
  width: 100%;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  background: #261b46;
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
  transition: all 0.3s linear;
}
header.active {
  height: 80px;
}
header .nav_box{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav {
  display: flex;
  align-items: center;
}
header .logo {
  height: 56px;
}
header .logo img {
  height: 100%;
}
header ul {
  display: flex;
}
header ul li {
  position: relative;
  margin-left: 6rem;
  cursor: pointer;
}
header ul li h2 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: normal;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  line-height: 100px;
}
header.active ul li h2 {
  line-height: 80px;
}
header ul li:hover h2 {
  color: #6c4492;
}
header ul li.sm h2::after{
	content: "";
	width: 0;
  height: 0;
  border-top: 5px solid #f4f4f4;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  margin-left: 5px;
}
header .others {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 1.3rem;
}
header .others .ls {
  /*border: 1px solid #888;*/
  margin-left: 2rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  transition: all 0.4s ease;
  cursor: pointer;
  color: #fff;
}
header .others .ls2{
  background: #6c4492;
  color: #fff;
  border-color: transparent;
}
header .others .ls:hover {
  background: #6c4492;
  color: #fff;
  border-color: transparent;
  transform: scale(1.04);
}
.s_menu{
	position: absolute;
	width: max-content;
  min-width: 100%;
	left: 0px;
	top:98px;
	background: #fff;
	padding: 6px 0;
	box-sizing: border-box;
	display: none;
  border-top: 2px solid #6c4492;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
header.active .s_menu {
  top:78px;
}
.s_menu dl{
	width:100%;
}
.s_menu dd{
	font-size: 1.4rem;
	padding:1rem 2rem;
	color: #d164c5;
	cursor: pointer;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.s_menu dd:hover{
	color: #6c4492;
  background: rgba(21, 107, 195, 0.1);
}
.navBtn {
  cursor: pointer;
  display: none;
}
.navBtn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f4f4f4;
  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%;
  height:100vh;
}
.banner .swiper-slide{
  width: 100%;
  height:100vh;
  position: relative;
}
.banner .swiper-slide::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
}
.banner .txt{
  position: absolute;
  left: 50%;
  top: 56%;
  line-height: 1.5;
  color: #fff;
  transform: translate(-50%,-50%);
  z-index: 6;
}
.banner h3{
  font-size: 4.4rem;
  font-family: "title";
  margin-bottom: 2rem;
  line-height: 1.3;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
}
.banner p{
  width: 56%;
  color: #e1dddd;
  margin: 1rem 0;
  font-weight: normal;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
}
.banner .swiper-pagination {
    z-index: 9;
} 
.banner .swiper-pagination span{
  background: #fff ;
  opacity: 1;
  margin: 2rem 6px 4rem;
}
.banner .swiper-pagination .swiper-pagination-bullet-active{
  background: #6c4492 !important;
}
.more {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  transition: all 0.4s ease;
  cursor: pointer;
  background: #6c4492;
  color: #fff;
  font-size: 1.4rem;
  width: max-content;
  margin-top: 4rem;
}
.more:hover {
  transform: scale(1.04);
  background: rgba(21, 107, 195, 0.8);
}
.more2 {
  padding: 2rem 3rem;
  border-radius: 50px;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 1px solid #f0f0f0;
  color: #fff;
  font-size: 1.4rem;
  width: max-content;
  margin: 4rem auto 0;
}
.more2:hover {
  color: #fff;
  background: rgba(21, 107, 195, 0.8);
  border-color: transparent;
}
.title{
  position: relative;
  font-size: 3rem;
  margin-bottom: 5rem;
}
.title p{
  margin-top: 2rem;
  color: #f5f5f5;
  font-size: 1.8rem;
}
.title2 h3{
  font-size: 2.6rem;
  color: #fff;
  margin-bottom:2rem;
  line-height: 1.4;
}
.title2 p{
  color: #fff;
  margin: 1rem 0;
  font-size: 1.8rem;
}
.index_box {
  background-color: #261b46;
  padding: 8rem 0;
  position: relative;
}
.index_bar2{
  text-align: center;
}
.index_bar2 ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index_bar2 ul li{
  width: 25%;
  transition: all 0.4s ease-out;
  cursor: default;
  font-family: "title";
  box-sizing: border-box;
}
.index_bar2 ul li b{
  display: block;
  position: relative;
}
.index_bar2 ul li b::before{
  content: '';
  position: absolute;
  right: -22%;
  top: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 15px;
  background: url(https://img.fulfillment-cn.com/static/modules/cms/images/bg.png) no-repeat center/80%;
}
.index_bar2 ul li:last-of-type b::before{
  display: none;
}
.index_bar2 ul li img{
  margin: auto;
  max-width: 45%;
  transition: all 0.4s ease-out;
}
.index_bar2 ul li h4{
  font-size: 2rem;
  margin: 3rem 0 2rem;
  color: #f4f4f4;
  line-height: 1.4;
}
.index_bar2 ul li p{
  line-height: 1.6;
  font-size: 1.5rem;
  width: 90%;
  margin: auto;
}
.index_bar2 ul li:hover img{
  transform: scale(1.06);
}
.index_bar1{
  background: #261b46;
}
.index_bar1 .contain {
  overflow: hidden;
  height: 100%;
  position: relative;
}
.index_bar1 .img {
  width: 55%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.index_bar1 .txt{
  width: 40%;
  float: right;
  padding: 2% 0 0;
}

.index_bar3{
  background: #261b46;
  text-align: center;
  padding-top: 0;
}
.index_bar3 .title2{
  width: 80%;
  margin: auto;
}
.index_bar3 .title2 p{
  margin: 0;
}
.index_bar3 ul{
  width: 80%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 4% auto 7%;
}
.index_bar3 ul li{
  width: 20%;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  color: #fff;
  box-sizing: border-box;
  font-size: 1.7rem;
  cursor: default;
  border:1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index_bar3 ul li img{
  height: 5rem;
  margin-right: 1rem;
}
.index_bar3 ul li h3{
  font-size: 1.6rem;
  color: #f4f4f4;
}
.index_bar3 ul li p{
  font-size: 1.4rem;
}
.index_bar3 .imgs img{
  display: block;
  width: 100%;
}
.index_bar4{
  background: #261b46;
}
.index_bar4 .contain {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.index_bar4 .ll{
  width: 48%;
  padding: 7% 0;
}
.index_bar4 .tt{
  margin-top: 3rem;
}
.index_bar4 .tt p{
  color: #f0f0f0;
  position: relative;
  padding-left: 3rem;
  margin: 2rem 0;
}
.index_bar4 .tt p::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: url(https://img.fulfillment-cn.com/static/modules/cms/images/ok.png) no-repeat center/contain;
}
.index_bar4 .rr{
  width: 40%;
}
.index_bar4 .rr img{
  width: 100%;
  display: block;
}
.index_bar6 {
  background: #261b46;
}
.index_bar6 .title2{
  text-align: center;
}
.index_bar6 ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 3rem 0;
  margin-top: 4rem;
  border-top: 1px solid #767676;
  border-bottom: 1px solid #767676;
}
.index_bar6 ul li{
  width: 46%;
  margin: 2rem 0;
}
.index_bar6 ul li h6{
  font-size: 2.4rem;
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.index_bar6 ul li h6 strong{
  font-family: "num";
  margin-right: 2rem;
  font-size: 3.8rem;
  font-weight: normal;
}
.index_bar6 ul li p{
  color: #f0f0f0;
}
.index_bar6 .title2{
  text-align: center;
}
.index_bar7 {
  text-align: center;
}
.index_bar7 ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index_bar7 ul li{
  margin: 2rem 0;
  transition: all 0.4s ease;
}
.index_bar7 ul li:hover{
  transform: translateY(-10px);
}
.index_bar7 ul li b{
  display: block;
  position: relative;
  margin: auto;
  width: 13rem;
}
.index_bar7 ul li img{
  display: block;
  margin: auto;
  width: 100%;
}
.index_bar7 ul li h6{
  font-family: "num";
  font-size: 3rem;
  font-weight: normal;
  position: absolute;
  color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.index_bar7 ul li p{
  color: #f5f5f5;
  font-size: 1.8rem;
  margin: 0;
}
.index_bar8 {
  background: #24154c;
  text-align: center;
}
.index_bar8 .title2 {
  width: 90%;
  margin: auto;
}
.index_bar8 .title2 p{
  color: #f0f0f0;
}
.index_bar8 ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin:4rem auto 0; 
}
.index_bar8 ul li{
  width: 20%;
}
.index_bar8 ul li img{
  display: block;
  margin: auto;
  width: 100%;
  padding: 3% 15%;
  box-sizing: border-box;
  transition: all 0.4s ease;
}
.index_bar8 ul li:hover img{
  transform: scale(1.06)
}
.index_bar9 {
  text-align: center;
}
.index_bar9 .title2 p{
  color: #f5f5f5;
  text-align: left;
  margin: 2rem 0 ;
}
.index_bar9 ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin:2rem auto 0; 
}
.index_bar9 ul li{
  width: 31.3%;
  margin-right: 3%;
  margin-top: 3%;
  overflow: hidden;
}
.index_bar9 ul li:nth-of-type(3n){
  margin-right: 0;
}
.index_bar9 ul li img{
  display: block;
  margin: auto;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.4s ease;
}
.index_bar9 ul li:hover img{
  transform: scale(1.06)
}
.index_bar5 .contain{
  display: flex;
  justify-content: space-between;
}
.index_bar5 .ll{
  width: 45%;
  margin-top: 5%;
}
.index_bar5 .ll h5{
  font-size: 2rem;
  margin: 3rem 0 1.5rem;
  letter-spacing: 0.07rem;
}
.index_bar5 .ll p{
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.7;
}
.index_bar5 .rr{
  width: 48.5%;
  background: #fff;
  box-shadow: 0 2px 20px 0 rgba(18,33,52,.3);
  border-radius: 8px;
  padding: 3rem;
  box-sizing: border-box;
}
.index_bar5 .rr p{
  display: flex;
  margin: 2rem 0;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  color: #f4f4f4;
}
.index_bar5 .rr p span{
  text-align: right;
  display: block;
  width: 80px;
  margin-right: 2rem;
}
.index_bar5 .rr p input{
  border: 1px solid #edf0fa;
  border-radius: 4px;
  padding: 12px 17px;
  font-size: 1.4rem;
  color: #0d2240;
  width: 80%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  caret-color: #6c4492;
  resize: none;
}
.index_bar5 .rr p textarea {
  border: 1px solid #edf0fa;
  border-radius: 4px;
  height: 100px;
  padding: 12px 17px;
  font-size: 1.4rem;
  color: #0d2240;
  width: 80%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  caret-color: #6c4492;
  resize: none;
}
.index_bar5 .rr p:last-of-type{
  align-items: flex-start;
}
.index_bar5 button{
  width: auto !important;
  background: #0c2ca6 !important;
  float: right;
  padding:1rem 3rem;
  text-align: center;
  color: #fff;
  border-radius: 40px;
  font-size: 1.36rem;
  margin: 2rem 0;
  transition: all 0.4s ease-out;
  cursor: pointer;
  letter-spacing: 0.05rem
}
.index_bar5 button:hover{
  background: #feba88 !important;
}

footer {
  position: relative;
  z-index: 3;
  background: #24154c;
}
footer .top{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 8rem 0;
}
footer .top ul{
  display: flex;
  align-items: center;
}
footer .top ul li img{
  width: 2.5rem;
  margin-right: 2rem;
}
footer .top .ll{
  width: 25%;
}
footer .top .ll h3{
  font-size: 1.7rem;
  margin: 5rem 0 2rem;
  color: #fff;
  font-weight: normal;
}
footer .top .ll input{
  color: #f4f4f4;
  line-height: 2;
  width: 100%;
  display: block;
  padding: 0.8rem 2rem;
  font-size: 1.6rem;
  box-sizing: border-box;
}
footer .top .ll input::placeholder{
  color: #a8a8a8;
}
footer .top .rr{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 66%;
}
footer .top dl dd{
  font-size: 1.8rem;
  color: #fff;
  margin:0 0 2rem 0;
  font-family: "title2";
  display: flex;
}
footer .top dl dd i{
  font-size: 2rem;
  margin-top: 1px;
  margin-right: 5px;
}
footer .copy{
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.38)
}
footer .copy p{
  color: #fff;
}
.lfetFix{
  position: fixed;
  left: 2rem;
  bottom: 3rem;
  z-index: 9999;
  display: none;
  cursor: pointer;
}
.lfetFix img{
  width: 4rem;
  display: block;
}
.o_ban {
  position: relative;
  width: 100%;
  padding-top: 100px;
  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: 3rem;
  font-weight: normal;
  font-family: "title";
  margin-bottom: 2rem;
  line-height: 1.3;
  color: #1c1c1c;
}
.o_ban p{
  width: 41%;
  color: #1c1c1c;
  margin: 1rem 0;
  font-size: 1.8rem;
  font-family: "myfont2";
}
.abouts{
  background: #261b46;
}
.about_1 .title2{
  padding-left: 8rem;
}
.about_1 .img{
  width: 40%;
}
.about_1 .txt{
  width: 55%;
  padding: 0;
}
.abouts p{
  margin: 0 0 4rem 0;
  color: #fff;
  line-height: 2;
  font-size: 1.7rem;
}
.about_2 .contain{
  padding: 3%;
  background: #6c4492;
  box-sizing: border-box;
}
.about_2 .txt p img{
  max-width: 100%;
  display: block;
}
.about_2 .txt p{
  margin: 0 0 3rem 0;
}
.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:30%;
  transform: translateX(-50%);
}
.o_ban .txt2 h3{
  text-align: right;
  font-size: 3rem;
  color: #fff;
  padding: 3rem;
  box-sizing: border-box;
}
.pnav{
	display: flex;
	align-items: center;
}
.pnav span{
	font-size: 1.8rem;
	color: #f4f4f4;
	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: #6c4492;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
  opacity: 0;
}
.pnav span.active:before,.pnav span:hover:before{
	opacity: 1;
}
.pnav span:hover{
	-webkit-transform: translateX(-5px);
	transform: translateX(-5px);
}
.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;
}
.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: 1.9rem;
  font-weight: normal;
	color: #f4f4f4;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	position: relative;
}
.news ul li:hover h3{
	color: #6c4492;
}
.news dl dd:hover h3{
	color: #6c4492;
}
.news h4{
	font-size: 1.2rem;
	color: #f4f4f4;
	font-weight: normal;
  margin: 1.3rem 0;
  display: flex;
}
.news h4 span{
  color: #999999;
  margin-left: 3rem;
}
.news p{
	font-size: 1.3rem;
	color: #f4f4f4;
	line-height: 1.6;
}
.more3{
  margin-top: 2rem;
  background: linear-gradient(to right,#a37cf9,#e5c8fe);
  padding: 1rem;
}
.news .title2 h3{
  font-weight: bold;
  font-size: 2.2rem;
}
.news dl{
  width: 36%;
}
.news dl dd{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.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_d .bar1 p{
  margin: 0 0 4rem 0;
  color: #f4f4f4;
  line-height: 2;
  font-size: 1.7rem;
}
.news_d .bar1  p img{
  display: block;
  max-width: 100%;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
}
.news_d  .bar1 .share{
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: #f4f4f4;
}
.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 .more3{
  margin: auto;
  padding: 1.6rem 4rem;
}
.o_banlx{
  background: #f2f2f2;
}
.o_banlx .txt{
  position: static;
  transform: none;
  padding: 21vh 0;
  text-align: center;
}
.o_banlx .txt h3{
  margin-bottom: 4rem;
}
.o_banlx .txt p{
  width: 100%;
}
.lx_1 .contain {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.lx_1 .ll{
  width: 48%;
}
.lx_1 .ll .tt{
  margin:7rem 0;
}
.lx_1 .ll p{
  margin: 1rem 0;
  color: #f4f4f4;
}
.lx_1 .rr{
  background: #6c4492;
  padding: 4rem 2rem;
  box-sizing: border-box;
  width: 42%;
  color: #fff;
}
.lx_1 .rr .title2 h3{
  color: #fff;
  text-align: center;
  margin-bottom: 0rem;
}
.lx_1 .rr .title2 p{
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
}
.lx_1 .rr .box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.lx_1 .rr .box p{
  width: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.lx_1 .rr .box p input{
  padding: 1.5rem 2rem;
  box-sizing: border-box;
  color: #f4f4f4;
  width: 100%;
  font-size: 1.5rem;
}
.lx_1 .rr .box p textarea{
  width: 100%;
  padding: 1.5rem 2rem;
  box-sizing: border-box;
  color: #f4f4f4;
  min-height: 12rem;
  font-size: 1.5rem;
}
.lx_1 .rr .box button{
  padding: 1.5rem 2rem;
  box-sizing: border-box;
  color: #f4f4f4;
  background: #fffc00;
  width: 100%;
  border-radius: 10px;
  margin-top: 2rem;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.4s ease;
}
.lx_1 .rr .box button:hover{
  transform: scale(1.02);
}
.lx_2{
  background: #f2f2f2;
}
.lx_2 ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.lx_2 ul li{
  width: 44%;
  margin-top: 2%;
  cursor: default;
}
.lx_2 ul li b{
  display: block;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.lx_2 ul li b img{
  display: block;
  width: 100%;
  transition: all 0.4s ease;
}
.lx_2 ul li:hover b img{
  transform: scale(1.06);
}
.lx_2 ul li h4{
  text-align: center;
  font-size: 2rem;
  margin: 4rem 0 2rem;
  color: #1c1c1c;
  font-weight: normal;
  line-height: 1.4;
  font-family: "title";
  transition: all 0.4s ease;
}
.lx_2 ul li:hover h4{
  color: #6c4492;
}
.lx_2 ul li p{
  color: #f4f4f4;
}
.ban_ps{
  height: calc(100vh - 100px);
}
.ban_ps .txt{
  text-align: center;
}
.ban_ps .txt h3{
  text-align: center;
  color: #fff;
}
.ban_ps .txt p{
  width: 100%;
  color: #fff;
}
.peisong_1{
  background: #261b46;
}
.peisong_1 .contain{
  margin-top: -55vh;
  background: #6c4492;
  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: #f4f4f4;
  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: #f4f4f4;
}
.peisong_3{
  background: #261b46;
}
.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;
}
.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: #f4f4f4;
	transition: all 0.4s ease;
}
.faq ul li.active .txt i{
	transform: rotate(45deg);
}
.faq ul li h3{
	font-size: 1.7rem;
	color: #f4f4f4;
	display: flex;
	align-items: center;
	font-weight: normal;
	font-family: "title";
  transition: all 0.4s ease;
}
.faq ul li:hover h3{
  color: #6c4492;
}
.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;
}
.yz  .title2 h3{
  text-align: center;
  margin-bottom: 0;
}
.yz li{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding:8rem 0;
  border-bottom: 2px dashed #8a8a8a;
  box-sizing: border-box;
  cursor: default;
}
.yz .ll{
  width: 42%;
}
.yz .ll  h6{
  font-size: 2rem;
  position: relative;
  margin-bottom: 3rem;
  transition: all 0.4s ease;
}
.yz ul li:hover .ll  h6{
  color: #6c4492;
}
.yz .ll  h6 strong{
  font-size: 6.6rem;
  font-family: "num";
  position: absolute;
  left: 0;
  top: 20%;
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0.08;
}
.yz .ll p{
  margin: 1rem 0;
}
.yz .rr{
  width: 50%;
}
.yz .rr img{
  width: 100%;
  display: block;
}
.yz li:nth-of-type(2n){
  flex-direction: row-reverse;
}
.yz li:nth-of-type(2n) .ll{
  width: 50%;
}
.yz li:nth-of-type(2n) .rr{
  width: 42%;
}
.yz li:nth-of-type(2) .rr{
  padding-right: 10%;
  box-sizing: border-box;
}
.yz li:nth-of-type(4) .rr,.yz li:nth-of-type(5) .rr{
  padding-right: 15%;
  box-sizing: border-box;
}
.yz2{
  background: #eaeaea;
}
.yz2 ul{
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.yz2 ul li{
  width: 32%;
  padding:2.5rem;
  background: #72a0fe;
  box-sizing: border-box;
  margin-top: 2%;
  transition: all 0.4s ease;
  cursor: default;
}
.yz2 ul li:hover{
  background: #6c4492;
}
.yz2 ul li h6{
  color: #fff;
  font-size: 2rem;
  position: relative;
  margin-bottom: 1rem;
}
.yz2 ul li p{
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.6;
}
.yz3 .contain{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.yz3 .ll{
  width:48%;
}
.yz3 .title2 h3{
  padding: 0 4%;
  box-sizing: border-box;
  text-align: center;
}
.yz3 .rr{
  width: 40%;
}
.yz3 .rr img{
  width: 100%;
  display: block;
}
.yz3 .ll p{
  color: #f4f4f4;
  font-weight: bold;
  line-height: 2.2;
  margin:3rem 0;
  font-size: 1.9rem;
}
.yz3 .ll p:last-of-type{
  text-align: right;
  margin-top: 5rem;
}
.yz3 .ll .bottoms{
  display: flex;
  align-items: center;
}
.yz3 .ll .bottoms .more:last-of-type{
  background: none;
  color: #1c1c1c;
  margin-left: 3rem;
  border: 1px solid #999999;
}
.yz3 .ll .bottoms .more:hover{
  background: #6c4492;
  color: #fff;
  border-color: transparent;
}
.o_banp .txt2{
  top: 50%;
}
.o_banp .txt2 h3{
  color: #fff;
  text-align: left;
  padding: 0;
}
.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 1rem;
  color: #230C33;
}
.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.34rem;
  font-family: "myfont2";
  letter-spacing: 0;
  margin: 3rem 0 ;
  color: #1c1c1c;
  font-weight: normal;
  line-height: 1.4;
  transition: all 0.4s ease;
}
.pro1 .contain ul li:hover h4{
  color: #6c4492;
}
.pro1 .contain ul li p{
  color: #f4f4f4;
}
.pro2{
  background: #592E83;
}
.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;
}
.tk .bb input::placeholder{
  color: #999;
}
.tk .bb button{
  height: 3.8rem;
  background: #6c4492;
  color: #fff;
  padding: 0 1rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.4s ease;
}
.tk .bb button:hover{
  background: #0c2ca6;
}
.tk .close img{
  position: absolute;
  right: -13px;
  top: -13px;
  background: #fff;
  padding: 3px;
  border-radius: 50%;
  cursor: pointer;
}
.search{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0;
}
.search input{
  width: 85%;
  line-height: 2;
  padding: 10px 2rem;
  color: #f4f4f4;
  font-size: 1.6rem;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.13);
}
.search button{
  width: 15%;
  background: #6c4492;
  line-height: 2;
  padding: 13px 0;
  color: #fff;
  font-size: 1.4rem;
  box-sizing: border-box;
}
.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: #f4f4f4;
}
.pages ul li a{
  font-size: 1.4rem;
  color: #f4f4f4;
  -webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.pages ul li:hover ,.pages ul li.active{
	color: #fff;
  background: #6c4492;
}
.pages ul li:hover a,.pages ul li.active a{
  color: #fff;
}
.pages ul li.disabled{
  cursor: not-allowed;
}
.customization .txt img{
    margin: auto;
}
