/* CSS Document */
@font-face {
  font-family: 'DINAlternate';
  src: url('../fonts/DIN-Bold.woff') format('woff');
  font-style: normal;
  font-weight: bold;
  text-rendering: optimizeLegibility;
  font-display: swap;
}

/* @font-face {
    font-family: 'PingFangSC-Regular';
    src: url('../fonts/PingFangSC-Regular.woff') format('woff');
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
	font-display: swap;
} */
.wrap {
  width: 94%;
  max-width: 1700px;
  padding: 0 15px;
  margin: 0 auto;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  transition: all .5s;
}

.header .wrap {
  width: 95%;
  max-width: 1630px;
  min-width: 320px;
  padding: 0 .3rem;
  margin: 0 auto;
}

.logo {
  float: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100px;
  transition: all .3s;
}

.logo a {
  display: block;
}

.logo img {
  height: 60px;
  transition: all .3s;
}

.nav {
  float: right;
}

.navBox {
  margin: 0 auto;
}

.navList {
  list-style: none;
  margin: 0;
  text-align: right;
}

.navList>li {
  display: inline-block;
  vertical-align: top;
  padding: 0 2vw;
  text-align: center;
  position: relative;
}

.navList>li:last-child {
  padding-right: 0;
}

.navList>li>a {
  display: block;
  line-height: 100px;
  font-size: 16px;
  color: #FFFFFF;
  position: relative;
  transition: all .3s;
}

.navList>li>a>i {
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 7px;
  background: url(../images/ico1.png) center center no-repeat;
  background-size: cover;
  margin-left: 5px;
  display: none;
}

.navList>li.dropdown>a>i {
  display: inline-block;
  transform: rotate(-90deg);
  visibility: hidden;
}

.navList>li>a::before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0%;
  border-bottom: 20px solid #FFFFFF;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
  z-index: 5;
}

.navSub {
  position: absolute;
  left: -100px;
  top: calc(100% - 20px);
  width: 770px;
  padding: 20px 20px 15px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  min-height: 360px;
  z-index: 2;
}

.navList2 {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding: .2rem;
  background: url(../images/navBg.png) right 5% bottom 10% #FFFFFF no-repeat;
  background-size: 100px auto;
  border-radius: .1rem;
  box-shadow: 0px 19px 49px 12px rgba(0, 0, 0, 0.13);
}

.navList2>li {
  width: 33.33%;
  font-weight: normal;
  border-left: 1px solid rgba(88, 94, 98, .11);
  border-right: 1px solid rgba(88, 94, 98, .11);
}

.navList2>li:first-child {
  border-left: none;
}

.navList2>li:last-child {
  border-right: none;
}

.nav2Top {
  display: flex;
  align-items: center;
  padding: 5px 10%;
  margin: .1rem 0 .2rem;
}

.nav2Ico {
  max-width: 20%;
  flex-shrink: 0;
}

.nav2Ico img {
  max-width: 100%;
  height: auto;
}

.nav2Tit {
  margin-left: 5%;
  flex: 1;
}

.nav2Tit p {
  font-size: 16px;
  color: #0046A7;
  font-weight: bold;
}

.nav2Tit span {
  font-size: 12px;
  color: #ACBEC5;
}

.navThr {
  list-style: none;
  font-size: 15px;
  color: #2F2F2F;
  padding: 0 5%;
  max-height: 200px;
}

.navThr li {
  margin: 5px 0;
}

.navThr li a {
  display: block;
  color: #2F2F2F;
  line-height: 26px;
  padding: 3px 5%;
  transition: all .5s;
}

.navThr li a:hover {
  color: #0046A7;
  transform: translateX(5px);
}

.navList>li.dropdown:hover a::before {
  opacity: 1;
  visibility: visible;
  transition: all .3s;
}

.navList>li.dropdown:hover>a>i {
  transform: rotate(0);
  visibility: visible;
  transition: all .4s;
}

.navList>li:hover .navSub {
  opacity: 1;
  visibility: visible;
  transition: all .3s;
}

.navList>li.active>a {
  color: #3789BD;
}

.last .navSub {
  left: auto;
  right: -100px;
}

