/*header*/

#page {
  overflow: hidden;
}

.indexPage {
  position: relative;
}

.indexPage .header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: none;
  z-index: 30;
  transition: 0.5s linear;
}

.header {
    position: fixed;
    z-index: 20;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
}
.nBannerBox{
  padding-top: calc(3.97rem + 2.4rem + 1px);
}

.header .header-top {
    border-bottom: 1px #dfdfdf solid;
    position: relative;
    z-index: 1;
}

.header .box {
  margin: 0 auto;
  height: 3.97rem;
  display: flex;
  justify-content: space-between;
  transition: 0.3s linear;
}

.header .box .logo {
  position: relative;
  display: flex;
  align-items: center;
}

.header .box .logo img {
  max-height: 3rem;
  transition: 0.3s;
  display: block;
}

.header .box .right {
  display: flex;
  align-items: center;
}

.header .box .right .lang {
  color: rgba(0, 0, 0, 0.5);
}

.header .box .right .lang a {
  transition: 0.3s;
}

.header .box .right .lang a:first-child {
  padding-right: 0.67rem;
}

.header .box .right .lang a:last-child {
  padding-left: 0.67rem;
}

.header .box .right .lang a:hover {
  color: #fe0000;
}
.header .box .right .xcxBtnBox {
  display: flex;
  align-items: center;
  position: relative;
}

.header .box .right .xcxBtnBox .maBox {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  border-radius: 4px;
  padding: 6px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.header .box .right .xcxBtnBox .maBox::before {
  content: "";
  position: absolute;
  top: -0.38rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.47rem solid transparent;
  border-right: 0.47rem solid transparent;
  border-bottom: 0.4rem solid #fff;
}

.header .box .right .xcxBtnBox .maBox img {
  width: 100%;
}

.header .box .right .xcxBtnBox:hover .maBox {
  visibility: initial;
  opacity: 1;
  top: calc(100% + 0.38rem);
}
.header .box .right .headLink {
  height: 40px;
  line-height: 40px;
  width: 6rem;
  background: #fe9901;
  border-radius: 0.67rem;
  color: #fff;
  transition: 0.3s;
  margin: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.header .box .right .headLink img {
  margin-right: 0.4rem;
}

.header .box .right .search {
  background: #f9f9f9;
  height: 40px;
  line-height: 40px;
  border-radius: 0.67rem;
  width: 7rem;
  display: flex;
  align-items: center;
}

.indexPage .header .box .right .search {
  background: #fff;
}

.header .box .right .search .text {
  width: calc(100% - 56px);
  height: 100%;
  background: none;
  border: none;
  padding-left: 0.67rem;
  font-size: 0.53rem;
}

.header .box .right .search .btn {
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav {
  position: relative;
  transition: 0.5s;
  width: 100%;
}

/* .nav.on {
  background: #fff;
  position: fixed;
  top: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
} */

.nav_pc {
  display: flex;
  justify-content: space-between;
}

.nav_pc>li {
  float: left;
  text-align: center;
}

.nav_pc>li>a {
  position: relative;
  display: inline-block;
  color: #252525;
  font-size: 0.6rem;
  line-height: 2.4rem;
  transition: 0.3s linear;
}

.nav_pc>li>a:after {
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2px;
  border-bottom: 4px solid #fe9901;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
}

.n_nav2 .fr a:after {
  width: 0;
  height: 2px;
  background: #fe9901;
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 2px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.n_nav2 .fr a:hover:after,
.n_nav2 .fr a.on:after {
  width: 100%;
}

.nav_pc>li.on>a,
.nav_pc>li:hover>a {
  color: #fe9901;
}

.nav_pc>li.on>a::after,
.nav_pc>li:hover>a::after {
  opacity: 1;
}

.nav_pc>li:last-child>a {
  padding-right: 0;
}

.nav-2nd {
  display: none;
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 100%;
  width: 150px;
  padding: 8px 0;
  background-color: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.nav-2nd>li {
  padding: 0 5px;
}

.nav-2nd>li>a {
  position: relative;
  display: block;
  padding: 10px;
  font-size: 0.53rem;
  line-height: 26px;
  text-align: center;
  color: #333;
  transition: 0.4s;
}

.nav-2nd>li>a:hover {
  background-color: #eb7e00;
  color: #fff;
}

/*新导航*/
.navSub {
  position: absolute;
  left: 0;
  top: 2.35rem;
  background: #f6f6f6;
  display: none;
  -webkit-box-shadow: 0px 6px 12px 0px rgba(55, 55, 55, 0.3);
  box-shadow: 0px 6px 12px 0px rgba(55, 55, 55, 0.3);
  overflow: hidden;
  width: 100%;
  border-bottom: 1px #eee solid;
}

.navSub .w1400 {
  padding: 2rem 0;
}

.navSub h3 {
  position: relative;
  width: 8rem;
  text-align: left;
  font-weight: normal;
}

.navSub h3::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 40px;
  height: 4px;
  background: #eb7e00;
}

.navSub .slogan {
  width: 13.33rem;
}

.navSub .slogan a {
  display: block;
  padding-bottom: 55%;
}

.navSub ul {
  position: relative;
  top: -0.67rem;
  width: calc(100% - 13.33rem - 8rem);
  text-align: left;
}

.navSub ul li {
  width: 42%;
  margin-right: 8%;
  float: left;
}

.navSub ul li>a {
  position: relative;
  display: block;
line-height: 1.8rem;
  color: #222222;
  font-size: 0.53rem;
  border-bottom: 1px #dddddd solid;
  transition: 0.3s;
}

.navSub ul li>a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  transition: 0.4s;
  height: 1px;
  background: #eb7e00;
}

.navSub ul li>a img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  filter: brightness(0) invert(0.7);
  transition: 0.2s;
}

.navSub ul li>a:hover {
  color: #eb7e00;
}

.navSub ul li>a:hover::before {
  width: 100%;
}

.navSub ul li>a:hover img {
/*   filter: initial; */
}

.header.on .navSub {
top:2.2rem
}

.header.on {
  position: fixed;
  width:100%;
background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header.on .box{
      height: 2.8rem;
}
.header.on .box .logo img{
  max-height:2.3rem
}

.header.on .nav_pc>li>a {
  line-height: 2.2rem;
}

.searchIcon {
  display: none;
  align-items: center;
  margin-left: 0.67rem;
}

/*手机导航按钮*/
.menu {
  display: none;
  width: 25px;
  margin-left: 0.83rem;
}

.menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fe0000;
  border-radius: 2px;
  animation: navBtn 2s infinite ease;
}

.menu span:nth-child(2) {
  margin: 6px 0;
  animation-delay: 0.5s;
}

.menu span:nth-child(3) {
  animation-delay: 1s;
}

@keyframes navBtn {
  50% {
    width: 60%;
  }

  100% {
    width: 100%;
  }
}

/*搜索弹窗*/
.searchTan {
  display: none;
  border-radius: 8px;
  overflow: hidden;
}

.searchTan form {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 50px;
  margin: auto;
}

.searchTan form .text-input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 50px 0 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  font-size: 16px;
  border-radius: 40px;
}

.searchTan form .sub-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 52px;
  height: 52px;
  background: url(../images/icon-search.svg) center no-repeat;
  background-size: 24px 24px;
  border: none;
  border-radius: 50%;
}


