@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;
}
.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: "Mont-B";
  src: url('../fonts/MontserratBold.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mont-M";
  src: url('../fonts/Montserrat-Medium.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@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-L";
  src: url('../fonts/Montserrat-Light.otf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Din-M";
  src: url('../fonts/D-DIN-PRO-500-Medium.otf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato-B";
  src: url('../fonts/Lato-Bold.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.wrap {
  width: var(--mainWid);
  margin: 0 auto;
}
.wrap2 {
  width: var(--otherWid);
  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;
}
.w300 {
  width: 3rem;
}
@media (max-width: 1004px) {
  .wrap,
  .wrap2 {
    padding: 0 var(--offset);
  }
  .PC-Box {
    display: none;
  }
  .Phone-Box {
    display: block;
  }
  .w300 {
    width: 100%;
  }
}
.headD {
  height: 0.9rem;
}
.headDiv {
  left: 0;
  top: 0;
  position: fixed;
  width: 100%;
  height: 0.9rem;
  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;
}
.headDiv::after {
  content: '';
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #cfcfcf;
}
.headDiv .wrap {
  position: relative;
  height: 0.9rem;
}
.headDiv .headDiv-logo {
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 0.85rem;
  z-index: 1;
}
.headDiv .headDiv-logo img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0.85rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.headDiv .headDiv-logo .img1 {
  opacity: 0;
}
.headDiv .headDiv-logo .img2,
.headDiv .headDiv-logo .img3 {
  opacity: 0;
  width: 2rem;
}
.headDiv .topRight {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.headDiv .cart {
  margin: 0.25rem 0.3rem 0 0;
}
.headDiv .cart a {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  background: url(../img/nimg25_1.png) center no-repeat;
  background-size: 0.25rem;
  cursor: pointer;
  position: relative;
}
.headDiv .cart a em {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f00;
  position: absolute;
  right: 5px;
  top: 7px;
  z-index: 1;
}
.headDiv .lan {
  margin-top: 0.25rem;
  display: none;
}
.headDiv .lan a {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  background: url(../img/nimg25_2.png) center no-repeat;
  background-size: 0.25rem;
  cursor: pointer;
  position: relative;
}
.headDiv.mini,
.headDiv.ny,
.headDiv:hover {
  background: #fff;
}
.headDiv.mini::after,
.headDiv.ny::after,
.headDiv:hover::after {
  display: block;
}
.headDiv.mini .headDiv-logo img,
.headDiv.ny .headDiv-logo img,
.headDiv:hover .headDiv-logo img {
  opacity: 0;
}
.headDiv.mini .headDiv-logo .img1,
.headDiv.ny .headDiv-logo .img1,
.headDiv:hover .headDiv-logo .img1 {
  opacity: 1;
}
.headDiv.mini .nav li a,
.headDiv.ny .nav li a,
.headDiv:hover .nav li a {
  color: #333;
}
.headDiv.mini .cart a,
.headDiv.ny .cart a,
.headDiv:hover .cart a {
  background: url(../img/nimg25_1on.png) center no-repeat;
  background-size: 0.25rem;
}
.headDiv.mini .lan a,
.headDiv.ny .lan a,
.headDiv:hover .lan a {
  background: url(../img/nimg25_2on.png) center no-repeat;
  background-size: 0.25rem;
}
.nav {
  margin-right: 0.2rem;
}
.nav li {
  position: relative;
  float: left;
  padding: 0 0.5rem;
  font-size: var(--fs16);
}
.nav li a {
  display: block;
  height: 0.9rem;
  position: relative;
  line-height: 0.9rem;
  color: #fff;
  font-family: 'Mont-L';
  text-align: center;
}
.nav li a:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #dc0021;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.nav li a:hover {
  color: #dc0021 !important;
}
.nav li a:hover:after {
  width: 100%;
  left: 0;
}
.nav li .aNow,
.nav li .aNow1 {
  color: #dc0021 !important;
}
.nav li .aNow:after,
.nav li .aNow1:after {
  width: 100%;
  left: 0;
}
.headDiv.mini .nav li a:hover,
.headDiv.ny .nav li a:hover {
  color: #dc0021;
}
.headDiv.mini .nav li .aNow,
.headDiv.ny .nav li .aNow,
.headDiv.mini .nav li .aNow1,
.headDiv.ny .nav li .aNow1 {
  color: #dc0021;
}
.sNav {
  overflow: hidden;
  position: fixed;
  z-index: 5;
  width: 100%;
  top: 0.9rem;
  height: 0;
  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: #fff4e4;
  height: 60px;
  text-align: center;
}
.sNav .lie li {
  display: inline-block;
  font-size: var(--fs16);
  margin: 0 0.3rem;
  position: relative;
  z-index: 1;
}
.sNav .lie li a {
  display: block;
  position: relative;
  line-height: 60px;
  color: #333;
}
.sNav .lie li a:hover {
  color: #dc0021;
}
.sNav.on {
  height: 60px;
}
.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: #dc0021;
}
.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_8.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: #dc0021;
  background: url(../img/nimg20_8on.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;
  font-family: 'Poppins-R';
}
.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: 20px;
  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: 1.2rem;
  }
  .headDiv {
    height: 1.2rem;
  }
  .headDiv .wrap {
    height: 1.2rem;
  }
  .headDiv .headDiv-logo {
    left: 0.3rem;
    top: 0.2rem;
  }
  .headDiv .headDiv-logo img {
    width: 1.1rem;
    display: none;
  }
  .headDiv .headDiv-logo .img1 {
    display: none;
  }
  .headDiv .headDiv-logo .img2 {
    opacity: 1;
    display: block;
  }
  .headDiv .topRight {
    right: 1rem;
  }
  .headDiv .cart {
    margin: 0.2rem 0.2rem 0 0;
  }
  .headDiv .cart a {
    width: 0.8rem;
    height: 0.8rem;
    background-size: 16px;
  }
  .headDiv .cart a em {
    width: 6px;
    height: 6px;
  }
  .headDiv .lan {
    margin-top: 0.2rem;
  }
  .headDiv .lan a {
    width: 0.8rem;
    height: 0.8rem;
    background-size: 16px;
  }
  .headDiv:hover .headDiv-logo .img2 {
    display: none;
  }
  .headDiv:hover .headDiv-logo .img3 {
    display: block;
    opacity: 1;
  }
  .headDiv:hover .cart a {
    background-size: 16px;
  }
  .headDiv:hover .lan a {
    background-size: 16px;
  }
  .headDiv.mini .headDiv-logo .img2,
  .headDiv.ny .headDiv-logo .img2 {
    display: none;
  }
  .headDiv.mini .headDiv-logo .img3,
  .headDiv.ny .headDiv-logo .img3 {
    display: block;
    opacity: 1;
  }
  .headDiv.mini .cart a,
  .headDiv.ny .cart a {
    background-size: 16px;
  }
  .headDiv.mini .lan a,
  .headDiv.ny .lan a {
    background-size: 16px;
  }
  .head-search .search-box {
    width: 90%;
  }
}
.footDiv {
  overflow: hidden;
  position: relative;
  padding: 0.7rem 0 0.6rem;
  background: #011015;
}
.footDiv .toptop {
  height: 1.6rem;
}
.footDiv .toptop::after {
  content: '';
  display: block;
  clear: both;
}
.footDiv .logo {
  float: left;
}
.footDiv .logo img {
  width: 1.31rem;
}
.footDiv .share {
  float: right;
  padding-top: 0.1rem;
}
.footDiv .share li {
  float: left;
  position: relative;
  margin-left: 0.2rem;
}
.footDiv .share li a {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  background: #616161;
  border-radius: 50%;
}
.footDiv .share li a:hover {
  background: #dc0021;
}
.footDiv .share li img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -12px;
  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 .share li .ewmLayer {
  position: absolute;
  text-align: center;
  left: 50%;
  margin-left: -60px;
  bottom: -110px;
  width: 120px;
  height: 120px;
  background: #fff;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  z-index: 5;
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
  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 .ewmLayer .imgDiv {
  padding: 10px;
}
.footDiv .share li .ewmLayer .imgDiv img {
  position: relative;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  width: 100px;
}
.footDiv .share li:hover .ewmLayer {
  opacity: 1;
  filter: alpha(opacity=1);
  visibility: visible;
  bottom: -120px;
}
.footDiv .midmid {
  overflow: hidden;
}
.footDiv .leftDiv {
  width: 4rem;
}
.footDiv .leftDiv .zi {
  height: 0.35rem;
  color: #fff;
  font-size: var(--fs18);
  line-height: 0.2rem;
  font-family: 'Mont-R';
}
.footDiv .leftDiv .msgList {
  width: 3.1rem;
}
.footDiv .leftDiv .msgList li {
  font-size: var(--fs16);
  color: rgba(248, 248, 248, 0.4);
  line-height: 0.3rem;
}
.footDiv .leftDiv .msgList li em {
  color: #fff;
  font-family: 'Mont-R';
}
.footDiv .copyright {
  padding-top: 0.5rem;
  font-size: var(--fs14);
  font-family: 'Mont-R';
  line-height: 0.2rem;
  color: #666;
}
.footDiv .copyright a {
  color: #666;
}
.footDiv .copyright a:hover {
  color: #dc0021;
}
.footDiv .copyright img {
  width: 0.3rem;
  margin-left: 0.5rem;
}
.footNav {
  width: 8.65rem;
}
.footNav ul {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.footNav li {
  width: 33.33%;
  padding-bottom: 0.6rem;
}
.footNav li h3 a {
  display: block;
  height: 0.35rem;
  color: #fff;
  font-size: var(--fs18);
  line-height: 0.2rem;
  font-family: 'Mont-R';
}
.footNav li h3 a:hover {
  color: #dc0021;
}
.footNav li dd {
  font-size: var(--fs16);
}
.footNav li dd a {
  display: block;
  color: rgba(248, 248, 248, 0.4);
  line-height: 0.3rem;
}
.footNav li dd a:hover {
  color: #dc0021;
}
.footNav li:nth-child(3n) {
  width: auto;
}
@media (max-width: 1600px) {
  .footDiv .leftDiv .msgList {
    width: 4rem;
  }
}
@media (max-width: 1004px) {
  .footNav {
    display: none;
  }
  .footDiv .toptop {
    height: 1.6rem;
  }
  .footDiv .logo img {
    width: 1.4rem;
  }
  .footDiv .share {
    float: right;
    padding-top: 0.1rem;
  }
  .footDiv .share li {
    margin-left: 0.1rem;
  }
  .footDiv .share li a {
    width: 0.8rem;
    height: 0.8rem;
  }
  .footDiv .share li img {
    width: 16px;
    margin-left: -8px;
    margin-top: -8px;
  }
  .footDiv .share li .ewmLayer {
    margin-left: -45px;
    bottom: -80px;
    width: 90px;
    height: 90px;
  }
  .footDiv .share li .ewmLayer .imgDiv {
    padding: 5px;
  }
  .footDiv .share li .ewmLayer .imgDiv img {
    width: 80px;
  }
  .footDiv .share li:hover .ewmLayer {
    bottom: -90px;
  }
  .footDiv .midmid {
    overflow: hidden;
  }
  .footDiv .leftDiv {
    width: auto;
    float: none;
  }
  .footDiv .leftDiv .zi {
    height: 0.5rem;
    font-size: var(--fs15);
    line-height: 0.3rem;
  }
  .footDiv .leftDiv .msgList {
    width: auto;
  }
  .footDiv .leftDiv .msgList li {
    font-size: var(--fs13);
    line-height: 0.48rem;
  }
  .footDiv .copyright {
    font-size: var(--fs13);
    line-height: 0.48rem;
    padding-right: 1rem;
  }
  .footDiv .copyright img {
    margin-left: 0;
    width: 0.48rem;
  }
}
.topA {
  position: absolute;
  z-index: 2;
  right: 50%;
  margin-right: -7.68rem;
  bottom: 0.6rem;
}
.topA a {
  display: block;
  position: relative;
  background: #dc0021;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}
.topA img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  margin-left: -6px;
  margin-top: -8px;
}
@media (max-width: 1600px) {
  .topA {
    margin-right: -8rem;
  }
}
@media (max-width: 1004px) {
  .topA {
    right: 0.3rem;
    margin-right: 0;
  }
  .topA a {
    width: 0.92rem;
    height: 0.92rem;
  }
}
.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.25);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.88s 0.3s;
}
.menu-right {
  position: absolute;
  right: -6.4rem;
  top: 0;
  width: 6.4rem;
  height: 100%;
  background: #fff;
  transition: 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.menu-right .toptop {
  width: 100%;
  left: 0;
  top: 0;
  height: 1.2rem;
  padding: 0.6rem 0.6rem 0;
  position: absolute;
}
.menu-right .toptop::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #f2f2f2;
}
.menu-right .toptop .title {
  font-size: var(--fs30);
  line-height: 0.32rem;
  color: #333;
  margin: 0;
  font-family: 'Lato-B';
}
.menu-right .toptop .title em {
  padding-left: 0.2rem;
  color: #999;
  font-size: var(--fs18);
  font-family: 'Mont-L';
}
.menu-right .toptop .close {
  display: none;
  position: absolute;
  right: 0.3rem;
  top: 50%;
  margin-top: -0.21rem;
  opacity: 1;
}
.menu-right .toptop .close a {
  display: block;
  width: 0.42rem;
  height: 0.42rem;
  background: url(../img/close2.png) no-repeat;
  background-size: 0.42rem;
}
.menu-right .toptop .return {
  position: absolute;
  right: 0.6rem;
  top: 0.56rem;
}
.menu-right .toptop .return a {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  border: #dcab5e solid 1px;
  border-radius: 50%;
  background: url(../img/ico7.png) center no-repeat;
}
.menu-right .toptop .return a:hover {
  border: #dc0021 solid 1px;
  background: #dc0021 url(../img/ico7on.png) center no-repeat;
}
.menu-right .botbot {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2rem;
  padding: 0.9rem 0.6rem 0;
}
.menu-right .botbot::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: #f2f2f2;
}
.menu-right .botbot .orderBtn {
  position: absolute;
  left: 0.6rem;
  top: 0.3rem;
}
.menu-right .botbot .orderBtn em {
  display: block;
  cursor: pointer;
  border-radius: 4px;
  line-height: 0.28rem;
  height: 0.3rem;
  border: #eff0f5 solid 1px;
  background: #f7f8fc url(../img/nimg16_1.png) 0.2rem center no-repeat;
  background-size: 0.16rem;
  width: 1.5rem;
  padding-left: 0.48rem;
  color: #666;
  font-size: var(--fs14);
}
.menu-right .botbot .orderBtn em:hover {
  border: #dba95b solid 1px;
  color: #dba95b;
  background: #f7f8fc url(../img/nimg16_1on.png) 0.2rem center no-repeat;
  background-size: 0.16rem;
}
.menu-right .botbot .orderBtn .layer {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0.32rem;
  width: 4.6rem;
  padding: 0.18rem;
  border-radius: 4px;
  border: #eff0f5 solid 1px;
  background: #fff;
  z-index: 3;
  box-shadow: 0 0 0.16rem 0 rgba(0, 0, 0, 0.09);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.menu-right .botbot .orderBtn .layer textarea {
  width: 100%;
  padding: 0.15rem;
  font-size: var(--fs14);
  line-height: 0.24rem;
  background: #f7f8fc;
  border-radius: 6px;
  height: 1.5rem;
  font-family: 'Mont-L';
}
.menu-right .botbot .orderBtn .layer textarea:-webkit-autofill,
.menu-right .botbot .orderBtn .layer textarea:-webkit-autofill:hover,
.menu-right .botbot .orderBtn .layer textarea:-webkit-autofill:focus,
.menu-right .botbot .orderBtn .layer textarea:-webkit-autofill:active {
  /* 设置背景色为白色（或你的设计颜色） */
  -webkit-box-shadow: 0 0 0 1000px #f7f8fc inset !important;
  /* 添加过渡效果 */
  transition: background-color 5000s ease-in-out 0s;
}
.menu-right .botbot .orderBtn .layer .btnGroup {
  margin-top: 0.2rem;
  overflow: hidden;
}
.menu-right .botbot .orderBtn .layer .btnGroup li {
  float: left;
  margin-left: 0.2rem;
  font-size: var(--fs16);
  font-family: 'Mont-R';
}
.menu-right .botbot .orderBtn .layer .btnGroup li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 0.48rem;
  width: 1.2rem;
  height: 0.4rem;
  background: #dc0021;
  color: #fff;
}
.menu-right .botbot .orderBtn .layer .btnGroup li:first-child a {
  background: none;
  border: #dba95b solid 1px;
  color: #dba95b;
}
.menu-right .botbot .orderBtn .layer .btnGroup li:first-child a:hover {
  border: #dc0021 solid 1px;
  background: #dc0021;
  color: #fff;
}
.menu-right .botbot .orderBtn.cur .layer {
  opacity: 1;
  visibility: visible;
}
.menu-right .botbot .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 0.56rem;
  border-radius: 0.48rem;
  border: #dba95b solid 1px;
  color: #dba95b;
  font-size: var(--fs16);
  font-family: 'Mont-R';
}
.menu-right .botbot .btnDiv a:hover {
  border: #dc0021 solid 1px;
  background: #dc0021;
  color: #fff;
}
.menu-right .midmid {
  padding: 1.5rem 0.6rem 0;
}
.menu-right .guideList {
  height: calc(100vh - 3.7rem);
  overflow: auto;
}
.menu-right .guideList::-webkit-scrollbar {
  width: 4px;
}
.menu-right .guideList::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.menu-right .guideList::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
}
.menu-right .guideList li .zi {
  height: 0.6rem;
  background: #ebebeb;
  border-radius: 0.48rem;
  position: relative;
  padding-left: 0.7rem;
  font-size: var(--fs18);
  line-height: 0.6rem;
  color: #222;
  font-family: 'Mont-R';
}
.menu-right .guideList li .num {
  position: absolute;
  left: 0.2rem;
  top: 50%;
  margin-top: -0.15rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #dc0021;
  color: #fff;
  text-align: center;
  line-height: 0.3rem;
}
.menu-right .guideList li .msg {
  position: relative;
  padding: 0.25rem 0 0.5rem 0.7rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
}
.menu-right .guideList li .msg::before {
  content: '';
  position: absolute;
  left: 0.35rem;
  top: 0;
  width: 1px;
  height: 100%;
  background: url(../img/line1.png) repeat-y;
}
.menu-right .guideList li:last-child .msg::before {
  display: none;
}
.menu-right .cartList {
  height: calc(100vh - 3.7rem);
  overflow: auto;
}
.menu-right .cartList::-webkit-scrollbar {
  width: 4px;
}
.menu-right .cartList::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.menu-right .cartList::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
}
.menu-right .cartList li {
  margin-bottom: 0.2rem;
  padding-left: 1.5rem;
  height: 1.2rem;
  position: relative;
}
.menu-right .cartList li .imgDiv {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
}
.menu-right .cartList li .imgDiv img {
  max-width: 100%;
  max-height: 100%;
}
.menu-right .cartList li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 0.36rem;
  line-height: 0.36rem;
  padding-right: 0.6rem;
  font-size: var(--fs18);
  color: #333;
  font-family: 'Mont-R';
}
.menu-right .cartList li .del {
  position: absolute;
  right: 0;
  top: 0.06rem;
}
.menu-right .cartList li .del img {
  width: 0.19rem;
}
.menu-right .cartList li .msg {
  font-size: var(--fs14);
  color: #666;
  line-height: 0.24rem;
  word-break: break-all;
}
.menu-right .cartList li .msg em {
  padding-right: 0.18rem;
}
.menu-right .cartList li .numInput {
  width: 1.3rem;
  height: 0.35rem;
  overflow: hidden;
  position: absolute;
  border-radius: 8px;
  border: #f0f1f6 solid 1px;
  background: #f7f8fc;
  left: 1.5rem;
  bottom: 0;
}
.menu-right .cartList li .numInput span {
  display: block;
  position: absolute;
  cursor: pointer;
  top: 0;
  width: 0.33rem;
  height: 0.33rem;
  z-index: 1;
}
.menu-right .cartList li .numInput .jianBtn {
  left: 0;
}
.menu-right .cartList li .numInput .jianBtn::after {
  content: '';
  width: 6px;
  height: 1px;
  background: #c2c4cc;
  position: absolute;
  left: 50%;
  margin-left: -3px;
  top: 50%;
}
.menu-right .cartList li .numInput .jiaBtn {
  right: 0;
}
.menu-right .cartList li .numInput .jiaBtn::after {
  content: '';
  width: 7px;
  height: 1px;
  background: #333;
  position: absolute;
  left: 50%;
  margin-left: -3px;
  top: 50%;
}
.menu-right .cartList li .numInput .jiaBtn::before {
  content: '';
  width: 1px;
  height: 7px;
  background: #333;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -3px;
}
.menu-right .cartList li .numInput .kuang {
  position: relative;
  height: 0.35rem;
}
.menu-right .cartList li .numInput .kuang input {
  width: 100%;
  background: none;
  height: 0.33rem;
  line-height: 0.33rem;
  font-size: var(--fs16);
  color: #333;
  font-family: 'Mont-R';
  text-align: center;
}
.menu-right .cartList li .numInput .kuang input:-webkit-autofill,
.menu-right .cartList li .numInput .kuang input:-webkit-autofill:hover,
.menu-right .cartList li .numInput .kuang input:-webkit-autofill:focus,
.menu-right .cartList li .numInput .kuang input:-webkit-autofill:active {
  /* 设置背景色为白色（或你的设计颜色） */
  -webkit-box-shadow: 0 0 0 1000px #f7f8fc inset !important;
  /* 添加过渡效果 */
  transition: background-color 5000s ease-in-out 0s;
}
.menu-right .cartList li .unit {
  position: absolute;
  left: 3rem;
  bottom: 0;
  font-size: var(--fs16);
  color: #333;
  line-height: 0.35rem;
}
.menu-right .lybDiv {
  display: none;
}
.menu-right .formList {
  height: calc(100vh - 3.7rem);
  overflow: auto;
}
.menu-right .formList::-webkit-scrollbar {
  width: 4px;
}
.menu-right .formList::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.menu-right .formList::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
}
.menu-right .formList li {
  margin-bottom: 0.2rem;
}
.menu-right .formList li .lbox {
  position: relative;
  background: #f2f2f2;
  padding-left: 1.4rem;
  border-radius: 6px;
  overflow: hidden;
}
.menu-right .formList li .zi {
  position: absolute;
  left: 0.4rem;
  top: 0;
  font-size: var(--fs16);
  line-height: 0.6rem;
  color: #333;
  font-family: 'Mont-R';
}
.menu-right .formList li .zi em {
  color: #ff0909;
}
.menu-right .formList li .input1 {
  width: 100%;
  height: 0.6rem;
  line-height: 0.6rem;
  font-size: var(--fs16);
  background: none;
  color: #222;
  font-family: 'Mont-L';
}
.menu-right .formList li .input1::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.menu-right .formList li .input1:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.menu-right .formList li .input1::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.menu-right .formList li .input1:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.menu-right .formList li .input1:-webkit-autofill,
.menu-right .formList li .input1:-webkit-autofill:hover,
.menu-right .formList li .input1:-webkit-autofill:focus,
.menu-right .formList li .input1:-webkit-autofill:active {
  /* 设置背景色为白色（或你的设计颜色） */
  -webkit-box-shadow: 0 0 0 1000px #f2f2f2 inset !important;
  /* 添加过渡效果 */
  transition: background-color 5000s ease-in-out 0s;
}
.menu-right .formList li .yzm {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  margin-top: -0.18rem;
  z-index: 1;
}
.menu-right .formList li .yzm img {
  height: 0.36rem;
}
.menu-right .formList li textarea {
  background: #f2f2f2;
  border-radius: 6px;
  width: 100%;
  font-size: var(--fs16);
  line-height: 0.28rem;
  color: #222;
  font-family: 'Mont-L';
  padding: 0.2rem 0.4rem;
  height: 2.8rem;
}
.menu-right .formList li textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.menu-right .formList li textarea:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.menu-right .formList li textarea::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.menu-right .formList li textarea:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.menu-right .formList li:last-child .lbox {
  padding-left: 2rem;
}
.menu-right .successDiv {
  display: none;
}
.menu-right .successDiv .mxfDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  text-align: center;
  height: 100vh;
}
.menu-right .successDiv .ico img {
  width: 1.2rem;
}
.menu-right .successDiv .msg {
  margin: 0.3rem 0 0.75rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #000;
  font-family: 'Mont-R';
}
.menu-right .successDiv .lbtn {
  width: 3.2rem;
  margin: 0 auto;
}
.menu-right .successDiv .lbtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 0.56rem;
  border-radius: 0.48rem;
  color: #dba95b;
  font-size: var(--fs16);
  font-family: 'Mont-R';
  border: #dba95b solid 1px;
}
.menu-right .successDiv .lbtn a:hover {
  border: #dc0021 solid 1px;
  background: #dc0021;
  color: #fff;
}
.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;
}
@media (max-width: 1004px) {
  .menu-right {
    right: -100%;
    width: 100%;
  }
  .menu-right .toptop {
    padding: 0.4rem 0.3rem 0;
  }
  .menu-right .toptop .title {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .menu-right .toptop .title em {
    font-size: var(--fs13);
  }
  .menu-right .toptop .close {
    display: block;
  }
  .menu-right .toptop .return {
    right: 0.3rem;
    top: 50%;
    margin-top: -0.3rem;
  }
  .menu-right .toptop .return a {
    width: 0.6rem;
    height: 0.6rem;
  }
  .menu-right .botbot {
    padding: 0.9rem 0.3rem 0;
  }
  .menu-right .botbot .orderBtn {
    left: 0.3rem;
    top: 0.2rem;
  }
  .menu-right .botbot .orderBtn em {
    line-height: 0.48rem;
    height: 0.5rem;
    background-size: 12px;
    width: 2.4rem;
    padding-left: 0.6rem;
    font-size: var(--fs13);
  }
  .menu-right .botbot .orderBtn em:hover {
    background-size: 12px;
  }
  .menu-right .botbot .orderBtn .layer {
    bottom: 0.52rem;
    width: 6.2rem;
    padding: 0.2rem;
  }
  .menu-right .botbot .orderBtn .layer textarea {
    padding: 0.2rem;
    line-height: 0.48rem;
    height: 2.5rem;
  }
  .menu-right .botbot .orderBtn .layer .btnGroup li {
    font-size: var(--fs14);
  }
  .menu-right .botbot .orderBtn .layer .btnGroup li a {
    width: 2rem;
    height: 0.7rem;
  }
  .menu-right .botbot .btnDiv a {
    border: #dba95b solid 1px;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .menu-right .botbot .btnDiv a:hover {
    border: #dc0021 solid 1px;
  }
  .menu-right .midmid {
    padding: 1.6rem 0.3rem 0;
  }
  .menu-right .guideList li .zi {
    height: 0.86rem;
    padding-left: 0.9rem;
    font-size: var(--fs14);
    line-height: 0.86rem;
  }
  .menu-right .guideList li .num {
    margin-top: -0.24rem;
    width: 0.48rem;
    height: 0.48rem;
    line-height: 0.48rem;
  }
  .menu-right .guideList li .msg {
    padding: 0.2rem 0 0.4rem 0.9rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .menu-right .guideList li .msg::before {
    left: 0.45rem;
  }
  .menu-right .guideList li:last-child .msg::before {
    display: none;
  }
  .menu-right .cartList li {
    padding-left: 2.1rem;
    height: 1.9rem;
  }
  .menu-right .cartList li .imgDiv {
    width: 1.9rem;
    height: 1.9rem;
  }
  .menu-right .cartList li .name {
    height: 0.48rem;
    line-height: 0.48rem;
    font-size: var(--fs15);
  }
  .menu-right .cartList li .del {
    top: 0;
  }
  .menu-right .cartList li .del img {
    width: 0.3rem;
  }
  .menu-right .cartList li .msg {
    font-size: var(--fs12);
    line-height: 0.34rem;
    max-height: 0.68rem;
    overflow: hidden;
  }
  .menu-right .cartList li .msg em {
    padding-right: 0.18rem;
  }
  .menu-right .cartList li .numInput {
    width: 2.3rem;
    height: 0.6rem;
    border-radius: 6px;
    left: 2.1rem;
  }
  .menu-right .cartList li .numInput span {
    width: 0.58rem;
    height: 0.58rem;
  }
  .menu-right .cartList li .numInput .kuang {
    height: 0.58rem;
  }
  .menu-right .cartList li .numInput .kuang input {
    height: 0.58rem;
    line-height: 0.58rem;
    font-size: var(--fs14);
  }
  .menu-right .cartList li .unit {
    left: 4.6rem;
    font-size: var(--fs14);
    line-height: 0.58rem;
  }
  .menu-right .formList li {
    margin-bottom: 0.3rem;
  }
  .menu-right .formList li .lbox {
    padding-left: 2rem;
  }
  .menu-right .formList li .zi {
    left: 0.3rem;
    font-size: var(--fs13);
    line-height: 0.9rem;
  }
  .menu-right .formList li .input1 {
    height: 0.9rem;
    line-height: 0.9rem;
    font-size: var(--fs14);
  }
  .menu-right .formList li .yzm {
    right: 0.2rem;
    margin-top: -0.24rem;
  }
  .menu-right .formList li .yzm img {
    height: 0.48rem;
  }
  .menu-right .formList li textarea {
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding: 0.3rem;
    height: 3rem;
  }
  .menu-right .formList li:last-child .lbox {
    padding-left: 3rem;
  }
  .menu-right .successDiv .ico img {
    width: 1.5rem;
  }
  .menu-right .successDiv .msg {
    margin: 0.3rem 0 0.6rem;
    font-size: var(--fs16);
    line-height: 0.56rem;
  }
  .menu-right .successDiv .lbtn {
    width: 4.2rem;
  }
  .menu-right .successDiv .lbtn a {
    width: 100%;
    height: 0.86rem;
    font-size: var(--fs14);
  }
}
.pageBanner {
  position: relative;
  overflow: hidden;
}
.pageBanner::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 120px;
  background: url(../img/bg1.png) top center repeat-x;
  z-index: 1;
}
.pageBanner .bg {
  height: 7rem;
}
.pageBanner .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pageBanner .info {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  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 .txtDiv {
  position: relative;
  padding-bottom: 0.7rem;
}
.pageBanner .en {
  font-size: var(--fs60);
  line-height: 0.72rem;
  text-transform: uppercase;
  margin: 0;
  font-family: 'Mont-B';
}
.pageBanner .zi {
  font-size: var(--fs24);
  line-height: 0.36rem;
  margin-top: 0.25rem;
}
.pageBanner .txtImg {
  position: absolute;
  right: 50%;
  bottom: 0;
  margin-right: -4rem;
  transform: rotate(-10deg);
}
.pageBanner .txtImg img {
  width: 1.86rem;
}
@media (max-width: 1004px) {
  .pageBanner::after {
    background: none;
    background-image: linear-gradient(180deg, #000 0%, transparent 100%);
    background-blend-mode: normal, normal;
  }
  .pageBanner .bg {
    height: 4.5rem;
  }
  .pageBanner .txtDiv {
    padding-bottom: 0;
    margin-top: 0;
  }
  .pageBanner .en {
    font-size: var(--fs20);
    line-height: 0.42rem;
  }
  .pageBanner .zi {
    font-size: var(--fs14);
    line-height: 0.42rem;
    margin: 0.2rem auto 0;
    width: 80%;
  }
  .pageBanner .txtImg {
    display: none;
  }
}
@media (max-width: 640px) {
	.pageBanner .txtDiv {
		padding-bottom: 0;
		margin-top: 10%;
  }
}

.pageTitle {
  position: relative;
  text-align: center;
  font-size: var(--fs50);
  line-height: 0.6rem;
  color: #222;
  font-family: 'Lato-B';
  padding-bottom: 0.35rem;
}
.pageTitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -0.35rem;
  width: 0.7rem;
  height: 0.06rem;
  border-radius: 4px;
  background-image: linear-gradient(90deg, #a50017 0%, #dc0021 100%);
  background-blend-mode: normal, normal;
}
.pageTitleTel {
  height: 1.1rem;
  position: relative;
  background: #dc0021;
}
.sideTitleTel {
  width: 100%;
  height: 1.1rem;
  position: absolute;
  left: 0px;
  top: 0px;
}
.sideTitleTel .con {
  font-size: var(--fs18);
  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 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 .con em {
  display: block;
  color: #fff;
  padding-left: 0.3rem;
}
.sideTitleTel .con.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(--fs14);
  height: 1rem;
  border-bottom: #d7d7d7 solid 1px;
}
.sideTitleNav li a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  height: 1rem;
  line-height: 1rem;
  padding-left: 0.3rem;
  color: #666;
}
@media (max-width: 1004px) {
  .pageTitle {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
}
.pageNowBox {
  height: 0.8rem;
  background: #fff4e4;
}
.pageNow {
  padding-left: 34px;
  background: url(../img/nimg14_1.png) left center no-repeat;
  font-size: 14px;
  line-height: 0.8rem;
}
.pageNow a {
  position: relative;
  display: inline-block;
  padding-left: 18px;
  padding-right: 14px;
  color: #666;
}
.pageNow a::before {
  content: '';
  width: 4px;
  height: 5px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
  background: url(../img/ico6.png) center no-repeat;
}
.pageNow a:hover {
  color: #dc0021;
}
.pageNow em {
  position: relative;
  display: inline-block;
  padding-left: 18px;
  color: #dc0021;
}
.pageNow em::before {
  content: '';
  width: 4px;
  height: 5px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
  background: url(../img/ico6.png) center no-repeat;
}
.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;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  color: #3f4150;
  background: #f8f8f8;
  margin: 0 6px;
  border-radius: 50%;
}
.pageNum a:hover {
  color: #fff;
  background: #dc0021;
}
.pageNum .aNow {
  color: #fff;
  background: #dc0021;
}
.pageNum .prev:before {
  content: '';
  position: absolute;
  width: 9px;
  height: 15px;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  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: 15px;
  right: 50%;
  top: 50%;
  margin-right: -4px;
  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: #dc0021;
  line-height: 1rem;
  text-align: center;
  font-size: var(--fs15);
  color: #fff;
}
@media (max-width: 1004px) {
  .pageNum {
    display: none;
  }
}
.notice-section {
  display: none;
  background: #fff;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 20;
  width: 100%;
  padding: 0.3rem 4.6rem 0.3rem 0.65rem;
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.1);
}
.notice-box .txt-box {
  font-size: var(--fs14);
  line-height: 0.26rem;
  color: #333;
}
.notice-box .txt-box a {
  color: #333;
  text-decoration: underline;
}
.notice-box .txt-box a:hover {
  color: #dc0021;
}
.notice-box .btnDiv {
  position: absolute;
  right: 0.4rem;
  top: 0.4rem;
  z-index: 1;
}
.notice-box .btnDiv li {
  float: left;
  margin-left: 0.2rem;
}
.notice-box .btnDiv li a {
  display: block;
  width: 1.78rem;
  text-align: center;
  height: 0.32rem;
  line-height: 0.3rem;
  border: #000 solid 1px;
  font-size: var(--fs14);
  color: #151515;
  border-radius: 2px;
  text-transform: uppercase;
}
.notice-box .btnDiv li a:hover {
  border: #dc0021 solid 1px;
  background: #dc0021;
  color: #fff;
}
@media (max-width: 1004px) {
  .notice-section {
    padding: 0.4rem 0.35rem;
  }
  .notice-box .txt-box {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .notice-box .btnDiv {
    position: relative;
    right: 0;
    top: 0;
    text-align: center;
    padding-top: 0.3rem;
  }
  .notice-box .btnDiv li {
    display: inline-block;
    float: none;
    margin-left: 0.06rem;
    margin-right: 0.06rem;
  }
  .notice-box .btnDiv li a {
    font-size: var(--fs12);
    height: 0.56rem;
    line-height: 0.54rem;
    width: 2.8rem;
  }
}