.navRig {
  float: right;
  text-align: right;
  line-height: 80px;
  color: #FFFFFF;
  font-size: 0;
  transition: all .3s;
}

.navRig li {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  position: relative;
  padding: 0 1vw;
}

.navRig a,
.navRig i,
.navRig span {
  display: inline-block;
  vertical-align: middle;
  color: #FFFFFF;
  line-height: 36px;
}

.navRig li.navBtn {
  cursor: pointer;
  display: none;
}

.navBtn span {
  width: 25px;
  height: 30px;
  position: relative;
  margin-left: 5px;
}

.navBtn span b {
  display: block;
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  position: absolute;
  left: 0;
  top: calc((100% - 4px) / 2);
  transition: all .3s;
}

.navBtn span b:nth-child(1) {
  transform: translateY(8px) rotate(0deg);
}

.navBtn span b:nth-child(3) {
  transform: translateY(-8px) rotate(0deg);
}

.navBtn.active b:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.navBtn.active b:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.navBtn.active b:nth-child(2) {
  opacity: 0;
}

.header.no-show {
  transform: translateY(-100%);
}

.header.whiteBg,
.header.header2 {
  background: #FFFFFF;
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1) inset;
}

.header.whiteBg .logo .shows,
.header.header2 .logo .shows {
  display: none;
}

.header.whiteBg .logo .hides,
.header.header2 .logo .hides {
  display: block;
}

.header.whiteBg .navList>li>a,
.header.header2 .navList>li>a {
  color: #333333;
}

.header.whiteBg .navList>li>a>i,
.header.header2 .navList>li>a>i {
  background-image: url(../images/ico2.png);
}

.header.whiteBg .navBtn span b,
.header.header2 .navBtn span b {
  background: #0079FF;
}

.header.whiteBg .navList>li.active>a {
  color: #3789BD;
}

.mainBg {
  position: relative;
  z-index: 2;
  background-color: #FFFFFF;
}

.grayBg {
  background-color: #F8F8F8;
  background-image: none;
}

.whiteBg {
  background-color: #FFFFFF;
  background-image: none;
}

.text-center {
  text-align: center;
}

.footBg {
  background: #3789BD;
  color: #FFFFFF;
  line-height: 30px;
  position: relative;
  z-index: 1;
  padding: .1rem 0 .2rem 0;
}

.footBg a {
  color: #FFFFFF;
}

.footBg a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footBg .wrap {
  width: 90% !important;
  /* font-size: 17px; */
}

.ftTop {
  width: 68%;
}

.ftTop img {
  max-width: 100%;
  height: auto;
}

.ftLef {
  float: left;
  /* width: 30%; */
  margin-top: 4%;
}

.ftLogo {
  max-width: 176px;
  width: 40%;
  margin-bottom: .4rem;
}

.ftLogo a {
  display: block;
}

.ftLogo img {
  max-width: 100%;
  height: auto;
}

.ftCon {
  /* line-height: 200%; */
  /* font-size: 17px; */
}

.ftNav {
  float: left;
  width: calc(100% - 245px);
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  line-height: 200%;
  margin-top: 4%;
}

.ftNav li {
  width: 25%;
  padding-right: 15px;
}

.ftNav li:nth-child(2) {
  /* padding-left: 10%; */
}

.ftNav li:last-child {
  padding-right: 0;
  /* padding-left: 15%; */
}

.ftTit {
  font-size: 22px;
  line-height: 180%;
  margin-bottom: .3rem;
  font-weight: normal;
}

.ftText p {
  margin: 5px 0;
}

.ftText p a {
  color: #FFFFFF;
}

.ftRig {
  float: right;
  width: 220px;
  padding-left: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .8rem;
}

.ftIco {
  list-style: none;
}

.ftIco li {
  position: relative;
  vertical-align: middle;
}

.ftIco li:first-child {
  margin-top: 0;
}

.ftIco li:nth-child(2) {
  padding: .2rem 0;
}

.ftIco li span {
  display: block;
  padding-left: 28px;
  line-height: 30px;
  background-repeat: no-repeat;
  background-position: left center;
  cursor: pointer;
  transition: all .3s;
}