.indexBtn {
  width: 36px;
  height: 36px;
  border: 1px #fff solid;
  border-radius: 50%;
  transition: 0.3s;
  z-index: 13;
  background: none;
  margin: 0;
  transform: translateY(-50%);
}

.indexBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  transform: translate(-50%, -50%);
  background: url(../images/icon-right.svg) no-repeat center;
  transition: 0.3s;
}

.indexBtn:hover {
  background: #eb7e00;
  border-color: #eb7e00;
}

.indexBtn:hover::after {
  filter: brightness(0) invert(1);
}

.indexBtn.swiper-button-next {
  right: 30px;
}

.indexBtn.swiper-button-prev {
  left: 30px;
}

.indexBtn.swiper-button-prev::after {
  transform: translate(-50%, -50%) rotate(180deg);
}


/* 尾部*/
.footer {
  position: relative;
  background: url(../images/footerBg.jpg) no-repeat center;
  background-size: cover;
  border-top: 4px #019382 solid;
}

.footerTop {
  border-bottom: 1px #e5e5e5 solid;
  padding: 0.67rem 0;
}

.footerTop .footerLogo {
  height: 2.8rem;
}

.footerCenter {
  border-bottom: 1px #e5e5e5 solid;
  display: flex;
  justify-content: center;
}

