@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);
  }
}
@keyframes scaleCircleAni {
  0% {
    transform: scale(0.9) rotate(0deg);
  }
  100% {
    transform: scale(0.9) rotate(360deg);
  }
}
@keyframes circle_1 {
  0% {
    -webkit-transform: rotate(360deg) scaleX(1);
  }
  100% {
    -webkit-transform: rotate(0deg) scaleX(1.05);
  }
}
@keyframes circle_2 {
  0% {
    -webkit-transform: rotate(360deg) scaleX(1);
  }
  100% {
    -webkit-transform: rotate(90deg) scaleX(1.05);
  }
}
@keyframes circle_3 {
  0% {
    -webkit-transform: rotate(360deg) scaleX(1);
  }
  100% {
    -webkit-transform: rotate(180deg) scaleX(1.05);
  }
}
.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: "NotoSans-R";
  src: url('../fonts/NotoSans-Regular-2.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow-R";
  src: url('../fonts/Barlow-Regular.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow-L";
  src: url('../fonts/Barlow-Light.ttf');
  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;
  }
}
.headD {
  height: 1rem;
}
.header-wrapper {
  background-color: #fff;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}
.headDiv {
  background: #fff;
  border-bottom: 1px solid #d8d8d8;
  border-top: 5px solid #adadad;
  height: 88px;
  position: relative;
  z-index: 2;
}
.headDiv::before {
  background-color: #ff0000;
  content: "";
  height: 5px;
  top: -5px;
  width: 30px;
  left: 0;
  position: absolute;
}
.headDiv .wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  width: 1040px;
}
.headDiv .headDiv-logo {
  display: flex;
  padding: 17px 0 0 30px;
}
.headDiv .headDiv-logo .forPc {
  display: inline;
  width: auto;
  padding-bottom: 7px;
}
.headDiv .headDiv-logo .forMobile {
  display: none;
}
.headDiv .headDiv-logo .at_shrinked {
  display: none;
  width: 172px;
}
.headDiv .headDiv-logo .header-copy-image.forPc {
  display: inline-block;
  margin-left: 27px;
  padding-top: 5px;
  padding-bottom: 0;
}
.headDiv .header-utility {
  display: block;
  float: right;
}
.headDiv .header-link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0 0 6px;
  line-height: 24px;
  padding: 5px 0 0;
}
.headDiv .header-link-list li {
  font-size: 12px;
  font-weight: 700;
  margin: 0 5px;
}
.headDiv .header-link-list li a:hover {
  text-decoration: underline!important;
}
.headDiv .header-link-list .header-link-list-item {
  margin-left: 20px;
}
.headDiv .header-link-list .header-link-list-item a {
  display: block;
  position: relative;
  padding-left: 24px;
  color: #464646;
  font-size: 12px;
  line-height: 24px;
  font-weight: 700;
}
.headDiv .header-link-list .header-link-list-item a:hover {
  text-decoration: underline!important;
}
.headDiv .header-link-list .header-link-list-item i {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
}
.headDiv .header-link-list .header-link-list-item .icon-message {
  width: 19px;
  height: 12px;
  margin-top: -6px;
  background: url(../img/email.jpg) no-repeat;
  background-size: 19px;
}
.headDiv .header-link-list .header-link-list-item .icon-earth {
  width: 18px;
  height: 16px;
  margin-top: -8px;
  background: url(../img/earth.jpg) no-repeat;
  background-size: 18px;
}
.headDiv .form {
  position: relative;
  width: 400px;
}
.headDiv .form .input1 {
  border: 1px solid #080808;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.2;
  padding: 8px;
  width: 100%;
}
.headDiv .form .header-form-btn {
  -webkit-transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  background-color: #080808;
  cursor: pointer;
  color: #fff;
  display: inline-block;
  font-size: 20px;
  height: 34px;
  position: absolute;
  text-align: center;
  top: 0;
  right: 0;
  vertical-align: middle;
  width: 34px;
}
.headDiv .form .header-form-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -11px;
  margin-top: -11px;
  width: 21px;
  height: 20px;
  background: url(../img/search.jpg) no-repeat;
  background-size: 21px;
  -webkit-transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}