.ftIco1 {
  background-image: url(../images/ftIco1.png);
}

.ftIco2 {
  background-image: url(../images/ftIco2.png);
}

.ftIco3 {
  background-image: url(../images/ftIco3.png);
}

.ftIco4 {
  background-image: url(../images/ftIco4.png);
}

.ftIco li span:hover,
.ftIco li.active span {
  padding-left: 32px;
}

.wechat {
  width: 120px;
  flex-shrink: 0;
}

.wechat img {
  width: 100%;
  height: auto;
}


.copyright {
  text-align: center;
  font-size: 15px;
  border-top: 1px solid #FFFFFF;
  padding: .2rem 0 0;
  margin-top: .2rem;
}


.boxTit {
  font-weight: bold;
}

.boxTitCn {
  font-size: 36px;
  color: #00031B;
  line-height: 140%;
  font-family: PingFangSC-Semibold, PingFang SC;
}

.boxTitEn {
  font-size: 24px;
  color: #0159D4;
  line-height: 140%;
  text-transform: uppercase;
}


.banIn {
  height: 640px;
  position: relative;
}

.banIn .imgBg {
  display: block;
  width: 100%;
  height: 100%;
}

.banIn2,
.banIn .imgBg {
  height: 670px;
}

.banIn2 .banText {
  padding-top: .3rem;
}

.banH2 {
  font-size: 40px;
  line-height: 180%;
  font-weight: normal;
  font-family: PingFangSC-Regular, PingFang SC;
}

.banP {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  overflow: hidden;
}

.banP span {
  display: inline-block;
  vertical-align: middle;
  padding: 0 .3rem;
  position: relative;
}

.banP span::before,
.banP span::after {
  display: block;
  content: "";
  width: 1.5rem;
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  top: 50%;
}

.banP span::before {
  right: 100%;
}

.banP span::after {
  left: 100%;
}

.banIn3,
.banIn3 .imgBg {
  height: 540px;
}

.banIn3 .banText {
  padding-top: 1rem;
}

.ban3P1 {
  font-size: 30px;
  font-weight: normal;
}

.ban3P1 span {
  opacity: .66;
  margin-left: .1rem;
}

.ban3P2 {
  font-size: 12px;
  line-height: 20px;
}

.ban3P3 {
  font-size: 12px;
  line-height: 20px;
  font-weight: normal;
  -webkit-line-clamp: 2;
}

.banLine {
  display: block;
  width: .36rem;
  height: .04rem;
  margin: .1rem auto;
  background: rgba(1, 89, 212, 0.65);
}

.banIn4,
.banIn4 .imgBg {
  height: 780px;
  max-height: 80vh;
}

.banIn5,
.banIn5 .imgBg {
  height: 640px;
  max-height: 80vh;
}

.banIn5 .banText {
  padding-top: 1rem;
}

.ban5P1 {
  font-size: 40px;
  line-height: 160%;
  margin: .1rem 0;
  font-weight: normal;
}

.ban5Line {
  display: block;
  width: .87rem;
  height: .02rem;
  background-color: #FFFFFF;
  margin: .1rem 0;
}

.ban5P2 {
  font-size: 24px;
  line-height: 160%;
  margin: .1rem 0;
  font-weight: normal;
}

.ban5P3 {
  font-size: 16px;
  line-height: 180%;
  margin: .4rem 0;
  font-weight: normal;
  max-width: 600px;
  -webkit-line-clamp: 4;
}

.ban5More {
  display: block;
  width: 120px;
  line-height: 40px;
  background-color: #3F9EDB;
  color: #FFFFFF;
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  margin: .2rem 0;
  transition: all .4s;
}

.ban5More:hover {
  transform: translateY(-5px);
  box-shadow: 2px 2px 1px #9ed9ff;
}

.banBotBg {
  background: rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
  line-height: 30px;
  padding: .2rem 0;
  margin-top: -70px;
}

.breadcrumb {
  list-style: none;
  text-align: right;
  background: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  font-size: 0;
  color: #AAAAAA;
}

.breadcrumb li {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  vertical-align: middle;
  padding: 0;
  position: relative;
}

