@charset "UTF-8";
@import "//at.alicdn.com/t/font_3255750_lfx1t6h394g.css";
.layui-layer-btn0 {
  background-color: var(--base-color) !important;
  border-color: var(--base-color) !important;
}

/* BEM
BEM代表 “块（block）,元素（element）,修饰符（modifier）”
我们常用这三个实体开发组件。
-   中划线 ：仅作为连字符使用，表示某个块或者某个子元素的多单词之间的连接记号。
--  双中划线线：用来描述一个块或者块的子元素的一种状态
__  双下划线：双下划线用来连接块和块的子元素
xh-form__input--inline
 -------------------------- */
/* BEM
 -------------------------- */
/* BEM support Func
 -------------------------- */
/* Break-points
 -------------------------- */
/* Scrollbar
 -------------------------- */
/* Placeholder
 -------------------------- */
/*
 公共mixin scss文件
*/
.xh-form-item {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
}
.xh-form-item.top {
  -moz-box-align: start;
   -ms-flex-align: start;
       align-items: flex-start;
}
.xh-form-item {
  margin-bottom: 10px;
}
.xh-form-item__label {
  text-align: right;
  vertical-align: middle;
  font-size: 14px;
  color: #333;
  line-height: 40px;
  padding: 0 12px 0 0;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  min-width: 80px;
}

.xh-form-item--block {
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
   -ms-flex-direction: column;
       flex-direction: column;
}
.xh-form-item--block .xh-form-item__label {
  text-align: left;
}

.xh-form-item__content {
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
}

.xh-form-item--flex-end {
  -moz-box-pack: end;
   -ms-flex-pack: end;
       justify-content: flex-end;
}

.xh-form-item__error {
  color: #F56C6C;
  font-size: 12px;
  line-height: 1;
  padding-top: 4px;
  position: absolute;
  top: 100%;
  left: 0;
}

.xh-form-item.is-required:after {
  content: "*";
  color: #F56C6C;
  margin-left: 4px;
}

.xh-inner {
  display: block;
  resize: vertical;
  line-height: 46px;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  width: 100%;
  font-size: inherit;
  color: #333;
  background-color: #fff;
  background-image: none;
  border: 1px solid #999;
  border-radius: 3px;
  -moz-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
       transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  position: relative;
}
.xh-inner::-webkit-input-placeholder {
  color: #999;
}
.xh-inner:-ms-input-placeholder {
  color: #999;
}
.xh-inner::placeholder {
  color: #999;
}
.xh-inner:hover {
  border-color: #333;
}
.xh-inner:focus, .xh-inner.xh-form-danger {
  outline: none;
  border-color: #F56C6C;
}
.xh-inner select {
  border: none;
  height: 100%;
  line-height: 46px;
  height: 46px;
  width: 100%;
  padding: 0px 15px;
}
.xh-inner select::-webkit-scrollbar-track-piece {
  background: var(--base-color);
}
.xh-inner select::-webkit-scrollbar {
  width: #ccc;
  height: #ccc;
}
.xh-inner select::-webkit-scrollbar-thumb {
  background: 2px;
  border-radius: 2px;
}
.xh-inner select option {
  font-size: inherit;
  line-height: 46px;
}

.xh-input {
  line-height: 46px;
  height: 46px;
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
  border: none;
  width: 100%;
  padding: 0px 15px;
  overflow: hidden;
  background-color: transparent;
}
.xh-input:focus {
  outline: 0;
  border: none;
}
.xh-input--prefix {
  font-size: 14px;
  position: relative;
  left: -5px;
  padding: 0px 5px;
}
.xh-input--prefix i {
  width: 20px;
  display: inline-block;
  font-size: 18px;
  vertical-align: middle;
}
.xh-input--prefix::before {
  font-size: 20px;
  vertical-align: middle;
  margin-right: 8px;
}

.xh-textarea {
  line-height: 46px;
  height: 138px;
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
  border: none;
  padding: 0px 15px;
  overflow: hidden;
  font-family: "Microsoft Yahei", "楷体", "新宋体", Arial, Helvetica;
  background-color: transparent;
}
.xh-textarea:focus {
  outline: 0;
  border: none;
}
.xh-textarea--prefix {
  font-size: 14px;
  position: relative;
  left: -5px;
  padding: 0px 5px;
}
.xh-textarea--prefix i {
  width: 20px;
  display: inline-block;
  font-size: 18px;
  vertical-align: middle;
}
.xh-textarea--prefix::before {
  font-size: 20px;
  vertical-align: middle;
  margin-right: 8px;
}

.xh-btn {
  line-height: 46px;
  height: 46px;
  width: 100%;
  background-color: var(--base-color);
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  padding: 0px 24px;
}
.xh-btn--inline {
  width: auto;
}