.footerCenter .box {
  padding-right: 14.53rem;
  height: 8.77rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.footerCenter .box .footerNav {
  width: 15rem;
  display: flex;
  flex-wrap: wrap;
}

.footerCenter .box .footerNav a {
    display: block;
    line-height: 0.93rem;
    margin: 0.45rem 0;
    margin-right: 1.6rem;
    transition: 0.3s;
}
.footerCenter .box .footerNav a:last-child{
  display:none;
}
.footerCenter .box .footerNav a:hover {
  color: #019382;
}

.footerCenter .box .ewmBox {
  display: flex;
}

.footerCenter .box .ewmBox .item {
  margin-left: 1rem;
}

.footerCenter .box .ewmBox .pic {
  width: 3.4rem;
}

.footerCenter .box .ewmBox .pic img {
  width: 100%;
}

.footerCenter .box .ewmBox p {
  text-align: center;
  font-size: 0.47rem;
  color: #252525;
  margin-top: 0.2rem;
  line-height: 0.6rem;
}

.footerBtm {
  padding-right: 14.53rem;
  box-sizing: border-box;
  height: 2.67rem;
  line-height: 2.67rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footerBtm img {
  padding-left: 0.3rem;
}

.footerBtm .right {
  width: 8.9rem;
  font-size: 0.47rem;
}

.footerBtm .right .name {
  color: #000;
  height: 1.33rem;
  line-height: 1.33rem;
  background: #fff;
  border: 1px #e6e6e6 solid;
  border-radius: 4px;
  overflow: hidden;
}

.footerBtm .right .name::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1.33rem;
  height: 100%;
  background: #019382;
}

.footerBtm .right .name::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.33rem;
  width: 0.73rem;
  height: 0.73rem;
  background: url(../images/icon-down.svg) no-repeat center;
  background-size: contain;
}

.footerBtm .right .list li a:hover {
  background: #019382;
}

.yqBox {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 2;
}

.yqBox .box {
  position: relative;
  height: 100%;
  width: 13.87rem;
  background: #019382;
  color: #fff;
  pointer-events: auto;
}

.yqBox .box::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 3px);
  right: 0;
  width: 14.44rem;
  height: 0.53rem;
  background: url(../images/footerTop.png) no-repeat bottom left;
  background-size: 100%;
}

.yqBox .box .item {
  margin-bottom: 0.33rem;
}

.yqBox .box .item:last-child {
  margin-bottom: 0;
}

.yqBox .box .item .title {
  position: relative;
  height: 2.1rem;
  line-height: 2.1rem;
  padding: 0 1.4rem 0 0.9rem;
  background: rgba(255, 255, 255, 0.07);
  border-bottom: 1px rgba(255, 255, 255, 0.22) solid;
  border-top: 1px rgba(255, 255, 255, 0.22) solid;
  cursor: pointer;
}

.yqBox .box .item .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.57rem;
  width: 0.73rem;
  height: 0.73rem;
  background: url(../images/icon-right3.svg) no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}
.yqBox .box .item .text {
  display: none;
  padding: 0.3rem 0.9rem;
}

.yqBox .box .item:first-child .text {
  display: block;
}

.yqBox .box .item .text p {
  font-size: 0.53rem;
  line-height: 0.87rem;
  display: flex;
  align-items: flex-start;
}

.yqBox .box .item .text p:first-child {
  padding-left: 0.9rem;
  background: url(../images/icon-dz.svg) no-repeat 0 5px;
  background-size: 0.5rem auto;
}

.yqBox .box .item .text p:nth-child(2) {
  padding-left: 0.9rem;
  background: url(../images/icon-dh.svg) no-repeat 0 5px;
  background-size: 0.5rem auto;
}

.yqBox .box .item .text p:nth-child(3) {
  padding-left: 0.9rem;
  background: url(../images/icon-jt.svg) no-repeat 0 5px;
  background-size: 0.5rem auto;
}


.layui-form-label.required::after {
  content: " *";
  color: red;
  position: absolute;
  top: 0px;
  right: -0.2667rem;
  font-size: 0.5333rem;
}

.inpageCon .formItem {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
}

.formItem {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
}

.formItem.layui-form-item {
  margin-bottom: 0;
}

.formItem.layui-form-item>label {
  padding: 0;
}

.formItem>label {
  display: inline-block;
  width: 2.6667rem;
  text-align: right;
  padding-right: 0.5667rem;
  /* box-sizing: border-box; */
  position: absolute;
  left: 0;
  font-size: 0.5333rem;
}