.breadcrumb li a {
  display: block;
  color: #999999;
}

.breadcrumb li+li:before {
  display: none;
}

.breadcrumb li+li+li {
  padding-left: 14px;
  margin-left: 6px;
}

.breadcrumb li+li+li:before {
  display: block;
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  color: #999999;
}

.breadcrumb li.active {
  color: #FFFFFF;
}

.breadcrumb li a:hover {
  color: #FFFFFF;
}

.sortBg {
  position: absolute;
  left: 49.5%;
  top: 0%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  max-width: 1060px;
  background-color: #FFFFFF;
  box-shadow: 0px 16px 40px 9px rgba(0, 0, 0, 0.13);
  border-radius: 11px;
}

.sortList {
  list-style: none;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.sortList li {
  position: relative;
  width: 33.33%;
}

.sortList li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: .4rem .1rem;
  border-radius: 7px;
  font-size: 14px;
  line-height: 24px;
  color: #0046A7;
  position: relative;
}

.sortList li a::before {
  display: block;
  content: "";
  height: .5rem;
  width: 1px;
  background-color: #ACBEC5;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sortList li a::after {
  display: none;
  content: "";
  width: 35px;
  height: 35px;
  background: url(../images/sortIco.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 95%;
  transform: translate(-50%, -100%);
  opacity: 0;
  visibility: hidden;
}

.sortList li:first-child a::before {
  display: none;
}

.sortList li a img {
  max-width: .4rem;
  height: auto;
  margin: 0 auto .1rem;
}

.sortTit {
  font-size: 14px;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: 600;
}

.sortTitEn {
  font-size: 12px;
  color: #ACBEC5;
}

.sortList li a:hover img.shows {
  animation: swing 1s linear;
}

.sortList li.active a {
  height: 120%;
  top: -10%;
  background-color: #0078FF;
  color: #FFFFFF;
}

.sortList li.active a::after {
  opacity: 1;
  visibility: visible;
}

.sortList li.active .sortTitEn {
  color: #FFFFFF;
}

.sortList li.active img.shows {
  display: none;
}

.sortList li.active img.hides {
  display: block;
}

.sortList li.active a::before,
.sortList li.active+li a::before {
  display: none;
}


.page {
  text-align: center;
  margin: .6rem 0;
  font-size: 0;
}

.page a,
.page span {
  display: inline-block;
  vertical-align: middle;
  width: 42px;
  height: 42px;
  line-height: 42px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  margin: .02rem;
}

.page a.active,
.page span.active {
  background-color: #2B82BC;
  color: #FFFFFF;
  cursor: no-drop;
}

.page a:not(.active):hover {
  background-color: #2B82BC;
  color: #FFFFFF;
}

.tip {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #FFFFFF;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 20;
  line-height: 30px;
  padding: .1rem .2rem;
}

.anchor{ display: block; padding-top: 100px;margin-top: -100px;}
.anchor {
  display: block;
  /* padding-top: 1rem; */
}

@media (min-width:1200px) {
  .navSub {
    display: block !important;
  }
}

@media (max-width:1600px) {
  .ftRig {
    margin-top: 0.5rem;
  }

  body {
    font-size: 14px;
  }

  .wrap {
    max-width: 1230px;
  }

  .logo {
    height: 80px;
  }

  .logo img {
    height: 50px;
  }

  .navList>li>a {
    line-height: 80px;
  }

  .navSub {
    width: 740px;
  }

  .navList2 {
    padding: .2rem .1rem;
  }

  .nav2Ico {
    max-width: 15%;
  }

  .ftTit {
    font-size: 18px;
  }

  .copyright {
    font-size: 14px;
  }

  .boxTitCn {
    font-size: 30px;
  }

  .boxTitEn {
    font-size: 20px;
  }

  .banIn,
  .banIn .imgBg {
    height: 540px;
  }

  .page a,
  .page span {
    width: 34px;
    height: 34px;
    line-height: 34px;
  }

  .banH2 {
    font-size: 32px;
  }

  .banP {
    font-size: 14px;
  }

  .sortList li a {
    padding: .3rem .1rem;
  }

  .sortList li a::after {
    width: 30px;
    height: 30px;
  }

  .banIn5 .banText {
    padding-top: 80px;
  }

  .ban5P1 {
    font-size: 32px;
  }

  .ban5Line {
    margin: 5px 0;
  }

  .ban5P2 {
    font-size: 20px;
  }

  .ban5P3 {
    font-size: 14px;
    margin: .2rem 0;
  }

  /* .anchor {
    padding-top: 80px;
    margin-top: -80px;
  } */
}

@media (max-width:1400px) {

  .navRig a,
  .navRig i,
  .navRig span {
    font-size: 14px;
  }

  .navBtn span b:nth-child(1) {
    transform: translateY(6px) rotate(0deg);
  }

  .navBtn span b:nth-child(3) {
    transform: translateY(-6px) rotate(0deg);
  }

  .banIn,
  .banIn .imgBg {
    height: 480px;
  }

  .breadcrumb li {
    font-size: 14px;
  }
}

@media (max-width:1223px) {
  .footBg .foot_right {
    width: 100%;
    margin-top: 0.5rem;
    padding-left: 7%;
  }
}

@media (max-width:1200px) {
  .footBg .foot_right {
    margin-top: 0.5rem;
    padding-left: 0;
  }

  .navBg {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #457AE6;
    opacity: .8;
    z-index: 2;
    transition: all .5s;
  }

  .navBox {
    position: fixed;
    right: -66%;
    top: 0;
    height: 100vh;
    width: 66%;
    background: #FFFFFF;
    overflow: hidden;
    z-index: 2;
    transition: all .5s;
  }

  .navList {
    text-align: left;
    height: calc(100% - 80px);
    overflow-y: auto;
    display: block;
  }

  .navList>li {
    display: block;
    padding: 0;
    margin: 0;
    text-align: left;
  }

  .navList>li>a {
    color: #333333;
    height: auto;
    line-height: 46px;
    padding: 0 .3rem;
    border-bottom: 1px solid #f2f2f2;
  }

  .navList>li>a::before {
    display: none;
  }

  .navList>li>a:after {
    height: 1px;
    background: #457AE6;
  }

  .navList>li>a>i {
    float: right;
    width: 46px;
    height: 46px;
    background: url(../images/ico2.png) center center no-repeat;
  }

  .navList>li.dropdown>a>i {
    visibility: visible;
    transform: rotate(0);
  }

  .navList>li.active>a {
    color: #457AE6;
  }

  .navList>li.cur>a,
  .navList>li>a.cur {
    color: #457AE6;
  }

  .navList>li.dropdown:hover>a>i {
    transform: rotate(-180deg);
  }

  .navList>li.cur>a>i,
  .navList>li>a.cur>i {
    transform: rotate(-180deg);
    transition: all .3s;
  }

  .navList>li:hover .navSub {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
  }

  .navSub {
    width: 100%;
    min-width: 0;
    position: static;
    transform: none;
    padding: .2rem .2rem .2rem .5rem;
    border-top-width: 1px;
    margin: 0;
    opacity: 1;
    visibility: visible;
    display: none;
    transition: none;
    background: #F0F0F0;
    box-shadow: none;
    min-height: 0;
  }

  .navSub:after {
    display: none;
  }

  .navList2 {
    display: block;
    padding: 0;
    background-color: transparent;
    background-size: 20% auto;
    background-position: right 5% bottom .3rem;
    box-shadow: none;
  }

  .navList2>li {
    padding: 0;
    padding-bottom: .2rem;
    margin-bottom: .2rem;
    width: 100%;
    border: none;
    border-bottom: 1px dashed rgba(88, 94, 98, .11);
  }

  .navList2>li>a {
    padding: 0;
    font-size: 15px;
    color: #666666;
  }

  .navList2>li>a:after {
    margin: 2px 0;
  }

  .nav2Top {
    padding: 5px 0;
  }

  .nav2Ico {
    max-width: 10%;
  }

  .nav2Tit {
    margin-left: .2rem;
  }

  .nav2Tit p {
    font-size: 15px;
  }

  .navThr {
    padding: 0;
  }

  .navThr li a {
    padding: 0;
  }

  .navRig {
    line-height: 80px;
  }

  .navRig li.navBtn {
    display: inline-block;
  }

  .navTop {
    height: 80px;
    background: #457AE6;
    padding: 0 .3rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .navClose {
    width: 25px;
    height: 30px;
    position: relative;
    cursor: pointer;
    margin-right: 10px;
  }

  .navClose span {
    display: block;
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    position: absolute;
    left: 0;
    top: calc((100% - 4px) / 2);
    transition: all .3s;
  }

  .navClose span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
  }

  .navClose span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
  }

  .navClose span:nth-child(2) {
    opacity: 0;
  }

  .header.whiteBg .navList>li>a,
  .header.header2 .navList>li>a {
    line-height: 46px;
    padding: 0 .3rem;
    font-weight: normal;
  }

  .header.whiteBg .navList>li.active>a,
  .header.header2 .navList>li.active>a {
    color: #457AE6;
  }

  .navBg.active,
  .navBox.active {
    right: 0;
  }

  .navBox.active {
    box-shadow: -1px 0 5px #457AE6;
  }

  /* .banner.active,.mainBg.active,.footBg.active,.banIn.active,.banBotBg.active{ transform:translateX(-60%);} */


  .ftTop {
    margin: 0 auto .2rem;
    display: none;
  }

  .ftLef
 {
    float: none;
    width: 100%;
  }
  .ftNav,
  .ftRig {
    float: none;
  }
  .ftNav{
    width: 70%;
  }
  .ftRig{
    width: 30%;
    margin-left: 1rem;
  }
  .foot_newInfo{
    display: flex;
    align-items: center;
  }

  .ftLogo {
    margin: 0 auto .2rem;
  }

  .ftNav {
    justify-content: space-between;
  }

  .ftNav li {
    margin: .2rem 0;
  }

  .ftTit {
    margin-bottom: .1rem;
  }

  .ftRig {
    justify-content: flex-start;
    margin-top: .2rem;
    padding-left: 0;
  }

  .ftIco {
    margin-right: .3rem;
  }

  .banIn,
  .banIn .imgBg {
    height: 420px;
  }

  .sortBg {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    max-width: 100%;
  }

  .sortList li a::after {
    width: 24px;
    height: 24px;
  }

  .sortList li.active a {
    height: 110%;
    top: -5%;
  }

  .ban5P1 {
    font-size: 24px;
    margin: 0 0 .1rem;
  }

  .ban5P2 {
    font-size: 18px;
  }

  .ban5P3 {
    font-size: 12px;
  }

}
@media (max-width:1000px){
  .ftLef,.ftNav,.ftRig
 {
    float: none;
    width: 100%;
  }
  .foot_newInfo{
    display: block;
  }
  .ftRig{
    margin-left:0;                                                  
  }
}
@media (max-width:991px) {
  .wrap {
    width: 100%;
    padding: 0 .3rem;
  }

  .header .wrap {
    padding: 0 15px;
  }

  .logo {
    height: 60px;
    width: 145px;
    overflow: hidden;
  }

  .logo img {
    height: 44px;
  }

  .navRig {
    line-height: 60px;
  }

  .navRig {
    margin: 0 -.06rem;
  }

  .navRig li {
    padding: 0 .06rem;
  }

  .navRig a,
  .navRig i,
  .navRig span {
    line-height: 34px;
  }

  .searchInput {
    height: 34px;
    line-height: 34px;
  }

  .searchIco {
    background-size: 20px auto;
  }

  .navRig li.navTel {
    padding: 0 10px;
  }

  .navTel {
    height: 34px;
    line-height: 34px;
    margin-left: 15px;
  }

  .navTel span {
    display: none;
  }

  .navTop {
    height: 60px;
  }

  .navList {
    height: calc(100% - 60px);
  }

  .navList>li>a {
    font-size: 15px;
  }

  .navList2 li a {
    font-size: 14px;
  }

  .ftNav {
    display: block;
  }

  .ftNav li {
    min-width: 100%;
    padding: 0;
  }

  .ftTit {
    font-size: 16px;
  }

  .ftText {
    margin: 0 -3px;
  }

  .ftText p {
    display: inline-block;
    vertical-align: middle;
    padding: 0 3px;
    margin: 0;
  }

  .page {
    margin: .5rem 0;
  }

  .page a,
  .page span {
    width: .4rem;
    height: .4rem;
    line-height: .38rem;
  }

  .boxTitCn {
    font-size: 24px;
  }

  .boxTitEn {
    font-size: 16px;
  }

  .banIn,
  .banIn .imgBg {
    height: 380px;
  }

  .anchor {
    padding-top: 60px;
    margin-top: -60px;
  }
}

