@charset "UTF-8";

/* 公共样式 */
:root {
  /* 藤绿 */
  --main-green-1: rgb(0, 188, 86);
  /* 黛绿 */
  --main-green-2: rgb(17, 62, 53);
  /* 松绿 */
  --main-green-3: rgb(4, 74, 27);
  /* 柔青 */
  --light-green-1: rgb(228, 255, 227);
  /* 天青 */
  --light-green-2: rgb(159, 224, 195);
  /* 藤黄 */
  --main-yellow-1: rgb(202, 251, 67);
  /* 中性 1 */
  --black-1: #272629;
  /* 中性 2 */
  --black-2: #403F45;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

* {
  outline: none;
  padding: 0;
  margin: 0;
}

img {
  display: block;
  border: 0;
}

a:hover,
a:visited,
a:link,
a:active {
  text-decoration: none;
}

ul,
ol,
li {
  list-style: none;
}

body,
input,
textarea,
button {
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
}

.bg-line {
  background-image: url(./image/line.png);
  background-position: right bottom;
  background-repeat: no-repeat;
}

.bg-light {
  background-color: #F6F6F7;
}

.bg-dl {
  background-color: var(--main-green-2);
}

.bg-rq {
  background-color: var(--light-green-1);
}

.bg-tq {
  background-color: var(--light-green-2);
}

.bg-tql {
  background-color: #ECF9F3;
}

/**** 公共样式开始 *****/
@media screen and (min-width: 768px) {
  h1 {
    font-size: 72px;
    line-height: 80px;
  }

  h2 {
    font-size: 48px;
    line-height: 48px;
  }

  h3 {
    font-size: 40px;
    line-height: 48px;
  }

  h4 {
    font-size: 24px;
    line-height: 32px;
  }

  h5 {
    font-size: 20px;
    line-height: 32px;
  }

  p.cn-lg {
    font-size: 20px;
    line-height: 36px;
  }

  p.cn-xl {
    font-size: 18px;
    line-height: 32px;
  }

  p.cn-md {
    font-size: 17px;
    line-height: 32px;
  }

  p.cn-sm {
    font-size: 14px;
    line-height: 22px;
  }

  p.en-narmol {
    font-size: 18px;
    line-height: 30px;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 72px;
    line-height: 80px;
  }

  h2 {
    font-size: 48px;
    line-height: 48px;
  }

  h3 {
    font-size: 36px;
    line-height: 48px;
  }

  h4 {
    font-size: 24px;
    line-height: 32px;
  }

  h5 {
    font-size: 20px;
    line-height: 32px;
  }

  p.cn-lg {
    font-size: 13px;
    line-height: 36px;
  }

  p.cn-xl {
    font-size: 18px;
    line-height: 32px;
  }

  p.cn-md {
    font-size: 16px;
    line-height: 32px;
  }

  p.cn-sm {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 640px) {
  h3 {
    margin-bottom: 32px;
  }

  h3 span {
    display: block;
    margin-bottom: 4px;
  }
}

.column-2 {
  width: 50%;
  height: auto;
  overflow: hidden;
}

.column-3 {
  width: calc((100% - 48px) / 3);
  height: auto;
  overflow: hidden;
}

.icon-link_arrow {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
}

/* 导航样式开始 */
@media screen and (min-width: 768px) {
  .globalnav {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
  }

  .nav-wrapper {
    transition: all 0.3s ease;
  }

  .nav-wrapper .logo {
    max-width: 180px;
    height: 44px;
    padding: 18px 0;
    margin: 0 32px;
    float: left;
  }

  .nav-wrapper .logo img {
    width: 100%;
    height: inherit;
  }

  .nav-wrapper .nav-list {
    width: 54%;
    box-sizing: border-box;
    max-width: 700px;
    padding: 32px 22px;
    margin: 0 auto;
  }

  .nav-wrapper .nav-list ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-wrapper .nav-list ul li {
    position: relative;
    font-size: 16px;
    line-height: 1em;
  }

  .nav-wrapper .nav-list ul li.on::after {
    content: "";
    display: block;
    width: 96%;
    height: 2px;
    position: absolute;
    top: 30px;
    left: 2%;
    transition: background-color 0.2s ease;
  }

  .nav-wrapper .nav-list ul li a {
    font-weight: 700;
  }

  .nav-peak .nav-wrapper {
    background-image: linear-gradient(180deg, rgba(28, 29, 31, 0.72), rgba(28, 29, 31, 0));
  }

  .nav-peak .nav-wrapper .nav-list li a {
    color: rgba(255, 255, 255, 0.68);
  }

  .nav-peak .nav-wrapper .nav-list li.on a {
    color: rgb(255, 255, 255);
  }

  .nav-peak .nav-wrapper .nav-list li.on:hover {
    color: rgb(255, 255, 255);
  }

  .nav-peak .nav-wrapper .nav-list li.on:after {
    background-color: rgb(255, 255, 255);
  }

  .nav-peak .nav-wrapper:hover {
    background-color: rgba(28, 29, 31, 0.8);
  }

  .nav-peak .nav-wrapper:hover .nav-list li a {
    color: rgba(255, 255, 255, 0.68);
  }

  .nav-peak .nav-wrapper:hover .nav-list li a:hover {
    color: rgb(255, 255, 255);
  }

  .nav-peak .nav-wrapper:hover .nav-list li.on a {
    color: var(--main-green-1);
  }

  .nav-peak .nav-wrapper:hover .nav-list li.on::after {
    background-color: var(--main-green-1);
  }

  .nav-dark .nav-wrapper {
    background-color: var(--black-1);
  }

  .nav-dark .nav-wrapper .nav-list li a {
    color: rgb(255, 255, 255);
  }

  .nav-dark .nav-wrapper .nav-list li a:hover {
    color: var(--light-green-1);
  }

  .nav-dark .nav-wrapper .nav-list li.on a {
    color: var(--main-green-1);
  }

  .nav-dark .nav-wrapper .nav-list li.on::after {
    background-color: var(--main-green-1);
  }

  .nav-dark .nav-wrapper .nav-list li.on:hover {
    color: var(--main-green-1);
  }

  .nav-dark .nav-wrapper:hover {
    background-color: var(--main-green-2);
  }

  .nav-dark .nav-wrapper:hover .nav-list li a {
    color: rgb(255, 255, 255);
  }

  .nav-dark .nav-wrapper:hover .nav-list li a:hover {
    color: var(--light-green-1);
  }

  .nav-dark .nav-wrapper:hover .nav-list li.on a:hover {
    color: var(--main-green-1);
  }

  .globalnav .submenu-container {
    width: 240px;
    height: auto;
    overflow: hidden;
    padding: 4px 0;
    background-color: #fff;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translate(-50%, 0px);
    visibility: hidden;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.05), 0 1px 4px rgba(0, 0, 0, 0.15);
  }

  .globalnav .submenu-container .submenu-list {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .globalnav .submenu-container .submenu-list ul {
    width: calc(100% - 20px);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .globalnav .submenu-container .submenu-list ul li {
    width: 100%;
    border-bottom: 0.5px #e4e4e4 solid;
  }

  .globalnav .submenu-container .submenu-list ul li:last-child {
    border-bottom: none;
  }

  .globalnav .submenu-container .submenu-list ul li a {
    width: calc(100% - 48px);
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    display: block;
    color: var(--black-1);
    transition: color, padding 0.2s ease;
  }

  .globalnav .submenu-container .submenu-list ul li:hover a {
    padding: 16px 16px 16px 32px;
    color: var(--main-green-1);
  }

  .globalnav .submenu-show .submenu-container {
    animation: submenu_hover_show 0.2s ease-out both;
    transform-origin: 50% 0%;
    visibility: visible;
  }

  .globalnav .submenu-hide .submenu-container {
    animation: submenu_hover_hide 0.15s ease-out both;
    transform-origin: 50% 0%;
  }

  @keyframes submenu_hover_show {
    0% {
      transform: translate(-50%, 0px);
      opacity: 0;
    }

    100% {
      transform: translate(-50%, 0px);
      opacity: 1;
    }
  }

  @keyframes submenu_hover_hide {
    0% {
      transform: translate(-50%, 0px);
      opacity: 1;
    }

    100% {
      opacity: 0;
      transform: translate(-50%, 0px);
    }
  }

  .globalnav .nav-wrapper .lang-selector {
    position: absolute;
    padding: 32px 40px;
    cursor: pointer;
    top: 0;
    right: 0;
  }

  .globalnav .nav-wrapper .lang-selector .current-lang .icon-lang {
    width: 16px;
    height: 16px;
    float: left;
  }

  .globalnav .nav-wrapper .lang-selector .current-lang .icon-lang img {
    width: inherit;
    height: auto;
  }

  .globalnav .nav-wrapper .lang-selector .current-lang span {
    float: left;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-left: 8px;
  }

  .globalnav .nav-wrapper .lang-selector .lang-menu {
    background: #fff;
    position: absolute;
    width: 160px;
    text-align: center;
    top: 80px;
    right: 0px;
    border-radius: 0 0 4px 4px;
    visibility: hidden;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.05), 0 1px 4px rgba(0, 0, 0, 0.15);
  }

  .globalnav .nav-wrapper .lang-selector .lang-menu li {
    width: 140px;
    margin: 0 auto;
    padding: 16px 0;
    font-size: 16px;
    line-height: 24px;
    transition: color 0.4s linear;
    cursor: pointer;
  }

  .globalnav .nav-wrapper .lang-selector .lang-menu li:first-child {
    border-bottom: 0.5px #e4e4e4 solid;
  }

  .globalnav .nav-wrapper .lang-selector .lang-menu li a {
    color: var(--black-2);
  }

  .globalnav .nav-wrapper .lang-selector .lang-menu li.slt a {
    color: var(--main-green-1);
    font-weight: 700;
  }

  .globalnav .lang-selector .lang-menu.menu-open {
    visibility: visible;
  }

  .globalnav-mobile {
    display: none;
  }

  .slider {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  #carousel li {
    margin-right: 5px;
  }

  #carousel img {
    display: block;
    opacity: 0.5;
    cursor: pointer;
  }

  #carousel img:hover {
    opacity: 1;
  }

  #carousel .flex-active-slide img {
    opacity: 1;
    cursor: default;
  }
}