.formItem>input {
  height: 2rem;
  width: 100%;
  font-size: 0.5333rem;
  padding: 0.3333rem 0.2667rem;
  box-sizing: border-box;
  margin-left: 3.2333rem;
  border: 0.0333rem solid #e8e8e8;
  border-radius: 0.1333rem;
  background-color: #fff;
}

.layui-form .row {
  display: flex;
  justify-content: start;
  margin-bottom: 0.8rem;
}

.layui-form .btnbox {
  display: flex;
  justify-content: center;
}

.layui-layer-shade {
  opacity: 0.7 !important;
}

.ksCrumb {
  border-top: 1px #DFDFDF solid;
}

.ksCrumb .crumb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.53rem;
  line-height: 2.67rem;
  color: #666666;
}

.ksCrumb .crumb .left a {
  padding: 0 0.2rem;
  transition: 0.3s;
}

.crumb .left a:hover {
  color: #fe9901;
}

.crumb .left img {
  filter: brightness(0) invert(0.4);
  margin-right: 0.27rem;
  position: relative;
  top: -1px;
}

.page {
  width: 100%;
  display: flex;
  justify-content: center;
}

.page .pageContent {
  display: flex;
}

.page .pageContent .pageItem {
  display: block;
  width: 1.4667rem;
  height: 1.4667rem;
  box-sizing: border-box;
  border: 1px solid rgb(232, 232, 232);
  border-radius: 0.0667rem;
  background: rgb(255, 255, 255);
  font-size: 0.4667rem;
  text-align: center;
  line-height: 1.4667rem;
  margin-right: 12px;
  color: rgb(51, 51, 51);
  transition: 0.3s;
}

.page .pageContent .pageItem:hover {
  background: #e7302d;
  color: #fff;
}

.page .pageContent .pageItem.more:hover {
  background: none;
  color: rgb(51, 51, 51);
}

.page .pageContent .pageItem:last-child {
  margin-right: 0;
}

.page .pageContent .pageItem.pageBtn {
  display: flex;
}

.page .pageContent .more {
  width: auto;
  border: none;
}

.page .pageContent .on {
  background-color: rgb(231, 48, 45);
  color: white;
  border: none;
}

.page .pageContent img {
  width: 4px;
  height: 8px;
}

.page .pageContent .pageBtn:hover img {
  filter: brightness(0) invert(1);
}

/*黄色页码*/
.orangePage .page .pageContent .on {
  background: #fe9901;
}

.orangePage .page .pageContent .pageItem:hover {
  background: #fe9901;
  color: #fff;
}
/* 文字列表*/
.wordList {
	padding-bottom: 1.1rem;
}

.wordList li {
	margin-bottom: 1rem;
}

.wordList li a {
	position: relative;
	display: block;
	height: 92px;
	line-height: 92px;
	background: #fff;
	border: 1px #DDDDDD solid;
	transition: 0.4s;
}

.wordList li a .time {
	float: left;
	position: relative;
	width: 4.83rem;
	text-align: center;
	color: #999999;
	transition: 0.3s;
}

.wordList li a .time::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 1.07rem;
	background: #DDDDDD;
}

.wordList li a .tit {
	height: 100%;
	color: #222222;
	font-weight: 500;
	width: calc(100% - 4.83rem - 3.93rem);
	padding: 0 1rem;
	box-sizing: border-box;
	transition: 0.3s;
}

.wordList li a .more {
	position: absolute;
	top: 0;
	right: 0;
	width: 3.33rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-left: 1px #ddd solid;
	height: 100%;
}

.wordList li a .more img {
	filter: brightness(0) invert(0.6);
	transition: 0.3s;
}

.wordList li a:hover {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
}

.wordList li a:hover .time,
.wordList li a:hover .tit {
	color: #fe9901;
}

.wordList li a:hover .more img {
	filter: inherit;
}

/*响应式*/
@media screen and (max-width: 1720px) {

  .footerCenter .box .ewmBox .item{
        margin-left: 0.6rem;
  }
  
}
@media screen and (max-width: 1600px) {
  .indexFour .wrap .right .tabTit .title {
    font-size: 0.93rem;
  }

  .indexFour .wrap .right .tabTit .title span {
    padding-right: 0.6rem;
  }
    .footerCenter .box .footerNav a{
        margin-right: 1rem;
  }
}