@media (max-width:767px) {
  .header .wrap {
    width: 100%;
  }

  .header.whiteBg .navRig span.navLangBtn:after,
  .header.header2 .navRig span.navLangBtn:after {
    border-top-color: #CCCCCC;
  }

  .banIn,
  .banIn .imgBg {
    height: 3.8rem;
  }

  .banH2 {
    font-size: .32rem;
  }
}

@media (max-width:640px) {
  .navRig li.navSearch {
    display: none;
  }

  .searchBox {
    max-width: 100%;
    width: 100%;
  }

  .searchInput {
    height: 44px;
    line-height: 24px;
    padding: 10px 80px 10px 40px;
  }

  .searchBtn {
    line-height: 44px;
    width: 70px;
  }

  .searchIco {
    background-size: 28px auto;
    width: 28px;
    height: 28px;
    margin-top: -14px;
  }

  .ftCon {
    display: block;
  }

  .ftCon li {
    width: 100%;
  }

  .ftNav {
    display: block;
    text-align: left;
  }

  .ftNav li {
    padding-left: 0;
  }

  .ftNav .ftTit {
    margin-bottom: 0;
  }

  .ftLink {
    margin: 0 -.1rem;
  }

  .ftLink p {
    display: inline-block;
    vertical-align: middle;
    padding: 0 .1rem;
  }

  .banIn,
  .banIn .imgBg {
    height: 3.6rem;
  }

  .banIn .banText {
    padding-top: 50px;
  }

  .ban3P1 {
    font-size: .32rem;
  }

  .page a,
  .page span {
    width: .5rem;
    height: .5rem;
    line-height: .48rem;
    margin: .1rem .02rem;
  }

  .ban5P1 {
    font-size: 18px;
    text-align: center;
  }

  .ban5P2 {
    font-size: 14px;
    text-align: center;
  }

  .ban5P3 {
    -webkit-line-clamp: 2;
    display: none;
  }

  .ban5Line {
    margin: 5px auto;
  }

  .ban5More {
    width: 100px;
    line-height: 34px;
    font-size: 14px;
    margin: 0 auto;
  }
}

