.container {
  width: 1600px;
  margin: 0 auto;
  position: relative;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  z-index: 100;
}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .container .logo {
  width: 290px;
  display: block;
}

.header .container .logo img {
  width: 100%;
}

.header .container .nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.header .container .nav .item {
  padding: 0 25px;
  font-size: 16px;
  height: 100%;
  line-height: 100px;
  color: #6a6565;
  font-weight: bold;
}

.header .container .nav .item.active {
  background-color: #2087f0;
  color: #fffefe;
}

.header .container .nav .item.active:hover {
  color: #fffefe;
}

.header .container .nav .item:hover {
  color: #2087f0;
}

.inner-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 550px;
}

.inner-banner .text .cn {
  font-size: 46px;
  line-height: 46px;
  color: #fff;
  font-weight: bold;
}

.inner-banner .text .en {
  font-size: 60px;
  line-height: 60px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.5);
}

.com-more {
  width: 160px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  background-color: #2087f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.com-more i {
  display: inline-block;
  margin-left: 16px;
  font-size: 12px;
  zoom: 0.5;
}

.com-title {
  text-align: center;
  font-size: 36px;
  line-height: 36px;
  color: #333;
}

.com-title span {
  position: relative;
}

.com-title span:before, .com-title span:after {
  content: '';
  position: absolute;
  width: 36px;
  height: 2px;
  background-color: #2087f0;
  top: 50%;
}

.com-title span:before {
  left: -60px;
}

.com-title span:after {
  right: -60px;
}

.n-list {
  margin-top: 60px;
  display: flex;
}

.n-list .item {
  width: 23.5%;
  margin-right: 2%;
  display: block;
}

.n-list .item:nth-child(4n) {
  margin-right: 0;
}

.n-list .item .pic {
  width: 100%;
  overflow: hidden;
}

.n-list .item .pic img {
  width: 100%;
  transition: transform .5s ease-out;
  -webkit-transition: transform .5s ease-out;
  -moz-transition: transform .5s ease-out;
}

.n-list .item .info-box {
  padding: 24px 20px;
  background-color: #fff;
}

.n-list .item .info-box .title {
  color: #333;
  font-size: 20px;
  font-weight: bold;
}

.n-list .item .info-box .desc {
  font-size: 16px;
  line-height: 30px;
  color: #666;
  margin-top: 15px;
}

.n-list .item .info-box .date-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}

.n-list .item .info-box .date-box .date {
  font-size: 26px;
  color: #999;
  font-family: "Dinb";
}

.n-list .item .info-box .date-box i {
  font-size: 12px;
  color: #2087f0;
  display: none;
  zoom: 0.5;
}

.n-list .item:hover .pic img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}

.n-list .item:hover .info-box .title {
  color: #2087f0;
}

.n-list .item:hover .info-box .date-box .date {
  color: #2087f0;
}

.n-list .item:hover .info-box .date-box i {
  display: block;
}

.footer {
  background-color: #EAEAEA;
}

.footer .tops {
  padding: 50px 0;
}

.footer .tops .container {
  display: flex;
  justify-content: space-between;
}

.footer .tops .container .nav {
  width: 55%;
  display: flex;
  justify-content: space-between;
  border-right: 1px solid #ccc;
  padding-right: 6%;
  padding-bottom: 30px;
}

.footer .tops .container .nav .items-box .tt {
  font-size: 16px;
  font-weight: bold;
}

.footer .tops .container .nav .items-box .items {
  margin-top: 10px;
}

.footer .tops .container .nav .items-box .items .item {
  font-size: 14px;
  line-height: 32px;
  display: block;
  color: #333;
}

.footer .tops .container .right {
  width: 45%;
  display: flex;
  padding-left: 6%;
}

.footer .tops .container .right .code {
  width: 147px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.footer .tops .container .right .code img {
  width: 100%;
  border: 1px solid #ccc;
}

.footer .tops .container .right .code p {
  margin-top: 10px;
}

.footer .tops .container .right .lines {
  margin-left: 40px;
}

.footer .tops .container .right .lines .line {
  font-size: 16px;
  line-height: 38px;
}

.footer .tops .container .right .lines .line img {
  width: 18px;
  margin-right: 6px;
}

.footer .bottoms {
  height: 80px;
  border-top: 1px solid #ccc;
}

.footer .bottoms .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.m-header, .m-cover {
  display: none;
}

.pages-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}

.pages-box .item {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  display: block;
  margin: 0 6px;
}

.pages-box .item.prevNext {
  width: 70px;
}

.pages-box .item.active {
  background-color: #2087f0;
  color: #fff;
  border: 1px solid #2087f0;
}
