.culture-section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background-color: transparent;
  /* 完全透明 */
}
.culture-cards {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
}
.culture-card {
  min-width: 240px;
  height: 340px;
  border-radius: 5px 5px 50px 5px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.culture-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.culture-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.7) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 32px 24px;
  transition: background 0.5s ease;
}
.culture-card:hover .culture-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.85) 100%);
}
.culture-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 2;
  position: relative;
}
.culture-en {
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 0;
  opacity: 0.85;
  position: relative;
  display: inline-block;
  font-weight: 500;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}
.culture-en::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.4s ease;
}
.culture-card:hover .culture-en {
  transform: translateY(-5px);
}
.culture-card:hover .culture-en::after {
  width: 36px;
}
.culture-desc {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 0;
  opacity: 0;
  z-index: 2;
  position: relative;
  max-height: 0;
  overflow: hidden;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform, opacity;
}
.culture-card:hover .culture-desc {
  max-height: 200px;
  margin-top: 18px;
  opacity: 0.95;
  transform: translateY(0);
}
.culture-card {
  min-width: 200px;
  height: 300px;
}
.culture-title {
  font-size: 22px;
}
.culture-desc {
  font-size: 14px;
}
.logo-bg {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  width: 80px;
  height: 80px;
  transition: box-shadow 0.2s;
}
.logo-qr-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 15px;
}
.logo-qr-wrap:hover .logo-bg {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.logo-qr-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-img {
  max-width: 60px;
  height: auto;
  cursor: pointer;
  object-fit: contain;
  display: block;
  margin: 0;
}
.logo-qr-pop {
  display: none;
  position: absolute;
  bottom: 110%;
  /* 显示在logo上方 */
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  padding: 10px;
  z-index: 10;
  text-align: center;
}
.logo-qr-img {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  display: block;
}
.logo-qr-arrow {
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}
.logo-qr-wrap:hover .logo-qr-pop {
  display: block;
}
.trial-popup-mask {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trial-popup {
  display: flex;
  background: #fff;
  border-radius: 0 0 98px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  position: relative;
  min-width: 720px;
  min-height: 400px;
}
.trial-popup-wrapper {
    position: relative;
    /* 保证子元素绝对定位基于 wrapper */
}

.trial-popup-close {
    position: absolute;
    right: -32px; /* 让按钮超出 trial-popup */
    top: -48px;
    width: 32px;
    height: 32px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .trial-popup-close:hover {
        background: rgba(255,255,255,0.15); /* 背景微亮 */
        box-shadow: 0 2px 8px rgba(0,0,0,0.18); /* 添加阴影 */
        transform: scale(1.08); /* 微微放大 */
        transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .trial-popup-close::before,
    .trial-popup-close::after {
        content: '';
        position: absolute;
        width: 16px;
        height: 2px;
        background: #fff;
        border-radius: 1px;
    }

    .trial-popup-close::before {
        transform: rotate(45deg);
    }

    .trial-popup-close::after {
        transform: rotate(-45deg);
    }
.trial-popup-left {
    width: 260px;
    background: #fff;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    justify-content: center; /* 新增：垂直居中 */
}
.trial-popup-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.trial-popup-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #222;
  text-align: center;
}
.trial-popup-desc {
  position: relative;
  padding: 5px 0;
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}
.trial-popup-desc::before,
.trial-popup-desc::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  width: 80%;
  background: linear-gradient(to right, rgba(250, 151, 3, 0), #fa9703 40%, #fa9703 60%, rgba(250, 151, 3, 0));
  pointer-events: none;
}
.trial-popup-desc::before {
  top: 0;
}
.trial-popup-desc::after {
  bottom: 0;
}
.trial-popup-num {
  color: #fa9703;
  font-weight: bold;
}
.trial-popup-qr {
  width: 160px;
  height: 160px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.trial-popup-btns {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: center;
}
.trial-popup-btn {
  display: inline-block;
  padding: 12px 36px;
  border-radius: 20px;
  background: #f5f5f5;
  color: #fa9703;
  font-size: 15px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.trial-popup-btn-orange {
  color: #fff;
  background-image: url('/images/btn-bg.png');
  background-size: cover;
  /* 背景图铺满按钮 */
  background-repeat: no-repeat;
  /* 不重复 */
  background-position: center;
  /* 居中显示 */
}
.trial-popup-right {
  flex: 1;
  background: linear-gradient(120deg, #ffb347 0%, #ff6600 100%);
  padding: 48px 32px 10px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.trial-popup-right-wx-bg {
  background: #fff;
  border-radius: 0 0 32px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.trial-popup-right.trial-popup-right-wx-bg {
max-width:500px;
  background: none !important;
  padding: 0 !important;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.trial-popup-right.trial-popup-right-wx-bg .right-main-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  margin: 0;
}
.trial-popup-right.trial-popup-right-wx-bg .right-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  padding: 0;
}
.trial-popup-right-title {
  position: relative;
  padding: 5px 0;
  text-align: center;
  font-size: 18px;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 500;
}
.trial-popup-right-title::before {
  top: 0;
  height: 1px;
  /* 上边框粗 */
}
.trial-popup-right-title::after {
  bottom: 0;
  height: 1px;
  /* 下边框细 */
}
.trial-popup-right-title::before,
.trial-popup-right-title::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  width: 80%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 40%, #fff 60%, rgba(255, 255, 255, 0));
  pointer-events: none;
}
.trial-popup-right-title::before {
  top: 0;
}
.trial-popup-right-title::after {
  bottom: 0;
}
.trial-popup-right-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.trial-popup-right-highlight {
  font-size: 28px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 18px;
  text-shadow: 1px 2px 8px rgba(255, 255, 255, 0.18);
  margin-left: 45px;
}
.highlight-italic-outline {
  margin-right: 10px;
  font-size: 40px;
  font-style: italic;
  color: #fff;
  /* 更粗的立体描边效果 */
  text-shadow: -3px -3px 0 #e73838, 3px -3px 0 #e73838, -3px 3px 0 #e73838, 3px 3px 0 #e73838, 0px 3px 0 #e73838, 3px 0px 0 #e73838, 0px -3px 0 #e73838, -3px 0px 0 #e73838, 0px 4px 6px rgba(0, 0, 0, 0.25);
  /* 立体阴影 */
  /* 如只考虑现代浏览器，也可用-webkit-text-stroke: 2px #c40e0e; */
}
.highlight-underline {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #e73838;
  text-decoration-thickness: 5px;
  /* 更粗的下划线，现代浏览器支持 */
}
.trial-popup-right-img {
  width: 350px;
  height: auto;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .trial-popup {
    min-width: 320px;
    flex-direction: column;
  }
  .trial-popup-left,
  .trial-popup-right {
    width: 100%;
    border-radius: 0;
    padding: 24px;
  }
  .trial-popup-right {
    border-radius: 0 0 24px 24px;
  }
}
#magnet-menu {
  position: fixed;
  right: 0;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border-top-left-radius: 36px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  background: #fff;
  /* 确保有背景色 */
}
#magnet-menu .magnet-item:first-child {
  border-top-left-radius: 36px;
  padding-top: 18px;
}
.magnet-item {
  background: transparent;
  /* 让父级背景色透出 */
  position: relative;
  width: 60px;
  margin-bottom: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d4d4d4;
  background: #fff;
  transition: background 0.2s;
  flex-direction: column;
  justify-content: flex-start;
  padding: 12px 10px;
}
.magnet-item .magnet-label {
  font-size: 12px;
  color: #ff6600;
}
.noboder {
  border-bottom: none;
}
.magnet-bg:hover .magnet-label {
  color: #ff6600 !important;
}
.magnet-item:not(.magnet-bg):hover {
  background: #ff6600 !important;
}
.magnet-item:not(.magnet-bg):hover .magnet-label {
  color: #fff !important;
}
.magnet-item:last-child {
  border-bottom: none;
}
.magnet-bg {
  background: #ff6600;
}
.magnet-bg .magnet-label {
  color: #fff;
}
.magnet-bg-hover {
  background: #fff !important;
  color: #ff6600 !important;
}
.magnet-icon {
  width: 36px;
  height: auto;
  transition: all 0.2s;
}
.magnet-pop {
  display: none;
  position: absolute;
  right: 90px;
  /* 距离右侧一定距离，可根据实际调整 */
  left: auto !important;
  /* 覆盖原有left */
  top: 90%;
  /* 往下偏移，可根据实际调整 */
  border-radius: 28px;
  /* 圆角 */
  transform: translateY(-50%);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 12px 16px;
  min-width: 120px;
  text-align: center;
  z-index: 10000;
}
.magnet-pop::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 30%;
  /* 箭头往上，可根据实际调整 */
  transform: translateY(-50%);
  border-width: 8px 0 8px 12px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  filter: drop-shadow(1px 0 2px rgba(0, 0, 0, 0.08));
}
.magnet-qr img {
  width: 120px;
  height: 120px;
}
.magnet-phone-num {
  font-size: 18px;
  color: #ff6600;
  font-weight: bold;
  margin-bottom: 6px;
  white-space: nowrap;
}
.magnet-top {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  padding: 8px 10px;
}
.magnet-top:hover {
  background: #ff6600;
}
.magnet-top:hover .magnet-label {
  color: #fff;
}
.magnet-top .magnet-label {
  color: #ff6600;
  font-size: 12px;
  margin-top: 2px;
  text-align: center;
}
* {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
ul li {
  cursor: pointer;
}
.swiper-container {
  width: 100%;
  height: 509px;
  position: relative;
}
.swiper-slide {
  background-position: center;
  background-size: cover;
}
.el-divider--horizontal {
  display: block;
  height: 1px;
  width: 100%;
  margin: 24px 0;
  background-color: #DCDFE6;
}
.popup-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 450px;
  background: #fff;
  border-radius: 0 0 120px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: visible;
}
.popup-close {
  position: absolute;
  top: -40px;
  /* 让按钮在弹窗外面 */
  right: -32px;
  /* 靠近弹窗右侧 */
  font-size: 24px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.2s;
}
.popup-content {
  display: flex;
  height: 100%;
  position: relative;
  background: linear-gradient(120deg, #fffdfa 60%, #fdf8f2 100%);
  overflow: hidden;
  border-radius: 0 0 120px 0;
}
.popup-content::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 0;
  width: 300px;
  /* 353  */
  height: 332px;
  /* 391   */
  background: url('../images/login-bg.png') no-repeat right bottom;
  background-size: 300px 332px;
  z-index: 2;
  pointer-events: none;
}
.popup-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  position: relative;
  z-index: 3;
}
.popup-title {
  font-size: 28px;
  color: #222;
  margin-bottom: 32px;
  font-weight: 500;
}
.popup-qrcode {
  width: 200px;
  height: 200px;
  background: #fff;
  border-radius: 0 0 48px 0;
  border: 1px solid #eee;
  margin-bottom: 32px;
}
.popup-qrcode img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.popup-tip {
  font-size: 14px;
  color: #888;
  margin-top: 16px;
}
.popup-tip a {
  color: #ff9900;
  text-decoration: none;
  margin: 0 2px;
}
.popup-right {
  flex: 1;
  position: relative;
  border-radius: 0 0 120px 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
}
.popup-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ff9900;
  border-radius: 0 0 120px 0;
  z-index: 1;
}
.popup-logo {
  width: 113px;
  height: auto;
  margin-right: 0;
  margin-top: 0;
}
.popup-right-inner {
  width: 100%;
  padding-top: 48px;
  padding-right: 20px;
  /* 距离右边20px */
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
/* PC端的样式 */
@media screen and (min-width: 768px) {
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #000000;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .modal-content {
    /* background-color: #fefefe; */
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    text-align: center;
  }
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  .area {
    width: 1200px;
    margin: 0 auto;
  }
  .avocado {
    padding: 10px 0px;
    display: flex;
  }
  .avocado .avoimg {
    width: 20%;
  }
  .avocado .avoimg .avoimgs {
    width: 165px;
    height: alu;
  }
  .avocado .avozonj {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
    flex-wrap: nowrap;
  }
  .avocado .avozonj li a {
    text-decoration: none;
    color: black;
    font-weight: 400;
  }
  .avocado .avozonj li a.active {
    color: #339B96;
    border-bottom: 2px solid #339B96;
    font-weight: 500;
  }
  .avocado .avozonj li {
    padding: 0px 20px;
    font-size: 16px;
    white-space: nowrap;
  }
  .avocado .avozonj li:hover {
    color: #339B96 !important;
  }
  .avocado .avozonj li a:hover {
    color: #339B96 !important;
  }
  .avocado .avoring {
    width: 50%;
    display: flex;
    justify-content: end;
    align-items: center;
    color: #999;
  }
  .avocado .avoring .avoring-left {
    display: flex;
    align-items: center;
    padding-right: 20px;
  }
  .avocado .avoring .ringimg {
    width: 23px;
    height: 23px;
    padding-right: 10px;
  }
  .avocado .avoring .ringjrozx {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 50px;
    color: #fff;
    background: linear-gradient(to right, #339d98, #50c5bf);
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
  }
  .avocado .avoring .ringjrozx:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
  .aoishds {
    position: relative;
    /* Chrome/Safari/Edge 滚动条定制 */
    /* 内容防穿透（确保内容不透明） */
  }
  .aoishds .citron {
    display: flex;
  }
  .aoishds .citron .aitaoly .fenmlei {
    padding: 25px 68px;
    background-color: #fa9703;
    border-radius: 5px 35px 0px 0px;
    color: white;
  }
  .aoishds .citron .aitaoly .mnasdo {
    list-style-type: none;
    z-index: 3;
    position: absolute;
    height: 509px;
    background-color: #e1f2f7;
    max-height: 509px;
    min-height: 509px;
  }
  .aoishds .citron .aitaoly .mnasdo .ausdhww {
    list-style-type: none;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e1f2f7;
    position: relative;
  }
    .aoishds .citron .aitaoly .mnasdo a.js-trial-menu {
        font-size: 16px;
    }
    .aoishds .citron .aitaoly .mnasdo a {
        color: black;
        font-size: 14px;
    }
    .aoishds .citron .aitaoly .mnasdo a:hover {
        color: #6cb8b6;
    }
  .aoishds .citron .aitaoly .mnasdo .ylolas {
    padding: 24px 0px;
    border-bottom: 2px solid #fff;
  }
  .aoishds .citron .aitaoly .mnasdo .active {
    color: #6cb8b6;
    border-bottom: 2px solid #6cb8b6;
  }
    .aoishds .aposid-outer {
        display: none;
        position: absolute;
        z-index: 3;
        width: 320px;
        left: 200px;
        max-height: 509px; /* 略小于父容器高度 */
        overflow-y: auto; /* 允许滚动 */
        background-color: rgba(255, 255, 255, 0.85); /* 半透明白色 */
        backdrop-filter: blur(4px); /* 毛玻璃效果 */
        border-radius: 0px 20px 20px 0px;
        padding: 0px;
        top: 0px;
        border: 1px solid rgba(229, 230, 235, 0.7); /* 半透明边框 */
        box-shadow: 0 4px 16px rgba(0,0,0,0.06); /* 轻微阴影 */
        overflow: hidden; /* 关键：裁剪内部溢出，包括滚动条 */
       
    }
    .aoishds .aposid {
        max-height: 509px;
        overflow-y: auto;
      
        backdrop-filter: blur(4px);
        border-radius: 0 20px 20px 0;
        padding: 0;
        border: 1px solid rgba(229, 230, 235, 0.7);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        height: 100%;
    }
        /* 滚动条美化（Webkit内核） */
        .aoishds .aposid::-webkit-scrollbar {
            width: 2px;
            border-radius: 2px;
            background: transparent;
        }

        .aoishds .aposid::-webkit-scrollbar-thumb {
            background: rgba(180, 180, 180, 0.2); /* 浅灰色半透明 */
            border-radius: 2px;
        }

        .aoishds .aposid::-webkit-scrollbar-track {
            background: transparent;
            border-radius: 2px;
        }

    /* Firefox 滚动条 */
    .aoishds .aposid {
        scrollbar-width: thin;
        scrollbar-color: rgba(180, 180, 180, 0.3) transparent;
    }
  .aoishds .aposid .aspaojd {
    margin-bottom: 10px;
    /* 使用伪元素实现分隔线 */
  }
  .aoishds .aposid .aspaojd .kjansd {
    color: #fa9703;
    font-size: 16px;
    padding: 10px 0 0 30px;
  }
  .aoishds .aposid .aspaojd .kjansd:hover {
    color: #6cb8b6;
  }
  .aoishds .aposid .aspaojd .jasbds {
    padding: 10px 0 0 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
  }
  .aoishds .aposid .aspaojd .jasbds:hover {
    color: #6cb8b6;
  }
  .aoishds .aposid .aspaojd .jasbds a:hover {
    color: #6cb8b6;
  }
  .aoishds .aposid .aspaojd .jasbds > div:not(:last-child)::after,
  .aoishds .aposid .aspaojd .sasbds > div:not(:last-child)::after {
    content: "|";
    color: #ddd;
    /* 分隔符颜色 */
    margin-left: 5px;
    margin-right: 5px;
    font-weight: 300;
  }
  .aoishds .aposid .aspaojd .sasbds {
    padding-top: 15px;
    display: flex;
  }
 
 
  .aoishds .aposid > * {
    position: relative;
    z-index: 1;
  }
  .bitbolm {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    padding-left: 40px;
    position: relative;
  }
  .bitbolm .citmsad {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    /* 垂直居中 */
    padding: 10px;
    /* 左右内边距 */
  }
    .bitbolm .citmsad a{
        color:#000;
    }
    .bitbolm .citmsad:hover a.topmenu {
        color: #fff;
    }
    .bitbolm .citmsad a:hover {
        color: #fff;
    }
    .bitbolm .citmsad:hover {
        background-color: #fa9703;
        color: white;
    }
  .bitbolm .submenu {
    min-width: 100px;
    white-space: nowrap;
    position: absolute;
    z-index: 999;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    /* left: 0; */
    background: white;
    border: 1px solid #e5e6eb;
    /* 淡灰色边框 */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    /* 轻微阴影 */
    border-radius: 10px;
    color: black;
    visibility: hidden;
  }
  .bitbolm .submenu li {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
  }
  .bitbolm .submenu li:hover {
    background-color: rgba(36, 190, 145, 0.08);
  }
  .bitbolm .submenu li a {
    color: black;
  }
  .bitbolm .submenu li a:hover {
    color: #6cb8b6 !important;
  }
  .bitbolm .submenu li:hover {
    color: #6cb8b6 !important;
  }
  .bitbolm .active {
    padding-bottom: 10px;
    color: #6cb8b6;
    border-bottom: 2px solid #6cb8b6;
    box-sizing: border-box;
  }
  .citmsad .submenu li {
    text-align: center;
  }
  .citmsad .submenu li:last-child {
    border-bottom: none;
  }
  .citmsad:hover .submenu {
    visibility: visible;
  }
  .citmsad:hover {
    color: #6cb8b6;
    box-sizing: border-box;
  }
  .el-carousel__item h3 {
    color: #475669;
    font-size: 18px;
    opacity: 0.75;
    line-height: 300px;
    margin: 0;
  }
  .el-carousel__item:nth-child(2n) {
    background-color: #99a9bf;
  }
  .el-carousel__item:nth-child(2n+1) {
    background-color: #d3dce6;
  }
  /* noe1  */
  .mapsods {
    padding: 10px 0px;
    margin-top: 50px;
  }
  .mapsods .oasdj {
    position: relative;
    text-align: center;
    padding: 30px 0px;
  }
  .mapsods .oasdj .soasdj {
    font-size: 60px;
    font-weight: 600;
    color: #E8E8E8;
    line-height: 60px;
  }
  .mapsods .oasdj .foasdj {
    line-height: 38px;
    font-size: 38px;
    font-weight: 600;
    position: absolute;
    top: 60px;
    width: 100%;
  }
  .mapsods .ioasdn {
    padding-top: 15px;
  }
  .mapsods .ioasdn .opasjd {
    color: #fa9703;
    font-size: 21px;
  }
  .mapsods .ioasdn .aposjd {
    color: #99a9bf;
    font-size: 7px;
  }
  .mapsods .jzxciu .azxciu {
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
  }
  .mapsods .jzxciu .azxciu .mzocaso {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
  }
  .mapsods .jzxciu .azxciu .mzocaso .mzoimg {
   max-height:100%;
   width:auto;
    border-radius: 10px;
    padding: 3px;
    border: 2px solid #f9f9f9;
  }
  .mapsods .jzxciu .azxciu .mzocaso .lkasdn {
    padding-top: 10px;
  }
  .mapsods .jzxciu .azxciu .mzocaso:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
  .mapsods .jzxciu .bzxciu {
    padding-top: 10px;
    display: flex;
    justify-content: space-evenly;
  }
  .mapsods .jzxciu .bzxciu .mzocaso {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
  }
  .mapsods .jzxciu .bzxciu .mzocaso .mzoimg {
    width: 224px;
    border-radius: 10px;
    padding: 3px;
    border: 2px solid #f9f9f9;
  }
  .mapsods .jzxciu .bzxciu .mzocaso .lkasdn {
    padding-top: 10px;
  }
  .mapsods .jzxciu .bzxciu .mzocaso:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
  .mapsods .kaopsd {
    padding-top: 30px;
    display: flex;
    justify-content: center;
  }
  .mapsods .kaopsd .zbasd {
    padding: 10px 62px;
    background-color: #fa9703;
    color: #fff;
    font-size: 24px;
    border-radius: 50px;
    cursor: pointer;
    display: block;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
  }
  .mapsods .zbasd:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
  /* noe2  */
  .kashdns {
    padding: 10px 0px;
    background-color: #f3f3f3;
  }
  .kashdns .zashdns {
    position: relative;
    text-align: center;
    padding: 30px 0px;
  }
  .kashdns .zashdns .soasdj {
    line-height: 60px;
    font-size: 60px;
    font-weight: 600;
    color: #E8E8E8;
  }
  .kashdns .zashdns .foasdj {
    line-height: 38px;
    font-size: 38px;
    font-weight: 600;
    position: absolute;
    top: 60px;
    width: 100%;
  }
  .kashdns .xashdns {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
  }
  .kashdns .xashdns .bsdaja {
    border-right: 1px solid #D5DADA;
    padding-right: 50px;
  }
  .kashdns .xashdns .bsdaja .bsdaimg {
    width: 350px;
    height: 250px;
    border-radius: 5px 5px 30px 5px;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
  }
  .kashdns .xashdns .bsdaja .bsdaimg:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
  .kashdns .xashdns .bsdaja .bsdampl {
    display: flex;
  }
  .kashdns .xashdns .bsdaja .bsdampl .lpmads {
    padding-right: 20px;
  }
  .kashdns .xashdns .bsdaja .bsdampl .lpmads .asdss {
    font-size: 30px;
    font-weight: 500;
  }
  .kashdns .xashdns .bsdaja .bsdampl .lpmads .iugjkb {
    color: #999;
    font-size: 22px;
    font-weight: 500;
  }
  .kashdns .xashdns .bsdaja .bsdampl .lpmsda .asdasf {
    color: #415b5a;
    font-size: 18px;
    padding-bottom: 20px;
  }
  .kashdns .xashdns .bsdaja .bsdampl .lpmsda .asdasf a {
    color: #415b5a;
  }
  .kashdns .xashdns .bsdaja .bsdampl .lpmsda .asdasf a:hover {
    color: #6cb8b6;
  }
  .kashdns .xashdns .bsdaja .bsdampl .lpmsda .asdavfsd {
    width: 287px;
    font-size: 16px;
    color: #878f8e;
    padding-bottom: 20px;
  }
  .kashdns .xashdns .bsdaja .bsdampl .lpmsda .asdavfsd:hover {
    color: #6cb8b6;
  }
  .kashdns .xashdns .bsdaja .bsdampl .lpmsda .sdvasd {
    width: 30%;
    height: 15px;
    line-height: 15px;
    padding: 10px;
    text-align: center;
    color: #fff;
    background-color: #fa9703;
    border-radius: 50px;
    display: block;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
  }
  .kashdns .xashdns .bsdaja .bsdampl .lpmsda .sdvasd:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
  .kashdns .xashdns .oiahsd .osihdfn {
    width: 300px;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
  }
  .kashdns .xashdns .oiahsd .osihdfn .aiohdn {
    display: flex;
    padding-bottom: 10px;
  }
  .kashdns .xashdns .oiahsd .osihdfn .aiohdn .zkgcad {
    color: #415b5a;
  }
  .kashdns .xashdns .oiahsd .osihdfn .aiohdn .zkgcad:hover {
    color: #6cb8b6;
  }
  .kashdns .xashdns .oiahsd .osihdfn .aiohdn .qwkugk {
    margin-left: 10px;
    width: 30px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    font-size: 10px;
    color: #fff;
    background-color: #fa9703;
    border-radius: 40px 50px 50px 10px;
  }
  .kashdns .xashdns .oiahsd .osihdfn .oauhsd {
    padding-bottom: 5px;
    color: #878f8e;
  }
  .kashdns .xashdns .oiahsd .osihdfn .oauhsd:hover {
    color: #6cb8b6;
  }
  .kashdns .xashdns .oiahsd .osihdfn .aoishd {
    padding-bottom: 30px;
    color: #bfc4c3;
  }
  .kashdns .xashdns .oiahsd .osihdfn:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
  .kashdns .kaopsd {
    padding-top: 30px;
    display: flex;
    justify-content: center;
  }
  .kashdns .kaopsd .zbasd {
    padding: 10px 62px;
    background-color: #fa9703;
    color: #fff;
    font-size: 24px;
    border-radius: 50px;
    display: block;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
  }
  .kashdns .kaopsd .zbasd:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
  /* noe3  */
  .asdnas {
    padding: 10px 0px;
  }
  .asdnas .aksodho {
    position: relative;
    text-align: center;
    padding: 30px 0px;
  }
  .asdnas .aksodho .soasdj {
    font-size: 60px;
    font-weight: 600;
    color: #E8E8E8;
    line-height: 60px;
  }
  .asdnas .aksodho .foasdj {
    line-height: 38px;
    font-size: 38px;
    font-weight: 600;
    position: absolute;
    top: 60px;
    width: 100%;
  }
  .asdnas .iasodh {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .asdnas .iasodh .oaihsd {
    width: 30%;
    padding: 10px;
    border: 2px solid #f9f9f9;
    border-radius: 5px 5px 40px 5px;
    margin-bottom: 10px;
  }
  .asdnas .iasodh .oaihsd .spiohdn {
    width: 100%;
    height: 150px;
    border-radius: 5px 5px 35px 5px;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
    /* 新增修复代码 */
    transform-style: preserve-3d;
    /* 启用3D渲染模式 */
    backface-visibility: hidden;
    /* 隐藏背面消除锯齿 */
    -webkit-font-smoothing: subpixel-antialiased;
    /* 优化字体渲染 */
  }
  .asdnas .iasodh .oaihsd .spiohdn:hover {
    transform: scale(1.05) translateZ(0);
    -webkit-transform: scale(1.05) translateZ(0);
  }
  .asdnas .iasodh .oaihsd .saiohdn {
    font-size: 26px;
    font-weight: 600;
    padding: 10px 0px;
    display: flex;
  }
  .asdnas .iasodh .oaihsd .saiohdn .asind {
    position: relative;
  }
  .asdnas .iasodh .oaihsd .saiohdn .asind .jand {
    position: inherit;
  }
  .asdnas .iasodh .oaihsd .saiohdn .asind .mzxco {
    width: 100%;
    height: 5px;
    position: absolute;
    top: 25px;
    background-color: #fa9703;
    border-radius: 50px;
  }
  .asdnas .iasodh .oaihsd .apiohdn {
    width: 340px;
    padding-top: 20px;
  }
  .asdnas .iasodh .oaihsd .apiohdn .lohdn {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .asdnas .iasodh .oaihsd .apiohdn .lohdn .lohds {
    font-size: 18px;
  }
  .asdnas .iasodh .oaihsd .apiohdn .lohdn .lohds:hover {
    color: #6cb8b6;
  }
  .asdnas .iasodh .oaihsd .apiohdn .lohdn .aohdn {
    font-size: 14px;
    color: #fff;
    padding: 5px 10px;
    background-color: #fa9703;
    border-radius: 50px;
    cursor: pointer;
  }
  .asdnas .iasodh .oaihsd .apiohdn .lohdn .sohdn {
    font-size: 14px;
    color: #fff;
    padding: 5px 10px;
    background-color: #329b96;
    border-radius: 50px;
    cursor: pointer;
  }
  .asdnas .iasodh .oaihsd .apiohdn .lohdn .dohdn {
    font-size: 14px;
    color: #fff;
    padding: 5px 10px;
    background-color: #2979fe;
    border-radius: 50px;
    cursor: pointer;
  }
  .asdnas .iasodh .aoshdasd {
    width: 64%;
    padding: 10px;
    border: 2px solid #f9f9f9;
    border-radius: 5px 5px 40px 5px;
    display: flex;
    justify-content: space-between;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd {
    width: 49%;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .knzxc {
    display: flex;
    font-size: 26px;
    font-weight: 600;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .knzxc .laknjsd {
    position: relative;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .knzxc .laknjsd .zcxhs {
    width: 100%;
    height: 5px;
    position: absolute;
    top: 25px;
    background-color: #fa9703;
    border-radius: 50px;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .knzxc .laknjsd .shxcz {
    position: inherit;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .snzxc {
    padding-top: 20px;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .snzxc .pojda {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .snzxc .pojda .oahs {
    width: 40px;
    height: 40px;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .snzxc .pojda .makdsnl {
    width: 55%;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .snzxc .pojda .makdsnl:hover {
    color: #6cb8b6;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .snzxc .pojda .dohdn {
    font-size: 14px;
    color: #fff;
    padding: 5px 10px;
    background-color: #fa9703;
    border-radius: 50px;
    cursor: pointer;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .snzxc .el-divider {
    margin: 10px 0px;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .tnzxc {
    background-color: #feebcf;
    width: 40px;
    height: 40px;
    margin: 5px auto;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .aohdn,
  .sohdn,
  .dohdn,
  .pansds {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .aohdn:hover,
  .sohdn:hover,
  .dohdn:hover,
  .pansds:hover {
    transform: translateY(-2px);
  }
  /* noe4 */
  .kasdnos {
    padding: 10px 0px;
  }
  .kasdnos .jasdasd .kasdmas {
    position: relative;
    text-align: center;
    padding: 30px 0px;
  }
  .kasdnos .jasdasd .kasdmas .soasdj {
    font-size: 60px;
    font-weight: 600;
    color: #E8E8E8;
    line-height: 60px;
  }
  .kasdnos .jasdasd .kasdmas .foasdj {
    font-size: 38px;
    font-weight: 600;
    line-height: 38px;
    position: absolute;
    top: 60px;
    width: 100%;
  }
  .kasdnos .jasdasd .knasds .asdnslm {
    margin-top: 30px;
    padding: 10px;
    border: 2px solid #f9f9f9;
    background-color: #fff;
    border-radius: 5px 5px 40px 5px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    min-height: 250px;
  }
  .kasdnos .jasdasd .knasds .asdnslm .pansds {
    width: 18%;
    /* height: 260px; */
    background-color: #fa9703;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px 5px 35px 5px;
    font-size: 30px;
    font-weight: 300;
    color: #fff;
  }
  .kasdnos .jasdasd .knasds .asdnslm .pansds .maosid {
    width: 90px;
    height: 90px;
  }
  .kasdnos .jasdasd .knasds .asdnslm .iashds .saosid:nth-child(4) {
    margin-bottom: 0;
  }
  .kasdnos .jasdasd .knasds .asdnslm .iashds {
    width: 30%;
  }
  .kasdnos .jasdasd .knasds .asdnslm .iashds .saosid {
    margin-bottom: 20px;
    border: 2px solid #fa9703;
    border-radius: 10px 10px 20px 10px;
    font-size: 14px;
    display: flex;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    justify-content: space-between;
    align-items: center;
  }
  .kasdnos .jasdasd .knasds .asdnslm .iashds .saosid .kasdhi {
    display: flex;
    align-items: center;
  }
  .kasdnos .jasdasd .knasds .asdnslm .iashds .saosid .kasdhi .asdef {
    width: 30px;
    height: 30px;
  }
  .kasdnos .jasdasd .knasds .asdnslm .iashds .saosid .kasdhi .kasuid {
    padding-left: 10px;
  }
  .kasdnos .jasdasd .knasds .asdnslm .iashds .saosid .oauhds {
    padding: 10px;
    background-color: #fa9703;
    color: #fff;
    border-radius: 20px 6px 16px 0px;
    cursor: pointer;
    font-weight: initial;
  }
  .kasdnos .jasdasd .knasds .asdnslm .iashds .saosid:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
    /* 固定灰色阴影 */
    border-color: #ffb74d;
    background: rgba(255, 255, 255, 0.15);
  }
  /* noe5 */
  .aoisjd {
    padding: 10px 0px;
    background-image: url('../img/96915343f7aecd61cfdf1d3d4e229f85.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  .aoisjd .paoisj .ioashde {
    padding: 30px 0;
    position: relative;
    text-align: center;
  }
  .aoisjd .paoisj .ioashde .soasdj {
    font-size: 60px;
    font-weight: 600;
    color: #526669;
    line-height: 60px;
  }
  .aoisjd .paoisj .ioashde .foasdj {
    color: white;
    font-size: 38px;
    font-weight: 600;
    line-height: 38px;
    position: absolute;
    top: 60px;
    width: 100%;
  }
  .aoisjd .paoisj .oiahfasd {
    padding-top: 30px;
    color: white;
  }
  .aoisjd .paoisj .oiahfasd .lkasnd {
    font-size: 35px;
    font-weight: 600;
    display: flex;
  }
  .aoisjd .paoisj .oiahfasd .lkasnd .laknjsd {
    position: relative;
  }
  .aoisjd .paoisj .oiahfasd .lkasnd .laknjsd .zcxhs {
    width: 100%;
    height: 8px;
    position: absolute;
    top: 35px;
    background-color: #fa9703;
    border-radius: 50px;
  }
  .aoisjd .paoisj .oiahfasd .lkasnd .laknjsd .shxcz {
    position: inherit;
  }
  .aoisjd .paoisj .oiahfasd .kzxgcsa {
    font-size: 35px;
    font-weight: 600;
    padding: 10px 0px;
  }
  .aoisjd .paoisj .oiahfasd .ygefasd {
    width: 53%;
    font-size: 20px;
    line-height: 1.5;
  }
  /* noe6 */
  .map {
    background: #F8F8F8;
  }
  .area {
    width: 1200px;
    margin: 0 auto;
  }
  .box {
    position: relative;
    padding: 30px 0px;
  }
  .foter {
    background: #021D18;
    padding: 50px;
  }
  .xflex {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
  }
  .xflex .center {
    width: 40%;
    display: flex;
    justify-content: space-between;
    color: #4A5D5C;
  }
  .xflex .center ul {
    margin: 0;
    list-style: none;
  }
  .xflex .center ul li:first-child {
    padding: 0;
  }
  .xflex .center ul li {
    padding: 5px 0px;
    font-size: 13px;
    cursor: pointer;
  }
  .xflex .center ul li a {
    color: #ffffff;
  }
  .xflex .center ul li a:hover {
    color: #07aba2;
  }
  .xflex .center ul li span {
    font-size: 17px;
    color: #05edc5;
  }
  .xflex .right .r-title {
    font-size: 12px;
    color: #f2f2f2;
  }
  .xflex .right .r-desc {
    font-size: 18px;
    color: white;
    padding: 5px 0px;
  }
  .xflex .right .r-time {
    padding: 5px 0px;
    font-size: 15px;
    color: #ebf5f4;
  }
  .xflex .left .l-logo {
    padding-bottom: 10px;
  }
  .xflex .left .l-xflex {
    display: flex;
  }
  .xflex .left .l-xflex div:first-child {
    padding-left: 0;
  }
  .xflex .left .l-xflex div {
    /*padding: 5px;*/
  }
  .xflex .left .l-desc {
    color: white;
    font-size: 12px;
  }
  .public {
    padding: 0px 5px;
  }
  .copyright {
    color: #dbe5e4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    padding-top: 40px;
  }
  .botxt {
    color: #dbe5e4;
    font-size: 14px;
    padding-top: 10px;
  }
  .copyright .left {
    width: 60%;
  }
  .copyright .right .rig {
    display: flex;
    align-items: center;
  }
  .record {
    padding-right: 20px;
  }
  .copyright .left .lef {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .copyright a {
    color: #ffffff;
  }
  .copyright .right .rig .r-r-rigs {
    display: flex;
    align-items: center;
  }
  .b-title {
    color: #E8E8E8;
    font-size: 60px;
    text-align: center;
    line-height: 60px;
    font-weight: 600;
  }
  .b-titles {
    font-size: 38px;
    text-align: center;
    font-weight: 600;
    line-height: 38px;
    position: absolute;
    top: 60px;
    width: 100%;
  }
  .b-titles span {
    color: #FA9703;
  }
  .bxlfex {
    color: #E7E7E7;
    font-size: 250px;
    font-weight: bold;
    text-align: center;
  }
  .cxflex {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 43%;
  }
  .cxflex .left {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border: 1px solid #BBC3C3;
    border-radius: 50%;
    color: #BBC3C3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cxflex .left:hover {
    background: #FA9703;
    color: white !important;
    border: 1px solid #FA9703;
  }
  .cxflex .center {
    width: 40%;
    display: flex;
    background: white;
    box-shadow: 0px 0px 20px 0px rgba(250, 151, 3, 0.3);
    border-bottom-right-radius: 40px;
  }
  .cxflex .right {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border: 1px solid #BBC3C3;
    border-radius: 50%;
    color: #BBC3C3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cxflex .right:hover {
    background: #FA9703;
    color: white !important;
    border: 1px solid #FA9703;
  }
  .c-r-title {
    color: #FA9703;
    font-size: 17px;
    font-weight: bold;
    padding-bottom: 10px;
  }
  .c-r-title .desc {
    font-size: 13px;
  }
  .c-right {
    padding: 20px;
  }
  .stepl {
    width: 75%;
    height: 100px;
    margin: 0 auto;
    padding-left: 7%;
  }
  .timeline_ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: space-between;
  }
  .timeline_ul li {
    width: 20%;
    position: relative;
  }
  .dot {
    display: inline-block;
    width: 5%;
    height: 10px;
    border-radius: 50%;
    margin-bottom: -5px;
    border: 1px solid #D0D5D5;
    box-sizing: border-box;
  }
  .dots {
    display: inline-block;
    width: 5%;
    height: 10px;
    border-radius: 50%;
    margin-bottom: -5px;
    background: #FA9703;
  }
  .item {
    display: inline-block;
    width: 95%;
    margin-left: -5px;
    border-bottom: 1px solid #D0D5D5;
  }
  .tips {
    width: 100%;
    margin-left: -12px;
    margin-top: 2px;
  }
  .tips p {
    width: 95%;
    /* 自动换行 */
    white-space: pre-wrap;
  }
  .review-title {
    margin-bottom: 0px;
  }
  .timeline_ul li:last-child .item {
    display: none;
  }
  .logos {
    background: white;
    padding: 50px 0px;
  }
  .parent {
    width: 100%;
    height: 70px;
    white-space: nowrap;
    overflow: hidden;
  }
  .container-wrapper {
    position: relative;
  }
  .container {
    display: inline-block;
    white-space: nowrap;
    animation: scrollAnimation 20s linear infinite;
  }
  .container img {
    height: 60px;
    border: 1px solid #F6F6F6;
    border-radius: 5px;
  }
  .containers img {
    height: 60px;
    border: 1px solid #F6F6F6;
    border-radius: 5px;
  }
  .containers {
    display: inline-block;
    white-space: nowrap;
    animation: scrollAnimations 20s linear infinite;
  }
  @keyframes scrollAnimations {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
    }
  }
  @keyframes scrollAnimation {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  .child {
    display: inline-block;
    width: 168px;
    height: 70px;
    background: #fff;
    border-radius: 4px;
    /* box-shadow: 2px 8px 8px 2px #eaeef5; */
    margin-right: 20px;
    overflow: hidden;
  }
  .child > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .axflex {
    padding: 20px 0px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .axflex .left {
    width: 25%;
    color: white;
  }
  .axflex .left .alti div {
    font-size: 40px;
    color: #FA9703;
    padding: 10px 0px;
  }
  .axflex .left .alti div span {
    font-size: 15px;
    color: white;
  }
}
/* 手机端的样式 */
@media screen and (max-width: 768px) {
  .swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .area {
    width: 100%;
    margin: 0 auto;
  }
  .el-carousel__container {
    height: 150px !important;
  }
  .avocado {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
  }
  .avocado .avoimg {
    width: 20%;
  }
  .avocado .avoimg .avoimgs {
    width: 80%;
  }
  .avocado .avozonj {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
  }
  .avocado .avozonj li a {
    text-decoration: none;
    color: black;
  }
  .avocado .avozonj li a:hover {
    color: #339B96 !important;
  }
  .avocado .avoring {
    /* display: flex; */
    /* justify-content: end; */
    /* align-items: center; */
    /* color: #999; */
    display: none;
  }
  .avocado .avoring .avoring-left {
    display: flex;
    align-items: center;
    padding-right: 20px;
  }
  .avocado .avoring .ringimg {
    width: 23px;
    height: 23px;
    padding-right: 10px;
  }
  .avocado .avoring .ringjrozx {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 50px;
    color: #fff;
    background: linear-gradient(to right, #339d98, #50c5bf);
  }
  .aoishds {
    position: relative;
  }
  .aoishds .citron {
    display: none;
    /* display: flex; */
  }
  .aoishds .citron .aitaoly .fenmlei {
    display: none;
    padding: 25px 68px;
    background-color: #fa9703;
    border-radius: 5px 35px 0px 0px;
  }
  .aoishds .citron .aitaoly .mnasdo {
    display: none;
    list-style-type: none;
    z-index: 3;
    position: absolute;
  }
  .aoishds .citron .aitaoly .mnasdo .ausdhww {
    list-style-type: none;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e1f2f7;
  }
  .aoishds .citron .aitaoly .mnasdo .ylolas {
    padding: 25px 0px;
    border-bottom: 2px solid #fff;
  }
  .aoishds .citron .aitaoly .mnasdo .active {
    color: #6cb8b6;
    border-bottom: 2px solid #6cb8b6;
  }
  .aoishds .aposid {
    display: none;
    position: absolute;
    z-index: 3;
    left: 200px;
    background-color: #fff;
    border-radius: 0px 0px 30px 0px;
    padding: 20px;
  }
  .aoishds .aposid .aspaojd .kjansd {
    color: #6cb8b6;
    font-size: 18px;
  }
  .aoishds .aposid .aspaojd .jasbds {
    padding: 15px 0px 30px 0px;
    display: flex;
  }
  .aoishds .aposid .aspaojd .jasbds:hover {
    background-color: #6cb8b6;
  }
  .aoishds .aposid .aspaojd .sasbds {
    padding-top: 15px;
    display: flex;
  }
  .bitbolm {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    padding-left: 10px;
  }
  .bitbolm .active {
    padding-bottom: 10px;
    color: #6cb8b6;
    border-bottom: 2px solid #6cb8b6;
  }
  .el-carousel__item h3 {
    color: #475669;
    font-size: 18px;
    opacity: 0.75;
    line-height: 300px;
    margin: 0;
  }
  .el-carousel__item:nth-child(2n) {
    background-color: #99a9bf;
  }
  .el-carousel__item:nth-child(2n+1) {
    background-color: #d3dce6;
  }
  /* noe1  */
  .mapsods {
    padding: 10px 0px;
  }
  .mapsods .oasdj {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .mapsods .oasdj .soasdj {
    font-size: 38px;
    font-weight: 600;
    color: #dadbdb;
  }
  .mapsods .oasdj .foasdj {
    position: absolute;
    top: 14px;
    font-size: 30px;
    font-weight: 600;
  }
  .mapsods .ioasdn {
    padding-top: 20px;
    text-align: center;
  }
  .mapsods .ioasdn .opasjd {
    color: #fa9703;
    font-size: 21px;
  }
  .mapsods .ioasdn .aposjd {
    color: #99a9bf;
    font-size: 7px;
  }
  .mapsods .jzxciu .azxciu {
    padding-top: 10px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .mapsods .jzxciu .azxciu .mzocaso {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
  }
  .mapsods .jzxciu .azxciu .mzocaso .mzoimg {
    width: 180px;
    height: 60px;
    border-radius: 10px;
    padding: 3px;
    border: 2px solid #f9f9f9;
  }
  .mapsods .jzxciu .azxciu .mzocaso .lkasdn {
    padding: 5px;
  }
  .mapsods .jzxciu .bzxciu {
    padding-top: 10px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .mapsods .jzxciu .bzxciu .mzocaso {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
  }
  .mapsods .jzxciu .bzxciu .mzocaso .mzoimg {
    width: 180px;
    height: 60px;
    border-radius: 10px;
    padding: 3px;
    border: 2px solid #f9f9f9;
  }
  .mapsods .jzxciu .bzxciu .mzocaso .lkasdn {
    padding: 5px;
  }
  .mapsods .kaopsd {
    padding-top: 30px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .mapsods .kaopsd .zbasd {
    padding: 10px 62px;
    background-color: #fa9703;
    color: #fff;
    font-size: 24px;
    border-radius: 50px;
    display: block;
  }
  /* noe2  */
  .kashdns {
    padding: 10px 0px;
    background-color: #f3f3f3;
  }
  .kashdns .zashdns {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .kashdns .zashdns .soasdj {
    font-size: 38px;
    font-weight: 600;
    color: #dadbdb;
  }
  .kashdns .zashdns .foasdj {
    position: absolute;
    top: 14px;
    font-size: 30px;
    font-weight: 600;
  }
  .kashdns .xashdns {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .kashdns .xashdns .bsdaja {
    border-bottom: 1px solid #D5DADA;
    padding-bottom: 20px;
  }
  .kashdns .xashdns .bsdaja .bsdaimg {
    width: 350px;
    height: 250px;
    border-radius: 5px 5px 30px 5px;
  }
  .kashdns .xashdns .bsdaja .bsdampl {
    display: flex;
    padding-top: 10px;
  }
  .kashdns .xashdns .bsdaja .bsdampl .lpmads {
    padding-right: 20px;
  }
  .kashdns .xashdns .bsdaja .bsdampl .lpmads .asdss {
    font-size: 30px;
    font-weight: 500;
  }
  .kashdns .xashdns .bsdaja .bsdampl .lpmads .iugjkb {
    color: #999;
    font-size: 22px;
    font-weight: 500;
  }
  .kashdns .xashdns .bsdaja .bsdampl .lpmsda .asdasf {
    color: #415b5a;
    font-size: 18px;
    padding-bottom: 20px;
  }
  .kashdns .xashdns .bsdaja .bsdampl .lpmsda .asdavfsd {
    width: 287px;
    font-size: 16px;
    color: #878f8e;
    padding-bottom: 20px;
  }
  .kashdns .xashdns .bsdaja .bsdampl .lpmsda .sdvasd {
    width: 30%;
    height: 15px;
    line-height: 15px;
    padding: 10px;
    text-align: center;
    color: #fff;
    background-color: #fa9703;
    border-radius: 50px;
    display: block;
  }
  .kashdns .xashdns .oiahsd .osihdfn:first-child {
    padding-top: 10px;
  }
  .kashdns .xashdns .oiahsd .osihdfn {
    width: 300px;
  }
  .kashdns .xashdns .oiahsd .osihdfn .aiohdn {
    display: flex;
    padding-bottom: 10px;
  }
  .kashdns .xashdns .oiahsd .osihdfn .aiohdn .zkgcad {
    color: #415b5a;
  }
  .kashdns .xashdns .oiahsd .osihdfn .aiohdn .qwkugk {
    margin-left: 10px;
    width: 30px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    font-size: 10px;
    color: #fff;
    background-color: #fa9703;
    border-radius: 40px 50px 50px 10px;
  }
  .kashdns .xashdns .oiahsd .osihdfn .oauhsd {
    padding-bottom: 5px;
    color: #878f8e;
  }
  .kashdns .xashdns .oiahsd .osihdfn .aoishd {
    padding-bottom: 30px;
    color: #bfc4c3;
  }
  .kashdns .kaopsd {
    padding-top: 30px;
    display: flex;
    justify-content: center;
  }
  .kashdns .kaopsd .zbasd {
    padding: 10px 62px;
    background-color: #fa9703;
    color: #fff;
    font-size: 24px;
    border-radius: 50px;
    display: block;
  }
  /* noe3  */
  .asdnas {
    padding: 10px 0px;
  }
  .asdnas .aksodho {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .asdnas .aksodho .soasdj {
    font-size: 38px;
    font-weight: 600;
    color: #dadbdb;
  }
  .asdnas .aksodho .foasdj {
    position: absolute;
    top: 14px;
    font-size: 30px;
    font-weight: 600;
  }
  .asdnas .iasodh {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .asdnas .iasodh .oaihsd {
    padding: 10px;
    border: 2px solid #f9f9f9;
    border-radius: 5px 5px 40px 5px;
    margin-bottom: 10px;
  }
  .asdnas .iasodh .oaihsd .spiohdn {
    width: 100%;
    height: 150px;
    border-radius: 5px 5px 35px 5px;
  }
  .asdnas .iasodh .oaihsd .saiohdn {
    font-size: 26px;
    font-weight: 600;
    padding: 10px 0px;
  }
  .asdnas .iasodh .oaihsd .saiohdn .asind {
    position: relative;
  }
  .asdnas .iasodh .oaihsd .saiohdn .asind .jand {
    position: inherit;
  }
  .asdnas .iasodh .oaihsd .saiohdn .asind .mzxco {
    width: 100%;
    height: 5px;
    position: absolute;
    top: 25px;
    background-color: #fa9703;
    border-radius: 50px;
  }
  .asdnas .iasodh .oaihsd .apiohdn {
    width: 340px;
    padding-top: 20px;
  }
  .asdnas .iasodh .oaihsd .apiohdn .lohdn {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .asdnas .iasodh .oaihsd .apiohdn .lohdn .lohds {
    font-size: 18px;
  }
  .asdnas .iasodh .oaihsd .apiohdn .lohdn .aohdn {
    font-size: 14px;
    color: #fff;
    padding: 5px 10px;
    background-color: #fa9703;
    border-radius: 50px;
  }
  .asdnas .iasodh .oaihsd .apiohdn .lohdn .sohdn {
    font-size: 14px;
    color: #fff;
    padding: 5px 10px;
    background-color: #329b96;
    border-radius: 50px;
  }
  .asdnas .iasodh .oaihsd .apiohdn .lohdn .dohdn {
    font-size: 14px;
    color: #fff;
    padding: 5px 10px;
    background-color: #2979fe;
    border-radius: 50px;
    cursor: pointer;
  }
  .asdnas .iasodh .aoshdasd {
    padding: 10px;
    border: 2px solid #f9f9f9;
    border-radius: 5px 5px 40px 5px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd {
    width: 90%;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .knzxc {
    display: flex;
    font-size: 26px;
    font-weight: 600;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .knzxc .laknjsd {
    position: relative;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .knzxc .laknjsd .zcxhs {
    width: 100%;
    height: 5px;
    position: absolute;
    top: 25px;
    background-color: #fa9703;
    border-radius: 50px;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .knzxc .laknjsd .shxcz {
    position: inherit;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .snzxc {
    padding-top: 20px;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .snzxc .pojda {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .snzxc .pojda .oahs {
    width: 40px;
    height: 40px;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .snzxc .pojda .makdsnl {
    width: 55%;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .snzxc .pojda .dohdn {
    font-size: 14px;
    color: #fff;
    padding: 5px 10px;
    background-color: #fa9703;
    border-radius: 50px;
    cursor: pointer;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .snzxc .el-divider {
    margin: 10px 0px;
  }
  .asdnas .iasodh .aoshdasd .ioahdasd .tnzxc {
    background-color: #feebcf;
    width: 40px;
    height: 40px;
    margin: 5px auto;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* noe4 */
  .kasdnos {
    background-image: url('../img/9db3b7b352b717719334b844372b1d6e.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 10px 0px;
  }
  .kasdnos .jasdasd .kasdmas {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .kasdnos .jasdasd .kasdmas .soasdj {
    font-size: 38px;
    font-weight: 600;
    color: #dadbdb;
  }
  .kasdnos .jasdasd .kasdmas .foasdj {
    position: absolute;
    top: 14px;
    font-size: 30px;
    font-weight: 600;
  }
  .kasdnos .jasdasd .knasds .asdnslm {
    margin-top: 20px;
    padding: 10px;
    border: 2px solid #f9f9f9;
    background-color: #fff;
    border-radius: 5px 5px 40px 5px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    min-height: 250px;
    flex-wrap: wrap;
  }
  .kasdnos .jasdasd .knasds .asdnslm .pansds {
    width: 100%;
    /* display: none; */
    background-color: #fa9703;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #fff;
  }
  .kasdnos .jasdasd .knasds .asdnslm .pansds .maosid {
    width: 90px;
    height: 90px;
  }
  .kasdnos .jasdasd .knasds .asdnslm .iashds {
    width: 100%;
  }
  .kasdnos .jasdasd .knasds .asdnslm .iashds .saosid {
    margin-bottom: 20px;
    border: 2px solid #fa9703;
    border-radius: 10px 10px 20px 10px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .kasdnos .jasdasd .knasds .asdnslm .iashds .saosid .kasdhi {
    display: flex;
    align-items: center;
  }
  .kasdnos .jasdasd .knasds .asdnslm .iashds .saosid .kasdhi .asdef {
    width: 30px;
    height: 30px;
  }
  .kasdnos .jasdasd .knasds .asdnslm .iashds .saosid .kasdhi .kasuid {
    padding-left: 10px;
  }
  .kasdnos .jasdasd .knasds .asdnslm .iashds .saosid .oauhds {
    padding: 10px;
    background-color: #fa9703;
    color: #fff;
    border-radius: 20px 6px 16px 0px;
    cursor: pointer;
  }
  /* noe5 */
  .aoisjd {
    padding: 10px;
    background-image: url('../img/96915343f7aecd61cfdf1d3d4e229f85.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  .aoisjd .paoisj .ioashde {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .aoisjd .paoisj .ioashde .soasdj {
    font-size: 38px;
    font-weight: 600;
    color: #526669;
  }
  .aoisjd .paoisj .ioashde .foasdj {
    color: white;
    position: absolute;
    top: 14px;
    font-size: 30px;
    font-weight: 600;
  }
  .aoisjd .paoisj .oiahfasd {
    padding-top: 20px;
    color: white;
  }
  .aoisjd .paoisj .oiahfasd .lkasnd {
    font-size: 35px;
    font-weight: 600;
    display: flex;
  }
  .aoisjd .paoisj .oiahfasd .lkasnd .laknjsd {
    position: relative;
  }
  .aoisjd .paoisj .oiahfasd .lkasnd .laknjsd .zcxhs {
    width: 100%;
    height: 8px;
    position: absolute;
    top: 35px;
    background-color: #fa9703;
    border-radius: 50px;
  }
  .aoisjd .paoisj .oiahfasd .lkasnd .laknjsd .shxcz {
    position: inherit;
  }
  .aoisjd .paoisj .oiahfasd .kzxgcsa {
    font-size: 35px;
    font-weight: 600;
    padding: 10px 0px;
  }
  .aoisjd .paoisj .oiahfasd .ygefasd {
    font-size: 20px;
    line-height: 1.5;
  }
  /* noe6 */
  .map {
    background: #F8F8F8;
  }
  .area {
    width: 100%;
    margin: 0 auto;
  }
  .box {
    position: relative;
  }
  .foter {
    background: #021D18;
    padding: 10px;
  }
  .xflex {
    display: flex;
    /* align-items: center; */
    /* justify-content: ; */
    flex-wrap: wrap;
  }
  .xflex .center {
    width: 100%;
    display: flex;
    /* justify-content: space-around; */
    color: #4A5D5C;
    padding: 10px 0px;
  }
  .xflex .center ul {
    margin: 0;
    list-style: none;
  }
  .xflex .center .ce-center ul {
    padding: 0px 10px;
  }
  .xflex .center ul li:first-child {
    padding: 0;
  }
  .xflex .center ul li a {
    color: #4A5D5C;
  }
  .xflex .center ul li {
    padding: 5px 0px;
    font-size: 13px;
    cursor: pointer;
  }
  .xflex .center ul li span {
    font-size: 17px;
    color: #349786;
  }
  .xflex .right .r-title {
    font-size: 12px;
    color: #4A5D5C;
  }
  .xflex .right .r-desc {
    font-size: 18px;
    color: white;
    padding: 5px 0px;
  }
  .xflex .right .r-time {
    padding: 5px;
    font-size: 15px;
    color: #98A7A6;
  }
  .xflex .left .l-logo {
    padding-bottom: 10px;
  }
  .xflex .left .l-xflex {
    display: flex;
    justify-content: space-around;
  }
  .xflex .left .l-xflex div:first-child {
    padding-left: 0;
  }
  .xflex .left .l-xflex div {
    padding: 5px;
  }
  .xflex .left .l-desc {
    color: white;
    font-size: 12px;
  }
  .public {
    padding: 0px 5px;
  }
  .copyright {
    color: #4A5D5C;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 12px;
    padding-top: 20px;
  }
  .botxt {
    color: #4A5D5C;
    font-size: 14px;
    padding-top: 10px;
  }
  .copyright .left {
    /* width: 50%; */
  }
  .copyright .right .rig {
    display: flex;
    align-items: center;
  }
  .record {
    padding-right: 20px;
  }
  .copyright .left .lef {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .copyright .right .rig .r-r-rigs {
    display: flex;
    align-items: center;
  }
  .b-title {
    color: #E8E8E8;
    font-size: 38px;
    text-align: center;
    padding: 20px 0px;
  }
  .b-titles {
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    margin-top: -50px;
  }
  .b-titles span {
    color: #FA9703;
  }
  .bxlfex {
    color: #E7E7E7;
    font-size: 155px;
    font-weight: bold;
    text-align: center;
  }
  .cxflex {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 46%;
  }
  .cxflex .left {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border: 1px solid #BBC3C3;
    border-radius: 50%;
    color: #BBC3C3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cxflex .left:hover {
    background: #FA9703;
    color: white !important;
    border: 1px solid #FA9703;
  }
  .cxflex .center {
    width: 80%;
    height: 120px;
    display: flex;
    background: white;
    box-shadow: 0px 0px 20px 0px rgba(250, 151, 3, 0.3);
    border-bottom-right-radius: 40px;
  }
  .cxflex .center .c-right .c-r-desc {
    font-size: 13px;
  }
  .cxflex .right {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border: 1px solid #BBC3C3;
    border-radius: 50%;
    color: #BBC3C3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cxflex .right:hover {
    background: #FA9703;
    color: white !important;
    border: 1px solid #FA9703;
  }
  .c-r-title {
    color: #FA9703;
    font-size: 17px;
    font-weight: bold;
    padding-bottom: 10px;
  }
  .c-r-title .desc {
    font-size: 13px;
  }
  .c-right {
    padding: 20px;
  }
  .stepl {
    width: 80%;
    height: 100px;
    margin: 0 auto;
    /* padding-left: 7%; */
  }
  .timeline_ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: space-between;
  }
  .timeline_ul li {
    width: 20%;
    position: relative;
  }
  .dot {
    display: inline-block;
    width: 5%;
    height: 10px;
    border-radius: 50%;
    margin-bottom: -5px;
    border: 1px solid #D0D5D5;
    box-sizing: border-box;
  }
  .dots {
    display: inline-block;
    width: 5%;
    height: 10px;
    border-radius: 50%;
    margin-bottom: -5px;
    background: #FA9703;
  }
  .item {
    display: inline-block;
    width: 95%;
    margin-left: -5px;
    border-bottom: 1px solid #D0D5D5;
  }
  .tips {
    width: 100%;
    margin-left: -12px;
    margin-top: 2px;
  }
  .tips p {
    /* width:100%; */
    /* 自动换行 */
    white-space: pre-wrap;
    font-size: 12px;
  }
  .review-title {
    margin-bottom: 0px;
  }
  .timeline_ul li:last-child .item {
    display: none;
  }
  .timeline_ul .tisp {
    font-size: 12px;
  }
  .logos {
    background: white;
    padding: 10px 0px;
  }
  .parent {
    width: 100%;
    height: 70px;
    white-space: nowrap;
    overflow: hidden;
  }
  .container-wrapper {
    position: relative;
  }
  .container {
    display: inline-block;
    white-space: nowrap;
    animation: scrollAnimation 20s linear infinite;
  }
  .containers {
    display: inline-block;
    white-space: nowrap;
    animation: scrollAnimations 20s linear infinite;
  }
  @keyframes scrollAnimations {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
    }
  }
  @keyframes scrollAnimation {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  .child {
    display: inline-block;
    width: 168px;
    height: 70px;
    background: #fff;
    border-radius: 4px;
    /* box-shadow: 2px 8px 8px 2px #eaeef5; */
    margin-right: 20px;
    overflow: hidden;
  }
  .child > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .axflex {
    padding: 20px 0px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .axflex .left {
    width: 50%;
    color: white;
  }
  .axflex .left .alti div {
    font-size: 40px;
    color: #FA9703;
    padding: 10px 0px;
  }
  .axflex .left .alti div span {
    font-size: 15px;
    color: white;
  }
}
.el-dialog {
  background: transparent !important;
  box-shadow: none !important;
}