@media (max-width:460px) {
  .logo {
    height: 50px;
    width: 120px;
  }

  .logo img {
    height: 35px;
  }

  .navRig {
    line-height: 50px;
  }

  .navBtn span {
    width: 20px;
  }

  .navTop {
    height: 50px;
  }

  .searchInput {
    font-size: 14px;
  }

  .navTel {
    height: 30px;
    line-height: 30px;
  }

  .navTel a {
    line-height: 30px;
  }

  .footBg {
    line-height: 24px;
  }

  .footTop {
    display: block;
  }

  .ftLogo {
    margin: .2rem auto;
  }

  .ftShare {
    text-align: center;
    margin: .2rem 0;
  }

  .ftTit {
    font-size: 15px;
  }

  .copyright {
    font-size: 12px;
  }

  .boxTitCn {
    font-size: 20px;
  }

  .boxTitEn {
    font-size: 14px;
  }

  .breadcrumb li {
    font-size: 12px;
  }

  .sortList li a {
    font-size: 12px;
  }

  .sortList li a::after {
    display: none;
  }

  .banP {
    font-size: 12px;
  }

  .ban5P1 {
    font-size: 16px;
  }

  .ban5P2 {
    font-size: 12px;
  }

  .anchor {
    padding-top: 50px;
    margin-top: -50px;
  }

  .smartyCity-header {
    height: 340px;
  }
  .smartyCity-header .imgBg{
    height: 3.6rem;
  }

}