.headDiv .form .header-form-btn:hover {
  background: #dd0000;
}
.headDiv .form .header-form-btn:hover::after {
  background: url(../img/search2.jpg) no-repeat;
  background-size: 21px;
}
.headDiv .hala a {
  padding: 0 0.1rem;
  font-size: var(--fs14);
}
.is_shrink .headDiv {
  height: 74px;
}
.is_shrink .headDiv .headDiv-logo {
  padding: 20px 0 0 30px;
}
.is_shrink .headDiv .headDiv-logo .at_normal {
  display: none;
}
.is_shrink .headDiv .headDiv-logo .at_shrinked {
  display: block;
}
.is_shrink .headDiv .headDiv-logo .header-copy-image.forPc {
  display: none;
}
.is_shrink .headDiv .header-utility {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 17px 0;
}
.is_shrink .headDiv .header-link {
  margin-right: 30px;
}
.is_shrink .headDiv .form {
  width: 212px;
}
.globalNav {
  position: relative;
  background: #fff;
  z-index: 2;
  border-bottom: 1px solid #d8d8d8;
}
.globalNav .wrap {
  width: 1040px;
}
.globalNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  width: 100%;
}
.globalNav li {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.globalNav li a {
  position: relative;
  color: #464646;
  display: block;
  font-size: 14px;
  padding: 22px 5px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: none;
  transition: none;
  max-width: 300px;
}
.globalNav li a:after {
  content: '';
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background: #dd0000;
}
.globalNav li a:hover:after {
  opacity: 1;
  visibility: visible;
}
.globalNav li:hover .sNav {
  opacity: 1;
  transform: scaleY(1);
}
.globalNav li .aNow:after,
.globalNav li .aNow1:after {
  opacity: 1;
  visibility: visible;
}
.is_shrink .globalNav {
  display: none;
}
.sNav {
  left: 0;
  min-height: 100px;
  position: absolute;
  width: 100%;
  top: 64px;
  z-index: 5;
  background: #595757;
  transform-origin: top;
  opacity: 0;
  transition: transform 0.3s ease-out 0s, opacity 0.2s ease-out 0s;
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
}
.sNav .wrap {
  width: 1040px;
  padding: 25px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.sNav .headtitle {
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  padding-bottom: 20px;
  width: 100%;
}
.sNav .headtitle a {
  font-size: 20px;
  color: #fff;
  display: block;
  padding: 5px;
  text-align: left;
  width: 100%;
  max-width: 400px;
}
.sNav .headtitle a:hover {
  background: #dd0000;
}
.sNav .imglist dl {
  width: 1040px;
  margin: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.sNav .imglist dd {
  width: 18%;
  margin-right: 2.5%;
  margin-top: 14px;
}
.sNav .imglist dd:nth-child(-n+5) {
  margin-top: 0;
}
.sNav .imglist dd:nth-child(5n) {
  margin-right: 0;
}
.sNav .imglist dd .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 120px;
  height: 88px;
}
.sNav .imglist dd .imgDiv a {
  width: 120px;
  padding: 0;
}
.sNav .imglist dd .imgDiv a::after {
  display: none;
}
.sNav .imglist dd .imgDiv img {
  max-width: 100%;
  max-height: 100%;
}
.sNav .imglist dd .name a {
  font-size: 14px;
  font-weight: 600;
  padding: 7px 5px 8px 5px;
  margin: 10px 0 0 0;
  text-align: left;
  width: 100%;
  color: #fff;
}
.sNav .imglist dd .name a:hover {
  background: #dd0000;
}
.sNav .lie dl {
  margin: 0;
  width: 100%;
  max-width: 1040px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.sNav .lie dd {
  width: 300px;
  margin-right: 15px;
}
.sNav .lie dd a {
  font-size: 14px;
  line-height: 1.3;
  padding: 5px 2px 6px 2px;
  margin-right: 15px;
  text-align: left;
  width: 100%;
  max-width: 300px;
  color: #fff;
  letter-spacing: -0.02em;
}
.sNav .lie dd a:hover {
  background: #dd0000;
}
.sNav .list dl {
  width: 1040px;
  margin: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.sNav .list dd {
  width: 300px;
  margin-right: 15px;
}
.sNav .list dd .zi {
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
  padding-bottom: 3px;
}
.sNav .list dd .child a {
  font-size: 14px;
  line-height: 1.3;
  padding: 5px 2px 6px 2px;
  margin-right: 15px;
  text-align: left;
  width: 100%;
  max-width: 300px;
  letter-spacing: -0.02em;
  color: #fff;
}
.sNav .list dd .child a:hover {
  background: #dd0000;
}
.menubtn {
  position: relative;
  width: 36px;
  height: 34px;
  z-index: 3;
  cursor: pointer;
}
.menubtn .btn {
  position: absolute;
  right: 0;
  top: 7px;
  width: 26px;
  height: 20px;
  z-index: 3;
}
.menubtn .btn span {
  width: 26px;
  display: block;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}
.menubtn .btn span:nth-of-type(1) {
  top: 0;
}
.menubtn .btn span:nth-of-type(2) {
  top: 9px;
}
.menubtn .btn span:nth-of-type(3) {
  top: 19px;
}
.menubtn.cur span:nth-of-type(1) {
  top: 7px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.menubtn.cur span:nth-of-type(2) {
  opacity: 0;
}
.menubtn.cur span:nth-of-type(3) {
  top: 7px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.menu-flex {
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  pointer-events: none;
  transition: 0.88s;
}
.menu-bg {
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.88s 0.3s;
}
.menu-right {
  position: absolute;
  right: -360px;
  top: 0;
  width: 360px;
  height: 100%;
  background: #595757;
  transition: 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.menu-flex.show {
  visibility: visible;
  pointer-events: visible;
}
.menu-flex.show .menu-bg {
  opacity: 1;
  visibility: visible;
  transition: 0.88s 0s;
}
.menu-flex.show .menu-right {
  right: 0;
}
.menu-right .links {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  padding: 1.2rem 0 0.2rem;
}
.menu-right .links a {
  position: relative;
  display: block;
  width: 50%;
  text-align: center;
  font-size: var(--fs12);
  color: #fff;
}
.menu-right .links a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #3c3c3c;
}
.menu-right .links a:last-child::after {
  display: none;
}
.menu-right .links a i {
  display: block;
  margin: 0 auto 0.15rem;
}
.menu-right .links a .icon-message {
  width: 18px;
  height: 18px;
  background: url(../img/email.svg) no-repeat;
  background-size: 18px;
  filter: brightness(0) invert(1);
}
.menu-right .links a .icon-earth {
  width: 18px;
  height: 18px;
  background: url(../img/earth.svg) no-repeat;
  background-size: 18px;
  filter: brightness(0) invert(1);
}
.menu-right .form2 {
  position: relative;
  margin: 0 var(--offset) 0.3rem;
}
.menu-right .form2 .input1 {
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  height: 0.8rem;
  padding-left: 0.2rem;
  width: 100%;
}
.menu-right .form2 .header-form-btn {
  -webkit-transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  display: inline-block;
  height: 0.8rem;
  position: absolute;
  text-align: center;
  top: 0;
  right: 0;
  vertical-align: middle;
  width: 0.8rem;
  background: #000;
}
.menu-right .form2 .header-form-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -11px;
  margin-top: -11px;
  width: 22px;
  height: 22px;
  background: url(../img/search.svg) no-repeat;
  background-size: 22px;
}
.menu-list {
  border-top: #3c3c3c solid 1px;
}
.subNav {
  cursor: pointer;
  display: block;
  height: 0.7rem;
  text-align: center;
  line-height: 0.7rem;
  position: relative;
  font-size: var(--fs20);
  border-bottom: #3c3c3c solid 1px;
}
.subNav a {
  display: block;
  color: #fff;
}
.subNav a:hover {
  color: #dd0000;
}
.subNav1 {
  color: #333;
}
.subNav1::before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -7px;
  right: 6px;
  width: 2px;
  height: 14px;
  background: #d6d6d6;
  transition: All 0.5s ease;
}
.subNav1::after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 0;
  width: 14px;
  height: 2px;
  background: #d6d6d6;
  transition: All 0.5s ease;
}
.subNav1 .name {
  position: relative;
}
.currentDt {
  color: #dd0000;
}
.currentDt::before {
  background: #dd0000;
  transform: rotate(90deg);
}
.currentDt::after {
  opacity: 0;
  visibility: hidden;
}
.navContent {
  display: none;
}
.navContent a {
  display: block;
  height: 0.56rem;
  line-height: 0.56rem;
  color: #666;
  font-size: var(--fs16);
  padding-left: 0.3rem;
}
.navContent a.on {
  background: url(../images/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: #dd0000;
  background: url(../images/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: 40px;
  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) {
  body {
    padding-top: 1.2rem;
  }
  .menubtn .btn {
    top: 8px;
    width: 24px;
    height: 18px;
  }
  .menubtn .btn span {
    width: 24px;
  }
  .menubtn .btn span:nth-of-type(2) {
    top: 9px;
  }
  .menubtn .btn span:nth-of-type(3) {
    top: 18px;
  }
  .menubtn.cur span:nth-of-type(1) {
    top: 7px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  .menubtn.cur span:nth-of-type(2) {
    opacity: 0;
  }
  .menubtn.cur span:nth-of-type(3) {
    top: 7px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  .globalNav {
    display: none;
  }
  .navIco {
    display: block;
  }
  .headD {
    height: 1.2rem;
  }
  .headDiv {
    border-top: 3px solid #adadad;
    height: 1.2rem;
  }
  .headDiv::before {
    height: 3px;
    top: -3px;
    width: 20px;
  }
  .headDiv .wrap {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    width: 100%;
    height: 1.16rem;
  }
  .headDiv .headDiv-logo {
    padding: 0;
  }
  .headDiv .headDiv-logo .forPc {
    display: none;
  }
  .headDiv .headDiv-logo .header-copy-image.forPc {
    display: none;
  }
  .headDiv .headDiv-logo .forMobile {
    display: block;
    height: 0.56rem;
  }
  .headDiv .header-utility {
    display: none;
  }
  .is_shrink .headDiv {
    height: 1.2rem;
  }
  .is_shrink .headDiv .headDiv-logo {
    padding: 0;
  }
  .is_shrink .headDiv .headDiv-logo .at_normal {
    display: none;
  }
  .is_shrink .headDiv .headDiv-logo .at_shrinked {
    display: none;
  }
  .is_shrink .headDiv .header-utility {
    display: none;
  }
  .menu-right {
    right: -100%;
    width: 100%;
  }
  .subNav {
    height: 1.1rem;
    line-height: 1.1rem;
    font-size: var(--fs17);
  }
  .navContent a {
    height: 0.9rem;
    line-height: 0.9rem;
    font-size: var(--fs15);
    padding-left: 0.3rem;
  }
  .head-search .search-box {
    width: 90%;
  }
}
.footDiv {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.04rem;
  z-index: 1;
}
.footDiv::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}
.footDiv .toptop .wrap {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  height: 0.4rem;
}
.footDiv .links a {
  font-size: var(--fs14);
  color: #666;
  opacity: 0.8;
  margin-right: 0.3rem;
}
.footDiv .links a:hover {
  color: #FF0103;
}
.footDiv .copyright {
  font-size: var(--fs14);
  color: #666;
  opacity: 0.8;
}
.footDiv .foot_beian {
  background: #fff;
  text-align: center;
  line-height: 0.64rem;
}
.footDiv .foot_beian a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs14);
  color: #666;
}
.footDiv .foot_beian a img {
  margin-right: 5px;
}
@media (max-width: 1004px) {
  .footDiv {
    position: relative;
    padding: 0.3rem 0 0;
    height: auto;
  }
  .footDiv .toptop {
    padding-bottom: 0.3rem;
  }
  .footDiv .toptop .wrap {
    display: block;
    height: auto;
  }
  .footDiv .links a {
    line-height: 0.48rem;
  }
  .footDiv .copyright {
    line-height: 0.48rem;
  }
  .footDiv .foot_beian {
    line-height: 0.9rem;
  }
}
.pageBanner {
  position: relative;
  overflow: hidden;
}
.pageBanner .bg img {
  width: 100%;
}
.pageBanner .info {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 66%;
  text-align: center;
  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: var(--fs52);
  line-height: 0.64rem;
  font-weight: bold;
  color: #fff;
}
.pageBanner .zi {
  margin-top: 0.22rem;
  font-size: var(--fs24);
  line-height: 0.3rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-family: 'Poppins-L';
  letter-spacing: 4px;
  text-indent: 4px;
}
@media (max-width: 1004px) {
  .pageBanner .info {
    height: 80%;
  }
  .pageBanner .cn {
    font-size: var(--fs26);
    line-height: 0.72rem;
  }
  .pageBanner .zi {
    margin-top: 0.16rem;
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
}
.pageTop {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 0.9rem;
  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.1);
}
.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.6rem;
  padding: 0 0.2rem;
  height: 0.9rem;
  line-height: 0.9rem;
  text-align: center;
  color: #666;
}
.pageNav li a em {
  opacity: 0;
  background-image: linear-gradient(90deg, #3b65c0 0%, #1f3d7e 100%);
  background-blend-mode: normal, normal;
  position: absolute;
  height: 1px;
  bottom: 0;
  width: 100%;
  left: 0;
}
.pageNav li a:before {
  content: '';
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #dadfe9;
}
.pageNav li a:after {
  content: '';
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: #dadfe9;
}
.pageNav li a:hover {
  text-decoration: none;
  color: #dd0000;
}
.pageNav li .aNow {
  background: #f4f5f8;
  font-weight: bold;
  color: #dd0000;
}
.pageNav li .aNow:before,
.pageNav li .aNow:after,
.pageNav li .aNow em {
  opacity: 1;
}
.pageNow {
  display: flex;
  display: -webkit-flex;
  padding-top: 0.26rem;
  font-size: var(--fs16);
  line-height: 0.28rem;
  position: relative;
  z-index: 1;
}
.pageNow a {
  position: relative;
  padding-left: 0.12rem;
  padding-right: 0.24rem;
  color: rgba(51, 51, 51, 0.5);
}
.pageNow a:first-child {
  padding-left: 0;
}
.pageNow a::after {
  content: '';
  width: 14px;
  height: 15px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -8px;
  background: url(../img/ico3.png) center no-repeat;
}
.pageNow a:hover {
  color: #FF0103;
}
.pageNow a img {
  position: relative;
  top: -3px;
}
.pageNow em {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #FF0103;
  position: relative;
  display: inline-block;
  padding-left: 0.12rem;
  max-width: 4rem;
}
.pageDiv {
  text-align: center;
  width: 4.24rem;
  margin: 0.56rem auto 0;
}
.pageDiv .cn {
  font-size: var(--fs40);
  line-height: 0.7rem;
  color: #333;
}
.pageDiv .en {
  margin-top: 5px;
  font-size: var(--fs24);
  line-height: 0.3rem;
  font-family: 'Barlow-L';
}
.pageDiv .zi {
  margin-top: 0.3rem;
  color: #444;
  font-size: var(--fs20);
  line-height: 0.4rem;
}
@media (max-width: 1004px) {
  .pageNow {
    display: none;
  }
  .pageDiv {
    padding-top: 0.8rem;
    width: auto;
    margin: 0;
  }
  .pageDiv .cn {
    font-size: var(--fs28);
    line-height: 0.64rem;
  }
  .pageDiv .en {
    font-size: var(--fs16);
    line-height: 0.4rem;
  }
  .pageDiv .zi {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
}
.pageNum {
  position: relative;
  z-index: 1;
  text-align: center;
}
.pageNum ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.pageNum .page-item a,
.pageNum .page-item span {
  display: block;
  position: relative;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  color: #333;
  border: #d8d8d8 solid 1px;
  margin: 0 8px;
  border-radius: 50%;
  overflow: hidden;
}
.pageNum .page-item a:hover,
.pageNum .page-item span:hover {
  color: #fff;
  background: #FF0103;
  border: #FF0103 solid 1px;
}
.pageNum .page-item:nth-child(1) {
  display: none;
}
.pageNum .page-item:nth-child(2) a,
.pageNum .page-item:nth-child(2) span {
  text-indent: 100px;
}
.pageNum .page-item:nth-child(2) a:before,
.pageNum .page-item:nth-child(2) span:before {
  content: '';
  position: absolute;
  width: 7px;
  height: 12px;
  left: 50%;
  top: 50%;
  margin-left: -3px;
  margin-top: -6px;
  background: url(../img/prev.png) no-repeat;
}
.pageNum .page-item:nth-child(2) a:hover:before,
.pageNum .page-item:nth-child(2) span:hover:before {
  background: url(../img/prevon.png) no-repeat;
}
.pageNum .page-item:nth-last-child(2) a,
.pageNum .page-item:nth-last-child(2) span {
  text-indent: 100px;
}
.pageNum .page-item:nth-last-child(2) a:before,
.pageNum .page-item:nth-last-child(2) span:before {
  content: '';
  position: absolute;
  width: 7px;
  height: 12px;
  right: 50%;
  top: 50%;
  margin-right: -3px;
  margin-top: -6px;
  background: url(../img/next.png) no-repeat;
}
.pageNum .page-item:nth-last-child(2) a:hover:before,
.pageNum .page-item:nth-last-child(2) span:hover:before {
  background: url(../img/nexton.png) no-repeat;
}
.pageNum .active a {
  color: #fff;
  background: #FF0103;
  border: #FF0103 solid 1px;
}
.pageNum .jumpto {
  display: none;
}
.pageMore {
  position: relative;
  z-index: 1;
}
.pageMore a {
  display: block;
  background: #FF0103;
  width: 100%;
  height: 1rem;
  line-height: 1rem;
  text-align: center;
  font-size: var(--fs15);
  color: #fff;
}
.pageMore a:hover {
  color: #fff;
}
.pageTips {
  position: relative;
  z-index: 1;
  padding-top: 4.56rem;
  text-align: center;
  font-size: var(--fs14);
  line-height: 0.24rem;
  color: #666;
  opacity: 0.8;
}
@media (max-width: 1004px) {
  .pageNum {
    display: none;
  }
  .pageTips {
    padding: 1.2rem 0 0.6rem;
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
}
