/*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%;
}

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

.header .box .logo img {
  max-height: 3rem;
  transition: 0.3s;
  display: block;
}
.header .box{
  transition: 0.3s linear;
}
.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;
  position: relative;
}

.nav_pc>li>a {
  position: relative;
  display: inline-block;
  color: #000000;
  font-size: 0.7rem;
  line-height: 2.2rem;
  transition: 0.5s linear;
}

.nav_pc>li>a:after {

  width: 11px;
  height: 14px;
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: url(../images/icon-nav.svg) no-repeat center bottom;
  background-size: contain;
  -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: #FE0100;
  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: #FE0100;
  color: #fff;
}

.header.on .navSub {
  top: 80px;
}

.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
}

.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%;
}




.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;
}


.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: #fe9901;
  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;
  justify-content: center;
  align-items: center;
}

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

.page .pageContent .on {
  background-color: #fe9901;
  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: 1600px) {}

@media screen and (max-width: 1530px) {}

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

  .header .box .logo img {
    max-height: 2.5rem;
  }
}

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


}

@media screen and (max-width: 1350px) {}

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

  .nav {
    display: none;
  }


  .menu {
    display: block;
  }


}

@media screen and (max-width: 996px) {

  .paddingTop70 {
    padding-top: 1.4rem;
  }


}

@media screen and (max-width: 680px) {


  .paddingTop70 {
    padding-top: 0.8rem;
  }





  .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;
	}
}