@media screen and (max-width: 1530px) {
  .indexOne .box {
    padding-top: 3.1rem;
  }

  .indexOne .box .row .item {
    width: 7.8rem;
    height: 7.8rem;
  }

  .indexOne .box .left .form {
    padding: 1.4rem 2.6rem 1.4rem 2.27rem;
  }
    
  .footerCenter .box .footerNav a{
        font-size: 0.54rem;
    margin-right: 0.7rem;
  }
}

@media screen and (max-width: 1440px) {
  .header .box {
    height: 2.9rem;
  }

  .header .box .logo img {
    max-height: 2.5rem;
  }
.nBannerBox {
        padding-top: calc(2.9rem + 74px);
    }
}

@media screen and (max-width: 1400px) {
  .banner .swiper-slide a {
    height: auto;
    padding-bottom: 50%;
  }

  .indexOne .box .row .item {
    width: 7.2rem;
    height: 7.2rem;
  }

  .indexOne .box .row .item h3 {
    margin-top: 1rem;
  }

  .indexTwo .wrap .box {
    width: 40rem;
  }

  .indexTwo .wrap .tabBox ul li {
    font-size: 0.47rem;
  }

  .indexFour .wrap .left {
    width: 45%;
  }

  .indexFour .wrap .right {
    width: 55%;
  }

  .footerCenter .box .footerNav {
    width: 9rem;
  }

  .footerBtm img {
    padding-left: 0.2rem;
  }
}

@media screen and (max-width: 1350px) {
  .indexOne .box {
    padding-top: 4rem;
  }

  .indexOne .box .row .item {
    width: 6.6rem;
    height: 6.6rem;
  }

  .indexOne .box .row .item h3 {
    margin-top: 0.8rem;
  }

  .footerBtm {
    display: block;
    height: auto;
    line-height: 1.2rem;
    padding-bottom: 0.5rem;
  }
}

@media screen and (max-width: 1260px) {
  .w1600 {
    width: 94%;
  }

  .nav {
    display: none;
  }
  .nBannerBox {
        padding-top: 2.9rem;
    }

  .menu {
    display: block;
  }

  .searchIcon {
    display: flex;
    cursor: pointer;
  }

  .header .box .right .search {
    display: none;
  }
}

@media screen and (max-width: 996px) {
    .nBannerBox {
        padding-top: 2.4rem;
    }
  .header .box,.header.on .box {
    height: 2.4rem;
  }

  .header .box .logo img,.header.on .box .logo img {
    max-height: 1.5rem;
  }

  .header .box .right .headLink {
    margin: 0 0 0 0.5rem;
    width: 4.5rem;
  }

  .header .box .right .lang a:first-child {
    padding-right: 0.3rem;
  }

  .header .box .right .lang a:last-child {
    padding-left: 0.3rem;
  }

  .paddingTop70 {
    padding-top: 1.4rem;
  }

  .indexOne .box .left {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
  }

  .indexOne .box {
    padding-top: 2rem;
  }

  .indexOne .box .left .title {
    height: 100%;
    display: none;
  }

  .indexOne .box .left .form {
    width: 100%;
  }

  .indexOne .box .row {
    justify-content: flex-start;
  }

  .indexOne .box .row1 {
    float: left;
  }

  .indexTwo {
    padding-top: 3.5rem;
  }

  .indexTwo .wrap {
    display: block;
  }

  .indexTwo .wrap .titleBox {
    float: initial;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0.8rem;
  }

  .indexTwo .wrap .titleBox .indexTitle {
    display: flex;
  }

  .indexTwo .wrap .titleBox .indexTitle .txt {
    writing-mode: initial;
  }

  .indexTwo .wrap .box {
    width: 100%;
  }

  .indexTwo .wrap .tabBox ul li {
    width: 32.4%;
    margin-right: 1.4%;
    margin-bottom: 0.4rem;
  }

  .indexTwo .wrap .tabBox ul li:nth-child(5n) {
    margin-right: 1.4%;
  }

  .indexTwo .wrap .tabBox ul li:nth-child(3n) {
    margin-right: 0;
  }

  .indexThree {
    padding: 1.5rem 0 1rem 0;
  }

  .indexThree .wrap {
    display: block;
  }

  .indexThree .wrap .box {
    width: 100%;
  }

  .indexFour .wrap {
    display: block;
  }

  .indexFour .wrap .left {
    width: 100%;
    margin-bottom: 1.4rem;
  }

  .indexFour .wrap .right {
    width: 100%;
  }

  .indexFour .wrap2 .box a {
    transform: scale(1.2);
  }

  .indexFive {
    padding: 1.5rem 0;
  }

  .indexFive .wrap {
    display: block;
  }

  .indexFive .wrap .box {
    width: 100%;
    margin-bottom: 1.4rem;
  }

  .indexFive .wrap .box:last-child {
    margin-bottom: 0;
  }

  .yqBox {
    position: relative;
    width: 100%;
  }

  .yqBox .box {
    width: 100%;
  }

  .yqBox .box::before {
    display: none;
  }

  .footerCenter .box {
    padding-right: 0;
  }

  .footerBtm {
    padding-right: 0;
  }

  .indexTwo .bg {
    max-width: none;
    width: 100%;
  }
}

