@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";
}
.widget {
  margin: 0!important;
}
.row {
  margin-left: 0!important;
  margin-right: 0!important;
}
.container-fluid {
  padding-right: 0!important;
  padding-left: 0!important;
}
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  padding-right: 0!important;
  padding-left: 0!important;
}
.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;
}
.img_rotate {
  -moz-animation: rotate 15s infinite linear;
  -webkit-animation: rotate 15s infinite linear;
  animation: rotate 15s infinite linear;
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.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;
  }
}
@keyframes upDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes upDown {
  from {
    -webkit-transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
  }
}
.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: "Poppins-R";
  src: url('../fonts/Poppins-Regular.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-M";
  src: url('../fonts/Poppins-Medium.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-SB";
  src: url('../fonts/Poppins-SemiBold.ttf');
  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;
}
.wrap {
  width: var(--mainWid);
  margin: 0 auto;
}
.wrap2 {
  width: var(--midWid);
  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,
  .wrap2 {
    padding: 0 var(--offset);
  }
  .PC-Box {
    display: none;
  }
  .Phone-Box {
    display: block;
  }
}
.headD {
  height: 1.2rem;
}
.touDiv {
  position: fixed;
  width: 100%;
  height: 0.4rem;
  left: 0;
  top: 0;
  background: #152244;
  z-index: 5;
}
.touDiv .wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.touDiv .lan {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.touDiv .lan .name {
  position: relative;
  height: 0.4rem;
  line-height: 0.4rem;
  cursor: pointer;
  padding-left: 0.35rem;
  padding-right: 0.3rem;
  color: #fff;
  font-size: var(--fs16);
  font-family: 'Poppins-R';
  text-transform: uppercase;
}
.touDiv .lan .name::before {
  content: '';
  width: 0.26rem;
  height: 0.26rem;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.13rem;
  background: url(../img/nimg26_1.png) no-repeat;
  background-size: 0.26rem;
}
.touDiv .lan .name::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.04rem;
  width: 0.09rem;
  height: 0.08rem;
  background: url(../img/ico1.png) center no-repeat;
  background-size: 0.09rem;
}
.touDiv .lan dl {
  padding: 0.15rem 0;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0.5rem;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.touDiv .lan dl::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #E94419;
}
.touDiv .lan dl a {
  display: block;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  text-align: center;
  color: #333;
  text-transform: uppercase;
  font-size: var(--fs14);
  font-family: 'Poppins-R';
}
.touDiv .lan dl a:hover {
  color: #E94419;
}
.touDiv .lan.on dl {
  opacity: 1;
  visibility: visible;
  top: 0.4rem;
  z-index: 1;
}
.touDiv .links a {
  display: inline-block;
  margin-left: 0.25rem;
  font-size: var(--fs14);
  line-height: 0.4rem;
  color: #fff;
}
.touDiv .links a:hover {
  color: #E94419;
}
.headDiv {
  position: fixed;
  left: 0;
  top: 0.4rem;
  width: 100%;
  height: 0.8rem;
  background: #fff;
  z-index: 4;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
}
.headDiv .wrap {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  height: 0.8rem;
  position: relative;
}
.headDiv .headDiv-logo img {
  display: block;
  width: 1.1rem;
}
.headDiv .topSearch {
  width: 0.36rem;
}
.headDiv .topSearch em {
  display: block;
  position: relative;
  width: 0.36rem;
  height: 0.36rem;
  cursor: pointer;
  background: url(../img/nimg20_1.png) right center no-repeat;
  background-size: 0.2rem;
}
.headDiv.ny:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ccc;
}
.nav ul {
  font-size: 0;
}
.nav li {
  display: inline-block;
  padding: 0 0.1rem;
  font-size: var(--fs18);
}
.nav li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 0.8rem;
  position: relative;
  color: #333;
}
.nav li a em {
  display: block;
  width: 1.3rem;
  text-align: center;
  height: 0.45rem;
  line-height: 0.45rem;
  border-radius: 0.48rem;
}
.nav li a:hover {
  color: #E94419 !important;
}
.nav li .aNow,
.nav li .aNow1 {
  color: #E94419 !important;
}
.nav li:last-child a {
  color: #fff;
}
.nav li:last-child a em {
  background: #E94419;
}
.nav li:last-child a:hover {
  color: #fff !important;
  opacity: 0.8;
}
.sNav {
  position: fixed;
  left: 0;
  top: 1.2rem;
  width: 100%;
  height: 0;
  overflow: hidden;
  background: #fff;
  z-index: 3;
  box-shadow: 0 0.1rem 0.1rem -0.1rem rgba(0, 0, 0, 0.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::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: #eee;
}
.sNav .lie {
  width: 100%;
  height: 3rem;
  padding-top: 1rem;
  text-align: center;
}
.sNav .lie ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.sNav .lie li {
  margin: 0 0.45rem;
  font-size: var(--fs18);
}
.sNav .lie li a {
  display: block;
  color: #000;
}
.sNav .lie li a .ico {
  height: 0.54rem;
}
.sNav .lie li a .ico img {
  width: 0.54rem;
}
.sNav .lie li a .name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  min-height: 0.56rem;
  margin-top: 0.1rem;
  line-height: 0.28rem;
}
.sNav .lie li a:hover {
  color: #E94419;
}
.sNav.on {
  height: 3rem;
}
.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 .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(--fs17);
  border-bottom: #d6d6d6 solid 1px;
}
.subNav a {
  display: block;
  color: #333;
}
.pjIco {
  position: absolute;
  right: 0;
  top: 0;
  width: 1.1rem;
  height: 1.1rem;
}
.pjIco::before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -7px;
  right: 50%;
  margin-right: -1px;
  width: 2px;
  height: 14px;
  background: #d6d6d6;
}
.pjIco::after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 50%;
  margin-right: -7px;
  width: 14px;
  height: 2px;
  background: #d6d6d6;
}
.pjIco .name {
  position: relative;
}
.currentDt::before {
  display: none;
}
.currentDt::after {
  background: #E94419;
}
.navContent {
  display: none;
}
.navContent a {
  display: block;
  height: 0.9rem;
  line-height: 0.9rem;
  color: #666;
  font-size: var(--fs15);
  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: #E94419;
  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: 1004px) {
  .nav {
    display: none;
  }
  .navIco {
    display: block;
  }
  .headD {
    height: 2rem;
  }
  .touDiv {
    height: 0.8rem;
  }
  .touDiv .wrap {
    display: block;
    height: 0.8rem;
  }
  .touDiv .lan {
    float: right;
  }
  .touDiv .lan .name {
    height: 0.8rem;
    line-height: 0.8rem;
    padding-left: 0.48rem;
    padding-right: 0.4rem;
    font-size: var(--fs14);
  }
  .touDiv .lan .name::before {
    width: 0.36rem;
    height: 0.36rem;
    margin-top: -0.18rem;
    background-size: 0.36rem;
  }
  .touDiv .lan .name::after {
    margin-top: -0.07rem;
    width: 0.14rem;
    height: 0.13rem;
    background-size: 0.14rem;
  }
  .touDiv .lan dl {
    top: 0.9rem;
  }
  .touDiv .lan dl a {
    height: 0.5rem;
    line-height: 0.5rem;
  }
  .touDiv .lan.on dl {
    top: 0.8rem;
  }
  .touDiv .links a {
    display: inline-block;
    margin-left: 0.25rem;
    font-size: var(--fs14);
    line-height: 0.4rem;
    color: #fff;
  }
  .touDiv .links a:hover {
    color: #E94419;
  }
  .headDiv {
    top: 0.8rem;
    height: 1.2rem;
  }
  .headDiv .wrap {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    height: 1.2rem;
    padding-right: 1rem;
  }
  .headDiv .headDiv-logo img {
    width: 1.8rem;
  }
  .headDiv .topSearch {
    width: 1rem;
  }
  .headDiv .topSearch em {
    width: 1rem;
    height: 1.2rem;
    background: url(../img/nimg20_1.png) center no-repeat;
    background-size: 0.36rem;
  }
  .headDiv .btnDiv a {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    width: 1.12rem;
    height: 0.4rem;
    border-radius: 0.48rem;
    background: #E94419;
    color: #fff;
    font-size: var(--fs16);
  }
  .headDiv .btnDiv a:hover {
    background: #152244;
  }
  .head-search .search-box {
    width: 90%;
  }
}
.footDiv {
  overflow: hidden;
  position: relative;
  padding-top: 1.9rem;
  height: 8rem;
  background: url(../img/footDiv.jpg) center no-repeat;
  background-size: cover;
}
.footDiv .toptop {
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.footDiv .rightDiv {
  color: #fff;
  text-align: right;
  width: 3.5rem;
}
.footDiv .rightDiv .zi {
  font-size: var(--fs18);
  line-height: 0.28rem;
}
.footDiv .rightDiv .tel {
  margin-top: 0.16rem;
  line-height: 0.46rem;
  font-size: var(--fs30);
  font-family: 'Poppins-M';
}
.footDiv .rightDiv .msg {
  margin-top: 0.16rem;
  font-size: var(--fs18);
  line-height: 0.28rem;
}
.footDiv .botbot {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.footDiv .botbot .share li {
  position: relative;
  float: left;
  margin-right: 0.24rem;
}
.footDiv .botbot .share li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #fff;
}
.footDiv .botbot .share li a img {
  width: 0.24rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.footDiv .botbot .share li a:hover {
  background: #E94419;
}
.footDiv .botbot .share li a:hover img {
  filter: brightness(0) invert(1);
}
.footDiv .botbot .share li .ewmLayer {
  position: absolute;
  text-align: center;
  left: 50%;
  margin-left: -0.7rem;
  top: -1.45rem;
  width: 1.4rem;
  padding-bottom: 4px;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  z-index: 5;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.footDiv .botbot .share li .ewmLayer::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -3px;
  width: 6px;
  height: 6px;
  border-color: #fff;
  border-style: solid;
  border-width: 1px 1px 0 0;
  background: #fff;
  transform: rotate(45deg);
}
.footDiv .botbot .share li .ewmLayer .imgDiv {
  padding: 0.1rem;
  background: #fff;
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
}
.footDiv .botbot .share li .ewmLayer .imgDiv img {
  position: relative;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  width: 1.2rem;
  height: 1.2rem;
}
.footDiv .botbot .share li:hover .ewmLayer {
  opacity: 1;
  filter: alpha(opacity=1);
  visibility: visible;
  top: -1.55rem;
}
.footDiv .botbot .botright {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  order: 1;
}
.footDiv .botbot .btnDiv {
  margin-left: 0.36rem;
}
.footDiv .botbot .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 1.3rem;
  height: 0.4rem;
  background: #E94419;
  font-size: var(--fs16);
  color: #fff;
  border-radius: 0.48rem;
}
.footDiv .botbot .links {
  position: relative;
  left: -0.24rem;
  color: #fff;
  font-size: var(--fs14);
  line-height: 0.4rem;
}
.footDiv .botbot .links a {
  color: #fff;
  padding: 0 0.24rem;
}
.footDiv .botbot .links a:hover {
  color: #E94419;
}
.footDiv .botbot .copyright {
  color: #fff;
  font-size: var(--fs14);
  line-height: 0.4rem;
}
.footDiv .botbot .copyright a {
  color: #fff;
}
.footDiv .botbot .copyright a:hover {
  color: #E94419;
}
.footNav li {
  float: left;
  padding-right: 0.8rem;
}
.footNav li:last-child {
  padding-right: 0;
}
.footNav li h3 a {
  position: relative;
  padding-bottom: 0.14rem;
  display: block;
  font-size: var(--fs18);
  line-height: 0.26rem;
  color: #E94419;
}
.footNav li h3 a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 2px;
  background: #fff;
}
.footNav li h3 a:hover {
  color: #fff;
}
.footNav li h4 {
  margin-bottom: 0.24rem;
}
.footNav li h4 a {
  display: block;
  font-size: var(--fs18);
  line-height: 0.26rem;
  color: #E94419;
}
.footNav li h4 a:hover {
  color: #fff;
}
.footNav li dl {
  padding-top: 0.14rem;
}
.footNav li dd {
  font-size: var(--fs14);
  margin-bottom: 0.12rem;
}
.footNav li dd a {
  display: block;
  color: #fff;
  line-height: 0.2rem;
}
.footNav li dd a:hover {
  color: #E94419;
}
@media (max-width: 1004px) {
  .footNav {
    display: none;
  }
  .footDiv {
    padding: 0.8rem 0;
    height: auto;
  }
  .footDiv .toptop {
    padding-bottom: 0.6rem;
  }
  .footDiv .rightDiv {
    text-align: left;
    width: auto;
  }
  .footDiv .rightDiv .zi {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .footDiv .rightDiv .tel {
    line-height: 0.6rem;
    font-size: var(--fs24);
  }
  .footDiv .rightDiv .msg {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .footDiv .botbot {
    display: block;
  }
  .footDiv .botbot .share::after {
    content: '';
    display: block;
    clear: both;
  }
  .footDiv .botbot .share li {
    margin-right: 0.2rem;
  }
  .footDiv .botbot .share li a {
    width: 0.8rem;
    height: 0.8rem;
  }
  .footDiv .botbot .share li a img {
    width: 0.36rem;
  }
  .footDiv .botbot .share li .ewmLayer {
    left: 0;
    margin-left: 0;
    top: -2.15rem;
    width: 2.2rem;
  }
  .footDiv .botbot .share li .ewmLayer::after {
    left: 0.4rem;
    margin-left: 0;
  }
  .footDiv .botbot .share li .ewmLayer .imgDiv {
    padding: 0.2rem;
  }
  .footDiv .botbot .share li .ewmLayer .imgDiv img {
    width: 1.8rem;
    height: 1.8rem;
  }
  .footDiv .botbot .share li:hover .ewmLayer {
    top: -2.25rem;
  }
  .footDiv .botbot .botright {
    display: block;
  }
  .footDiv .botbot .botleft {
    padding-top: 0.4rem;
  }
  .footDiv .botbot .btnDiv {
    margin-left: 0;
    margin-top: 0.4rem;
  }
  .footDiv .botbot .btnDiv a {
    width: 2.4rem;
    height: 0.8rem;
    font-size: var(--fs14);
  }
  .footDiv .botbot .links {
    line-height: 0.48rem;
  }
  .footDiv .botbot .copyright {
    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 .info2 {
  left: 0;
  margin-left: 0;
  width: 100%;
  text-align: center;
}
.pageBanner .cn {
  margin: 0;
  font-size: var(--fs50);
  line-height: 0.64rem;
  font-weight: bold;
}
.pageBanner .zi {
  font-size: var(--fs36);
  line-height: 0.48rem;
  margin-top: 0.1rem;
  font-weight: 100;
}
@media (max-width: 1600px) {
  .pageBanner .info {
    margin-left: -8rem;
  }
  .pageBanner .info2 {
    margin-left: 0;
  }
}
@media (max-width: 1004px) {
  .pageBanner .info {
    left: 0.3rem;
    margin-left: 0;
  }
  .pageBanner .info2 {
    left: 0;
  }
  .pageBanner .cn {
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .pageBanner .zi {
    font-size: var(--fs15);
    margin-top: 0.1rem;
  }
}
.pageTop {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 0.7rem;
}
.pageTop::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #f2f2f2;
}
.pageNav ul {
  margin-bottom: 0;
}
.pageNav li {
  position: relative;
  z-index: 1;
  float: left;
  font-size: var(--fs16);
}
.pageNav li a {
  display: block;
  position: relative;
  min-width: 1.36rem;
  padding: 0 0.3rem;
  height: 0.7rem;
  line-height: 0.7rem;
  text-align: center;
  color: #333;
}
.pageNav li a:after {
  content: '';
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #E94419;
}
.pageNav li a:hover {
  background: none;
  color: #E94419;
}
.pageNav li .aNow {
  background: #f7f7f7;
  color: #E94419;
}
.pageNav li .aNow:after {
  opacity: 1;
}
.pageNow {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  top: 0;
  padding-left: 10px;
  font-size: var(--fs16);
  height: 0.7rem;
  z-index: 1;
}
.pageNow a {
  position: relative;
  display: inline-block;
  padding-left: 10px;
  padding-right: 22px;
  color: #999;
}
.pageNow a::after {
  content: '';
  width: 4px;
  height: 5px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -2px;
  background: url(../img/ico4.png) center no-repeat;
}
.pageNow a:hover {
  color: #E94419;
}
.pageNow .home img {
  position: relative;
  top: -2px;
}
.pageNow em {
  color: #E94419;
  position: relative;
  display: inline-block;
  padding-left: 10px;
}
.pageNow2 {
  position: relative;
  right: auto;
  margin-right: 0;
}
@media (max-width: 1600px) {
  .pageNow {
    margin-right: -8rem;
  }
  .pageNow2 {
    margin-right: 0;
  }
}
@media (max-width: 1004px) {
  .pageTop {
    display: none;
  }
}
.pageTitleTel {
  height: 1.1rem;
  background: #E94419;
  position: relative;
}
.sideTitleTel {
  width: 100%;
  height: 1.1rem;
  position: absolute;
  left: 0px;
  top: 0px;
}
.sideTitleTel .con {
  font-size: var(--fs16);
  height: 1.1rem;
  line-height: 1.1rem;
  position: relative;
  padding-right: 10px;
}
.sideTitleTel .con a {
  color: #fff;
  display: block;
  height: 1.1rem;
  padding-left: 0.3rem;
}
.sideTitleTel .con em {
  display: block;
  color: #fff;
  padding-left: 0.3rem;
}
.sideTitleTel .con img {
  position: absolute;
  right: 0.3rem;
  top: 50%;
  margin-top: -0.12rem;
  width: 0.4rem;
  transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.sideTitleTel .on img {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.sideTitleNav {
  position: absolute;
  top: 1.1rem;
  z-index: 10;
  width: 100%;
  background: #fff;
  display: none;
  box-shadow: 0 1px 5px rgba(35, 25, 25, 0.2);
  -moz-box-shadow: 0 1px 5px rgba(35, 25, 25, 0.2);
  -webkit-box-shadow: 0 1px 5px rgba(35, 25, 25, 0.2);
}
.sideTitleNav li {
  font-size: var(--fs15);
  height: 1rem;
  border-bottom: #d7d7d7 solid 1px;
}
.sideTitleNav li a {
  display: block;
  height: 1rem;
  line-height: 1rem;
  padding-left: 0.3rem;
  color: #666;
}
.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: 40px;
  height: 40px;
  line-height: 40px;
  font-size: var(--fs16);
  background: #fff;
  color: #a7a7a7;
  border: #a7a7a7 solid 1px;
  font-family: 'Poppins-L';
  margin: 0 0.14rem;
  border-radius: 50%;
}
.pageNum a:hover {
  border: #E94419 solid 1px;
  background: #E94419;
  color: #fff;
}
.pageNum .aNow {
  color: #fff;
  border: #E94419 solid 1px;
  background: #E94419;
}
.pageNum .prev {
  border: none;
}
.pageNum .prev:before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-left: -8px;
  margin-top: -8px;
  background: url(../img/prev.png) no-repeat;
}
.pageNum .prev:hover {
  background: #E94419;
}
.pageNum .prev:hover:before {
  background: url(../img/prevon.png) no-repeat;
}
.pageNum .next {
  border: none;
}
.pageNum .next:before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-left: -8px;
  margin-top: -8px;
  background: url(../img/next.png) no-repeat;
}
.pageNum .next:hover {
  background: #E94419;
}
.pageNum .next:hover:before {
  background: url(../img/nexton.png) no-repeat;
}
.pageMore a {
  display: block;
  background: #E94419;
  width: 100%;
  height: 1rem;
  line-height: 1rem;
  text-align: center;
  font-size: var(--fs15);
  color: #fff;
}
@media (max-width: 1004px) {
  .pageNum {
    display: none;
  }
}
.sideBar {
  position: fixed;
  right: 40px;
  bottom: 1rem;
  z-index: 5;
}
.sideBar li {
  margin-bottom: 10px;
  position: relative;
}
.sideBar li:last-child {
  margin-bottom: 0;
}
.sideBar li a {
  display: block;
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: #E94419 solid 1px;
}
.sideBar li a img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.sideBar li a .img1 {
  opacity: 0;
}
.sideBar li a:hover {
  border: #E94419 solid 1px;
  background: #E94419;
}
.sideBar li a:hover img {
  opacity: 0;
}
.sideBar li a:hover .img1 {
  opacity: 1;
}
.sideBar li .mouse {
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
  left: -1.92rem;
  width: 1.82rem;
  height: 1.98rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 0.24rem 0 rgba(0, 0, 0, 0.1);
}
.sideBar li .mouse .zi {
  padding: 0.2rem 0 0.12rem;
  text-align: center;
  color: #333;
  font-size: var(--fs14);
}
.sideBar li .mouse .ewm {
  width: 1.3rem;
  margin: 0 auto;
}
.sideBar li .mouse .ewm img {
  width: 100%;
}
.sideBar li .topA {
  border: #E94419 solid 1px;
  background: #E94419;
}
.sideBar li.on a {
  border: #E94419 solid 1px;
  background: #E94419;
}
.sideBar li.on a img {
  opacity: 0;
}
.sideBar li.on a .img1 {
  opacity: 1;
}
.sideBar li.on .mouse {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1004px) {
  .sideBar {
    right: 0.2rem;
    bottom: 0.5rem;
  }
  .sideBar li {
    margin-bottom: 0.2rem;
  }
  .sideBar li a {
    width: 0.9rem;
    height: 0.9rem;
  }
  .sideBar li a img {
    width: 16px;
    margin-left: -8px;
    margin-top: -8px;
  }
  .sideBar li .mouse {
    left: -2.52rem;
    width: 2.42rem;
    height: 2.78rem;
  }
  .sideBar li .mouse .ewm {
    width: 2rem;
  }
}
.lyb-modal-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 59;
}
.lybLayer {
  position: absolute;
  border-radius: 0.2rem;
  border: #666 solid 2px;
  background: #f8f8f8;
  top: 50%;
  left: 50%;
  width: 6rem;
  padding: 0.6rem 0.4rem 0.5rem;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.lybLayer .close {
  position: absolute;
  right: 0.16rem;
  top: 0.16rem;
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.lybLayer .close:hover {
  transform: rotate(-90deg);
}
.lybLayer .close img {
  width: 0.3rem;
}
.lybLayer .form li {
  margin-bottom: 0.2rem;
  border: #ddd solid 1px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  padding-left: 0.7rem;
}
.lybLayer .form li .zi {
  position: absolute;
  left: 0.2rem;
  top: 0;
  font-size: var(--fs14);
  line-height: 0.5rem;
}
.lybLayer .form li .zi em {
  color: #f00;
}
.lybLayer .form li .input1 {
  width: 100%;
  height: 0.5rem;
  line-height: 0.5rem;
  font-size: var(--fs14);
}
.lybLayer .form li textarea {
  width: 100%;
  padding: 0.1rem 0.2rem 0 0;
  height: 1.5rem;
  line-height: 0.28rem;
  font-size: var(--fs14);
}
.lybLayer .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 0.5rem;
  border-radius: 4px;
  background: #E94419;
  font-size: var(--fs16);
  color: #fff;
}
.lybLayer .btnDiv a:hover {
  background: #152244;
}
@media (max-width: 1004px) {
  .lybLayer {
    border-radius: 0.24rem;
    border: none;
    width: 94%;
    padding: 0.9rem 0.4rem;
  }
  .lybLayer .close {
    right: 0.4rem;
    top: 0.25rem;
  }
  .lybLayer .close img {
    width: 0.42rem;
  }
  .lybLayer .form {
    padding-bottom: 0.2rem;
  }
  .lybLayer .form li {
    padding-left: 1.4rem;
  }
  .lybLayer .form li .zi {
    line-height: 0.86rem;
  }
  .lybLayer .form li .input1 {
    height: 0.86rem;
    line-height: 0.86rem;
  }
  .lybLayer .form li textarea {
    padding: 0.3rem 0.2rem 0 0;
    height: 2rem;
  }
  .lybLayer .btnDiv a {
    height: 0.9rem;
    font-size: var(--fs15);
  }
}