@font-face {
  font-family: "iconfont"; /* Project id 4471898 */
  src: url("//at.alicdn.com/t/c/font_4471898_fz9hb31im17.woff2?t=1714138962689") format("woff2"), url("//at.alicdn.com/t/c/font_4471898_fz9hb31im17.woff?t=1714138962689") format("woff"), url("//at.alicdn.com/t/c/font_4471898_fz9hb31im17.ttf?t=1714138962689") format("truetype");
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-you:before {
  content: "\e63b";
}

.icon-jifen:before {
  content: "\e602";
}

.icon-bofang:before {
  content: "\e606";
}

.icon-touzilicai:before {
  content: "\e61e";
}

.icon-chanpin:before {
  content: "\e632";
}

.icon-caigoujiage:before {
  content: "\e619";
}

.icon-yitihuaguanli:before {
  content: "\e6e5";
}

.icon-fuwu:before {
  content: "\eb36";
}

.icon-fuwu_o:before {
  content: "\ebbe";
}

.icon-yitihua-:before {
  content: "\e61a";
}

.icon-yitihua-1:before {
  content: "\e62b";
}

.icon-touzi:before {
  content: "\e703";
}

.icon-yewufuneng:before {
  content: "\e607";
}

.icon-zonghejingjizhishu:before {
  content: "\e638";
}

.icon-chanpin2:before {
  content: "\e61b";
}

.icon-xiaoji:before {
  content: "\e78c";
}

.icon-chahao:before {
  content: "\e68b";
}

.icon-fenxiao:before {
  content: "\e618";
}

.icon-kehu:before {
  content: "\e614";
}

.icon-yingxiaofangan:before {
  content: "\e6ac";
}

.icon-rimaoli:before {
  content: "\e609";
}

.icon-zhuanhua:before {
  content: "\e689";
}

.icon-basesalescardPackage:before {
  content: "\e629";
}

.icon-dianhua2:before {
  content: "\e6b9";
}

.icon-dianhuahover:before {
  content: "\e61f";
}

.icon-kuaishou:before {
  content: "\e601";
}

.icon-douyin:before {
  content: "\e8db";
}

.icon-weixin:before {
  content: "\e600";
}

.icon-xiaohongshu:before {
  content: "\e663";
}

.icon-kedan:before {
  content: "\e93b";
}

.icon-shouyi:before {
  content: "\e6b6";
}

.icon-gengduochanpin:before {
  content: "\e67d";
}

.icon-chanpinguanli:before {
  content: "\e60e";
}

/*
适用于 dedecms 的一些公用scss文件
*/
.j6 .xh-bd-item:last-child {
  margin-right: 0;
}
.j6 .xh-btn {
  height: 35px;
  line-height: 35px;
}

* {
  margin: 0px;
  padding: 0px;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

html,
body {
  margin: 0px auto;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  line-height: 1.6;
  -webkit-text-size-adjust: none;
  margin: 0px auto;
  min-height: 100%;
  font-size: 14px;
  font-family: "Microsoft Yahei", "楷体", "新宋体", Arial, Helvetica, sans-serif;
}

html {
  -webkit-text-size-adjust: none;
}

ul,
li {
  list-style: none;
}

img {
  border: none;
  line-height: 1;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

.t10 {
  margin-top: 10px;
}

.t20 {
  margin-top: 20px;
}

.t30 {
  margin-top: 30px;
}

.t40 {
  margin-top: 40px;
}

.t50 {
  margin-top: 50px;
}

/*************************** 字体大小通用 ************************************/
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: normal;
}

a {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: var(--base-color);
}

.imgs {
  overflow: hidden;
  line-height: 1;
}
.imgs img {
  width: 100%;
  -moz-transition: all 0.7s;
       transition: all 0.7s;
  vertical-align: middle;
  height: auto;
}
.imgs:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.max-img img {
  max-width: 100%;
  height: auto;
}

.img img {
  max-width: 100%;
  height: auto;
}

@-moz-keyframes lds-dual-ring {
  0% {
    -moz-transform: rotate(0);
         transform: rotate(0);
  }
  100% {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg);
  }
}

@keyframes lds-dual-ring {
  0% {
    -moz-transform: rotate(0);
         transform: rotate(0);
  }
  100% {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg);
  }
}
.foot-tc {
  background-color: rgba(var(--base-color), 0.9);
  position: fixed;
  bottom: 0px;
  padding: 40px 10px;
  width: 100%;
  z-index: 999;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  -moz-box-pack: center;
   -ms-flex-pack: center;
       justify-content: center;
}
.foot-tc .foot-tc-zt {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
}
.foot-tc .tc-logo img {
  height: 40px;
  width: auto;
}
.foot-tc .xh-form-item {
  margin-bottom: 0;
}
.foot-tc .foot-tc-ul {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.foot-tc .foot-tc-ul li {
  margin-left: 30px;
  color: #fff;
}
.foot-tc .foot-tc-ul .xh-form-item__label {
  color: #fff;
}
.foot-tc .foot-tc-ul .xh-input,
.foot-tc .foot-tc-ul .xh-inner,
.foot-tc .foot-tc-ul .xh-btn, .foot-tc .foot-tc-ul select {
  height: 40px;
  line-height: 40px;
}
.foot-tc .xh-btn {
  background-color: #fff;
  border-radius: 0;
  color: #333;
  font-size: 14px;
  padding: 0 10px;
}
.foot-tc .cha {
  color: #fff;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  border: 1px solid #fff;
  margin-left: 50px;
  cursor: pointer;
}

.fd-right {
  position: fixed;
  right: 0px;
  top: 50%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  z-index: 99;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
}
.fd-right li {
  cursor: pointer;
  color: #606060;
  border-bottom: 1px solid #cccccc;
  width: 80px;
  background: #fff;
  text-align: center;
  position: relative;
}
.fd-right li a {
  position: relative;
  z-index: 2;
  padding: 6px 0;
  display: block;
}
.fd-right li a:hover {
  background: var(--base-color);
  color: #fff !important;
}
.fd-right li i {
  font-size: 30px;
  height: 40px;
  line-height: 40px;
  _display: inline;
  zoom: 1;
  display: inline-block;
  vertical-align: middle;
}
.fd-right li p {
  line-height: 30px;
}
.fd-right li .fd-ceng {
  position: absolute;
  right: -200px;
  padding: 10px;
  background: var(--base-color);
  -moz-transition: all 0.5s;
       transition: all 0.5s;
  opacity: 0;
  top: 0px;
  font-size: 0px;
  white-space: nowrap;
}
.fd-right li .fd-ceng .doc-tele {
  width: 150px;
  padding: 0px 8px;
  _display: inline;
  zoom: 1;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #eee;
  line-height: 40px;
  height: 40px;
}
.fd-right li .fd-ceng .doc-submit {
  text-align: center;
  width: 70px;
  _display: inline;
  zoom: 1;
  display: inline-block;
  vertical-align: middle;
  line-height: 40px;
  border: none;
  background: #000;
  height: 40px;
  color: #fff;
}
.fd-right li .fd-weixin {
  width: 100px;
  height: 100px;
  display: block;
}
.fd-right li:hover .fd-ceng {
  opacity: 1;
  right: 80px;
}
.fd-right li:hover a {
  background: var(--base-color);
}
.fd-right li:nth-child(3) {
  border-bottom: none;
}
.fd-right li.go-top {
  border-bottom: none;
}

.go-top {
  display: none;
}

.bd-tc {
  position: fixed;
  width: 500px;
  max-width: 90%;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 10px;
  z-index: 999;
  padding: 32px 37px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  display: none;
}
.bd-tc.active {
  display: block;
}
.bd-tc-body {
  margin-top: 10px;
}
.bd-tc-cha {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}
.bd-tc-cha .iconfont {
  font-size: 24px;
}
.bd-tc-header {
  padding: 10px 20px;
  text-align: center;
}
.bd-tc-header .title {
  color: var(--base-color);
}
.bd-tc-header .info {
  margin-top: 10px;
}
.bd-tc .bd-input {
  width: 100%;
  height: 40px;
  background-color: #fff;
  padding: 0px 15px;
  border: 1px solid #eee;
  background-color: #f6f6f6;
}
.bd-tc .bd-tc-ul li {
  margin-bottom: 20px;
}
.bd-tc .bd-tc-btn {
  background-color: var(--base-color);
  color: #fff;
  background-color: var(--base-color);
  color: #fff;
  font-size: 16px;
  width: 100%;
  height: 40px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
.bd-tc .bd-select {
  width: 100%;
  height: 40px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #eee;
  padding: 0px 10px;
  background-color: #f6f6f6;
}

.img-tc {
  position: fixed;
  width: 1000px;
  max-width: 90%;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 10px;
  z-index: 999;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  display: none;
  overflow: hidden;
}
.img-tc img {
  width: 100%;
  max-width: 100%;
}

.a-sp-zt {
  position: fixed;
  width: 1200px;
  max-width: 80%;
  max-width: 90%;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 10px;
  z-index: 999;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  display: none;
  overflow: hidden;
}
.a-sp-zt #a-sp-video {
  width: 100%;
  line-height: 1;
}

/**
 * Swiper 4.5.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 16, 2019
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -ms-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -moz-transition-property: -moz-transform;
       transition-property: transform;
  transition-property: transform, -webkit-transform;
  -moz-box-sizing: content-box;
       box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -moz-transform: translate3d(0, 0, 0);
       transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -moz-transition-timing-function: ease-out;
       transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -moz-transition-property: -moz-transform;
       transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -ms-flex-align: start;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-transition-property: -moz-transform, height;
       transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
  -moz-perspective: 1200px;
       perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -moz-transform-style: preserve-3d;
       transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -moz- oldlinear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -moz- oldlinear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -moz- oldlinear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -moz- oldlinear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical, .swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -moz-transition: 0.3s opacity;
       transition: 0.3s opacity;
  -moz-transform: translate3d(0, 0, 0);
       transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -ms-transform: scale(0.33);
  -moz-transform: scale(0.33);
       transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -ms-transform: scale(1);
  -moz-transform: scale(1);
       transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -ms-transform: scale(1);
  -moz-transform: scale(1);
       transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -ms-transform: scale(0.66);
  -moz-transform: scale(0.66);
       transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -ms-transform: scale(0.33);
  -moz-transform: scale(0.33);
       transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -ms-transform: scale(0.66);
  -moz-transform: scale(0.66);
       transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -ms-transform: scale(0.33);
  -moz-transform: scale(0.33);
       transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -moz-transform: translate3d(0, -50%, 0);
       transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
       transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -moz-transition: 0.2s -moz-transform, 0.2s top;
       transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
       transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -moz-transition: 0.2s -moz-transform, 0.2s left;
       transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -moz-transition: 0.2s -moz-transform, 0.2s right;
       transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -ms-transform: scale(0);
  -moz-transform: scale(0);
       transform: scale(0);
  -ms-transform-origin: left top;
  -moz-transform-origin: left top;
       transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -ms-transform-origin: right top;
  -moz-transform-origin: right top;
       transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -ms-flex-pack: center;
  -moz-box-pack: center;
       justify-content: center;
  -ms-flex-align: center;
  -moz-box-align: center;
       align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -ms-transform-origin: 50%;
  -moz-transform-origin: 50%;
       transform-origin: 50%;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
       animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-moz-keyframes swiper-preloader-spin {
  100% {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -moz-transition-timing-function: ease-out;
       transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -moz-transition-property: opacity;
       transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -ms-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
       transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -ms-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
       transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}

/*
 swiper的一些ui修改
*/
:root {
  --swiper-navigation-size:44px ;
}

@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
.swiper-button-next,
.swiper-button-prev {
  background-image: none;
  color: var(--base-color);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: "swiper-icons";
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
  content: "prev";
}

.swiper-button-next:after {
  content: "next";
}

.swiper-pagination-bullet-active {
  background-color: var(--base-color);
}

.fenye {
  padding: 30px 10px;
  text-align: center;
  overflow: hidden;
  clear: both;
}
.fenye li {
  display: inline-block;
  background: #f2f2f2;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin: 0px 3px;
}
.fenye li.active {
  background-color: var(--base-color);
  color: #fff;
}
.fenye em {
  font-style: normal;
}
.fenye a {
  display: inline-block;
  zoom: 1;
  display: block;
  font-size: 14px;
  color: #414141;
  margin-right: 8px;
}
.fenye a:hover, .fenye a.thisclass {
  background-color: var(--base-color);
  color: #fff;
}
.fenye a:last-child {
  margin-right: 0px;
}
@media screen and (max-width: 1200px) {
  .fenye .fenye {
    padding: 10px 4px;
  }
  .fenye .fenye a {
    margin-right: 4px;
    margin-bottom: 4px;
  }
}

h1,
.h1 {
  font-size: 36px;
}

h2,
.h2 {
  font-size: 30px;
}

h3,
.h3 {
  font-size: 30px;
}

h4,
.h4 {
  font-size: 24px;
}

h5,
.h5 {
  font-size: 20px;
}

h6,
.h6 {
  font-size: 16px;
}

p,
.p {
  font-size: 14px;
}

.en {
  text-transform: Uppercase;
}

.w80 {
  width: 80%;
  margin: 0 auto;
}

.main {
  overflow: hidden;
  padding-bottom: 70px;
}

.pb {
  padding-bottom: 60px;
}

.nodianpu {
  display: none;
  line-height: 200px;
  text-align: center;
  color: #888;
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
}

.pag {
  position: absolute;
  text-align: center;
  -moz-transition: 0.3s opacity;
       transition: 0.3s opacity;
  -moz-transform: translate3d(0, 0, 0);
       transform: translate3d(0, 0, 0);
  z-index: 10;
  bottom: 10px;
  left: 0;
  width: 100%;
}

.wd {
  width: 1600px;
  margin: 0 auto;
}

.bn img {
  width: 100%;
  height: auto;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 5%;
}

.banner .swiper-pagination-bullet {
  width: 20px;
  border-radius: 10px;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
  height: 4px;
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
}

.header {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: var(--base-color);
}
.header-content {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
}
.header .logo {
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
}
.header .logo-img {
  width: 223px;
  height: auto;
}
.header .logo {
  height: 80px;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  -moz-box-pack: center;
   -ms-flex-pack: center;
       justify-content: center;
}
.header .nav #nav {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.header .nav #nav li {
  margin-left: 70px;
  font-size: 24px;
  position: relative;
  z-index: 99;
  height: 80px;
  line-height: 80px;
}
.header .nav #nav li a {
  display: block;
  color: #fff;
  -moz-transition: all 0.2s;
       transition: all 0.2s;
}
.header .nav #nav li .nava {
  overflow: hidden;
  height: 80px;
}
.header .nav #nav li .nava1 {
  -moz-transition: all 0.2s;
       transition: all 0.2s;
  line-height: 80px;
}
.header .nav #nav li:hover .nava1 {
  -moz-transform: translate(0, -80px);
   -ms-transform: translate(0, -80px);
       transform: translate(0, -80px);
}
.header .nav #nav li p {
  text-transform: Capitalize;
  font-size: 16px;
  font-weight: 300;
}
.header .nav #nav li .sub-nav {
  position: absolute;
  display: none;
}
.header .nav #nav li .sub-nav:after {
  width: 0;
  left: 0%;
  content: "";
  position: absolute;
  top: 0;
  background-color: var(--base-color);
  height: 2px;
  -moz-transition: all 0.5s 0.5s;
       transition: all 0.5s 0.5s;
  opacity: 0;
}
.header .nav #nav li .sub-nav {
  left: 0;
  top: 100%;
}
.header .nav #nav li .sub-nav a {
  padding: 1px 20px;
  white-space: nowrap;
  display: block;
  line-height: 40px;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--base-color);
}
.header .nav #nav li .sub-nav a:hover {
  background-color: var(--base-color);
  color: #fff;
}
.header .nav #nav li:hover .sub-nav:after {
  width: 100%;
  opacity: 1;
}

.bjhs {
  background-color: #efecea;
}

.m-d {
  margin: 70px 0;
}

.i-page {
  padding-top: 70px;
  padding-bottom: 70px;
}
.i-page dd {
  margin-top: 40px;
}

.i-header {
  text-align: center;
  color: #333;
}
.i-header.bs {
  color: #fff;
}
.i-header h2 {
  font-weight: 400;
  font-size: 36px;
}
.i-header h6 {
  margin: 0 auto;
  margin-top: 10px;
}

.i-cp-menu {
  text-align: center;
  margin-top: 20px;
}
.i-cp-menu li {
  display: inline-block;
  width: 219px;
  height: 50px;
  font-size: 18px;
  margin: 0px 26px;
  margin-bottom: 10px;
  border-radius: 50px;
  text-align: center;
  background-color: #fff;
  line-height: 50px;
}
.i-cp-menu li a {
  display: block;
}
.i-cp-menu li:hover, .i-cp-menu li.active {
  background-color: var(--base-color);
  color: #fff;
}
.i-cp-menu li:hover a, .i-cp-menu li.active a {
  color: #fff;
}

.i-2 {
  background-image: url("/basic/images/i-2-bj.jpg");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  height: 738px;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  -moz-box-pack: center;
   -ms-flex-pack: center;
       justify-content: center;
}