@media screen and (max-width: 680px) {
  .inpageBtn{
    padding:0 0.6rem;
  }
  .inpageBtn img{
    display: none;
  }
    .nBannerBox {
        padding-top: 1.8rem;
    }
  .header .box,.header.on .box {
    height: 1.8rem;
  }

  .header .box .logo img,.header.on .box .logo img {
    max-height: 1rem;
  }

  .header .box .right .lang {
    display: none;
  }

  .header .box .right .lang a:first-child {
    padding-right: 0.1rem;
  }

  .header .box .right .lang a:last-child {
    padding-left: 0.1rem;
  }

  .header .box .right .headLink {
    height: 1rem;
    line-height: 1rem;
    font-size: 12px;
    width: 3.1rem;
    margin-left: 0.2rem;
  }

  .searchIcon {
    margin-left: 0.3rem;
  }

  .menu {
    margin-left: 0.3rem;
  }

  .header .box .right .headLink img {
    display: none;
  }

  .banner .swiper-slide a {
    padding-bottom: 60%;
  }

  .banner .btn {
    bottom: 0.6rem;
  }

  .banner .btn span {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .paddingTop70 {
    padding-top: 0.8rem;
  }

  .indexTitle .txt h3 {
    font-size: 0.8rem;
    line-height: 1rem;
  }

  .indexTitle img {
    width: 1.6rem;
    margin-right: 0.5rem;
  }

  .indexOne .box .left .form {
    padding: 0.6rem;
  }

  .float-nav-wrap {
    display: none;
  }

  .indexOne .box .row1 {
    width: 33.33%;
  }

  .indexOne .wrap .bg {
    display: none;
  }

  .indexOne .box {
    padding-top: 0.6rem;
  }

  .indexOne .box .row1 .item {
    width: 100%;
  }

  .indexOne .box .row .item {
    height: 5.6rem;
  }

  .indexOne .box .row .item .icon img {
    width: 1rem;
  }

  .indexOne .box .row .item h3 {
    margin-top: 0.1rem;
    font-size: 0.53rem;
  }

  .indexTwo {
    padding-bottom: 0.6rem;
  }

  .indexOne .box .row3 .item {
    width: 25%;
  }

  .indexTwo .wrap .box .tabTit .tab .indexTit {
    margin-right: 0.4rem;
  }

  .indexTwo .wrap .box .tabTit {
    padding: 0 0.4rem;
    height: 2rem;
    line-height: 2rem;
  }

  .indexTit img {
    margin-right: 0.1rem;
    width: 0.93rem;
  }

  .indexMore img {
    margin-right: 0.1rem;
    width: 0.87rem;
  }

  .indexTwo .wrap .tabBox {
    margin: 0.6rem;
  }

  .indexTwo .wrap .tabBox ul li {
    width: 49.5%;
    margin-right: 1%;
  }

  .indexTwo .wrap .tabBox ul li:nth-child(5n) {
    margin-right: 1%;
  }

  .indexTwo .wrap .tabBox ul li:nth-child(3n) {
    margin-right: 1%;
  }

  .indexTwo .wrap .tabBox ul li:nth-child(2n) {
    margin-right: 0;
  }

  .indexTwo .wrap .tabBox ul li a {
    height: 1.6rem;
    line-height: 0.6rem;
    padding: 0 0.6rem;
    font-size: 0.47rem;
  }

  .indexTwo .wrap .tabBox ul li a .icon {
    width: 0.6rem;
    height: 0.6rem;
  }

  .indexTwo .wrap .tabBox ul li a::before {
    display: none;
  }

  .indexThree {
    padding: 0.5rem 0 0.5rem 0;
  }

  .indexThree .wrap .box .titleBox {
    margin-bottom: 0.5rem;
  }

  .indexNotice {
    margin-bottom: 0.6rem;
  }

  .indexNotice li {
    margin-top: 0;
  }

  .indexNotice li a {
    border-bottom: 1px #dcdcdc solid;
  }

  .indexNotice li a .time {
    width: 2.8rem;
  }

  .indexNotice li a .time b {
    padding-top: 0.1rem;
  }

  .indexNotice li a .text {
    width: calc(100% - 2.8rem);
  }

  .indexThree .wrap .box3 {
    margin-top: 0.6rem;
  }

  .indexFour {
    padding: 0.6rem 0;
  }

  .indexFour .left a em {
    height: auto;
    padding-bottom: 59%;
  }

  .indexFour .wrap .left {
    margin-bottom: 0.6rem;
  }

  .indexFour .wrap .right {
    padding: 0.6rem;
  }

  .indexFour .wrap .right .tabTit .title {
    font-size: 0.7rem;
  }

  .indexFour .wrap .right .tabTit .title span {
    padding-right: 0.2rem;
  }

  .indexFour .wrap .right .tabTit .title img {
    width: 0.9rem;
  }

  .indexFour .wrap .right .tabTit .more {
    display: none;
  }

  .indexFour .wrap .right .tabBox ul li a {
    padding: 0 3rem 0 0.6rem;
  }

  .indexFour .wrap2 {
    margin-top: 0.6rem;
  }

  .indexFour .wrap2 .box {
    padding-top: 0;
    margin: 0 2rem;
  }

  .indexFour .wrap2 .box a {
    transform: none;
  }

  .indexFour .wrap2 .box a.swiper-slide-next {
    z-index: 3;
    top: 0;
  }

  .indexFour .wrap2 .box .swiper-slide-next+.swiper-slide {
    z-index: 2;
  }

  .indexFour .wrap2 .box .swiper-slide-next+.swiper-slide+.swiper-slide {
    top: 0;
    z-index: 1;
  }

  .indexFive .wrap .box .pic {
    margin-top: 0.6rem;
  }

  .indexFive .wrap .box {
    margin-bottom: 0.8rem;
  }

  .indexFive {
    margin-bottom: 1rem;
    padding: 0.6rem 0;
  }

  .footerTop {
    padding: 0.4rem 0;
  }

  .footerTop .footerLogo {
    height: 1.8rem;
  }

  .footerCenter .box {
    display: block;
    height: auto;
    padding-bottom: 0.6rem;
  }

  .footerCenter .box .footerNav {
    width: 100%;
    justify-content: center;
    padding-bottom: 0.6rem;
  }

  .footerCenter .box .footerNav a {
    margin: 0.6rem 0 0 0;
    text-align: center;
   width: 19.33%;
  }

  .footerCenter .box .ewmBox {
    justify-content: center;
  }

  .footerCenter .box .ewmBox .item {
    margin: 0 0.2rem;
  }

  .footerCenter .box .ewmBox .pic {
    width: 100%;
  }

  .footerBtm {
    line-height: 1rem;
    padding-top: 0.6rem;
    text-align: center;
  }

  .footerBtm img {
    width: 0.6rem;
  }

  .footerBtm .right {
    width: 100%;
    text-align: left;
    margin-top: 0.4rem;
  }

  .layui-form-item {
    flex-direction: column;
    text-align: left;
  }

  .layui-form-item .layui-form-label {
    text-align: left;
    width: auto;
  }

  .formItem>input {
    margin-top: 1.1rem;
    margin-left: 0;
  }

  .layui-input-block {
    margin-left: 0 !important;
  }

  .page .pageContent .pageItem {
    display: none;
  }

  .page .pageContent .on,
  .page .pageContent .pageBtn {
    display: block;
  }
  
	/* 文字列表*/
	.wordList {
		padding-bottom: 0;
	}

	.wordList li {
		margin-bottom: 0.67rem;
	}

	.wordList li a {
		height: 2rem;
		line-height: 2rem;
	}

	.wordList li a .time {
		width: 3.4rem;
	}

	.wordList li a .more {
		display: none;
	}

	.wordList li a .tit {
		width: calc(100% - 3.4rem);
		padding: 0 0.5rem;
	}
  .ksCrumb .crumb .left a {
  padding: 0;
}
}