@charset "UTF-8";
.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.regular {
  font-family: "regular";
}
.medium {
  font-family: "medium";
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 一行省略溢出显示省略号*/
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.ss span {
  position: relative;
  z-index: 1;
}
.ss i {
  display: block;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
}
.ss i:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.ss i:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}
.ss:hover i {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
.ss:hover i:after {
  -moz-animation: anim-out-pseudo 0.75s;
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
.linear {
  transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
}
.ease {
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.ease-in {
  transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
}
.ease-out {
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
}
@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-moz-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-ms-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes fadeOfOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.coverbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@font-face {
  font-family: "Mont-R";
  src: url('../fonts/Montserrat-Regular.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mont-SB";
  src: url('../fonts/Montserrat-SemiBold.otf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-L";
  src: url('../fonts/Poppins-Light.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-R";
  src: url('../fonts/Poppins-Regular.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Din-B";
  src: url('../fonts/D-DIN-PRO-700-Bold.otf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.wrap {
  width: var(--mainWid);
  margin: 0 auto;
}
.padding {
  padding: var(--padding) 0;
}
.pt120 {
  padding-top: var(--padding);
}
.pb120 {
  padding-bottom: var(--padding);
}
.mt120 {
  margin-top: var(--padding);
}
.mb120 {
  margin-bottom: var(--padding);
}
.Phone-Box {
  display: none;
}
.tabContent {
  display: none;
}
.tab li {
  cursor: pointer;
}
.tabContent2 {
  display: none;
}
.tab2 li {
  cursor: pointer;
}
@media (max-width: 1004px) {
  .wrap {
    padding: 0 var(--offset);
  }
  .PC-Box {
    display: none;
  }
  .Phone-Box {
    display: block;
  }
}
.headDiv {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.92rem;
  background: #fff;
  z-index: 5;
}
.headDiv .wrap {
  height: 0.92rem;
  position: relative;
}
.headDiv .headDiv-logo {
  position: absolute;
  left: 0;
  top: 0.23rem;
  z-index: 1;
}
.headDiv .headDiv-logo img {
  display: block;
  width: 1.81rem;
}
.headDiv .topRight {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -19px;
  z-index: 1;
}
.headDiv .btnDiv {
  margin-right: 0.3rem;
  display:none;
}
.headDiv .btnDiv a {
  display: block;
  width: 120px;
  height: 38px;
  border-radius: 4px;
  background: #fd6f00;
  font-size: var(--fs14);
  line-height: 38px;
  color: #fff;
  text-align: center;
}
.headDiv .btnDiv a:hover {
  background: #00aeef;
}
.headDiv .links li {
  float: left;
  font-size: var(--fs14);
  margin-right: 0.2rem;
}
.headDiv .links li a {
  display: block;
  position: relative;
  padding-left: 30px;
  line-height: 38px;
  color: #00a1ed;
  font-family: 'Poppins-L';
}
.headDiv .links li a:hover {
  color: #fd6f00;
}
.headDiv .links li img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -11px;
}
.headDiv .searchDiv {
  width: 1.5rem;
  height: 38px;
  background: #f6f6f6;
  border-radius: 36px;
}
.headDiv .searchDiv .input1 {
  width: 100%;
  height: 38px;
  line-height: 38px;
  padding-left: 0.4rem;
  font-family: 'Poppins-L';
  font-size: 14px;
  background: url(../img/nimg19_1on.png) 10px center no-repeat;
  background-size: 0.19rem;
}
.headDiv .topSearch {
  width: 38px;
  height: 38px;
}
.headDiv .topSearch em {
  display: block;
  position: relative;
  width: 38px;
  height: 38px;
  cursor: pointer;
  background: url(../img/nimg19_1on.png) center no-repeat;
}
.headDiv.ny:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #eee;
}
.nav {
  position: absolute;
  left: 2.1rem;
  top: 0;
  height: 0.92rem;
  z-index: 5;
}
.nav li {
  position: relative;
  float: left;
  padding: 0 0.15rem;
  font-size: var(--fs16);
}
.nav li a {
  display: block;
  height: 0.92rem;
  line-height: 0.92rem;
  color: #00a1ed;
  text-align: center;
}
.nav li a:hover {
  color: #ee780f;
}
.nav li .aNow,
.nav li .aNow1 {
  color: #ee780f;
}
.sNav {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 1.02rem;
  width: 2rem;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.1);
  z-index: -1;
  transition: All 0.8s ease;
  -webkit-transition: All 0.8s ease;
  -moz-transition: All 0.8s ease;
  -o-transition: All 0.8s ease;
}
.sNav .lie {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.sNav .lie li {
  position: relative;
  font-size: var(--fs16);
  border-bottom: rgba(51, 51, 51, 0.1) solid 1px;
}
.sNav .lie li:last-child {
  border-bottom: none;
}
.sNav .lie li a {
  display: flex; 
  display: -webkit-flex; 
  align-items: center; 
  -webkit-align-items: center; 
  justify-content: center; 
  -webkit-justify-content: center;
  height: 0.7rem;
  padding:0 0.2rem;
  text-align: center;
  color: #666;
}
.sNav .lie li a:hover {
  background: none;
  color: #ee780f;
}
.sNav .lie li .mouse {
  display: none;
  position: absolute;
  left: 2rem;
  top: 0;
  width: 2rem;
  padding: 0.2rem 0 0.4rem;
  background: rgba(255, 255, 255, 0.95);
  border: #ddd solid 1px;
}
.sNav .lie li .mouse dd {
  font-size: var(--fs14);
  padding: 0 0.1rem 0.2rem 0.2rem;
}
.sNav .lie li .mouse dd:last-child {
  padding-bottom: 0;
}
.sNav .lie li .mouse dd a {
  display: block;
  height: auto;
  line-height: 0.24rem;
  color: #666;
  text-align: left;
  text-decoration: none;
}
.sNav .lie li .mouse dd a:hover {
  color: #fd6f00;
}
.sNav .lie li.liNow a {
  color: #fd6f00;
}
.sNav .lie li.liNow .mouse {
  display: block;
}
.sNav.on {
  opacity: 1;
  visibility: visible;
  top: 0.92rem;
  z-index: 5;
}
.navIco {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 1rem;
  height: 1.2rem;
  background: url(../img/navIco.png) center no-repeat;
  background-size: 0.4rem;
}
.navLayer {
  overflow-x: auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
  z-index: 20;
  right: -100%;
  top: 0;
}
.navLayer .bg {
  overflow-x: auto;
  position: relative;
  background: #fff;
  height: 100%;
  width: 100%;
}
.navLayer .toptop {
  height: 1.2rem;
  position: relative;
  border-bottom: #d6d6d6 solid 1px;
}
.navLayer .form {
  position: absolute;
  left: 0.3rem;
  top: 0.2rem;
  width: 80%;
  height: 0.8rem;
  border-radius: 0.48rem;
  overflow: hidden;
  background: #eee;
}
.navLayer .form .input1 {
  width: 100%;
  height: 0.8rem;
  line-height: 0.8rem;
  padding-left: 0.3rem;
  font-size: var(--fs14);
  background: none;
}
.navLayer .form .btn1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.8rem;
  height: 0.8rem;
  background: #fd6f00 url(../img/nimg20_1.png) center no-repeat;
  background-size: 16px;
  border-radius: 50%;
  z-index: 1;
  cursor: pointer;
}
.navLayer .closeBtn {
  position: absolute;
  right: 0;
  top: 0;
  width: 1rem;
  height: 1.2rem;
}
.navLayer .closeBtn img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -0.21rem;
  margin-left: -0.21rem;
  width: 0.42rem;
}
.sideNav {
  padding: 0 0.3rem 0.3rem;
}
.subNav {
  cursor: pointer;
  display: block;
  padding-left: 0.3rem;
  height: 1.1rem;
  line-height: 1.1rem;
  position: relative;
  font-size: var(--fs16);
  border-bottom: #d6d6d6 solid 1px;
}
.subNav a {
  display: block;
  color: #333;
}
.subNav1 {
  background: url(../img/nimg16_3.png) right center no-repeat;
  background-size: 16px;
  color: #333;
}
.subNav1 .name {
  position: relative;
}
.currentDt {
  color: #00aeef;
  background: url(../img/nimg16_3on.png) right center no-repeat;
  background-size: 16px;
}
.navContent {
  display: none;
}
.navContent a {
  display: block;
  height: 0.9rem;
  line-height: 0.9rem;
  color: #666;
  font-size: var(--fs14);
  padding-left: 0.3rem;
}
.navContent a.on {
  background: url(../img/nimg20_7.png) right center no-repeat;
  background-size: 10px;
}
.navContent .list {
  display: none;
  border-bottom: #d6d6d6 solid 1px;
}
.sideNav .list a {
  color: #666;
  font-size: var(--fs13);
  padding-left: 0.6rem;
}
.sideNav li .aNow {
  color: #00aeef;
  background: url(../img/nimg20_7on.png) right center no-repeat;
  background-size: 10px;
}
.head-search {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 59;
}
.head-search .search-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  max-width: 1200px;
  height: auto;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.head-search .search-box .box-cent {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  border-bottom: solid 1px #555;
}
.head-search .search-box .box-cent input {
  width: calc(100% - 60px);
  height: 50px;
  padding: 0 20px;
  font-size: var(--fs16);
  color: #fff;
  background: none;
}
.head-search .search-box .box-cent input::placeholder {
  color: #fff;
}
.head-search .search-box .box-cent .box-icon {
  display: block;
  width: 60px;
  height: 50px;
  text-align: right;
  line-height: 50px;
}
.head-search .search-box .box-cent .box-icon img {
  width: 22px;
  opacity: 0.8;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.head-search .search-box .box-cent .box-icon:hover img {
  opacity: 1;
}
.head-search .search-box .box-hiden {
  cursor: pointer;
  width: 24px;
  margin: 50px auto 0;
}
.head-search .search-box .box-hiden img {
  width: 100%;
  opacity: 0.6;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.head-search .search-box .box-hiden:hover img {
  opacity: 1;
}
@media (max-width: 1600px) {
  .nav li {
    padding: 0 0.1rem;
	font-size: var(--fs15);
  }
}
@media (max-width: 1440px) {
  .headDiv .btnDiv {
    margin-right: 0.2rem;
  }
  .headDiv .btnDiv a {
    width: 100px;
  }
  .headDiv .links li {
    margin-right: 0.15rem;
  }
}
@media (max-width: 1366px) {
  .nav {
    left: 2rem;
  }
}
@media (max-width: 1004px) {
  .nav {
    display: none;
  }
  .navIco {
    display: block;
  }
  .headDiv {
    position: relative;
    height: 1.2rem;
  }
  .headDiv .wrap {
    height: 1.2rem;
  }
  .headDiv .headDiv-logo {
    left: 0.3rem;
    top: 0.35rem;
  }
  .headDiv .headDiv-logo img {
    width: 2rem;
  }
  .headDiv .topRight {
    right: 1rem;
    margin-top: -0.4rem;
  }
  .headDiv .pjDiv {
    padding-top: 0;
  }
  .headDiv .btnDiv {
    display: none;
  }
  .headDiv .links li {
    font-size: var(--fs12);
    margin-right: 0.2rem;
  }
  .headDiv .links li a {
    padding-left: 0.45rem;
    line-height: 0.8rem;
  }
  .headDiv .links li img {
    margin-top: -0.18rem;
    width: 0.36rem;
  }
  .headDiv .topSearch {
    display: none;
  }
  .head-search .search-box {
    width: 90%;
  }
}
.footDiv {
  padding: 1.2rem 0 0.8rem;
  background: #f3f3f3;
}
.footDiv .toptop {
  overflow: hidden;
  padding-bottom: 0.75rem;
}
.footDiv .botbot {
  overflow: hidden;
}
.footDiv .rightDiv{
  width:4rem;
}
.footDiv .zi {
  font-size: var(--fs17);
  height: 0.38rem;
  line-height: 0.18rem;
  color: #333;
  font-weight: bold;
  text-align: right;
}
.footDiv .tel {
  text-align: right;
  color: #fd6f00;
  font-size: var(--fs36);
  line-height: 0.44rem;
  font-family: "Mont-SB";
}
.footDiv .email {
  font-size: var(--fs18);
  color: #333;
  text-align: right;
  line-height: 0.36rem;
  font-family: "Mont-R";
}
.footDiv .msgList{
  width:70%;
  float:right;
}
.footDiv .msgList li {
  font-size: var(--fs14);
  color: #333;
  text-align: right;
  line-height: 0.24rem;
  margin-bottom:0.12rem;
  font-family: "Poppins-R";
}
.footDiv .ewmList {
  padding-top: 0.4rem;
}
.footDiv .ewmList li {
  float: left;
  width: 1.3rem;
  margin-left: 0.5rem;
}
.footDiv .ewmList li:first-child{
  margin-left: 0;
}
.footDiv .ewmList li .limg {
  border-radius: 12px;
  overflow: hidden;
}
.footDiv .ewmList li .limg img {
  width: 100%;
}
.footDiv .ewmList li p {
  margin-top: 0.15rem;
  text-align: center;
  font-size: var(--fs14);
  line-height: 14px;
}
.footDiv .share {
  clear: both;
  margin-top: 0.8rem;
}
.footDiv .share li {
  float: left;
  margin-left: 0.3rem;
}
.footDiv .share li a {
  display: block;
  position: relative;
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
}
.footDiv .share li a:hover {
  background: #00aeef;
}
.footDiv .share li img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -8px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.footDiv .share li .img1 {
  opacity: 0;
}
.footDiv .share li a:hover img {
  opacity: 0;
}
.footDiv .share li a:hover .img1 {
  opacity: 1;
}
.footDiv .links {
  position: relative;
  left: -0.26rem;
  font-size: var(--fs14);
  font-family: "Poppins-R";
}
.footDiv .links a {
  color: #666;
  padding: 0 0.26rem;
  line-height: 0.44rem;
}
.footDiv .links a:hover {
  color: #00a1ed;
}
.footDiv .copyright {
  font-size: var(--fs14);
  line-height: 0.44rem;
  font-family: "Poppins-R";
}
.footDiv .copyright a {
  color: #666;
}
.footDiv .copyright a:hover {
  color: #00a1ed;
}
.footNav {
  width: 11rem;
}
.footNav li {
  float: left;
  width: 2.0rem;
}
.footNav li:nth-child(2) {
  width: 4.8rem;
}
.footNav li:nth-child(3) {
  width: 1.95rem;
}
.footNav li:last-child {
  width: auto;
}
.footNav li h2 {
  height: 0.38rem;
  position: relative;
  margin: 0;
  font-size: var(--fs17);
  line-height: 0.18rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.2rem;
}
.footNav li h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 2px;
  background: #00aeef;
}
.footNav li dl {
  margin-bottom: 0.4rem;
}
.footNav li dt {
  font-size: var(--fs14);
}
.footNav li dt a {
  display: block;
  line-height: 0.36rem;
  color: #333;
}
.footNav li dt a:hover {
  color: #00a1ed;
}
.footNav li dd {
  font-size: var(--fs13);
  font-family: "Poppins-R";
  margin-bottom:0.1rem;
}
.footNav li dd a {
  display: block;
  line-height: 0.2rem;
}
.footNav li dd a:hover {
  color: #00a1ed;
}
.footNav li:nth-child(2) .pjDiv {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.footNav li:nth-child(2) .pjDiv dl {
  width: 2.2rem;
}
@media (max-width: 1004px) {
  .footNav {
    display: none;
  }
  .footDiv {
    padding: 0.9rem 0 0.8rem;
  }
  .footDiv .toptop {
    padding-bottom: 0.6rem;
  }
  .footDiv .rightDiv {
    float: none;
	width:auto;
  }
  .footDiv .zi {
    font-size: var(--fs16);
    height: 0.48rem;
    line-height: 0.3rem;
    text-align: left;
  }
  .footDiv .tel {
    text-align: left;
    font-size: var(--fs28);
    line-height: 0.56rem;
  }
  .footDiv .email {
    font-size: var(--fs18);
    text-align: left;
    line-height: 0.56rem;
  }
  .footDiv .msgList {
    float: none;
    width: auto;
  }
  .footDiv .msgList li {
    text-align: left;
    line-height: 0.56rem;
	margin-bottom:0;
  }
  .footDiv .ewmList {
    float: none;
    padding-top: 0.3rem;
  }
  .footDiv .ewmList li {
    width: 2.3rem;
    margin-left: 0;
    margin-right: 0.3rem;
  }
  .footDiv .ewmList li .limg {
    border-radius: 0.2rem;
  }
  .footDiv .ewmList li p {
    margin-top: 0.2rem;
    line-height: 0.24rem;
  }
  .footDiv .share {
    float: none;
  }
  .footDiv .share li {
    margin-left: 0;
    margin-right: 0.2rem;
  }
  .footDiv .share li a {
    width: 0.9rem;
    height: 0.9rem;
  }
  .footDiv .links {
    float: none;
    left: -0.2rem;
    font-size: var(--fs12);
  }
  .footDiv .links a {
    padding: 0 0.2rem;
    line-height: 0.48rem;
  }
  .footDiv .copyright {
    float: none;
    font-size: var(--fs12);
    line-height: 0.48rem;
  }
}
.pageBanner {
  position: relative;
  overflow: hidden;
}
.pageBanner .bg img {
  width: 100%;
}
.pageBanner .info {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 0;
  height: 100%;
  color: #fff;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.pageBanner .cn {
  margin: 0;
  font-size: 0.55rem;
  line-height: 0.6rem;
  font-weight: bold;
  text-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
}
@media (max-width: 1600px) {
  .pageBanner .info {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .pageBanner::before {
    height: 1.8rem;
    background: url(../img/bg1.png) bottom repeat-x;
  }
  .pageBanner .info {
    left: 0.3rem;
    margin-left: 0;
  }
  .pageBanner .cn {
    font-size: var(--fs20);
    line-height: 0.48rem;
  }
}
.pageTop {
  position: relative;
  width: 100%;
  height: 1rem;
}
.pageTop:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #f1f1f1;
}
.pageTop .wrap {
  position: relative;
}
.pageNav li {
  position: relative;
  z-index: 1;
  float: left;
  font-size: var(--fs16);
}
.pageNav li a {
  display: flex; 
  display: -webkit-flex; 
  align-items: center; 
  -webkit-align-items: center; 
  justify-content: center; 
  -webkit-justify-content: center;
  position: relative;
  width: 1.5rem;
  line-height:0.2rem;
  padding: 0 0.2rem;
  height: 1rem;
  color: #666;
  text-align:center;
}
.pageNav li a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #00aeef;
}
.pageNav li a:hover {
  color: #00aeef;
}
.pageNav li .aNow {
  color: #00aeef;
}
.pageNav li .aNow:after {
  width: 100%;
}
.pageNow {
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  top: 0;
  padding-left: 10px;
  background: url(../img/nimg10_1.png) left center no-repeat;
  font-size: var(--fs14);
  line-height: 1rem;
  z-index: 1;
}
.pageNow a {
  position: relative;
  display: inline-block;
  padding-left: 8px;
  padding-right: 12px;
  color: #999;
}
.pageNow a:before {
  content: '';
  width: 4px;
  height: 7px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -4px;
  background: url(../img/ico3.png) center no-repeat;
}
.pageNow a:hover {
  color: #00aeef;
}
.pageNow em {
  position: relative;
  display: inline-block;
  padding-left: 8px;
  color: #00aeef;
}
@media (max-width: 1600px) {
  .pageNow {
    margin-right: -8rem;
  }
}
@media (max-width: 1004px) {
  .pageTop {
    display: none;
  }
}
.pageNum {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  text-align: center;
}
.pageNum a {
  position: relative;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 14px;
  background: #fff;
  color: #4d4d4d;
  border: #d2d4d3 solid 1px;
  font-family: 'Poppins-L';
  margin: 0 8px;
  border-radius: 4px;
}
.pageNum a:hover {
  color: #fff;
  background: #fd6f00;
  border: #fd6f00 solid 1px;
}
.pageNum .aNow {
  color: #fff;
  background: #fd6f00;
  border: #fd6f00 solid 1px;
}
.pageNum .prev:before {
  content: '';
  position: absolute;
  width: 9px;
  height: 14px;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -7px;
  background: url(../img/prev.png) no-repeat;
}
.pageNum .prev:hover:before {
  background: url(../img/prevon.png) no-repeat;
}
.pageNum .next:before {
  content: '';
  position: absolute;
  width: 9px;
  height: 14px;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -7px;
  background: url(../img/next.png) no-repeat;
}
.pageNum .next:hover:before {
  background: url(../img/nexton.png) no-repeat;
}
.pageMore a {
  display: block;
  width: 100%;
  height: 1rem;
  background: #fd6f00;
  line-height: 1rem;
  text-align: center;
  font-size: var(--fs14);
  color: #fff;
}
@media (max-width: 1004px) {
  .pageNum {
    display: none;
  }
}
.sideBar {
  position: fixed;
  right: 10px;
  top: 50%;
  margin-top: -130px;
  z-index: 5;
  width: 125px;
  padding: 90px 0 0 16px;
}
.sideBar .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 125px;
  height: 101px;
  background: url(../img/nimg125Bg.png) no-repeat;
  background-size: 125px;
}
.sideBar .list {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 90px;
  overflow: hidden;
  background-image: linear-gradient(180deg, #f65802 0%, #ff802f 100%);
  background-blend-mode: normal, normal;
}
.sideBar .list li {
  height: 84px;
  cursor: pointer;
  background: url(../img/line1.png) center bottom no-repeat;
}
.sideBar .list li:last-child {
  background: none;
}
.sideBar .list li .lbox {
  padding-top: 15px;
}
.sideBar .list li .ico {
  text-align: center;
}
.sideBar .list li .zi {
  margin-top: 8px;
  font-size: 14px;
  color: #fff;
  text-align: center;
}
.sideBar .list li a {
  display: block;
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.sideBar .list li a:hover {
  background: #e85200;
}
@media (max-width: 1004px) {
  .sideBar {
    right: 0.1rem;
    margin-top: -1.85rem;
    width: 1.35rem;
    padding: 1rem 0 0 0;
  }
  .sideBar .bg {
    width: 1.35rem;
    height: 1.1rem;
    background-size: 1.35rem;
  }
  .sideBar .list {
    border-bottom-left-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
    width: 1.25rem;
  }
  .sideBar .list li {
    height: 1.6rem;
  }
  .sideBar .list li .lbox {
    padding-top: 0.15rem;
  }
  .sideBar .list li .ico img {
    width: 0.56rem;
  }
  .sideBar .list li .zi {
    margin-top: 0.1rem;
    font-size: var(--fs12);
  }
}