.i-2-ul {
  margin-top: 84px;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.i-2-ul li {
  color: #fff;
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
}

.i-2-foot {
  text-align: center;
  margin-top: 120px;
}

.i-2-more {
  display: inline-block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  padding: 5px 20px;
  cursor: pointer;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
}
.i-2-more:hover {
  color: #fff;
  border-color: #fff;
  padding: 5px 30px;
}

.i-3 {
  background-image: url("/basic/images/i-3-bj.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  height: 738px;
}

.i-3-ul {
  margin-top: 84px;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.i-3-ul li {
  color: #fff;
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
  text-align: center;
  font-size: 28px;
  font-weight: 300;
}
.i-3-ul li .icon {
  width: 102px;
  height: 102px;
  line-height: 102px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #fff;
  display: inline-block;
  font-size: 46px;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
}
.i-3-ul li h4 {
  margin-top: 50px;
}
.i-3-ul li p {
  margin-top: 10px;
}
.i-3-ul li:hover .icon {
  -moz-transform: rotate(360deg);
   -ms-transform: rotate(360deg);
       transform: rotate(360deg);
}

.i-new-bn {
  padding-bottom: 60px;
}
.i-new-bn .i-new-pag {
  -moz-transform: translateX(0) !important;
   -ms-transform: translateX(0) !important;
       transform: translateX(0) !important;
  left: 0 !important;
}
.i-new-bn li {
  width: 470px;
}
.i-new-bn .i-new-pag {
  -moz-box-pack: start;
   -ms-flex-pack: start;
       justify-content: flex-start;
}
.i-new-bn .i-new-pag .swiper-pagination-bullet {
  background-color: transparent;
  border: 2px solid #000;
  opacity: 1;
}
.i-new-bn .i-new-pag .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #000;
}

.list-article li .txt {
  padding: 10px 0px 20px;
}
.list-article li .time {
  font-size: 10px;
  color: #666;
}
.list-article li .title {
  margin-top: 10px;
  line-height: 28px;
  height: 56px;
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #333;
}
.list-article li .more {
  margin-top: 5px;
  color: #666;
  font-size: 12px;
}

:root {
  --footer-bg: #fff;
}

.footer {
  box-shadow: 0 0 5px rgba(136, 136, 136, 0.5);
  background-color: var(--footer-bg);
  overflow: hidden;
}
.footer a {
  color: #333;
}
.footer .foot-zt {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 66px 10px 20px;
}
.footer .left {
  width: 223px;
}
.footer .left .foot-logo {
  width: 190px;
  height: auto;
}
.footer .left .infos {
  margin-top: 35px;
  font-size: 16px;
  color: #333;
  font-weight: 400;
}
.footer .left strong {
  font-weight: bold;
  color: var(--base-color);
}
.footer .center {
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
}
.footer .foot-ul {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-pack: end;
   -ms-flex-pack: end;
       justify-content: flex-end;
  overflow-x: auto;
}
.footer .foot-ul li {
  margin-left: 4vw;
  line-height: 36px;
}
.footer .foot-ul li h6 {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  margin-bottom: 5px;
}
.footer .foot-ul li p {
  font-weight: 400;
  line-height: 30px;
}
.footer .foot-jj {
  text-align: center;
  font-size: 12px;
  color: #999;
  padding: 15px 10px;
  border-top: 1px solid #efefef;
}
.footer .right {
  margin-left: 7%;
}
.footer .right .title {
  line-height: 36px;
  font-size: 16px;
}
.footer .right .icons {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
.footer .right .icons-item {
  margin-right: 12px;
}
.footer .right .icons-item:last-child {
  margin-right: 0;
}
.footer .right .icons-item {
  position: relative;
}
.footer .right .icons-item .icons-img {
  position: absolute;
  top: 100%;
  width: 100px;
  opacity: 0;
  left: 50%;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
  -moz-transform: translateX(-50%) translateY(10px);
   -ms-transform: translateX(-50%) translateY(10px);
       transform: translateX(-50%) translateY(10px);
  -moz-transform-origin: 0 0;
   -ms-transform-origin: 0 0;
       transform-origin: 0 0;
}
.footer .right .icons-item:hover .icons-img {
  opacity: 1;
  -moz-transform: translateX(-50%) translateY(0px);
   -ms-transform: translateX(-50%) translateY(0px);
       transform: translateX(-50%) translateY(0px);
}
.footer .right .icons .iconfont {
  width: 37px;
  height: 37px;
  font-size: 28px;
  line-height: 37px;
  text-align: center;
  border: 1px solid #434040;
  color: #434040;
  border-radius: 5px;
  display: inline-block;
}
.footer .right .icons .icon-xiaohongshu {
  font-size: 14px;
}

.cp-menu {
  border-bottom: 1px solid #ccc;
}
.cp-menu ul {
  white-space: nowrap;
  overflow-x: auto;
}
.cp-menu ul li {
  display: inline-block;
  margin-right: 50px;
  font-size: 16px;
  position: relative;
}
.cp-menu ul li:after {
  content: "";
  height: 2px;
  background-color: var(--base-color);
  width: 0;
  left: 50%;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
  -moz-transform: translate(-50%, 0);
   -ms-transform: translate(-50%, 0);
       transform: translate(-50%, 0);
  bottom: 0;
  position: absolute;
}
.cp-menu ul li a {
  padding: 15px 0;
  display: block;
}
.cp-menu ul li.active {
  color: var(--base-color);
}
.cp-menu ul li.active:after {
  width: 100%;
}
.cp-menu ul li.active a {
  color: var(--base-color);
}

.mbx {
  padding: 10px 0;
  font-size: 12px;
  color: #888;
}
.mbx a {
  color: #888;
}
.mbx a:hover {
  color: var(--base-color);
}

.ny-banner img {
  width: 100%;
  height: auto;
}

.cp-banner {
  margin-top: 20px;
}

.cp-typename {
  margin-top: 60px;
  text-align: center;
}
.cp-typename h2 {
  font-weight: 400;
  font-size: 40px;
}

.ny-typename {
  margin-top: 30px;
  text-align: center;
}
.ny-typename h2 {
  font-weight: 400;
}

.cp-sx {
  margin-top: 30px;
}
.cp-sx-menu {
  white-space: nowrap;
  overflow-x: auto;
}
.cp-sx-menu li {
  display: inline-block;
  margin-right: 20px;
  font-size: 18px;
}
.cp-sx-menu li a {
  background-color: #efecea;
  padding: 8px 24px;
  display: block;
}
.cp-sx-menu li.active {
  color: var(--base-color);
}
.cp-sx-menu li.active a {
  color: var(--base-color);
}

.list {
  margin-top: 20px;
}

.list-shop {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}
.list-shop .txt {
  padding: 10px 0;
  text-align: center;
}
.list-shop .txt .title {
  font-size: 16px;
}

.article-shop {
  padding: 10px 0 70px;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.article-shop-left {
  width: 800px;
}
.article-shop-left img {
  width: 100%;
}
.article-shop-right {
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
  margin-left: 96px;
}

.art-cp-xt {
  margin-top: 8px;
}
.art-cp-xt li {
  background-color: #000;
  cursor: pointer;
  position: relative;
}
.art-cp-xt li::after {
  content: "";
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  z-index: 2;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
  -moz-transform: translate(-50%, 0);
   -ms-transform: translate(-50%, 0);
       transform: translate(-50%, 0);
  background-color: var(--base-color);
  position: absolute;
  left: 50%;
}
.art-cp-xt li .imgs {
  opacity: 0.7;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
}
.art-cp-xt li.active .imgs, .art-cp-xt li:hover .imgs {
  opacity: 1;
}
.art-cp-xt li.active::after, .art-cp-xt li:hover::after {
  width: 100%;
}

.art-cp-xt-bn {
  position: relative;
  padding: 10px 30px;
}
.art-cp-xt-bn .swiper-button-next,
.art-cp-xt-bn .swiper-button-prev {
  --swiper-navigation-size: 20px;
  width: 20px;
  background-size: 15px auto;
  font-size: 14px;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  -moz-box-pack: center;
   -ms-flex-pack: center;
       justify-content: center;
}
.art-cp-xt-bn .swiper-button-prev {
  left: 0;
}
.art-cp-xt-bn .swiper-button-next {
  right: 0;
}

.article-shop-item {
  padding: 15px 0 22px;
  border-bottom: 1px solid #ccc;
}
.article-shop-item h6 {
  margin-top: 10px;
}
.article-shop-item p {
  margin-top: 10px;
}

.hs-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}
.article-shop-btns {
  margin-top: 40px;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
}
.article-shop-btns .btn {
  margin-right: 20px;
  width: 120px;
  -moz-box-pack: center;
   -ms-flex-pack: center;
       justify-content: center;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  height: 40px;
  padding: 0px 10px;
  white-space: nowrap;
  border-radius: 50px;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid #c3c3c3;
  color: #333;
}
.article-shop-btns .btn img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.article-shop-btns .btn.btn-1 {
  background-color: transparent;
  border: 1px solid #c3c3c3;
  color: #333;
}
.article-shop-btns .btn:hover {
  width: 130px;
  background-color: var(--base-color);
  color: #fff;
  border-color: var(--base-color);
}

.list-new {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.article-body {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0px;
}
.article-left {
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
}
.article-right {
  width: 280px;
  margin-left: 8%;
}
.article-right-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.article-hot li .title {
  font-size: 14px;
  height: auto;
}

.art-tit h1 {
  font-weight: normal;
  margin-top: 10px;
  color: #000;
}

.art-info {
  border-bottom: 1px solid #ccc;
  padding: 15px 0px 30px;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.art-info p {
  margin-right: 10px;
  color: gray;
  font-size: 14px;
}

.art-bodys {
  color: #000;
  font-weight: 500;
  font-family: "";
  padding: 14px 0;
}
.art-bodys h3:not(.layui-code-h3) {
  color: #333;
  font-weight: 700;
  line-height: 24px;
  padding-left: 12px;
  font-size: 22px;
  position: relative;
  margin-top: 30px;
  margin-bottom: 15px;
}
.art-bodys h3:not(.layui-code-h3):after {
  content: "";
  width: 4px;
  height: 18px;
  background: #009688;
  top: 3px;
  position: absolute;
  left: 0;
}
.art-bodys code {
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  font-size: 12px;
  position: relative;
  display: inline-block;
  padding: 0 6px;
  text-align: center;
  border-radius: 2px;
  height: 18px;
  line-height: 18px;
  color: #c7254e;
  border: none;
  vertical-align: middle;
  white-space: pre-wrap;
  background-color: #f2f2f2;
}
.art-bodys blockquote {
  margin-bottom: 10px;
  padding: 15px;
  line-height: 22px;
  border-left: 5px solid #009688;
  border-radius: 0 2px 2px 0;
  background-color: #f2f2f2;
  margin-top: 20px;
  margin-bottom: 15px;
}
.art-bodys p {
  line-height: 2;
  margin-bottom: 6px;
  font-size: 16px;
}
.art-bodys img {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}
.art-bodys h2,
.art-bodys h3:not(.layui-code-h3),
.art-bodys h4,
.art-bodys h5,
.art-bodys h6 {
  margin-top: 20px;
  color: #000;
  margin-bottom: 10px;
}
.art-bodys h4 {
  font-weight: bold;
  color: #000;
}
.art-bodys ul {
  padding-left: 20px;
  list-style: auto;
}
.art-bodys ul li {
  font-size: 14px;
  color: #333;
  list-style: disc;
}
.art-bodys strong {
  color: #000;
}
.art-bodys li * {
  font-size: 14px;
  color: #333;
}
.art-bodys ul,
.art-bodys ol {
  margin-bottom: 12px;
  color: #999;
}
.art-bodys ol {
  list-style-type: decimal;
  padding-left: 20px;
}
.art-bodys ol li {
  font-size: 14px;
  color: #333;
  list-style-type: decimal;
}

.art-bodys {
  margin-top: 10px;
  padding: 20px 0px 40px;
}

.art-tag {
  margin-top: 10px;
}
.art-tag a {
  margin: 0px 10px;
  display: inline-block;
  vertical-align: middle;
  line-height: 35px;
  border-radius: 50px;
  padding: 0px 12px;
}
.art-tag a:hover {
  border-color: var(--base-color);
}

.art-sxp {
  line-height: 2;
  padding: 20px 0;
  margin-bottom: 40px;
  font-size: 16px;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
}
.art-sxp ul {
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
  width: 0;
}
.art-sxp a {
  color: var(--base-color);
}
.art-sxp .btn {
  background-color: var(--base-color);
  height: 40px;
  padding: 0px 20px;
  color: #fff;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  border-radius: 50px;
  cursor: pointer;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
}
.art-sxp .btn:hover {
  padding: 0px 30px;
}

.art-gg {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  -moz-box-pack: center;
   -ms-flex-pack: center;
       justify-content: center;
  height: 300px;
  background-image: url("/basic/images/art-gg-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
.art-gg .title {
  font-size: 36px;
  color: var(--base-color);
}
.art-gg .info {
  font-size: 18px;
  color: #333;
}
.art-gg .article-shop-btns {
  -moz-box-pack: center;
   -ms-flex-pack: center;
       justify-content: center;
}

.about-body {
  margin-top: 30px;
}
.about-list {
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}
.about-list li .txt {
  padding: 15px 15px 0;
  text-align: center;
}

.info-btn-body {
  padding: 30px 0;
  text-align: center;
}

.info-btn {
  padding: 0px 40px;
  height: 40px;
  border: 1px solid #c3c3c3;
  color: #333;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  line-height: 40px;
  border-radius: 50px;
  cursor: pointer;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
.info-btn:hover {
  padding: 0px 50px;
  border-color: var(--base-color);
  background-color: var(--base-color);
  color: #fff;
}

.ggjj-bn {
  margin-top: 20px;
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 80px;
}
.ggjj-bn .txt {
  position: absolute;
  padding: 50px;
  width: 80%;
  background-color: #fff;
  left: 50%;
  bottom: 0;
  -moz-transform: translate(-50%, 0%);
   -ms-transform: translate(-50%, 0%);
       transform: translate(-50%, 0%);
  font-size: 36px;
  text-align: center;
  text-transform: Uppercase;
}

.ggjj-2 {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  margin-top: 170px;
  background-color: #fff;
}
.ggjj-2-left {
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
  width: 0;
}
.ggjj-2-left .txt {
  padding: 5% 10%;
}
.ggjj-2-right {
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
  width: 0;
}
.ggjj-2 h2 {
  margin-bottom: 50px;
  font-weight: bold;
  font-size: 38px;
}
.ggjj-2 h6 {
  margin-top: 10px;
}

.ggjj-2-ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.ggjj-2-ul li .size {
  font-size: 36px;
  color: var(--base-color);
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  -moz-box-align: start;
   -ms-flex-align: start;
       align-items: flex-start;
}
.ggjj-2-ul li .size .size-name {
  font-size: 12px;
  margin-top: 3px;
  margin-left: 5px;
}

.ppgs-2 {
  margin-top: 70px;
}
.ppgs-2-ul li {
  overflow: hidden;
  clear: both;
  clear: both;
  position: relative;
  background-color: #fff;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  margin-bottom: 40px;
}
.ppgs-2-ul li:nth-child(2n+1) .imgs {
  float: right;
}
.ppgs-2-ul li .ppgs-2-right,
.ppgs-2-ul li .imgs {
  float: left;
  width: 50%;
}
.ppgs-2-ul li .ppgs-2-right {
  height: 100%;
}
.ppgs-2-ul li .txt {
  padding: 20px 5%;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  position: absolute;
  top: 50%;
  max-width: 50%;
  -moz-transform: translate(0, -50%);
   -ms-transform: translate(0, -50%);
       transform: translate(0, -50%);
}
.ppgs-2-ul li .txt h6 {
  margin-top: 20px;
}

.ppsjg-item {
  padding: 30px 0 10px;
  position: relative;
  margin-bottom: 70px;
}
.ppsjg-item:hover .ppsjg-header {
  -moz-transform: translate(0, -10px) scale(0.95);
   -ms-transform: translate(0, -10px) scale(0.95);
       transform: translate(0, -10px) scale(0.95);
}
.ppsjg-item:hover .ppsjg-foot {
  -moz-transform: translate(0, -10px);
   -ms-transform: translate(0, -10px);
       transform: translate(0, -10px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.ppsjg-header {
  position: absolute;
  width: 80%;
  top: 0;
  left: 10%;
  background-color: #fff;
  height: 120px;
  z-index: 9;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  -moz-box-pack: center;
   -ms-flex-pack: center;
       justify-content: center;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
}
.ppsjg-header h3 {
  font-size: 38px;
  font-weight: bold;
}
.ppsjg-foot {
  -moz-transition: all 0.5s;
       transition: all 0.5s;
  background-color: #fff;
  bottom: 0;
  width: 80%;
  left: 10%;
  z-index: 9;
  margin-top: -90px;
  position: relative;
  z-index: 9;
  padding: 50px 90px;
}
.ppsjg-foot h6 {
  margin-top: 25px;
}

.pplc-list li {
  background-color: #fff;
  overflow: hidden;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.pplc-list li h6 {
  margin-top: 20px;
}
.pplc-list li .txt1 {
  margin-top: 40px;
}
.pplc-list li .txt1 p {
  line-height: 2;
}
.pplc-list li .lc-nian {
  padding-right: 40px;
}
.pplc-list li .lc-nian img {
  width: 124px;
}
.pplc-list li .txt-body {
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
  width: 0;
}
.pplc-list li .txt {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
}
.pplc-list li:nth-child(2n) .lc-nian {
  padding-right: 0;
  padding-left: 40px;
}
.pplc-list .lc-left,
.pplc-list .imgs {
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
  width: 50%;
}
.pplc-list .txt {
  padding: 10px 5% 10px 5%;
}
.pplc-list .imgs img {
  object-fit: cover;
  height: 100%;
}

.ppry-1 {
  background-color: #fff;
  padding: 30px 5%;
}
.ppry-1 h6 {
  margin-top: 30px;
}
.ppry-list {
  margin-top: 30px;
}
.ppry-list ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.ppry-list ul li .img {
  background-color: #fff;
  padding: 30px 10px;
  text-align: center;
}
.ppry-list ul li .img img {
  height: 100%;
  width: auto;
}
.ppry-list ul li .txt {
  text-align: center;
  padding: 10px 0;
}

.ppsp-list ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ppsp-list li .imgs {
  position: relative;
  background-color: #000;
}
.ppsp-list li:hover .imgs img {
  opacity: 0.7;
}
.ppsp-list li:hover .imgs .icon {
  opacity: 1;
  -moz-transform: scale(1);
   -ms-transform: scale(1);
       transform: scale(1);
}
.ppsp-list li .icon {
  position: absolute;
  top: 50%;
  opacity: 0;
  left: 50%;
  text-align: center;
  width: 100%;
  margin-top: -45px;
  margin-left: -45px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  border-radius: 50%;
  -moz-transform: scale(0);
   -ms-transform: scale(0);
       transform: scale(0);
  z-index: 9;
  color: #fff;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
  cursor: pointer;
}
.ppsp-list li .icon .iconfont {
  font-size: 60px;
}
.ppsp-list li .txt {
  padding: 10px 0;
  text-align: center;
}

.list-md {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.list-md li .txt {
  padding: 10px 0;
  text-align: center;
}

.list-al {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.list-al li .txt {
  padding: 10px 0;
  text-align: center;
}

.dm-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.dm-list li .txt {
  padding: 10px 0;
  text-align: center;
}

.lxwm-1 {
  background-color: #fff;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  margin-top: 40px;
}
.lxwm-1-left {
  padding: 10px 10px;
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
  width: 0;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-pack: center;
   -ms-flex-pack: center;
       justify-content: center;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
}
.lxwm-1-right {
  background-color: var(--base-color);
  color: #fff;
  padding: 40px 60px;
  width: 600px;
  max-width: 40%;
  position: relative;
}
.lxwm-1-right:after {
  position: absolute;
  z-index: 1;
  background-image: url("/basic/images/lxwm-1-bg.png");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  right: 20px;
  top: 20px;
  width: 80px;
  height: 80px;
}
.lxwm-1-right h3 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  padding-bottom: 20px;
  max-width: 300px;
}
.lxwm-1-right .txt {
  margin-top: 20px;
}
.lxwm-1-item {
  text-align: center;
  padding: 0px 10px;
}
.lxwm-1-item img {
  max-width: 172px;
  height: auto;
}
.lxwm-list {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.lxwm-2 {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  background-color: #fff;
  margin-top: 40px;
}
.lxwm-2 #allmap {
  height: 500px;
}
.lxwm-2-left {
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
}
.lxwm-2-right h4 {
  font-weight: bold;
}
.lxwm-2-right .txt {
  padding: 10px 50px 10px 80px;
}
.lxwm-2-right .txt-1 {
  margin-top: 40px;
}
.lxwm-2-right h6 {
  padding: 5px 0;
}

.cjwt-list {
  margin-top: 20px;
}
.cjwt-list li {
  margin-bottom: 30px;
}
.cjwt-list li .title {
  font-size: 24px;
}
.cjwt-list li .jieguo {
  color: #666;
  font-size: 18px;
  margin-top: 15px;
}

.jm-banner {
  position: relative;
}
.jm-banner img {
  width: 100%;
}
.jm-banner-body {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.jm-banner-body .txt {
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
  color: #fff;
}
.jm-banner-body .txt h2,
.jm-banner-body .txt h3 {
  font-size: 48px;
}
.jm-banner-body .txt .iconfont {
  color: var(--base-color);
  font-size: 24px;
  margin-right: 10px;
}
.jm-banner-body .txt h5 {
  margin-top: 10px;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
}
.jm-banner-body .jm-bd {
  width: 340px;
}
.jm-banner-body .jm-bd-ul li {
  margin-bottom: 15px;
}
.jm-banner-body .jm-bd-ul .jm-input {
  width: 100%;
  height: 50px;
  background-color: #fff;
  padding: 0px 15px;
  border: none;
}
.jm-banner-body .jm-bd .jm-btn {
  background-color: var(--base-color);
  color: #fff;
  background-color: var(--base-color);
  color: #fff;
  font-size: 16px;
  width: 100%;
  height: 50px;
  border: none;
  cursor: pointer;
}

.jm-title {
  text-align: center;
  padding: 50px 0;
}
.jm-title h2 {
  font-size: 40px;
  font-weight: 500;
}
.jm-title h2.small {
  font-weight: 500;
}
.jm-title .hr {
  display: inline-block;
  border: none;
  background-color: #9e805d;
  height: 5px;
  width: 60px;
}
.jm-title h3.en {
  color: #888;
  font-size: 18px;
}

.jm-1-1 {
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  color: #fff;
}
.jm-1-1 .title {
  text-align: center;
}
.jm-1-1-ul {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 110px;
}
.jm-1-1-ul li {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 50px 40px;
  text-align: center;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
}
.jm-1-1-ul li:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.jm-1-1-ul li:hover .iconfont {
  -moz-transform: rotate(360deg);
   -ms-transform: rotate(360deg);
       transform: rotate(360deg);
}
.jm-1-1-ul li h3 {
  margin-top: 10px;
}
.jm-1-1-ul li .iconfont {
  width: 85px;
  height: 85px;
  line-height: 85px;
  text-align: center;
  font-size: 42.5px;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 50%;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
}
.jm-1-1-ul li .hr {
  width: 21px;
  border: none;
  height: 1px;
  background-color: #fff;
  margin-top: 30px;
  display: inline-block;
}
.jm-1-1-ul li .en {
  margin-top: 20px;
}
.jm-1-2 {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.jm-1-2 .txt {
  text-align: center;
}
.jm-1-2 .txt h3 {
  color: #fff;
  font-size: 42px;
}
.jm-1-2 .txt h2 {
  color: #9e805d;
  font-size: 54px;
}
.jm-1-3 {
  position: relative;
}
.jm-1-3-txt {
  position: absolute;
  width: 40%;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #9e805d;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  -moz-box-pack: center;
   -ms-flex-pack: center;
       justify-content: center;
  padding: 0px 5%;
  color: #fff;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
}
.jm-1-3-txt .txt h2 {
  font-size: 36px;
}
.jm-1-3-txt .txt h5 {
  line-height: 2;
}
.jm-1-3 .img img {
  width: 100%;
  line-height: 1;
}
.jm-pag {
  padding-bottom: 50px;
}

.jm-2 {
  background-image: url("/basic/images/jm-2-bj.jpg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
}
.jm-2-ul {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -moz-box-pack: center;
   -ms-flex-pack: center;
       justify-content: center;
}
.jm-2-ul li {
  width: 30%;
  background-color: #fff;
  padding: 30px;
  margin-bottom: 30px;
  margin-left: 5%;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
}
.jm-2-ul li:nth-child(3n+1) {
  margin-left: 0;
}
.jm-2-ul li .iconfont {
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-size: 42.6666666667px;
  border: 1px solid #aa8f71;
  margin-right: 20px;
  color: #9e805d;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
}
.jm-2-ul li h5 {
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
  width: 0;
}
.jm-2-ul li:hover {
  -moz-transform: translate(0, -5px);
   -ms-transform: translate(0, -5px);
       transform: translate(0, -5px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.jm-2-ul li:hover .iconfont {
  -moz-transform: rotate(360deg);
   -ms-transform: rotate(360deg);
       transform: rotate(360deg);
}

.jm-3 {
  background-image: url("/basic/images/jm-2-bj.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.jm-4 {
  background-color: #efecea;
}
.jm-4-body {
  background-color: #fff;
  padding: 50px 0;
}
.jm-4 .txt {
  text-align: center;
}
.jm-4 .txt strong {
  color: #9e805d;
  font-size: 28px;
}
.jm-4 .img {
  text-align: center;
  margin-top: 20px;
}

.jm-5 {
  background-color: #efecea;
}
.jm-5-body {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 180px 0;
}
.jm-5-body .i-3-ul {
  margin-top: 0;
}

.jmfc-pag {
  padding: 70px 0;
}
.jmfc-pag dd {
  margin-top: 70px;
}

.jm-ty {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-attachment: fixed;
}
.jm-ty-dt {
  margin: 0 auto;
  position: relative;
}
.jm-ty-dt.bs {
  color: #fff;
}
.jm-ty-dt .title-img {
  max-width: 50%;
  margin: 0 auto;
}
.jm-ty-dt .title {
  z-index: 9;
  padding: 0 5px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.jm-ty-body {
  text-align: center;
}

.jmfc-dt .title {
  z-index: 9;
  padding: 0 5px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.jmfc-dt:hover .num {
  border-radius: 50%;
}
.jmfc-dt h5 {
  text-align: center;
}

.bjbs {
  background-color: #fff;
}

.jmfc-1-ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.jmfc-2 dd .img {
  text-align: center;
}

.jm-3-banner {
  display: none;
}
.jm-3-banner.active {
  display: block;
}
.jm-3-body {
  position: relative;
}
.jm-3-body:after {
  height: 1px;
  width: 100%;
  left: 0;
  background-color: #9e805d;
  top: 227px;
  content: "";
  position: absolute;
}
.jm-3-ul {
  text-align: center;
  -moz-box-pack: center;
   -ms-flex-pack: center;
       justify-content: center;
}
.jm-3-ul li {
  display: inline-block;
  width: 300px;
  text-align: center;
  padding: 40px 0;
}
.jm-3-ul li h6 {
  color: #9e805d;
  text-transform: Uppercase;
}
.jm-3-ul li .xian {
  text-align: center;
  margin-top: 50px;
}
.jm-3-ul li .hr {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: #9e805d;
  border: none;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
  -moz-transform-origin: center center;
   -ms-transform-origin: center center;
       transform-origin: center center;
}
.jm-3-ul li:hover {
  background-color: #9e805d;
}
.jm-3-ul li:hover h6 {
  color: #fff;
}
.jm-3-ul li:hover .hr {
  background-color: #fff;
  -moz-transform: rotate(90deg) translateX(-50%);
   -ms-transform: rotate(90deg) translateX(-50%);
       transform: rotate(90deg) translateX(-50%);
}
.jm-3-ul li:hover h5 {
  color: #fff;
}
.jm-3-ul li:hover .hexagon {
  background-color: #fff;
  border: none;
}
.hexagon {
  width: 46px;
  height: 80.132px;
  position: relative;
  display: inline-block;
}
.hexagon:after,
.hexagon .hexagon1:after,
.hexagon .hexagon2:after {
  border: 1px solid #9e805d;
  border-left: none;
  border-right: none;
  content: "";
  position: absolute;
  inset: 0;
}
.hexagon .hexagon1 {
  inset: 0;
  border: inherit;
  content: "";
  position: absolute;
  -moz-transform: rotate(-60deg);
   -ms-transform: rotate(-60deg);
       transform: rotate(-60deg);
  background-color: inherit;
}
.hexagon .hexagon2 {
  inset: 0;
  content: "";
  border: inherit;
  position: absolute;
  -moz-transform: rotate(60deg);
   -ms-transform: rotate(60deg);
       transform: rotate(60deg);
  background-color: inherit;
}
.hexagon .iconfont {
  position: absolute;
  left: 50%;
  display: inline-block;
  -moz-transition: all 1s;
       transition: all 1s;
  top: 50%;
  z-index: 9;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
  font-size: 32.2px;
  color: #9e805d;
}

.jm-3-menu {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-pack: center;
   -ms-flex-pack: center;
       justify-content: center;
}
.jm-3-menu li {
  background-color: #fff;
  padding: 10px 20px;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 240px;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  border-radius: 8px;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
  cursor: pointer;
}
.jm-3-menu li:nth-child(n+2) {
  margin-left: 40px;
}
.jm-3-menu li.active {
  background-color: var(--base-color);
  color: #fff;
}
.jm-3-menu li.active .iconfont {
  border-color: #fff;
  color: #fff;
}
.jm-3-menu li .iconfont {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  color: #9e805d;
  font-size: 28px;
  border: 1px solid #9e805d;
}
.jm-3-menu li .txt {
  margin-left: 10px;
  line-height: 1;
}
.jm-3-menu li .txt .en {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: -1px;
}
.j-4-pag {
  display: none;
}

.jmfc-4-body {
  background-image: url("/basic/images/j-4-bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-attachment: fixed;
  padding: 200px 0;
}
.jmfc-4-ul {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -moz-box-pack: center;
   -ms-flex-pack: center;
       justify-content: center;
}
.jmfc-4-ul li {
  width: 30%;
  background-color: #fff;
  padding: 30px;
  margin-bottom: 30px;
  margin-left: 5%;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
  text-align: center;
}
.jmfc-4-ul li:nth-child(3n+1) {
  margin-left: 0;
}
.jmfc-4-ul li .iconfont {
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid #aa8f71;
  margin-right: 20px;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
}
.jmfc-4-ul li h4 {
  font-weight: bold;
}
.jmfc-4-ul li h5 {
  font-size: 15px;
  margin-top: 10px;
}
.jmfc-4-ul li:hover {
  -moz-transform: translate(0, -5px);
   -ms-transform: translate(0, -5px);
       transform: translate(0, -5px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.jmfc-4-ul li:hover .iconfont {
  -moz-transform: rotate(360deg);
   -ms-transform: rotate(360deg);
       transform: rotate(360deg);
}

.jmfc-5-body {
  background-color: #fff;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
}
.jmfc-5-body-left {
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
}
.jmfc-5-body-right {
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
}
.jmfc-5-body-right .txt {
  padding: 10px 5%;
}
.jmfc-5-bn {
  width: 100%;
}
.jmfc-5-body .txt h5 {
  color: #9e805d;
  font-weight: bold;
}
.jmfc-5-body .txt h6 {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.jmfc-5-body .txt h6 strong {
  margin-right: 2px;
}

.jm-5-sj-img {
  display: none;
}

.jmfc-7 {
  background-image: url("/basic/images/j-7-bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
}
.all-btn {
  padding: 0px 40px;
  height: 40px;
  border: 1px solid #c3c3c3;
  color: #333;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  line-height: 38px;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  border-radius: 50px;
  cursor: pointer;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
.all-btn:nth-child(n+2) {
  margin-left: 20px;
}
.all-btn.big {
  padding: 0px 50px;
  height: 50px;
  font-size: 20px;
  line-height: 48px;
}
.all-btn.big::before {
  margin-right: 15px;
  -moz-transform: scale(1.1);
   -ms-transform: scale(1.1);
       transform: scale(1.1);
}
.all-btn:hover {
  border-color: var(--base-color);
  background-color: var(--base-color);
  color: #fff;
}
.all-btn:hover:before {
  background-position: 0 100%;
}
.all-btn:before {
  vertical-align: middle;
  width: 22px;
  height: 22px;
  background-size: 22px auto;
  background-repeat: no-repeat;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
  margin-right: 5px;
  display: inline-block;
}
.all-btn.mini {
  padding: 0px 20px;
}

.qp-img-content {
  position: relative;
  background-image: none !important;
  overflow: hidden;
  height: auto;
  width: 100%;
  padding: 0;
}
.qp-img-content .qp-img-bg {
  width: 100%;
  height: auto;
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
}
.qp-img-content .qp-img-bg img {
  width: 100%;
  height: auto;
  line-height: 1;
}
.qp-img-content .qp-img-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
}

.art-share {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}
.art-share-left {
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
  color: var(--base-color);
  font-size: 16px;
}

.share-1 {
  background-image: url("/basic/images/share-1.png") !important;
}

.share-2 {
  background-image: url("/basic/images/share-2.png") !important;
}

.share-3 {
  background-image: url("/basic/images/share-3.png") !important;
}

.share-4 {
  background-image: url("/basic/images/share-4.png") !important;
}

#bdshare .share-btn {
  width: 34px;
  height: 34px;
  display: inline-block;
  background-size: 100% 100%;
  background-position: 0 0 !important;
}

.foot-tel {
  display: none;
  margin-top: 5vw;
}
.foot-tel-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.foot-tel-body h4 {
  color: var(--base-color);
  font-size: 5.5vw;
  font-weight: 700;
}

.pplc-list li .lc-sj {
  display: none;
}

.i-jm-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.i-jm-item {
  position: relative;
}
.i-jm-item .en {
  line-height: 1.2;
}
.i-jm-item .hr {
  width: 48px;
  height: 4px;
  background-color: var(--base-color);
  border: none;
  margin-top: 20px;
}
.i-jm-item .txt {
  color: #fff;
  position: absolute;
  inset: 0;
  height: 100%;
  padding: 60px;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
   -ms-flex-direction: column;
       flex-direction: column;
  -moz-box-pack: justify;
   -ms-flex-pack: justify;
       justify-content: space-between;
}
.i-jm-item .txt .iconfont {
  font-size: 36px;
}

.jm-foot .bd-ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4vw;
}
.jm-foot .bd-ul .bd-input {
  height: 62px;
  width: 100%;
  font-family: "Microsoft Yahei", "楷体", "新宋体", Arial, Helvetica, sans-serif;
  font-size: 18px;
  padding: 0px 20px;
  color: #000;
  border: 1px solid #000;
  border-radius: 10px;
}
.jm-foot-btn {
  text-align: center;
  margin-top: 30px;
}
.jm-foot-btn-1 {
  width: 245px;
  height: 60px;
  background-color: var(--base-color);
  color: #fff;
  font-size: 25px;
  margin: 0 auto;
  cursor: pointer;
  border: none;
  display: inline-block;
  border-radius: 15px;
}
.jm-foot-infos {
  margin-top: 50px;
  text-align: center;
}
.jm-foot-infos h6 {
  color: #4c4c4c;
}
.jm-foot-infos h5 {
  color: #000000;
  margin-top: 10px;
}

.i-about-body {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.i-about-left {
  width: 645px;
  padding-right: 100px;
}
.i-about-left .txt {
  padding: 50px 10px;
}
.i-about-left h2 {
  position: relative;
  z-index: 2;
  font-size: 40px;
  color: #1a1a1a;
  line-height: 1;
}
.i-about-left .en {
  font-size: 72px;
  color: #efecea;
  margin-top: -15px;
  line-height: 1;
  position: relative;
  z-index: 0;
}
.i-about-left .txt-content {
  margin-top: 60px;
}
.i-about-left .txt-content h6 {
  margin-bottom: 30px;
  line-height: 2;
  color: #1a1a1a;
}
.i-about-right {
  position: relative;
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
}
.i-about-right img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.i-about .mores {
  width: 200px;
  height: 80px;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  -moz-box-pack: center;
   -ms-flex-pack: center;
       justify-content: center;
  color: #fff;
  position: absolute;
  left: 0px;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  bottom: 0;
  cursor: pointer;
}
.i-about .mores:after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--base-color);
  z-index: 0;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
}
.i-about .mores-name {
  position: relative;
  z-index: 1;
  font-size: 18px;
}
.i-about .mores:hover {
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
}
.i-about .mores:hover::after {
  left: -10px;
  right: -10px;
}

.i-jm-new img {
  width: 100%;
  height: auto;
}
.i-jm-new {
  position: relative;
}
.i-jm-new .mores {
  position: absolute;
  top: 70%;
  text-align: center;
  left: 0;
  width: 100%;
}

.jm-3-imgtp {
  position: absolute;
  left: 50%;
  display: inline-block;
  -moz-transition: all 1s;
       transition: all 1s;
  top: 50%;
  z-index: 9;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
  font-size: 32.2px;
  color: #9e805d;
  width: 45px;
  height: 45px;
}

.fl-menu {
  padding: 30px 0;
  -moz-box-pack: center;
   -ms-flex-pack: center;
       justify-content: center;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2vw;
}
.fl-menu li {
  background-color: #cdcdcd;
  font-size: 20px;
}
.fl-menu li a {
  padding: 10px 30px;
  display: block;
}
.fl-menu li.active {
  background-color: var(--base-color);
  color: #fff;
}
.fl-menu li.active a {
  color: #fff;
}

/*
 这文件是手机端的公共头部，主要懒得麻烦，所以每个网站都一样的
*/
.sj-head {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  padding: 10px 5px;
  position: relative;
  z-index: 99999;
  background-color: var(--base-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.sj-head .logo {
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
  text-align: center;
  height: 22px;
}
.sj-head .logo img {
  height: 22px;
  width: auto;
}
.sj-head .logo a {
  display: block;
  text-align: center;
}
.sj-head .go-home {
  width: 45px;
  height: 45px;
  line-height: 45px;
  display: block;
  text-align: center;
  font-size: 25px;
  color: #fff;
}
.sj-head .go-home i {
  font-size: 25px;
  color: #333;
}

.icon-an {
  height: 25px;
  width: 45px;
  z-index: 9999;
  position: relative;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
   -ms-flex-direction: column;
       flex-direction: column;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
}
.icon-an span {
  border-radius: 1px;
  background-color: #fff;
  width: 20px;
  height: 1px;
  -moz-transition: 0.3s ease-out;
       transition: 0.3s ease-out;
}

.side-phone {
  -moz-transform: translate(0%, -100px);
   -ms-transform: translate(0%, -100px);
       transform: translate(0%, -100px);
  opacity: 0;
  -moz-transition: 0.5s 1s;
       transition: 0.5s 1s;
  text-align: left;
  margin-top: 3vw;
  padding: 0px 2vw;
}
.side-phone b {
  display: block;
  color: #999;
  font-weight: 100;
}
.side-phone a {
  color: rgb(0, 0, 0);
  font-size: 18px;
  font-family: "AddFont";
}

.icon-an1.m-click-this span.icon-an-2 {
  margin-left: 20px;
}

.icon-an2.m-click-this span.icon-an-1 {
  -moz-transform: translate3d(0, 8px, 0) rotate(45deg);
       transform: translate3d(0, 8px, 0) rotate(45deg);
}
.icon-an2.m-click-this span.icon-an-2 {
  opacity: 0;
  -moz-transform: translate3d(20px, 0, 0);
       transform: translate3d(20px, 0, 0);
}
.icon-an2.m-click-this span.icon-an-3 {
  -moz-transform: translate3d(0, -8px, 0) rotate(-45deg);
       transform: translate3d(0, -8px, 0) rotate(-45deg);
}

.sj-nav {
  position: fixed;
  visibility: hidden;
  overflow: hidden;
  overflow-y: auto;
  padding-top: 20px;
  padding-bottom: 80px;
  right: 100%;
  top: 60px;
  bottom: 0;
  width: 120px;
  z-index: 999;
  -moz-transform-origin: 0% 0%;
   -ms-transform-origin: 0% 0%;
       transform-origin: 0% 0%;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
  background: var(--base-color);
  z-index: 9999;
}
.sj-nav .logos {
  padding: 20px;
  text-align: center;
}
.sj-nav .logos img {
  width: auto;
}
.sj-nav li {
  position: relative;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: #fff;
}
.sj-nav li a {
  display: block;
  position: relative;
  z-index: 9;
  -moz-transition: -moz-transform 0s 0.5s;
       transition: transform 0s 0.5s;
  color: #fff;
  padding: 0px 1rem;
}
.sj-nav li.active a {
  -moz-transition: color 0.5s 0.5s;
       transition: color 0.5s 0.5s;
}
.sj-nav li.active:before {
  background: var(--base-color);
  content: "";
  -moz-transition: 0.5s 0.5s;
       transition: 0.5s 0.5s;
  -moz-transform: translate(-500%, 0);
   -ms-transform: translate(-500%, 0);
       transform: translate(-500%, 0);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.sj-nav.m-click-this {
  visibility: visible;
  -moz-transform: translate(120px, 0);
   -ms-transform: translate(120px, 0);
       transform: translate(120px, 0);
}
.sj-nav.m-click-this li {
  opacity: 1;
  -moz-transform: translate(0%, 0px);
   -ms-transform: translate(0%, 0px);
       transform: translate(0%, 0px);
  width: 100%;
  overflow: hidden;
  -moz-box-flex: 0;
   -ms-flex: none;
       flex: none;
}
.sj-nav.m-click-this li.active:before {
  -moz-transform: translate(0%, 0);
   -ms-transform: translate(0%, 0);
       transform: translate(0%, 0);
}
.sj-nav.m-click-this li.active a {
  color: #fff;
}
.sj-nav.m-click-this .side-phone {
  -moz-transform: translate(0%, 0px);
   -ms-transform: translate(0%, 0px);
       transform: translate(0%, 0px);
  opacity: 1;
}

.menu1 {
  background: #fff;
  text-align: center;
}
.menu1 ul {
  padding: 0px 20px;
  white-space: nowrap;
  overflow-y: hidden;
  overflow-x: auto;
}
.menu1 li {
  display: inline-block;
  padding: 0px 8px;
  line-height: 45px;
  position: relative;
}
.menu1 li:after {
  position: absolute;
  -moz-transition: all 0.5s;
       transition: all 0.5s;
  height: 2px;
  background: var(--base-color);
  width: 0px;
  left: 50%;
  bottom: 0px;
  content: "";
}
.menu1 li.active:after {
  width: 20px;
  margin-left: -10px;
}

.foot-menu {
  position: fixed;
  z-index: 99;
  width: 100%;
  left: 0px;
  bottom: 0px;
  background: #fff;
  display: none;
}
.foot-menu ul {
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.foot-menu ul li {
  -moz-box-flex: 1;
   -ms-flex: 1;
       flex: 1;
  text-align: center;
}
.foot-menu ul li h6 {
  font-size: 12px;
}
.foot-menu ul li p {
  font-size: 12px;
  line-height: 18px;
}
.foot-menu ul li a {
  padding: 10px 0;
  display: block;
}
.foot-menu ul li i {
  font-size: 22px;
  line-height: 22px;
}

@media screen and (max-width: 900px) {
  .foot-menu {
    display: block;
  }
}
.sj-all {
  display: none;
}

.wd {
  max-width: 100%;
}

.sj-all.banner .swiper-pagination-bullet {
  height: 2px !important;
}

@media screen and (max-width: 1930px) {
  .header .nav #nav li {
    line-height: 80px;
    font-size: 18px;
  }
  .header .logo-img {
    width: 138px;
  }
}
@media screen and (max-width: 1601px) {
  .wd {
    width: 1440px;
  }
  .ggjj-2 {
    margin-top: 120px;
  }
  .jm-1-1 .qp-img-bg {
    height: 750px;
  }
  .jm-1-1 .qp-img-bg img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 1441px) {
  .wd {
    width: 1200px;
  }
  .ggjj-2 {
    margin-top: 70px;
  }
  .i-2-foot {
    margin-top: 30px;
  }
  .i-3-ul {
    margin-top: 20px;
  }
  .i-3-ul li h4 {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1191px) {
  .wd {
    width: 1000px;
  }
}
@media screen and (max-width: 900px) {
  .jmfc-pag {
    padding: 4vw 0;
  }
  .jmfc-pag dd {
    margin-top: 4vw;
  }
  .i-jm-new .mores {
    top: 85%;
  }
  .jm-1-1 .qp-img-bg {
    height: 550px;
  }
  .i-jm-item .txt {
    padding: 4vw;
  }
  .i-jm-item .txt .hr {
    margin-top: 2vw;
    height: 2px;
  }
  .i-jm-item .txt h3 {
    font-size: 4.5vw;
  }
  .i-jm-item .txt .en {
    font-size: 4vw;
  }
  .i-jm-item .txt .iconfont {
    font-size: 3.2vw;
  }
  .jm-foot {
    padding-bottom: 4vw;
  }
  .jm-foot-body .bd-ul {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .jm-foot-body .bd-ul li {
    padding: 3vw 4vw;
  }
  .jm-foot-body .bd-ul .bd-input {
    height: 40px;
    height: 40px;
    font-size: 4vw;
    padding: 0px 4vw;
  }
  .jm-foot-body .jm-foot-btn {
    margin-top: 2vw;
    padding: 0px 4vw;
  }
  .jm-foot-body .jm-foot-btn-1 {
    height: 40px;
    line-height: 40px;
    font-size: 4vw;
    width: 100%;
    border-radius: 2vw;
  }
  .jm-foot-infos {
    margin-top: 4vw;
  }
  .sj-hide {
    display: none;
  }
  .qp-img-content .qp-img-bg img {
    object-fit: cover;
    height: 100%;
  }
  .main {
    padding-bottom: 30px;
  }
  .wd {
    width: 100%;
  }
  .dn-all {
    display: none;
  }
  .sj-all {
    display: block;
  }
  .ggjj-2 {
    margin-top: 20px;
    display: block;
  }
  .ggjj-2-left, .ggjj-2-right {
    width: 100%;
  }
  .ggjj-2-left .txt {
    padding-top: 8vw;
  }
  .ggjj-2-left h2 {
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .art-share {
    display: block;
    text-align: center;
  }
  .art-share-left {
    margin-bottom: 10px;
  }
  .art-share #bdshare {
    text-align: center;
  }
  .art-share #bdshare a {
    float: none;
  }
  .ggjj-2-ul {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .ggjj-2-ul li {
    text-align: center;
    padding: 2vw;
    border-right: 1px solid #efefef;
    border-top: 1px solid #efefef;
  }
  .ggjj-2-ul li .size {
    display: inline-block;
  }
  .ggjj-2-ul li:nth-child(1), .ggjj-2-ul li:nth-child(2) {
    border-top: none;
  }
  .ggjj-bn {
    padding-bottom: 20px;
    margin-bottom: 10px;
    margin-top: 5px;
    margin-left: -10px;
    margin-right: -10px;
  }
  .ggjj-bn .txt {
    font-size: 4.5vw;
    padding: 10px;
    width: 90vw;
  }
  h1 {
    font-size: 7vw;
  }
  h2,
  h3 {
    font-size: 5.81vw;
  }
  h4 {
    font-size: 4.8223vw;
  }
  h5 {
    font-size: 4.002509vw;
  }
  h6 {
    font-size: 3.32208247vw;
  }
  p {
    font-size: 3.4vw;
  }
  .about-list {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .about-list li .txt {
    padding: 1vw 2vw;
  }
  .about-list li .txt h4 {
    font-size: 4.2vw;
  }
  .jm-5-dn-img {
    display: none;
  }
  .jm-5-sj-img {
    display: block;
  }
  .info-btn-body {
    padding: 10px 0;
    margin-top: 4vw;
  }
  .all-btn.big:before {
    margin-top: -1vw;
    margin-right: 10px;
  }
  .ppgs-2 {
    margin-top: 20px;
  }
  .ppgs-2-ul li {
    margin-bottom: 4vw;
  }
  .ppgs-2-ul li .imgs,
  .ppgs-2-ul li .ppgs-2-right {
    width: 100%;
    float: none !important;
  }
  .ppgs-2-ul li .ppgs-2-right {
    padding-top: 0px;
  }
  .ppgs-2-ul li .txt {
    padding: 4vw;
    position: relative;
    -moz-transform: translate(0, 0);
     -ms-transform: translate(0, 0);
         transform: translate(0, 0);
    top: 0;
    max-width: 100%;
  }
  .ppgs-2-ul li .txt h3 {
    font-size: 5.2vw;
  }
  .ppgs-2-ul li .txt h6 {
    margin-top: 2vw;
  }
  .ppsjg-item {
    margin-bottom: 4vw;
  }
  .ppsjg-body .ggjj-bn {
    margin-bottom: 5.5vw;
  }
  .ppsjg-header {
    height: auto;
    padding: 5px 10px;
    width: 90%;
    left: 5%;
  }
  .ppsjg-header h3 {
    font-size: 4.5vw;
    font-weight: 500;
  }
  .ppsjg-foot {
    padding: 10px;
    width: 100%;
    left: 0%;
    margin-top: 0;
  }
  .ppsjg-foot h4 {
    font-size: 4.5vw;
  }
  .ppsjg-foot h6 {
    margin-top: 2px;
  }
  .pplc-list li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: block;
    margin-bottom: 4vw;
  }
  .pplc-list li .lc-left,
  .pplc-list li .imgs {
    width: 100%;
  }
  .pplc-list li .lc-dn {
    display: none;
  }
  .pplc-list li .lc-sj {
    display: block;
  }
  .pplc-list li .lc-nian {
    display: none;
  }
  .pplc-list li .imgs {
    height: 200px;
  }
  .pplc-list li .txt1 {
    margin-top: 4vw;
  }
  .pplc-list li .txt {
    padding: 4vw;
  }
  .a-sp-zt {
    max-width: 100%;
  }
  .ppsp-list li .icon {
    width: 12vw;
    height: 12vw;
    line-height: 12vw;
    text-align: center;
    border-radius: 50%;
    -moz-transform: scale(1);
     -ms-transform: scale(1);
         transform: scale(1);
    opacity: 1;
    margin-top: -6vw;
    margin-left: -6vw;
  }
  .ppsp-list li .icon .iconfont {
    font-size: 9.6vw;
  }
  .list-shop .txt .title {
    font-size: 4vw;
  }
  .ppry-1 {
    padding: 4vw;
  }
  .ppry-1 h6 {
    margin-top: 2vw;
  }
  .ppry-1 h4 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
  }
  .ppry-1 h4 span {
    display: block;
  }
  .ppry-list ul {
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
  }
  .footer .foot-zt {
    padding: 4vw;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
     -ms-flex-direction: column;
         flex-direction: column;
  }
  .footer .left .foot-logo {
    width: auto;
    height: 22px;
  }
  .footer .left .foot-logo img {
    width: auto;
    height: 22px;
  }
  .footer .left .infos {
    display: none;
  }
  .footer .center {
    display: none;
  }
  .footer .right {
    margin-left: 0;
    margin-top: 5vw;
  }
  .footer .right .icons {
    margin-top: 3px;
  }
  .about-body {
    margin-top: 4vw;
  }
  .footer .right .icons-item .icons-img {
    width: 80px;
    height: 80px;
  }
  .foot-tel {
    display: block;
  }
  .i-page {
    padding: 4vw 0;
  }
  .i-page dd {
    margin-top: 4vw;
  }
  .footer .foot-jj {
    border-top: none;
    font-size: 3vw;
  }
  .footer .foot-jj .l2 {
    display: block;
    text-align: center;
  }
  .i-cp-menu {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 5px;
    padding: 0px 5px;
  }
  .i-cp-menu li {
    width: auto;
    height: 30px;
    line-height: 30px;
    font-size: 3.6vw;
    margin: 0;
  }
  .i-2 {
    padding: 0vw 0vw;
    height: auto;
  }
  .i-2 .qp-img-bg {
    height: 300px;
  }
  .i-2-ul {
    margin-top: 6vw;
  }
  .i-2-ul li {
    font-size: 4vw;
  }
  .i-2-foot {
    margin-top: 6vw;
  }
  .i-header h2 {
    font-size: 5.8vw;
  }
  .i-2-more {
    font-size: 3.2vw;
    padding: 3px 15px;
  }
  .i-cp {
    padding-bottom: 0;
    padding-top: 6vw;
  }
  .i-cp .i-header h6 span:not(.sj-hide) {
    display: block;
  }
  .i-cp .i-header h6 .no-show {
    display: none !important;
  }
  .i-new-bn {
    padding-bottom: 20px;
  }
  .i-new-bn li {
    width: 70vw;
  }
  .i-new-bn .i-new-pag {
    left: 50% !important;
    -moz-transform: translateX(-50%) !important;
     -ms-transform: translateX(-50%) !important;
         transform: translateX(-50%) !important;
  }
  .list-article li .title {
    font-size: 3.5vw;
    margin-top: 5px;
    line-height: 1.5;
  }
  .i-3 {
    height: auto;
    padding: 0;
  }
  .i-3 .qp-img-bg {
    height: 400px;
  }
  .i-3-ul {
    margin-top: 6vw;
  }
  .i-3-ul li .icon {
    width: 15vw;
    height: 15vw;
    line-height: 15vw;
    text-align: center;
    border-radius: 50%;
    font-size: 6vw;
  }
  .i-3-ul li h4 {
    margin-top: 4vw;
  }
  .i-3-ul li .en {
    font-size: 2.4vw;
    margin-top: 1vw;
  }
  .jm-banner-body {
    padding: 7vw 4vw;
    position: relative;
    left: 0;
    top: 0;
    -moz-transform: translate(0%, 0%);
     -ms-transform: translate(0%, 0%);
         transform: translate(0%, 0%);
    display: block;
  }
  .jm-banner-body .jm-bd {
    width: 100%;
  }
  .jm-banner-body .txt {
    text-align: center;
  }
  .jm-banner-body .txt h2 {
    font-size: 6vw;
    line-height: 1.3;
  }
  .jm-banner-body .txt h3 {
    font-size: 6vw;
    line-height: 1.3;
  }
  .jm-banner-body .txt h5 {
    display: inline-block;
  }
  .jm-banner-body .txt h5 span {
    margin-left: 30px;
  }
  .jm-banner-body .jm-bd {
    margin-top: 4vw;
  }
  .jm-banner-body .jm-bd-ul .jm-input {
    height: 40px;
    line-height: 40px;
  }
  .jm-banner-body .jm-bd .jm-btn {
    height: 40px;
    line-height: 40px;
  }
  .jm-banner img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
  }
  .jm-title {
    padding: 6vw 2vw 4vw;
  }
  .jm-title h2 {
    font-size: 6vw;
    line-height: 1;
  }
  .jm-title .hr {
    width: 15vw;
    height: 2px;
    line-height: 1;
    margin-top: 0;
    border: none;
    overflow: hidden;
  }
  .jm-title .hr + .en {
    margin-top: 0;
  }
  .jm-title .en {
    font-size: 2.6vw;
    margin-top: 4vw;
  }
  .jm-title p.en,
  .jm-title h3.en {
    font-size: 2.6vw;
  }
  .jm-1-1 .title h4 strong {
    color: #9e805d;
    display: block;
  }
  .jm-1-1-ul {
    margin-top: 4vw;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .jm-1-1-ul li {
    display: inline-block;
    vertical-align: top;
    width: 100vw;
    padding: 8vw 12vw;
    position: relative;
    background-color: transparent;
  }
  .jm-1-1-ul li > * {
    position: relative;
    z-index: 9;
  }
  .jm-1-1-ul li:hover {
    background-color: transparent;
  }
  .jm-1-1-ul li:after {
    position: absolute;
    left: 10vw;
    right: 10vw;
    height: 100%;
    top: 0;
    content: "";
    background-color: rgba(255, 255, 255, 0.1);
  }
  .jm-1-1-ul li .iconfont {
    width: 15vw;
    height: 15vw;
    line-height: 15vw;
    text-align: center;
    border-radius: 50%;
    font-size: 8vw;
  }
  .jm-1-1-ul li .hr {
    margin-top: 0vw;
    line-height: 2px;
  }
  .jm-1-1-ul li .en {
    font-size: 2.4vw;
    margin-top: 0;
  }
  .jm-1-1-ul li h6 {
    white-space: wrap;
    margin-top: 4vw;
    min-height: 120px;
  }
  .jm-1-2 {
    padding: 0;
  }
  .jm-1-2 .txt {
    width: 100%;
  }
  .jm-1-2 .txt h3 {
    font-size: 6vw;
  }
  .jm-1-2 .txt h2 {
    font-size: 7vw;
  }
  .jm-1-3-txt {
    padding: 6vw 4vw;
    position: relative;
    width: 100%;
    -moz-transform: translate(0, 0) !important;
     -ms-transform: translate(0, 0) !important;
         transform: translate(0, 0) !important;
  }
  .jm-1-3-txt .txt {
    text-align: center;
  }
  .jm-1-3-txt .txt h2 {
    font-size: 5.8vw;
  }
  .jm-1-3-txt .txt h5 {
    line-height: 1.6;
  }
  .jm-1-3-txt .t20 {
    margin-top: 3vw;
  }
  .jm-1-3:hover .jm-1-3-txt {
    right: 0;
    -moz-transform: translate(0, 0) !important;
     -ms-transform: translate(0, 0) !important;
         transform: translate(0, 0) !important;
  }
  .jm-pag {
    padding-bottom: 4vw;
  }
  .jm-2 {
    background-size: 100% 100%;
  }
  .jm-2 .jm-title {
    background-color: #fff;
  }
  .jm-2-ul {
    display: block;
    padding: 0px 8vw;
    margin-top: 4vw;
  }
  .jm-2-ul li {
    margin-left: 0;
    width: 100%;
    margin-bottom: 10px;
    padding: 2vw 1vw 2vw 2vw;
  }
  .jm-2-ul li h5 {
    font-size: 3.5vw;
  }
  .jm-2-ul li .iconfont {
    width: 8vw;
    height: 8vw;
    line-height: 8vw;
    text-align: center;
    border-radius: 50%;
    margin-right: 4vw;
    font-size: 4vw;
  }
  .jm-3 {
    padding-top: 4vw;
    background-size: cover;
  }
  .jm-3-menu {
    padding: 0px 4vw;
  }
  .jm-3-menu li .en {
    display: none;
  }
  .jm-3-menu li .iconfont {
    width: 8vw;
    height: 8vw;
    line-height: 8vw;
    text-align: center;
    border-radius: 50%;
    font-size: 4vw;
  }
  .jm-3-ul {
    -moz-box-pack: start;
     -ms-flex-pack: start;
         justify-content: flex-start;
  }
  .jm-3-ul li {
    width: 180px;
    padding: 6vw 2vw;
  }
  .jm-3-banner {
    padding: 0px 30vw;
  }
  .jm-4-body {
    padding: 4vw 2vw;
  }
  .jm-4 .txt h3 {
    font-size: 5.1vw;
  }
  .jm-4 .txt h4 {
    font-size: 4vw;
  }
  .jm-4 .txt strong {
    font-size: 4.2vw;
  }
  .jm-5-body {
    padding: 0;
  }
  .jm-5 .qp-img-bg {
    height: 300px;
  }
  .jmfc-pag {
    padding: 4vw 0;
  }
  .jmfc-dt {
    padding: 8vw 0 4vw;
  }
  .jmfc-dt-body {
    height: 50px;
    margin-bottom: 30px;
  }
  .jmfc-1-ul {
    gap: 2vw;
  }
  .jmfc-4 {
    padding-bottom: 0;
  }
  .jmfc-4-body {
    padding: 8vw 0;
    background-image: url(/basic/images/jm-2-bj.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
  }
  .jmfc-4-ul {
    display: block;
    grid-template-columns: 1fr 1fr;
    padding: 0px 8vw;
  }
  .jmfc-4-ul li {
    margin-left: 0;
    width: 100%;
    margin-bottom: 10px;
    padding: 2vw 4vw;
  }
  .jmfc-4-ul li .iconfont {
    width: 8vw;
    height: 8vw;
    line-height: 8vw;
    text-align: center;
    border-radius: 50%;
    margin-right: 4vw;
    font-size: 4vw;
  }
  .jmfc-5-body {
    display: block;
  }
  .jmfc-5-body .img {
    text-align: center;
  }
  .jmfc-5-body h6 {
    text-align: justify;
  }
  .jmfc-5-body .txt {
    padding: 4vw;
  }
  .jmfc-7-body {
    display: block;
    padding: 6vw 0;
    background-size: cover;
    background-attachment: local;
  }
  .cp-sx {
    margin-top: 4vw;
  }
  .cp-sx-menu li {
    font-size: 3.8vw;
  }
  .cp-sx-menu li a {
    padding: 1vw 3vw;
  }
  .main {
    padding-bottom: 4vw;
  }
  .cp-typename {
    margin-top: 4vw;
  }
  .cp-typename h2 {
    font-size: 5.6vw;
  }
  .list-article li {
    display: block;
    margin-bottom: 4vw;
  }
  .list-article li .txt {
    padding: 4vw 0;
  }
  .list-article li .title {
    height: auto;
  }
  .list-new {
    display: block;
  }
  .fenye {
    padding: 2vw;
  }
  .article-body {
    margin-top: 0vw;
    display: block;
    padding: 4vw 0;
  }
  .article-body .article-right {
    width: 100%;
    margin-left: 0;
    margin-top: 4vw;
  }
  .article-body .art-bodys {
    padding: 4vw 0;
    margin-top: 0;
  }
  .article-body .art-info {
    padding: 2vw 0;
  }
  .article-body .art-gg {
    height: auto;
  }
  .article-body .art-gg-body {
    padding: 6vw 4vw;
  }
  .article-body .art-gg-body .title {
    font-size: 4.5vw;
  }
  .article-body .art-gg-body .info {
    font-size: 3vw;
  }
  .article-shop-btns {
    margin-top: 4vw;
  }
  .ny-typename {
    margin-top: 4vw;
  }
  .lxwm-1 {
    margin-top: 4vw;
    display: block;
  }
  .lxwm-1-left {
    width: 100%;
  }
  .lxwm-1-right {
    width: 100%;
    padding: 4vw;
    max-width: 100%;
  }
  .lxwm-1-right:after {
    width: 8vw;
    height: 8vw;
  }
  .lxwm-1-right .txt {
    color: #fff;
  }
  .lxwm-1-right .txt h4 {
    color: #fff;
  }
  .lxwm-1 .lxwm-list {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
  }
  .lxwm-1 .lxwm-list .lxwm-1-item {
    padding: 0;
  }
  .lxwm-1 .lxwm-list .lxwm-1-item img {
    width: 30vw;
  }
  .lxwm-2 {
    margin-top: 0;
    display: block;
    background-color: transparent;
  }
  .lxwm-2-left {
    width: 100%;
  }
  .lxwm-2-left #allmap {
    height: 40vh;
  }
  .lxwm-2-right {
    background-color: #fff;
    margin-top: 0vw;
    width: 100%;
    padding: 4vw;
  }
  .lxwm-2-right .txt {
    padding: 0vw;
  }
  .lxwm-2-right .txt .txt-1 {
    margin-top: 4vw;
  }
  .list-al {
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
  }
  .list-md {
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
  }
  .ppsp-list ul {
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
  }
  .list {
    margin-top: 2vw;
  }
  .list-shop {
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
    margin-top: 0;
    padding: 2vw 0;
  }
  .shop-body {
    padding: 0;
  }
  .article-shop {
    padding-bottom: 4vw;
    display: block;
  }
  .article-shop-left {
    width: 100%;
  }
  .article-shop-right {
    margin-left: 0;
    padding: 2vw 4vw;
  }
  .art-cp-xt-bn {
    padding: 0 2vw;
  }
  .art-cp-xt-bn .art-cp-prev,
  .art-cp-xt-bn .art-cp-next {
    display: none;
  }
  .article-shop-item {
    padding: 2vw 0;
  }
  .hs-list {
    gap: 2vw;
  }
  .hs-list li img {
    height: 40px;
    object-fit: cover;
  }
  .w80 {
    width: 100%;
  }
  .jmfc-dt-body .num {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
  }
  .art-tit h1 {
    font-size: 5vw;
  }
  .bn-next,
  .bn-prev {
    display: none;
  }
  .cp-menu ul {
    text-align: center;
  }
  .cp-menu ul li {
    margin-right: 0px;
  }
  .cp-menu ul li a {
    padding: 8px 10px;
  }
  .all-btn.big {
    font-size: 4vw;
    height: 40px;
    line-height: 38px;
  }
  .i-header,
  .i-4,
  .about-list,
  .ggjj-2-left .txt,
  .mbx,
  .ppry-list,
  .ppsp-list,
  .cp-sx,
  .list,
  .cp-menu,
  .article-body {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .i-about-body {
    display: block;
    padding: 4vw;
  }
  .i-about-body .txt {
    padding: 4vw 0;
  }
  .i-about-body .txt h2 {
    font-size: 5.6vw;
  }
  .i-about-body .txt .en {
    display: none;
  }
  .i-about-body .txt .txt-content {
    margin-top: 20px;
  }
  .i-about-body .txt .txt-content h6 {
    margin-bottom: 2vw;
  }
  .i-about-left {
    padding-right: 0;
    width: 100%;
  }
  .i-about-right {
    margin-top: 4vw;
  }
  .i-about .mores {
    left: auto;
    right: 0;
    bottom: auto;
    top: 0;
    -moz-transform: translate(0, -50%);
     -ms-transform: translate(0, -50%);
         transform: translate(0, -50%);
    width: 31vw;
    height: 12.5vw;
  }
  .i-about .mores-name {
    font-size: 3vw;
  }
  .fl-menu {
    padding: 4vw 1vw;
  }
  .fl-menu li {
    font-size: 4vw;
  }
  .fl-menu li a {
    padding: 2vw 4vw;
  }
}

/*# sourceMappingURL=main.css.map */