@media screen and (max-width: 767px) {
  .globalnav {
    display: none;
  }

  .nav-peak .nav-wrapper {
    background-image: linear-gradient(180deg, rgba(28, 29, 31, 0.72), rgba(28, 29, 31, 0));
  }

  .nav-dark .nav-wrapper {
    background-color: var(--black-1);
  }

  .globalnav-mobile {
    width: 100%;
    height: 72px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: block;
  }

  .globalnav-mobile .nav-wrapper {
    width: 100%;
    height: 72px;
  }

  .globalnav-mobile .nav-wrapper .logo {
    max-width: 160px;
    height: 40px;
    padding: 16px 0;
    margin: 0 20px;
    float: left;
  }

  .globalnav-mobile .nav-wrapper .icon-menu {
    width: 24px;
    height: 24px;
    float: right;
    margin: 24px;
  }

  .globalnav-mobile .nav-wrapper .icon-menu img {
    width: 24px;
    height: 24px;
  }

  .slide-menu-wrapper {
    width: 100%;
    height: calc(100vh - 72px);
    background-color: rgba(28, 29, 31, 0.97);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    overflow-y: scroll;
    display: none;
  }

  .slide-menu-wrapper .nav-list {
    width: calc(100% - 64px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 auto;
  }

  .slide-menu-wrapper li {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .slide-menu-wrapper li.p_menu {
    background: url(./image/icon-arrow-m.svg) center right no-repeat;
    background-size: 16px 16px;
  }

  .slide-menu-wrapper li a {
    font-size: 20px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
    display: block;
  }

  .slide-menu-wrapper li.on a {
    color: var(--main-green-1);
  }

  .slide-menu-wrapper .lang-selector {
    color: #fff;
  }

  .slide-menu-wrapper .submenu-list {
    padding-bottom: 8px;
  }

  .slide-menu-wrapper .submenu-list li {
    width: 100%;
    height: 40px;
  }

  .slide-menu-wrapper .submenu-list li p {
    margin-left: 12px;
  }

  .slide-menu-wrapper .submenu-list li p a {
    line-height: 40px;
    font-size: 15px;
    font-weight: 500;
  }

  .slide-menu-wrapper .lang-selector {
    width: calc(100% - 64px);
    padding: 24px 0;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
  }

  .slide-menu-wrapper .lang-selector .lang-text {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 8px;
  }

  .slide-menu-wrapper .lang-selector .lang-menu {
    width: 100%;
    float: left;
  }

  .slide-menu-wrapper .lang-selector .lang-menu li {
    width: 40%;
    float: left;
    line-height: 40px;
    font-size: 16px;
    font-weight: 700;
    background: url(./image/icon-arrow-ms.svg) center right no-repeat;
    background-size: 16px 16px;
  }

  .slide-menu-wrapper .lang-selector .lang-menu li:first-child {
    margin-right: 20%;
  }
}

/* 公共底部样式开始 */
@media screen and (min-width: 768px) {
  .footer-wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: var(--black-1);
    padding: 36px 0 24px;
  }

  .footer-wrapper .quick-link {
    width: 530px;
    font-size: 14px;
    line-height: 22px;
    margin: 0 auto;
  }

  .footer-wrapper .quick-link ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-wrapper .quick-link ul li a {
    color: #ffffff;
  }

  .footer-wrapper .website-info {
    margin: 24px auto 0;
  }

  .footer-wrapper .website-info p {
    font-size: 12px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
  }

  .footer-wrapper .website-info a {
    font-size: 12px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
  }

  .footer-wrapper .website-info p:first-child {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 767px) {
  .footer-wrapper {
    padding: 16px 0;
    background: var(--black-1);
  }

  .footer-wrapper .quick-link {
    width: calc(100% - 40px);
    font-size: 14px;
    line-height: 22px;
    margin: 0 auto;
  }

  .footer-wrapper .quick-link ul {
    display: block;
  }

  .footer-wrapper .quick-link ul li {
    width: 100%;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: url(./image/icon-arrow-ms.svg) right center no-repeat;
  }

  .footer-wrapper .quick-link ul li a {
    display: block;
    padding: 12px 0;
    color: #ffffff;
    font-weight: 500;
  }

  .footer-wrapper .website-info {
    margin: 24px auto 0;
  }

  .footer-wrapper .website-info p {
    font-size: 1.2rem;
    line-height: 1.6rem;
    text-align: left;
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.72);
  }

  .footer-wrapper .website-info p:first-child {
    margin-bottom: 8px;
  }
}

/* 公共底部样式结束 */
/* 按钮样式开始 */
.btn-normal {
  background-color: var(--main-green-1);
  padding: 11px 50px 12px 30px;
  color: #fff;
  font-size: 16px;
  line-height: 23px;
  vertical-align: middle;
  border: none;
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}

.btn-normal a {
  color: #fff;
}

.btn-normal span {
  font-size: 16px;
  line-height: 20px;
  position: relative;
  z-index: 2;
  font-weight: bold;
}

.btn-normal.btn-icon {
  padding-right: 24px;
}

.btn-normal.btn-round {
  border-radius: 24px;
}

.btn-normal:hover {
  background-color: #CAFB43;
  color: #000;
  font-weight: 500;
}

.btn-normal:hover a {
  color: #000;
}

.btn-link i {
  position: absolute;
  right: 24px;
  top: 14px;
  transition: all 0.3s ease;
  z-index: 2;
}

.btn-link:hover i {
  right: 18px;
}

.btn-icon i {
  width: 20px;
  height: 20px;
  float: left;
  margin-right: 12px;
  position: relative;
  z-index: 2;
}

.i_link_arrow {
  stroke: #fff;
}

.i_play_a {
  stroke: #fff;
}

.i_play_b {
  fill: #fff;
}

.btn-link:hover .i_link_arrow {
  stroke: #000;
}

.btn-icon:hover .i_play_a {
  stroke: #000;
}

.btn-icon:hover .i_play_b {
  fill: #000;
}

.btn-wrapper .hover_bg {
  background-color: #CAFB43;
  position: absolute;
  width: 0px;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  transition: all 0.3s ease;
}

.btn-normal:hover .hover_bg {
  width: 100%;
}

/* 按钮样式结束 */
/******** 页面公共样式 *********/
.content-container {
  width: 100%;
  height: auto;
}

.content-container .content-mod {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.content-container .pos-center {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.content-container .pos-center p {
  margin: 20px auto;
}

.content-container .pos-apart {
  display: flex;
}

@media screen and (max-width: 480px) {
  .content-mod {
    padding: 80px 0;
  }
}

@media screen and (max-width: 767px) {
  .content-mod {
    padding: 120px 0;
  }

  .content-mod .content-wrapper {
    width: 80%;
    margin: 0 auto;
  }

  .pos-center p {
    width: 90%;
    max-width: 640px;
  }

  .pos-apart {
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
  }

  .pos-apart p {
    width: 90%;
    max-width: 640px;
    margin: 32px auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
  .content-mod {
    padding: 120px 0;
    position: relative;
  }

  .content-mod .content-wrapper {
    width: 84%;
    margin: 0 auto;
  }

  .pos-center p {
    width: 90%;
    max-width: 640px;
  }

  .pos-apart {
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
  }

  .pos-apart p {
    width: 690px;
    margin: 32px auto;
  }
}

@media screen and (min-width: 1280px) {
  .content-mod {
    padding: 160px 0;
    position: relative;
  }

  .content-mod .content-wrapper {
    width: 1200px;
    margin: 0 auto;
  }

  .pos-center p {
    width: 66%;
    max-width: 792px;
  }

  .pos-apart {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .pos-apart p {
    width: 690px;
  }
}

/******** 页面样式 - 首页 *********/
.upvine-intro {
  background-color: #F6F6F7;
  position: relative;
  z-index: 2;
}

.upvine-intro .pos-center .align-fix {
  margin-left: 32px;
}

.upvine-intro .btn-wrapper {
  margin-top: 16px;
}

.upvine-product {
  background-color: #fff;
  padding-bottom: 0;
}

.product-list {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product-list .product-list-item {
  background-color: #f6f6f7;
  box-sizing: border-box;
}

.product-list .product-title {
  width: 280px;
  margin: 0 auto;
  text-align: center;
}

.product-list .product-title span.product-type {
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: rgba(0, 0, 0, 0.5);
  display: block;
  font-weight: 700;
}

.product-list .product-title h2 {
  color: var(--main-green-1);
  margin: 24px 0;
}

.product-list .product-title p {
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .upvine-intro .pos-center .align-fix {
    margin-left: 0;
  }

  .slider {
    width: 100%;
    overflow: hidden;
  }

  .product-list {
    margin-top: 80px;
    display: flex;
    row-gap: 4px;
  }

  .product-list .product-list-item {
    width: 100%;
    background: #f8f8f8;
    box-sizing: border-box;
    padding: 64px 0;
    text-align: center;
  }

  .product-list .product-list-item .product-title-wrapper {
    margin-bottom: 48px;
  }

  .product-list .product-list-item .product-title {
    float: none;
    margin: 0 auto;
  }

  .product-list .product-list-item .product-title .btn-wrapper.pc-show {
    display: none;
  }

  .product-list .product-list-item .product-title p {
    min-height: auto;
  }

  .product-list .product-list-item .product-photo {
    width: 200px;
    height: 200px;
    float: none;
    margin: 48px auto 0;
  }

  .product-list .product-list-item .product-photo img {
    width: 200px;
    height: auto;
    transition: all 0.3s ease;
    transform: scale(1);
  }

  .product-list .product-list-item .product-bg-image {
    display: none;
  }

  .product-list .product-list-item .btn-wrapper.m-show {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .line-corner {
    width: 1580px;
    height: 432px;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: all 0.5s ease;
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }

  .line-corner.show {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }

  .product-list {
    margin-top: 120px;
  }

  .product-list .product-list-item {
    width: calc((100% - 4px) / 2);
    padding: 88px 72px;
    position: relative;
    overflow: hidden;
  }

  .product-list .product-list-item:nth-child(n+1) {
    margin-bottom: 4px;
  }

  .product-list .product-list-item .product-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-list .product-list-item .product-title {
    float: left;
    position: relative;
    z-index: 3;
    margin-bottom: 48px;
  }

  .product-list .product-list-item .product-title p {
    width: 280px;
    font-weight: 500;
    min-height: 96px;
  }

  .product-list .product-list-item .product-title .btn-wrapper {
    margin-top: 48px;
  }

  .product-list .product-list-item .product-photo {
    width: 320px;
    height: 320px;
    float: right;
    position: relative;
    z-index: 3;
  }

  .product-list .product-list-item .product-photo img {
    width: 320px;
    height: auto;
    transition: all 0.3s ease;
    transform: scale(1);
  }

  .product-list .product-list-item .product-bg-image {
    position: absolute;
    right: -40%;
    top: -36%;
  }

  .product-list .product-list-item .product-bg-image img {
    transition: all 0.3s ease;
    transform: scale(0.8);
    opacity: 0;
  }

  .product-list .product-list-item:hover {
    background-color: var(--light-green-1);
  }

  .product-list .product-list-item:hover .product-photo img {
    transform: scale(1.08);
  }

  .product-list .product-list-item:hover .product-bg-image img {
    transform: scale(1);
    opacity: 0.03;
  }

  .product-list .product-list-item .btn-wrapper.m-show {
    display: none;
  }
}

@media screen and (min-width: 1560px) {
  .product-list .product-list-item .product-title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.upvine-moment h3 {
  margin-bottom: 80px;
}

@media screen and (max-width: 1024px) {
  .picture-wall {
    display: none;
  }

  .picture-wall-mobile {
    width: 100%;
    height: auto;
    display: block;
  }

  .picture-wall-mobile .picture-scroll-wrapper {
    width: 100%;
    overflow: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    display: flex;
    flex-flow: row nowrap;
    gap: 40px;
  }

  .picture-wall-mobile .picture-scroll-wrapper .img-item {
    width: 50%;
    height: 640px;
    overflow: hidden;
    scroll-snap-align: center;
    flex: none;
    border-radius: 4px;
  }

  .picture-wall-mobile .picture-scroll-wrapper .img-item:first-child {
    margin-left: 40px;
  }

  .picture-wall-mobile .picture-scroll-wrapper .img-item:last-child {
    margin-right: 40px;
  }

}

@media screen and (min-width: 1024px) {
  .picture-wall {
    width: calc(100% - 160px);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .picture-wall .photo-col-2 {
    /* width: calc((100% - 36px) / 7 * 2 + 6px); */
    width: 100%;
    height: inherit;
  }

  .picture-wall .photo-col-2 img {
    width: 100%;
    height: auto;
  }

  .picture-wall .photo-col-3 {
    width: calc((100% - 36px) / 7 * 3 + 12px);
    height: inherit;
  }

  .picture-wall .photo-col-3 .photo-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .picture-wall .photo-col-3 .photo-row:first-child {
    margin-bottom: 6px;
  }

  .picture-wall .photo-col-3 .photo-row .img-c1 {
    width: calc((100% - 12px) / 3);
  }

  .picture-wall .photo-col-3 .photo-row .img-c2 {
    width: calc((100% - 12px) / 3 * 2 + 6px);
  }

  .picture-wall-mobile {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .picture-wall-mobile .picture-scroll-wrapper .img-item {
    width: 100%;
    height: 260px;
  }

  /* .picture-wall-mobile .picture-scroll-wrapper .img-item:first-child {
    margin-left: 24px;
  }

  .picture-wall-mobile .picture-scroll-wrapper .img-item:last-child {
    margin-right: 24px;
  } */
}

@media screen and (max-width: 480px) {
  .picture-wall-mobile .picture-scroll-wrapper .img-item {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .mod-find-distributor {
    background: url(./image/indexbottom-banner.png) center top no-repeat;
    background-size: cover;
    min-height: 640px;
    padding: 0;
    text-align: center;
  }

  .mod-find-distributor h2 {
    width: calc(100% - 80px);
    font-size: 40px;
    line-height: 48px;
    color: #fff;
    margin: 108px auto 80px;
  }
}

@media screen and (min-width: 768px) {

  /* .mod-find-distributor {
    background: url(./image/indexbottom-banner.jpg) left top no-repeat;
    background-size: cover;
    text-align: center;
    min-height: 800px;
    padding: 0;
  } */
  .mod-find-distributor h2 {
    font-size: 40px;
    line-height: 48px;
    color: #fff;
    margin-top: 208px;
    margin-bottom: 48px;
  }

  .mod-find-distributor .btn-normal {
    background-color: #fff;
  }

  .mod-find-distributor .btn-normal a {
    color: var(--main-green-3);
  }

  .mod-find-distributor .i_link_arrow {
    stroke: var(--main-green-3);
  }
}

/******** 页面样式 - 关于 *********/
.video-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  background-color: #000;
}

.video-wrapper .content-wrapper {
  position: absolute;
  z-index: 3;
  color: #ffffff;
  left: 50%;
  transform: translate(-50%);
}

.video-wrapper h2 {
  color: var(--main-green-1);
}

@media screen and (min-width: 1280px) {
  .video-wrapper .content-wrapper {
    width: 1200px;
    top: 320px;
  }

  .video-wrapper video {
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 1279px) {
  .video-wrapper {
    width: 100%;
    height: 560px;
  }

  .video-wrapper .content-wrapper {
    width: 100%;
    top: 180px;
  }

  .video-wrapper .content-wrapper h2 {
    font-size: 40px;
    line-height: 1em;
  }

  .video-wrapper video {
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 640px) {
  .video-wrapper {
    width: 100%;
    height: 240px;
  }

  .video-wrapper .content-wrapper {
    width: 100%;
    top: 70px;
  }

  .video-wrapper video {
    width: 100%;
    height: 100%;
    /* position: absolute;
    left: -50%; */
  }
  .video-wrapper .content-wrapper h2 {
    font-size: 20px;
    line-height: 1em;
  }
}

.mod-brand-vision .content-wrapper h3 {
  color: var(--black-1);
}

/* .mod-brand-vision .content-wrapper p {
  font-size: 20px;
  line-height: 32px;
  background-image: url(./image/icon-quote.svg);
  background-position: top center;
  background-repeat: no-repeat;
  padding-top: 64px;
  color: var(--main-green-2);
} */

.mod-brand-vision .brand-vision {
  height: auto;
  display: flex;
  justify-content: center;
}

.mod-brand-vision .brand-vision .vision-item img {
  width: 100%;
}

.mod-brand-vision .brand-vision .vision-item .number {
  width: 48px;
  height: 48px;
  font-size: 16px;
  line-height: 48px;
  color: #fff;
  background-color: var(--main-green-2);
  font-weight: bold;
  border-radius: 24px;
  margin: 64px auto 32px;
}

.mod-brand-vision .brand-vision .vision-item h4 {
  color: var(--main-green-2);
}

.mod-brand-vision .brand-vision .vision-item p {
  width: 300px;
  margin: 0 auto;
  margin-top: 24px;
  color: var(--main-green-2);
}

@media screen and (min-width: 960px) {
  .brand-vision {
    flex-direction: row;
    margin-top: 128px;
    gap: 12px;
  }

  .brand-vision .vision-item {
    overflow: hidden;
    text-align: center;
  }
}

@media screen and (max-width: 960px) {
  .brand-vision {
    width: 68%;
    padding: 0 16%;
    flex-direction: column;
    margin-top: 64px;
    gap: 80px;
  }

  .brand-vision .vision-item {
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
  }
}

.mod-product-concept {
  position: relative;
  height: 224px;
  background-color: #ECF9F3;
  z-index: 2;
}

.mod-product-concept .absolute-wrapper {
  background-image: url(./image/corner.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  margin: 0 auto;
  background-color: var(--main-green-2);
  color: var(--main-green-2);
}

.mod-product-concept .absolute-wrapper h3 {
  margin-bottom: 32px;
  color: #fff;
}

.mod-product-concept .absolute-wrapper p {
  color: #fff;
}

@media screen and (min-width: 1280px) {
  .mod-product-concept .absolute-wrapper {
    width: 690px;
    padding: 96px 408px 128px 102px;
  }
}

@media screen and (max-width: 1280px) {
  .mod-product-concept .absolute-wrapper {
    width: 84%;
    margin: 0 auto;
    padding: 80px 8%;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 640px) {
  .mod-product-concept .absolute-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 96px 8%;
    box-sizing: border-box;
  }
}

.mod-product-classify {
  padding-top: 256px;
}

.product-classify {
  height: auto;
  overflow: hidden;
  margin: 96px auto 0;
}

.product-classify .classify-item {
  width: 100%;
  height: 560px;
}

.product-classify .classify-item .classify-intro {
  box-sizing: border-box;
  width: 480px;
  height: auto;
  padding: 56px;
  background-color: #ffffff;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.product-classify .classify-item .classify-intro * {
  transition: all 0.2s linear;
}

.product-classify .classify-item .classify-intro h4 {
  font-size: 26px;
  line-height: 34px;
}

.product-classify .classify-item .classify-intro p {
  font-size: 16px;
  line-height: 30px;
  margin-top: 16px;
  margin-bottom: 20px;
}

.product-classify .classify-item .classify-intro p b {
  color: var(--main-green-1);
}

.product-classify .classify-item .classify-intro span.sub-text {
  font-size: 12px;
  line-height: 20px;
  display: inline-block;
  padding: 4px 16px;
  border: 1px #333 solid;
  color: #333;
  border-radius: 4px;
}

.product-classify .classify-item .classify-intro .classify-model {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 20px;
}

.product-classify .classify-item .classify-intro .classify-model li {
  width: 50%;
  float: left;
  font-size: 16px;
  line-height: 24px;
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.product-classify .classify-item .classify-intro .classify-model li a {
  font-weight: 600;
  color: #000;
}

.product-classify .classify-item .classify-intro .classify-model li i {
  width: 16px;
  height: 16px;
  display: block;
  background: url(image/icon-arrow-ms-black.svg) left top no-repeat;
  transition: none;
}

.product-classify .classify-item .classify-intro:hover {
  background-color: var(--light-green-1);
}

.product-classify .classify-item .classify-intro:hover h4 {
  color: var(--main-green-2);
}

.product-classify .classify-item .classify-intro:hover p {
  color: var(--main-green-2);
}

.product-classify .classify-item .classify-intro:hover p b {
  color: var(--main-green-1);
}

.product-classify .classify-item .classify-intro:hover span.sub-text {
  border: 1px var(--main-green-2) solid;
  color: var(--main-green-2);
}

.product-classify .classify-item .classify-intro:hover .classify-model li a {
  color: var(--main-green-2);
}

.product-classify .classify-item .classify-intro:hover .classify-model li:hover a {
  color: var(--main-green-1);
}

.product-classify .classify-item .classify-intro:hover .classify-model li i {
  background: url(./image/icon-arrow.svg) -16px 0 no-repeat;
}

.product-classify .classify-item .classify-intro:hover .classify-model li:hover i {
  background: url(./image/icon-arrow.svg) 0px 0 no-repeat;
}

.product-classify .classify-item .pd-image {
  width: 840px;
  height: 560px;
}

.product-classify .classify-item .pd-image img {
  width: inherit;
  height: auto;
}

.product-classify .layout-lr {
  position: relative;
  margin-bottom: 96px;
}

.product-classify .layout-lr .classify-intro {
  position: absolute;
  left: 0;
  z-index: 2;
  top: 78px;
}

.product-classify .layout-lr .classify-intro.lr-en {
  top: 33px;
}

.product-classify .layout-lr .pd-image {
  position: absolute;
  right: 0;
  z-index: 1;
}

.product-classify .layout-rl {
  position: relative;
}

.product-classify .layout-rl .classify-intro {
  position: absolute;
  right: 0;
  z-index: 2;
  top: 100px;
}

.product-classify .layout-rl .pd-image {
  position: absolute;
  left: 0;
  z-index: 1;
}

.service-info-wrapper {
  width: 1200px;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
  padding: 64px 80px 32px;
  font-size: 16px;
  line-height: 30px;
  color: var(--black-1);
  margin: 0 auto;
  background: #fff;
  margin-top: 80px;
}

.service-info-wrapper .para-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.service-info-wrapper .para-group .para ol {
  margin-top: 4px;
  padding-left: 18px;
}

.service-info-wrapper .para-group .para ol li {
  list-style: decimal;
}

.service-info-wrapper .para-star {
  font-size: 14px;
  line-height: 16px;
  padding: 32px 0;
  border-top: 1px #ebebeb solid;
}

.service-info-wrapper .para-star span {
  font-weight: bold;
  color: var(--main-green-1);
  margin-right: 4px;
}

@media screen and (min-width: 1280px) {
  .product-classify {
    width: 1200px;
  }

  .mod-warranty-service {
    padding-top: 0;
  }

  .service-info-wrapper {
    width: 1200px;
  }
}

@media screen and (max-width: 1280px) {
  .product-classify {
    width: 100%;
    margin: 48px auto 0;
  }

  .mod-warranty-service {
    padding-top: 0;
  }

  .service-info-wrapper {
    width: 84%;
  }
}

@media screen and (max-width: 960px) {
  .mod-product-classify {
    padding-bottom: 0;
  }

  .product-classify .classify-item {
    height: auto;
  }

  .product-classify .classify-item .classify-intro {
    width: 100%;
  }

  .product-classify .classify-item .pd-image {
    width: 100%;
    height: auto;
  }

  .product-classify .classify-item .pd-image img {
    width: inherit;
    height: auto;
  }

  .product-classify .layout-lr {
    position: relative;
    margin-bottom: 16px;
  }

  .product-classify .layout-lr .classify-intro {
    position: relative;
    top: 0;
  }

  .product-classify .layout-lr .classify-intro.lr-en {
    top: 33px;
  }

  .product-classify .layout-lr .pd-image {
    position: relative;
    left: 0;
    right: 0;
    z-index: 1;
  }

  .product-classify .layout-rl {
    position: relative;
  }

  .product-classify .layout-rl .classify-intro {
    position: relative;
    top: 0;
  }

  .product-classify .layout-rl .pd-image {
    position: relative;
    left: 0;
    z-index: 1;
  }

  .mod-warranty-service {
    padding-top: 120px;
  }
}

@media screen and (max-width: 640px) {
  .service-info-wrapper {
    width: 92%;
    padding: 32px;
    margin-top: 40px;
  }
}

/******** 页面样式 - 产品 *********/
/* .product-banner {
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: url(./image/temp-1.png) bottom no-repeat;
  background-size: cover;
} */

@media screen and (max-width: 640px) {
  .product-banner {
    height: 640px;
  }
}

.product-heading {
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin-top: 180px;
}

.product-heading .pd-name {
  font-size: 32px;
  line-height: 48px;
}

.product-heading .pd-feature-intro {
  font-size: 66px;
  line-height: 80px;
  padding: 24px 0 40px;
}

.product-heading .pd-feature {
  font-size: 28px;
  line-height: 36px;
  color: var(--main-green-1);
  font-weight: 500;
}

.product-heading .pd-feature span {
  margin: 0 8px;
}

.product-container {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.product-container .product-info {
  height: auto;
  margin: 0 auto;
  padding: 86px 0 80px;
}

.product-container .product-info .product-name {
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
}

.product-container .product-info .wheel-type {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 38px;
}

.product-container .product-info .wheel-type ul {
  display: flex;
  gap: 32px;
}

.product-container .product-info .wheel-type li {
  font-size: 16px;
  line-height: 24px;
}

.product-container .product-info .wheel-type li:last-child {
  margin-right: 0;
}

.product-container .product-info .wheel-type li b {
  float: left;
}

.product-container .product-info .wheel-type li i.icon-check {
  float: left;
  width: 16px;
  height: 16px;
  margin: 4px 0 4px 10px;
}

.product-container .product-info .wheel-type li i.icon-check img {
  width: 16px;
  height: auto;
}

.product-container .product-info .wheel-type li span {
  color: var(--main-green-1);
  margin-left: 10px;
}

.product-container .product-info p {
  font-size: 14px;
  line-height: 22px;
  margin-top: 20px;
}

.product-content {
  width: 100%;
  height: auto;
}

.product-content .wheel-model-wrapper {
  width: 100%;
  height: auto;
  background-color: #fff;
  position: sticky;
  top: 80px;
  padding: 20px 0;
}

.product-content .wheel-model {
  width: 1200px;
  height: auto;
  margin: 0 auto;
}

.product-content .wheel-model ul {
  display: flex;
  flex-direction: row;
}

.product-content .wheel-model ul li {
  width: 33.3333333333%;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.product-content .wheel-model ul li .model-para {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  color: #999;
}

.product-content .wheel-model ul li em {
  font-size: 12px;
  line-height: 20px;
  color: #999;
  font-style: normal;
}

.product-content .wheel-model ul li.current .model-para {
  color: var(--main-green-1);
}

.product-content .wheel-model ul li.current em {
  color: #333;
}

.product-content .wheel-model ul li.current::after {
  width: 100%;
  height: 2px;
  content: "";
  display: block;
  background-color: var(--main-green-1);
  position: absolute;
  left: 0;
  bottom: -20px;
}

.product-content .wheel-model ul li.col2 {
  width: 50%;
}

.product-content .wheel-model.col2 li {
  width: 50%;
}

.product-detail .detail-item:nth-child(n+2) {
  display: none;
}

.detail-item .product-images {
  width: 1200px;
  margin: 40px auto 96px;
}

.detail-item .wheel-spec {
  width: 1200px;
  height: auto;
  overflow: hidden;
  margin: 0 auto 56px;
}

.detail-item .wheel-spec table {
  width: 1200px;
  border-collapse: collapse;
}

.detail-item .wheel-spec table tr:nth-child(2n-1) {
  background-color: #f8f8f8;
}

.detail-item .wheel-spec table th {
  padding: 20px 32px;
  text-align: left;
  font-size: 17px;
  line-height: 26px;
}

.detail-item .wheel-spec table th.th-1 {
  width: 40%;
}

.detail-item .wheel-spec table th.th-2 {
  width: 30%;
}

.detail-item .wheel-spec table td {
  padding: 20px 32px;
  text-align: left;
  font-size: 15px;
  line-height: 24px;
}

.detail-item .wheel-spec table td img {
  width: 160px;
}

.wheel-tech {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 120px 0;
  background-color: #fafafa;
}

.wheel-tech .tech-item-wrapper {
  width: 1200px;
  height: auto;
  margin: 0 auto;
}

.wheel-tech .tech-item-wrapper .wheel-tech-item {
  margin-top: 96px;
}

.wheel-tech .tech-item-wrapper .wheel-tech-item ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.wheel-tech .tech-item-wrapper .wheel-tech-item li {
  width: calc((100% - 32px) / 2);
  background: #fff;
  box-sizing: border-box;
  padding: 56px 72px;
  border-radius: 4px;
  margin-bottom: 32px;
}

.wheel-tech .tech-item-wrapper .wheel-tech-item li h4 {
  font-size: 24px;
  line-height: 32px;
}

.wheel-tech .tech-item-wrapper .wheel-tech-item li p {
  min-height: 150px;
  font-size: 16px;
  line-height: 30px;
  margin-top: 20px;
  text-align: justify;
}

@media screen and (min-width: 1280px) {
  .product-container .product-info {
    width: 1200px;
  }
}

@media screen and (max-width: 1280px) {
  .product-container .product-info {
    width: 84%;
  }

  .product-content .wheel-model-wrapper .wheel-model {
    width: 100%;
  }

  .product-content .product-detail .detail-item .product-images {
    width: 100%;
  }

  .product-content .product-detail .detail-item .product-images img {
    width: 100%;
    height: auto;
  }

  .product-content .product-detail .detail-item .wheel-spec {
    width: 100%;
  }

  .product-content .product-detail .detail-item .wheel-spec table {
    width: 100%;
  }

  .product-content .product-detail .detail-item .wheel-spec table th.th-1 {
    width: 20%;
  }

  .product-content .product-detail .detail-item .wheel-spec table th.th-2 {
    width: 40%;
  }

  .product-content .product-detail .detail-item .wheel-spec table td img {
    width: 80px;
  }

  .product-content .wheel-tech .tech-item-wrapper {
    width: 84%;
  }

  .product-content .wheel-tech .tech-item-wrapper .wheel-tech-item {
    margin-top: 48px;
  }
}

@media screen and (max-width: 768px) {
  .product-container .product-content .wheel-model-wrapper {
    top: 72px;
  }

  .product-container .product-content .wheel-tech .tech-item-wrapper {
    width: 84%;
  }

  .product-container .product-content .wheel-tech .tech-item-wrapper .wheel-tech-item {
    margin-top: 48px;
  }

  .product-container .product-content .wheel-tech .tech-item-wrapper .wheel-tech-item ul {
    flex-direction: column;
    gap: 24px;
  }

  .product-container .product-content .wheel-tech .tech-item-wrapper .wheel-tech-item ul li {
    width: 100%;
    padding: 56px 48px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  .product-container .product-info .wheel-type li span {
    float: left;
    margin-left: 4px;
  }
}

/******** 页面样式 - 经销商 *********/
.my-map {
  width: 100%;
  height: 640px;
}

.my-map .icon {
  background: url(https://a.amap.com/lbs-dev-yuntu/static/web/image/tools/creater/marker.png) no-repeat;
}

.amap-container {
  height: 100%;
}

.myinfowindow {
  width: 240px;
  min-height: 50px;
}

.myinfowindow h5 {
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  font-size: 14px;
  font-weight: bold;
  width: 220px;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: nowrap;
}

.myinfowindow div {
  margin-top: 10px;
  min-height: 40px;
  line-height: 20px;
  font-size: 13px;
  color: #6f6f6f;
}

.distributor-wrapper {
  min-height: 480px;
  margin-top: 48px;
}

.distributor-wrapper .distributor-list {
  height: auto;
  margin: 0 auto;
}

.distributor-wrapper .distributor-list .list-title {
  width: 100%;
  height: 48px;
  background-color: #fafafa;
  display: flex;
  flex-wrap: nowrap;
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: bold;
  line-height: 48px;
}

.distributor-wrapper .distributor-list .list-title .label {
  height: inherit;
  position: relative;
}

.distributor-wrapper .distributor-list .list-title .label .label-text {
  width: 100%;
  height: 100%;
  position: relative;
}

.distributor-wrapper .distributor-list .list-title .label .label-droplist::after {
  content: "";
  width: 48px;
  height: 48px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  background: url(./image/icon-drop_list.svg) right top no-repeat;
}

.distributor-wrapper .distributor-list .list-title .label .label-list-wrapper {
  height: 400px;
  max-height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #fff;
  position: absolute;
  top: 44px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.05), 0 1px 4px rgba(0, 0, 0, 0.15);
}

.distributor-wrapper .distributor-list .list-title .label .label-list-wrapper li {
  width: 120px;
  padding: 0 24px;
  transition: all 0.3s ease;
  color: #333;
}

.distributor-wrapper .distributor-list .list-title .label .label-list-wrapper li:hover {
  background-color: var(--light-green-1);
  color: var(--main-green-1);
}

.distributor-wrapper .distributor-list .list-title .label-w {
  width: calc(40% - 48px);
  padding: 0 24px;
}

.distributor-wrapper .distributor-list .list-title .label-s {
  width: calc(20% - 48px);
  padding: 0 24px;
  transition: all 0.3s ease;
}

.distributor-wrapper .distributor-list .list-title .label-s:hover {
  background: #f0f0f0;
}

.distributor-wrapper .distributor-list .distributor-items {
  width: 100%;
  background: #fff;
  padding: 8px 0;
  color: #333;
  overflow: hidden;
}

.distributor-wrapper .distributor-list .distributor-items .store-info {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  padding: 8px 0;
}

.distributor-wrapper .distributor-list .distributor-items .store-info:hover {
  background: #fafafa;
}

.distributor-wrapper .distributor-list .distributor-items .store-info h5 {
  width: calc(20% - 48px);
  font-size: 14px;
  line-height: 22px;
  padding: 0 24px;
  font-weight: 400;
}

.distributor-wrapper .distributor-list .distributor-items .store-info p {
  width: calc(40% - 48px);
  font-size: 14px;
  line-height: 22px;
  padding: 0 24px;
}

.distributor-wrapper .distributor-list .distributor-items .store-info p b {
  margin-bottom: 2px;
  display: block;
}

.distributor-wrapper .distributor-list .distributor-items .store-info p span {
  color: #777;
  display: block;
  font-size: 12px;
}

@media screen and (min-width: 1280px) {
  .distributor-wrapper .distributor-list {
    width: 1200px;
    height: auto;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1280px) {
  .distributor-wrapper .distributor-list {
    width: 92%;
  }
}

@media screen and (max-width: 768px) {
  .distributor-wrapper .distributor-list .list-title .label-w {
    width: calc(40% - 24px);
    padding: 0 12px;
  }

  .distributor-wrapper .distributor-list .list-title .label-s {
    min-width: 72px;
  }

  .distributor-wrapper .distributor-list .distributor-items .store-info h5 {
    min-width: 72px;
  }

  .distributor-wrapper .distributor-list .distributor-items .store-info p {
    width: calc(40% - 24px);
    padding: 0 12px;
  }
}

@media screen and (max-width: 480px) {
  .my-map {
    width: 100%;
    height: 560px;
  }
}

/******** 新闻资讯 *********/
.page-banner-xwzx {
  width: 100%;
  height: 680px;
}

.page-banner-xwzx .page-banner-xwzx-text {
  margin: 0 auto;
  padding-top: 260px;
}

.page-banner-xwzx h2 {
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 28px;
  color: var(--main-green-1);
}

.page-banner-xwzx p {
  font-size: 18px;
  line-height: 26px;
}

.news-item {
  width: 1190px;
  height: 231px;
  margin: 70px auto;
  display: flex;
}

.img-count-in {
  width: 352px;
  height: 231px;
}

.img-count-in img {
  width: 352px;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

.news-com {
  display: flex;
  justify-content: space-between;
  margin-left: 50px;
  box-sizing: border-box;
}

.news-together {
  padding: 46px 84px 72px 0;
  box-sizing: border-box;
  border-bottom: 1px solid #F2F2F2;
}

.news-h a {
  width: 680px;
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
  line-height: 36.4px;
  text-align: left;
  color: #333333 !important;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news-h a:hover {
  color: #00BC56 !important;
}

.news-together:hover {
  border-bottom: 1px solid #00BC56;
}

.news-sum {
  width: 684px;
  margin-top: 25px;
  line-height: 26px;
  font-size: 15px;
  color: #999999;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.date {
  display: flex;
  flex-direction: column;
  padding-top: 46px;
  align-items: center;
}

.date1 {
  font-size: 30px;
  font-weight: 900;
  color: #737373;
}

.date2 {
  font-size: 14px;
  font-weight: 700;
  line-height: 15px;
  text-align: left;
  color: #A6A6A6;
}

.date3 {
  margin-top: 4px;
  width: 11px;
  height: 13px;
  background-image: url('../img/polygon-1.png');
}

@media screen and (max-width: 480px) {
  .banner-text h2{
    font-size: 24px;
  }
  .page-banner-xwzx {
    width: 100%;
    height: 300px;
  }
  .news-com {
    margin-left: 10px;
  }

  .news-item {
    margin: 10px auto;
    width: 100%;
    height: 120px;
    padding: 12px;
    box-sizing: border-box;
  }

  .img-count-in {
    width: 100%;
    height: 113px;
  }

  .img-count-in img {
    width: 104px;
    height: 93px;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .news-together {
    width: 211px;
    padding: 5px;
    box-sizing: border-box;
  }

  .news-sum {
    width: 100%;
    margin-top: 8px;
    line-height: 20px;
    font-size: 13px;
    color: #999999;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .news-h a {
    font-size: 18px;
    display: inline-block;
    width: 180px;
  }

  .date {
    padding-top: 5px;
  }
  .date1 {
    font-size: 24px;
    font-weight: 900;
    color: #737373;
  }
  
  .date2 {
    font-size: 14px;
    font-weight: 700;
    line-height: 15px;
    text-align: left;
    color: #A6A6A6;
  }
}


/******** 新闻资讯内容 *********/
.page-banner-xwzxnr {
  width: 100%;
  height: 480px;
}

.page-banner-xwzxnr .page-banner-xwzxnr-text {
  margin: 0 auto;
  padding-top: 200px;
}

.page-banner-xwzxnr h2 {
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 28px;
  color: black;
}

.page-banner-xwzxnr p {
  font-size: 18px;
  line-height: 26px;
  color: black;
}


/******** 客户案例 *********/
.customer-case {
  width: 1200px;
  margin: 10px auto 160px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.customer-case li{
  margin-top: 45px;
}
.customer-case-top {
  margin-top: 100px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.customer-case-top .span1 {
  margin-top: 0;
  font-size: 40px;
  font-weight: 800;
  line-height: 72.8px;
  letter-spacing: -0.05em;
  text-align: center;
}

.customer-case-top .span2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  margin-top: 27px;
}

.case-item {
  width: 370px;
  height: 377px;
}

.case-item img {
  width: inherit;
  height: 222px;
  border-radius: 10px 10px 0 0;
}

.case-item-cont {
  padding: 20px 0 10px 15px;
}

.case-item-cont span {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
}

.case-item-cont p {
  font-family: Alibaba PuHuiTi 2.0;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  text-align: left;
  color: #999999;
  margin-top: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (max-width: 480px) {
  .customer-case-top .span1 {
    font-size: 20px;
  }

  .customer-case {
    box-sizing: border-box;
    padding: 10px;
  }
  .customer-case {
    width: 100vw;
    margin: 0 auto 45px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .customer-case li{
    margin-top: 40px;
  }
  .customer-case-top {
    margin-top: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .customer-case-top .span1 {
    margin-top: 0;
    font-size: 40px;
    font-weight: 800;
    line-height: 72.8px;
    letter-spacing: -0.05em;
    text-align: center;
  }
  
  .customer-case-top .span2 {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    margin-top: 27px;
  }
  
  .case-item {
    width: 340px;
    height: 377px;
    margin-top: 40px;
  }
  
  .case-item img {
    width: inherit;
    height: 222px;
    border-radius: 10px 10px 0 0;
  }
  
  .case-item-cont {
    padding: 20px 0 10px 15px;
    text-align: center;
  }
  
  .case-item-cont span {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    text-align: left;
  }
  
  .case-item-cont p {
    font-family: Alibaba PuHuiTi 2.0;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    text-align: center;
    color: #999999;
    margin-top: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

/******** 客户案例详情 *********/
.customer-details {
  width: 100%;
  background-color: #f5f5f5;
  /* padding: 12px; */
  box-sizing: border-box;
}

.customer-details-main {
  width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding: 100px 80px;
  box-sizing: border-box;
}

.customer-details-main h4 {
  text-align: center;
}

.customer-details-main .main-cont {
  margin-top: 69px;
  line-height: 32px;
  font-size: 18px;
}

.main-cont img {
  width: 100%;
  margin: 40px 0;
}
.custom-details{
  width: 100%;
  padding: 50px 18px;
  box-sizing: border-box;
}
.custom-details img {
  width: 100%;
  margin: 10px 0;
}

@media screen and (max-width: 480px) {
  .customer-details {
    background-color: pink;
    width: 100%;
    box-sizing: border-box;
  }

  .customer-details-main {
    width: 100%;
    background-color: #fff;
  }

  .customer-details-main h4 {
    text-align: center;
  }

  .customer-details-main .main-cont {
    margin-top: 69px;
    line-height: 32px;
    font-size: 18px;
  }

  .main-cont img {
    width: 100%;
    height: 250px;
    margin: 40px 0;
  }
}

/******** 新闻资讯详情 *********/
.article-cont {
  background-color: #fff;
  width: 100%;
  padding: 0 400px;
  box-sizing: border-box;
  margin: 80px auto;
}

.article-cont-main img {
  background-color: #fff !important;
  width: 100% !important;
  margin: 40px 0;
}

.article-details {
  padding: 12px;
}

.article-details img {
  width: 100%;
  margin: 10px 0;
}

@media screen and (max-width: 480px) {
  .page-banner-xwzxnr h2 {
    font-size: 22px;
  }

  .article-cont {
    background-color: #fff;
    width: 100vh !important;
    /* padding: 0 400px; */
    box-sizing: border-box;
  }

  .article-cont-main img {
    background-color: #fff !important;
    width: 300px !important;
    height: 250px;
    margin: 40px 0;
  }
  .article-details {
    padding: 60px 20px;
  }
}

/******** 页面样式 - 联系我们 *********/
.page-banner {
  width: 100%;
  height: 480px;
}

.page-banner .page-banner-text {
  margin: 0 auto;
  padding-top: 160px;
}

.page-banner h2 {
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 28px;
}

.page-banner p {
  font-size: 18px;
  line-height: 26px;
}

/* .page-banner.image-hero-contact {
  background: url(./image/contact-banner.png) right top no-repeat;
  background-size: cover;
  color: #fff;
  font-weight: 700;
} */

.contact-info .contact-info-wrapper {
  width: 1200px;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  padding-bottom: 80px;
  border-bottom: 1px solid #efefef;
}

.contact-info h4 {
  font-size: 24px;
  line-height: 32px;
}

.contact-info .contact-item h4 {
  margin-bottom: 24px;
}

.contact-info .contact-item h5 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
}

.contact-info .contact-item .tele-group {
  width: 360px;
  margin-top: 16px;
}

.contact-info .contact-item .tele-group ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px 40px;
}

.contact-info .contact-item .tele-group ul li {
  width: 44%;
}

.contact-info .contact-item .tele-group ul li i {
  content: "";
  float: left;
  width: 16px;
  height: 16px;
  margin-right: 12px;
}

.contact-info .contact-item .tele-group ul li i.num_01 {
  background: url(./image/number-1.svg) left top no-repeat;
}

.contact-info .contact-item .tele-group ul li i.num_02 {
  background: url(./image/number-2.svg) left top no-repeat;
}

.contact-info .contact-item .tele-group ul li i.num_03 {
  background: url(./image/number-3.svg) left top no-repeat;
}

.contact-info .contact-item .tele-group ul li i.num_04 {
  background: url(./image/number-4.svg) left top no-repeat;
}

.contact-info .contact-item .tele-group ul li i.num_tel {
  background: url(./image/number-tel.svg) left top no-repeat;
}

.contact-info .contact-item .tele-group ul li span {
  display: inline-block;
  margin-right: 4px;
  color: #666;
}

.contact-info .contact-item p {
  font-size: 14px;
  line-height: 22px;
  color: #666;
  margin-bottom: 8px;
}

.contact-info .contact-qrcode {
  width: 1200px;
  height: auto;
  margin: 80px auto 0;
}

.contact-info .contact-qrcode h4 {
  margin-bottom: 48px;
}

.contact-info .contact-qrcode .qrcode-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 80px;
}

.contact-info .contact-qrcode .qrcode-list .qrcode-item img {
  width: 200px;
  height: 200px;
}

.contact-info .contact-qrcode .qrcode-list .qrcode-item p {
  font-size: 14px;
  line-height: 22px;
  margin-top: 12px;
  text-align: center;
}

@media screen and (min-width: 1280px) {
  .page-banner .page-banner-text {
    width: 1200px;
  }

  .page-banner-xwzx .page-banner-xwzx-text {
    width: 1200px;
  }

  .contact-info .contact-info-wrapper {
    width: 1200px;
  }
}

@media screen and (max-width: 1280px) {
  .page-banner .page-banner-text {
    width: 84%;
  }

  .page-banner-xwzx .page-banner-xwzx-text {
    width: 84%;
  }

  .contact-info .contact-info-wrapper {
    width: 84%;
  }

  .contact-info .contact-qrcode {
    width: 84%;
  }
}

@media screen and (max-width: 960px) {
  .contact-info .contact-info-wrapper {
    width: 84%;
    display: flex;
    flex-direction: column;
  }

  .contact-info .contact-info-wrapper .column-2 {
    width: 100%;
  }

  .contact-info .contact-info-wrapper .contact-item:first-child {
    margin-bottom: 48px;
  }
}

@media screen and (max-width: 480px) {
  .contact-qrcode .qrcode-list {
    justify-content: center;
  }
  .page-banner-xwzx .page-banner-xwzx-text {
    margin: 0 auto;
    padding-top: 118px;
  }
  .page-banner-xwzx h2 {
    font-size: 30px;
    line-height: 56px;
    margin-bottom: 28px;
    color: var(--main-green-1);
  }
}

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