@charset "UTF-8";
/* 公共样式 */
:root {
  --green-1: rgb(55, 209, 150);
  --green-2: rgb(95, 236, 182);
  --black-1: #000000;
  --black-2: #58585A;
  --black-3: #1D312C;
}

html,
body {
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", 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;
}

/***** 文字默认公共样式 *****/
h1 {
  font-size: 45px;
  font-weight: 300;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 28px;
}

h1,
h2,
h3,
h4 {
  line-height: 1em;
}

.body-text {
  font-size: 15px;
  line-height: 1.65em;
  font-weight: 300;
}

.footnote {
  font-size: 10px;
  line-height: 1.6em;
}

.lazy {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.lazy.loaded {
  opacity: 1;
}

/*** 导航样式 ****/
@media screen and (min-width: 641px) {
  .header {
    width: 100%;
    height: 64px;
    position: fixed;
    top: 0;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .header .nav-wrapper {
    width: 1280px;
    height: 64px;
    margin: 0 auto;
  }
  .header .nav-wrapper .logo {
    width: 142px;
    height: 40px;
    padding: 12px 0;
    float: left;
  }
  .header .nav-wrapper .logo img {
    width: 100%;
  }
  .header .nav-wrapper .menu-icon {
    display: none;
  }
  .header .nav-wrapper .nav {
    height: 64px;
    float: right;
    display: flex;
    -moz-column-gap: 180px;
         column-gap: 180px;
  }
  .header .nav-wrapper .nav .nav-list-wrapper .nav-list {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 48px;
         column-gap: 48px;
  }
  .header .nav-wrapper .nav .nav-list-wrapper .nav-list .has-sub-menu {
    position: relative;
  }
  .header .nav-wrapper .nav .nav-list-wrapper .nav-list li {
    height: 24px;
    padding-top: 24px;
    font-size: 14px;
    line-height: 16px;
  }
  .header .nav-wrapper .nav .nav-list-wrapper .nav-list li a {
    height: inherit;
    color: #000000;
    display: block;
    font-weight: 500;
  }
  .header .nav-wrapper .nav .nav-list-wrapper .nav-list li.on a {
    border-bottom: 1px solid #000000;
  }
  .header .nav-wrapper .nav .nav-list-wrapper .nav-list li .sub-menu-list {
    display: none;
    position: absolute;
    background-color: #fff;
    padding: 10px 0;
    z-index: 10;
    left: 50%;
    transform: translate(-50%, 0);
    top: 64px;
    text-align: center;
  }
  .header .nav-wrapper .nav .nav-list-wrapper .nav-list li .sub-menu-list.en {
    text-align: left;
  }
  .header .nav-wrapper .nav .nav-list-wrapper .nav-list li .sub-menu-list .sub-menu-item {
    padding: 5px 20px;
    white-space: nowrap;
  }
  .header .nav-wrapper .nav .nav-list-wrapper .nav-list li .sub-menu-list .sub-menu-item a {
    height: 24px;
    line-height: 24px;
    display: block;
    color: #333;
    text-decoration: none;
    border: none;
  }
  .header .nav-wrapper .nav .nav-list-wrapper .nav-list li .sub-menu-list .sub-menu-item a:hover {
    color: var(--green-1);
  }
  .header .nav-wrapper .nav .nav-extra {
    height: 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .header .nav-wrapper .nav .nav-extra .icon-link {
    float: left;
    padding: 0 10px;
    height: 64px;
    position: relative;
  }
  .header .nav-wrapper .nav .nav-extra .icon-link .icon-wrapper {
    width: 16px;
    height: 16px;
    margin-top: 24px;
    padding-bottom: 4px;
  }
  .header .nav-wrapper .nav .nav-extra .icon-link .icon-wrapper:hover {
    border-bottom: 1px solid #000000;
    cursor: pointer;
  }
  .header .nav-wrapper .nav .nav-extra .support-pop-container {
    display: none;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 64px;
    z-index: 10;
  }
  .header .nav-wrapper .nav .nav-extra .support-pop-container .pop-hd {
    background: #fff;
    display: flex;
    font-size: 13px;
    flex-direction: column;
    padding: 20px 46px 0;
  }
  .header .nav-wrapper .nav .nav-extra .support-pop-container .pop-hd span {
    display: block;
    text-align: center;
  }
  .header .nav-wrapper .nav .nav-extra .support-pop-container .pop-hd img {
    width: 140px;
    height: auto;
    margin: 26px 0 28px;
  }
  .header .nav-wrapper .nav .nav-extra .support-pop-container .pop-ft {
    height: 44px;
    background: #DCDCDE;
    display: flex;
    font-size: 17px;
    align-items: center;
    justify-content: center;
  }
  .header .nav-wrapper .nav .nav-extra .support-pop-container .pop-ft img {
    width: 20px;
    height: auto;
    margin-right: 8px;
  }
  .header .nav-wrapper .nav .nav-extra .lang-switch {
    display: none;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 64px;
    z-index: 10;
    width: 140px;
    height: auto;
    overflow: hidden;
  }
  .header .nav-wrapper .nav .nav-extra .lang-switch .lang-item {
    font-size: 11px;
    width: 88px;
    height: 44px;
    margin: 0 auto;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
  }
  .header .nav-wrapper .nav .nav-extra .lang-switch .lang-item a {
    color: var(--black-2);
  }
  .header .nav-wrapper .nav .nav-extra .lang-switch .lang-item:first-child {
    border-bottom: 0.5px solid var(--black-2);
  }
  .header .nav-wrapper .nav .nav-extra .lang-switch .lang-item:hover a, .header .nav-wrapper .nav .nav-extra .lang-switch .lang-item.cur a {
    color: var(--black-1);
  }
  .header .nav-wrapper .nav .nav-extra .online-shop {
    position: relative;
    margin-left: 12px;
  }
  .header .nav-wrapper .nav .nav-extra .online-shop .btn-pop {
    padding: 6px 12px;
    border: 1px solid #000000;
    height: 16px;
    cursor: pointer;
  }
  .header .nav-wrapper .nav .nav-extra .online-shop .btn-pop span {
    background: url(../img/icon-shop.svg) left center no-repeat;
    font-size: 12px;
    line-height: 16px;
    padding-left: 24px;
    display: block;
  }
  .header .nav-wrapper .nav .nav-extra .online-shop .btn-pop:hover {
    background-color: #000;
  }
  .header .nav-wrapper .nav .nav-extra .online-shop .btn-pop:hover span {
    background-image: url(../img/icon-shop-white.svg);
    color: #fff;
  }
  .header .submenu-container {
    width: 100%;
    height: 320px;
    background: #fff;
    display: none;
    position: fixed;
    left: 0;
    top: 64px;
  }
  .header .submenu-container .submenu-wrapper {
    width: 400px;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
  }
  .header .submenu-container .submenu-wrapper h5 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1em;
    padding: 64px 0 50px;
    text-align: center;
  }
  .header .submenu-container .submenu-wrapper .shop-group {
    display: flex;
    justify-content: space-between;
  }
  .header .submenu-container .submenu-wrapper .shop-group .shop-item {
    width: 168px;
    height: 102px;
    overflow: hidden;
  }
  .header .submenu-container .submenu-wrapper .shop-group .shop-item img {
    width: 100%;
    transition: all 0.3s 0s ease;
  }
  .header .submenu-container .submenu-wrapper .shop-group .shop-item img:hover {
    transform: scale(1.2);
  }
}
@media screen and (max-width: 640px) {
  .header {
    width: 100%;
    height: 54px;
    position: fixed;
    top: 0;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .header .nav-wrapper {
    width: calc(100% - 48px);
    padding: 0 24px;
    height: 54px;
    margin: 0 auto;
    position: relative;
  }
  .header .nav-wrapper .logo {
    width: 117px;
    height: 32px;
    padding: 11px 0;
    float: left;
  }
  .header .nav-wrapper .logo img {
    width: 100%;
    height: 32px;
  }
  .header .nav-wrapper .menu-icon {
    display: block;
    width: 24px;
    height: 24px;
    margin: 15px 0;
    float: right;
  }
  .header .nav-wrapper .menu-icon img {
    width: 24px;
    height: 24px;
  }
  .header .nav-wrapper .menu-icon .hide {
    display: none;
  }
  .header .nav-wrapper .nav {
    width: 100%;
    height: auto;
    overflow: hidden;
    float: right;
    -moz-column-gap: 40px;
         column-gap: 40px;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    left: 0;
    top: 54px;
    display: none;
  }
  .header .nav-wrapper .nav .nav-list-wrapper {
    width: calc(100% - 48px);
    padding: 0 24px;
    height: auto;
    overflow: hidden;
  }
  .header .nav-wrapper .nav .nav-list-wrapper .nav-list {
    display: flex;
    flex-direction: column;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
  .header .nav-wrapper .nav .nav-list-wrapper .nav-list .has-sub-menu {
    height: auto;
    overflow: hidden;
    position: relative;
  }
  .header .nav-wrapper .nav .nav-list-wrapper .nav-list li {
    height: 22px;
    padding: 12px 0;
    font-size: 12px;
    line-height: 12px;
  }
  .header .nav-wrapper .nav .nav-list-wrapper .nav-list li a {
    font-size: 14px;
    font-weight: 600;
    height: 22px;
    color: #000000;
    display: block;
  }
  .header .nav-wrapper .nav .nav-list-wrapper .nav-list li.on a {
    border-bottom: 1px solid #000000;
  }
  .header .nav-wrapper .nav .nav-list-wrapper .nav-list li .sub-menu-list {
    display: block;
    position: relative;
    background-color: unset;
    padding: 10px 0;
    text-align: left;
    box-shadow: none;
    left: 0;
    top: 0;
    transform: none;
  }
  .header .nav-wrapper .nav .nav-list-wrapper .nav-list li .sub-menu-list.en {
    text-align: left;
  }
  .header .nav-wrapper .nav .nav-list-wrapper .nav-list li .sub-menu-list .sub-menu-item {
    padding: 5px 20px;
    white-space: nowrap;
  }
  .header .nav-wrapper .nav .nav-list-wrapper .nav-list li .sub-menu-list .sub-menu-item a {
    font-weight: 400;
    height: 24px;
    line-height: 24px;
    display: block;
    color: #333;
    text-decoration: none;
    border: none;
  }
  .header .nav-wrapper .nav .nav-list-wrapper .nav-list li .sub-menu-list .sub-menu-item a:hover {
    color: var(--green-1);
  }
  .header .nav-wrapper .nav .nav-extra {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .header .nav-wrapper .nav .nav-extra .icon-link {
    display: flex;
    height: 54px;
    position: relative;
    width: calc(100% - 48px);
    padding: 0 24px;
  }
  .header .nav-wrapper .nav .nav-extra .icon-link .icon-wrapper {
    margin-top: 16px;
    padding-bottom: 6px;
  }
  .header .nav-wrapper .nav .nav-extra .support-pop-container {
    display: block;
    margin-left: 24px;
  }
  .header .nav-wrapper .nav .nav-extra .support-pop-container .pop-hd {
    display: none;
  }
  .header .nav-wrapper .nav .nav-extra .support-pop-container .pop-ft {
    height: 44px;
    display: flex;
    font-size: 14px;
    align-items: center;
    justify-content: center;
  }
  .header .nav-wrapper .nav .nav-extra .support-pop-container .pop-ft img {
    display: none;
  }
  .header .nav-wrapper .nav .nav-extra .lang-switch {
    display: block;
    display: flex;
    margin-left: 24px;
    height: auto;
    overflow: hidden;
  }
  .header .nav-wrapper .nav .nav-extra .lang-switch .lang-item {
    font-size: 12px;
    height: 44px;
    margin-right: 16px;
    line-height: 44px;
    text-align: center;
    color: var(--black-2);
    cursor: pointer;
  }
  .header .nav-wrapper .nav .nav-extra .lang-switch .lang-item.cur {
    border-bottom: 0.5px solid var(--black-2);
    margin-right: 24px;
  }
  .header .nav-wrapper .nav .nav-extra .lang-switch .lang-item:hover, .header .nav-wrapper .nav .nav-extra .lang-switch .lang-item.cur {
    color: var(--black-1);
  }
  .header .nav-wrapper .nav .nav-extra .online-shop {
    height: auto;
    overflow: hidden;
    position: relative;
    width: calc(100% - 48px);
    padding: 0 24px;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 16px;
  }
  .header .nav-wrapper .nav .nav-extra .online-shop .btn-pop {
    width: 100%;
  }
  .header .nav-wrapper .nav .nav-extra .online-shop .btn-pop span {
    background: url(../img/icon-shop.svg) left center no-repeat;
    font-size: 12px;
    line-height: 16px;
    padding-left: 40px;
    display: block;
  }
  .header .submenu-container {
    width: 100%;
    background: #fff;
    display: block;
  }
  .header .submenu-container .submenu-wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 24px auto;
  }
  .header .submenu-container .submenu-wrapper h5 {
    display: none;
  }
  .header .submenu-container .submenu-wrapper .shop-group {
    display: flex;
    justify-content: space-between;
  }
  .header .submenu-container .submenu-wrapper .shop-group .shop-item {
    width: 45%;
  }
  .header .submenu-container .submenu-wrapper .shop-group .shop-item img {
    width: 100%;
    height: auto;
  }
}
/*** 轮播样式 ****/
.main-banner-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.banner-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.banner-item {
  flex: 0 0 100%;
  position: relative;
  box-sizing: border-box;
}
.banner-item .banner-intro {
  position: absolute;
  left: 80px;
  bottom: 120px;
}
.banner-item .banner-title {
  color: #fff;
}
.banner-item .banner-title h2 {
  font-size: 30px;
  margin-bottom: 10px;
}
.banner-item .banner-title p {
  font-size: 19px;
  letter-spacing: 0.3em;
  line-height: 1em;
}
.banner-item .banner-title p.en {
  letter-spacing: 0.1em;
}
.banner-item .link-button {
  width: 66px;
  height: 26px;
  text-align: center;
  border: 1px solid #fff;
  font-size: 10px;
  color: #fff;
  margin-top: 22px;
  line-height: 26px;
  cursor: pointer;
  padding: 0 8px;
}
.banner-item .link-button:hover {
  background: #fff;
  color: #000000;
}
.banner-item img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 560px) {
  .banner-item img.img-mb {
    display: none;
    visibility: hidden;
  }
}

/* 指示点 */
.banner-dots {
  position: absolute;
  bottom: 48px;
  left: 80px;
  display: flex;
  gap: 6px;
  z-index: 10;
}

.banner-dots button {
  width: 26px;
  height: 2px;
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.banner-dots button.active {
  background-color: #fff;
}

@media screen and (max-width: 560px) {
  .banner-item {
    flex: 0 0 100%;
    position: relative;
    box-sizing: border-box;
  }
  .banner-item .banner-intro {
    width: calc(100% - 48px);
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 80px;
  }
  .banner-item .banner-title {
    color: #fff;
    text-align: center;
  }
  .banner-item .banner-title h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .banner-item .banner-title p {
    font-size: 19px;
    letter-spacing: 0.3em;
    line-height: 1em;
  }
  .banner-item .banner-title p.en {
    letter-spacing: 0.1em;
  }
  .banner-item .link-button {
    font-size: 12px;
    margin: 20px auto;
  }
  .banner-item .link-button:hover {
    background: #fff;
    color: #000000;
  }
  .banner-item img.img-pc {
    display: none;
  }
  .banner-dots {
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
  }
}
/**** 产品中心 ****/
.product-center {
  width: 100%;
  height: 570px;
  background: url(../img/product-bg.png) repeat-x;
  overflow: hidden;
}
.product-center h3 {
  width: 1280px;
  margin: 0 auto;
  text-align: center;
  margin-top: 72px;
}
.product-center .product-wrapper {
  position: relative;
  width: 1200px;
  margin: 40px auto 0;
}
.product-center .product-list {
  display: flex;
  transition: transform 0.5s ease;
}
.product-center .product-item {
  height: 350px;
  font-size: 20px;
  opacity: 1;
  transition: opacity 0.5s ease;
  position: relative;
}
.product-center .product-item .prd-image {
  width: inherit;
  height: auto;
  overflow: hidden;
}
.product-center .product-item .prd-image img {
  width: 100%;
  height: auto;
}
.product-center .product-item:last-child {
  display: none;
}
.product-center .product-item .product-name {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}
.product-center .product-item .product-name a {
  padding-bottom: 6px;
  color: var(--black-2);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}
.product-center .product-item .product-name:hover a {
  color: var(--black-1);
  border-bottom: 1px solid var(--green-1);
}
.product-center .fade-out {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-center .arrow {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}
.product-center .arrow.left {
  background: url(../img/arrow-left.svg) no-repeat;
  left: -42px;
}
.product-center .arrow.left:hover {
  background: url(../img/arrow-left-hover.svg) no-repeat;
}
.product-center .arrow.right {
  background: url(../img/arrow-right.svg) no-repeat;
  right: -42px;
}
.product-center .arrow.right:hover {
  background: url(../img/arrow-right-hover.svg) no-repeat;
  right: -42px;
}

@media screen and (max-width: 560px) {
  .product-center h3 {
    width: 100%;
    text-align: center;
    margin-top: 72px;
  }
  .product-center .product-wrapper {
    width: 100%;
  }
  .product-center .product-list {
    width: 100%;
    height: auto;
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .product-center .product-item {
    height: 100%;
    font-size: 20px;
    opacity: 1;
    transition: opacity 0.5s ease;
    position: relative;
  }
  .product-center .product-item:last-child {
    display: block;
  }
  .product-center .product-item .product-name {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
  }
  .product-center .product-item .product-name a {
    font-size: 14px;
  }
  .product-center .fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .product-center .arrow {
    width: 42px;
    height: 42px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
  }
  .product-center .arrow.left {
    display: none;
  }
  .product-center .arrow.right {
    display: none;
  }
}
/******** 产品优势 *******/
.product-advantages {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 90px 0 96px;
  position: relative;
}
.product-advantages .mod-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.product-advantages .content-left {
  color: #fff;
}
.product-advantages .content-left .content-hd {
  margin-bottom: 550px;
}
.product-advantages .content-left .content-hd h2 {
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.product-advantages .content-left .content-hd p {
  font-size: 28px;
  line-height: 1em;
  margin-bottom: 36px;
  letter-spacing: 0.05em;
}
.product-advantages .content-left .content-hd img {
  display: block;
  width: 284px;
  height: auto;
}
.product-advantages .content-left .content-ft {
  font-size: 25px;
  font-weight: 500;
}
.product-advantages .advantages-list {
  margin-right: 96px;
}
.product-advantages .advantages-list ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}
.product-advantages .advantages-list li {
  width: 234px;
  flex: 1;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.product-advantages .advantages-list li .adv-icon {
  margin-bottom: 60px;
}
.product-advantages .advantages-list li p {
  line-height: 1.6em;
}
.product-advantages .advantages-list ul.lang-en li .adv-icon {
  margin-bottom: 48px;
}
.product-advantages .bg-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}
.product-advantages .bg-image img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
  transition: none;
  will-change: transform;
}
@media (min-width: 1920px) {
  .product-advantages .bg-image img {
    width: 100vw;
    top: -15%;
  }
}
@media (max-width: 1919px) {
  .product-advantages .bg-image img {
    width: 1920px;
    min-width: 1920px;
    max-width: none;
  }
}

@media screen and (max-width: 640px) {
  .product-advantages {
    background: url(../img/mod_bg.png) 40% center no-repeat;
    background-size: cover;
    background-attachment: scroll;
  }
  .product-advantages .mod-container {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .product-advantages .content-left .content-hd {
    margin-bottom: 30px;
    text-align: center;
  }
  .product-advantages .content-left .content-hd img {
    display: block;
    width: 240px;
    height: auto;
    margin: 0 auto;
  }
  .product-advantages .content-left .content-ft {
    text-align: center;
  }
  .product-advantages .advantages-list {
    margin: 48px 0 0;
  }
  .product-advantages .advantages-list ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    height: 100%;
  }
  .product-advantages .advantages-list li {
    padding: 32px 0;
  }
  .product-advantages .advantages-list li .adv-icon {
    margin-bottom: 32px;
  }
  .product-advantages .advantages-list ul.lang-en li .adv-icon {
    margin-bottom: 48px;
  }
}
/******** 全球数据 *******/
.global-data {
  width: 100%;
  height: 766px;
  padding-top: 144px;
  background: url(../img/map-data.png) center center no-repeat;
}
.global-data .info-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 160px;
  border-bottom: 1px solid #DCDCDE;
}
.global-data .info-container h3 {
  text-align: center;
}
.global-data .info-container .data-wrapper {
  display: flex;
  flex-direction: row;
  margin: 200px 0 290px;
}
.global-data .info-container .data-wrapper .data-item {
  flex: 1;
  text-align: center;
  /********/
  /*******/
}
.global-data .info-container .data-wrapper .data-item .data-title {
  font-size: 12px;
  line-height: 1em;
  margin-bottom: 16px;
}
.global-data .info-container .data-wrapper .data-item .data-number {
  font-size: 40px;
  line-height: 1em;
  font-weight: 500;
  color: #00D464;
}
.global-data .info-container .data-wrapper .data-item #counter {
  display: flex;
  font-size: 40px;
  justify-content: center;
}
.global-data .info-container .data-wrapper .data-item .digit-box {
  display: inline-block;
  width: 24px;
  height: 40px;
  overflow: hidden;
  position: relative;
}
.global-data .info-container .data-wrapper .data-item .digit-scroll {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 1s ease-in-out;
}
.global-data .info-container .data-wrapper .data-item .digit-scroll span {
  display: block;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.global-data .info-container .data-wrapper .data-item .comma,
.global-data .info-container .data-wrapper .data-item .suffix {
  padding: 0 4px;
}
.global-data .info-container .source-date {
  font-size: 12px;
  text-align: center;
  color: var(--black-2);
}

@media screen and (max-width: 640px) {
  .global-data {
    padding-top: 72px;
    height: auto;
  }
  .global-data .info-container {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 80px;
  }
  .global-data .info-container .data-wrapper {
    display: flex;
    flex-direction: column;
    margin: 80px 0;
  }
  .global-data .info-container .data-wrapper .data-item {
    flex: 1;
    text-align: center;
    padding: 40px 0;
  }
}
/******** 方案 *******/
.solution {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: url(../img/mod_bg2.png) bottom center no-repeat;
  background-size: 100%;
}
@media screen and (min-width: 1680px) {
  .solution {
    min-height: 1100px;
  }
}
.solution .mod-container {
  width: 720px;
  padding: 140px 0 560px;
  margin: 0 auto;
  text-align: center;
}
.solution .mod-container h3 {
  margin-bottom: 36px;
}
.solution .mod-container p {
  font-size: 15px;
  line-height: 1.6em;
}
.solution .mod-container .button-link {
  width: 180px;
  height: 38px;
  line-height: 38px;
  margin: 64px auto 0;
  font-size: 13px;
  font-weight: 500;
}
.solution .mod-container .button-link a {
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  transition: all 0.3s 0s ease;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: border 0.3s 0s ease, background 0.3s 0s ease;
}
.solution .mod-container .button-link a.en {
  letter-spacing: 0;
}
.solution .mod-container .button-link:hover a {
  background: #000;
  color: #fff;
}

@media screen and (max-width: 640px) {
  .solution {
    width: 100%;
    height: 680px;
    overflow: hidden;
    background: url(../img/mod_bg2.png) bottom center no-repeat;
    background-size: 150%;
  }
  .solution .mod-container {
    width: calc(100% - 48px);
    padding: 96px 24px 0;
    margin: 0 auto;
    text-align: center;
  }
  .solution .mod-container h3 {
    margin-bottom: 36px;
  }
  .solution .mod-container p {
    font-size: 15px;
    line-height: 1.6em;
  }
  .solution .mod-container .button-link {
    width: 180px;
    height: 38px;
    border: 1px solid #000;
    line-height: 38px;
    margin: 64px auto 0;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s 0s ease;
  }
  .solution .mod-container .button-link a {
    display: block;
    width: 100%;
    height: 100%;
    color: #000;
    transition: all 0.3s 0s ease;
    cursor: pointer;
    letter-spacing: 0.1em;
  }
  .solution .mod-container .button-link a.en {
    letter-spacing: 0;
  }
  .solution .mod-container .button-link:hover {
    background: #000;
  }
  .solution .mod-container .button-link:hover a {
    color: #fff;
  }
}
/******** 问答 *******/
.question {
  width: 100%;
  height: 1120px;
  background: linear-gradient(to bottom, #00D464 0%, #7EE9B0 50%, #fff 100%);
}
.question .mod-container {
  width: 100%;
  max-width: 960px;
  padding-top: 150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.question .mod-container .mod-title {
  font-size: 45px;
  font-weight: 300;
}
.question .mod-container .mod-left {
  position: relative;
}
.question .mod-container .mod-left .button-link {
  width: 180px;
  height: 38px;
  line-height: 38px;
  border: 1px solid #000;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 32px;
  transition: all 0.3s 0s ease;
  cursor: pointer;
}
.question .mod-container .mod-left .button-link.en {
  letter-spacing: 0em;
}
.question .mod-container .mod-left .button-link:hover {
  background: #000;
  color: #fff;
}
.question .mod-container .mod-left .qr-popup {
  position: absolute;
  bottom: 50%;
  /* 改为出现在按钮上方 */
  margin-bottom: 16px;
  /* 上方的间距 */
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  padding: 16px;
  border-radius: 8px;
  z-index: 999;
  display: none;
  text-align: center;
}
.question .mod-container .mod-left .qr-popup img {
  width: 160px;
  height: 160px;
}
.question .mod-container .mod-left .popup-arrow {
  position: absolute;
  bottom: -10px;
  /* 箭头指向按钮 */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
  /* 改为顶部箭头 */
}
.question .mod-container .question-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.question .mod-container .question-list .question-item {
  width: 438px;
  height: auto;
  background: #fff;
  padding: 0 24px 0 18px;
  margin-bottom: 10px;
  cursor: pointer;
}
.question .mod-container .question-list .question-item .question-title {
  display: flex;
  align-items: center;
  min-height: 60px;
  line-height: 20px;
  font-size: 16px;
  font-weight: 500;
  background: url(../img/icon-show.svg) right center no-repeat;
}
.question .mod-container .question-list .question-item.active .question-title {
  background: url(../img/icon-hide.svg) right center no-repeat;
}
.question .mod-container .question-list .question-item .answer {
  display: none;
  font-size: 11px;
  font-weight: 300;
  line-height: 20px;
  padding-bottom: 20px;
}

@media screen and (max-width: 640px) {
  .question {
    height: auto;
    padding-bottom: 80px;
  }
  .question .mod-container {
    width: 100%;
    padding-top: 80px;
  }
  .question .mod-container .mod-title {
    font-size: 45px;
    font-weight: 300;
    text-align: center;
  }
  .question .mod-container .mod-left {
    position: relative;
  }
  .question .mod-container .mod-left .more-question {
    text-align: center;
  }
  .question .mod-container .mod-left .button-link {
    margin: 32px auto;
  }
  .question .mod-container .mod-left .button-link.en {
    letter-spacing: 0em;
  }
  .question .mod-container .mod-left .button-link:hover {
    background: #000;
    color: #fff;
  }
  .question .mod-container .mod-left .qr-popup {
    position: absolute;
    bottom: 50%;
    /* 改为出现在按钮上方 */
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 16px;
    /* 上方的间距 */
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    padding: 16px;
    border-radius: 8px;
    z-index: 999;
    display: none;
    text-align: center;
  }
  .question .mod-container .question-list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 48px 0;
    width: calc(100% - 48px);
    padding: 0 24px;
  }
  .question .mod-container .question-list .question-item {
    width: calc(100% - 42px);
    height: auto;
    background: #fff;
    padding: 0 24px 0 18px;
    margin-bottom: 10px;
    cursor: pointer;
  }
  .question .mod-container .question-list .question-item .question-title {
    width: 85%;
    padding-right: 15%;
  }
}
/******** 新闻动态 ******/
.news {
  width: 100%;
}

.news-title {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.news-title h2 {
  font-weight: 300;
  margin-left: 64px;
}
.news-title .arrow-group {
  margin-right: 64px;
}
.news-title .arrow-group span {
  display: block;
  width: 42px;
  height: 42px;
}
.news-title .arrow-group span.arrow-left {
  background: url(../img/arrow-left.svg) no-repeat;
  float: left;
  margin-right: 24px;
}
.news-title .arrow-group span.arrow-right {
  background: url(../img/arrow-right.svg) no-repeat;
  float: right;
}

.news-list-wrapper {
  width: 100%;
  overflow: hidden;
}
.news-list-wrapper .news-list {
  display: flex;
  flex-direction: row;
  gap: 16px;
  transition: transform 0.5s ease;
  flex-wrap: nowrap;
}
.news-list-wrapper .news-item {
  width: calc((100% - 64px) / 3);
  flex-shrink: 0;
  cursor: pointer;
}
.news-list-wrapper .news-item a {
  color: #030F15;
}
.news-list-wrapper .news-item p {
  color: #030F15;
  transition: color 0.3s ease;
  display: inline;
}
.news-list-wrapper .news-item p:hover {
  color: var(--green-1);
}
.news-list-wrapper .news-item:first-child {
  margin-left: 16px;
}
.news-list-wrapper .news-item img {
  width: 100%;
}
.news-list-wrapper .news-item .news-info {
  margin-bottom: 64px;
}
.news-list-wrapper .news-item .news-info .time {
  font-size: 14px;
  margin: 16px 0 16px;
  font-weight: 300;
  color: var(--black-2);
}
.news-list-wrapper .news-item .news-info p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
}

@media screen and (min-width: 1280px) {
  .news-title {
    width: 1280px;
  }
  .news-title h2 {
    margin-left: 120px;
  }
  .news-title .arrow-group {
    margin-right: 18px;
  }
}
@media screen and (max-width: 640px) {
  .news-title {
    width: 100%;
  }
  .news-title h2 {
    margin-left: 24px;
  }
  .news-title .arrow-group {
    margin-right: 24px;
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .news-title .arrow-group {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .news {
    padding: 80px 0;
  }
  .news .news-list-wrapper {
    width: calc(100% - 48px);
    padding: 0 24px;
    overflow: hidden;
  }
  .news .news-list-wrapper .news-list {
    flex-wrap: wrap;
  }
  .news .news-list-wrapper .news-list .news-item {
    width: calc((100% - 16px) / 2);
    flex-shrink: 0;
  }
  .news .news-list-wrapper .news-list .news-item:first-child {
    margin-left: 0;
  }
  .news .news-list-wrapper .news-list .news-item .news-info {
    margin-bottom: 24px;
  }
  .news .news-list-wrapper .news-list .news-item .news-info p {
    line-height: 1.4em;
  }
}
.footer {
  width: 100%;
  height: auto;
  background: #fff;
}

.footer-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  height: auto;
  overflow: hidden;
  padding-top: 86px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 64px;
}
.footer-container .ft-left {
  flex: 1;
}
.footer-container .ft-right {
  color: #fff;
  flex: 1.5;
}
.footer-container .ft-right.en {
  flex: 2;
}
.footer-container .ft-right .footer-nav {
  display: flex;
  flex-direction: row;
}
.footer-container .ft-right .footer-nav .nav-item {
  flex: 1;
  color: var(--black-3);
}
.footer-container .ft-right .footer-nav .nav-item .nav-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
}
.footer-container .ft-right .footer-nav .nav-item li {
  font-size: 12px;
  line-height: 28px;
  font-weight: 300;
}
.footer-container .ft-right .footer-nav .nav-item li a {
  color: var(--black-1);
  transition: color 0.3s ease;
}
.footer-container .ft-right .footer-nav .nav-item li a:hover {
  color: var(--green-1);
}

.footer-bottom {
  width: 100%;
  max-width: 1280px;
  height: 64px;
  border-top: 0.5px solid var(--black-2);
  margin: 0 auto;
  color: #fff;
  font-size: 12px;
}
.footer-bottom .copyright {
  font-size: 12px;
  margin: 26px 0;
  float: left;
  color: var(--black-2);
}
.footer-bottom .contact-type {
  float: right;
  margin: 22px 0;
  display: flex;
}
.footer-bottom .contact-type ul {
  display: flex;
  gap: 10px;
}
.footer-bottom .contact-type .type-icon {
  width: 20px;
  height: 20px;
}
.footer-bottom .contact-type .lang-select {
  margin-left: 24px;
  display: flex;
}
.footer-bottom .contact-type .lang-select span {
  margin-left: 8px;
  line-height: 20px;
  color: var(--black-2);
}
.footer-bottom .contact-item {
  position: relative;
}
.footer-bottom .tooltip-popup {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 12px;
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 999;
  display: none;
  text-align: center;
  white-space: nowrap;
}
.footer-bottom .tooltip-img {
  width: 120px;
  height: 120px;
}
.footer-bottom .tooltip-text {
  font-size: 14px;
  color: #333;
}
.footer-bottom .popup-arrow {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid white;
}
.footer-bottom .popup-dark {
  background: #474747;
}
.footer-bottom .popup-dark .popup-arrow {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #474747;
}

@media screen and (max-width: 640px) {
  .footer-container {
    width: calc(100% - 48px);
    padding: 80px 24px 0;
    flex-direction: column;
  }
  .footer-container .ft-right {
    flex: 0;
    margin-top: 48px;
  }
  .footer-container .ft-right .footer-nav {
    flex-direction: column;
  }
  .footer-container .ft-right .footer-nav .nav-item {
    width: 100%;
    flex: 1;
    color: var(--black-3);
    margin-bottom: 24px;
  }
  .footer-container .ft-right .footer-nav .nav-item .nav-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
  }
  .footer-container .ft-right .footer-nav .nav-item ul {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-container .ft-right .footer-nav .nav-item ul li {
    font-size: 14px;
    width: 50%;
  }
  .footer-bottom {
    width: calc(100% - 48px);
    margin: 0 auto;
    height: auto;
  }
  .footer-bottom .copyright {
    width: 100%;
  }
  .footer-bottom .contact-type {
    width: 100%;
    margin-top: 0;
    padding-bottom: 20px;
  }
  .footer-bottom .contact-type ul {
    margin: 0 auto;
  }
}
/***** 动画样式 *****/
.animate-on-scroll .ani-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.animate-on-scroll.animate .ani-item {
  opacity: 1;
  transform: translateY(0);
}

/* 自定义动画示例 */
.ani-item.fade-left {
  transform: translateX(-40px);
}

.animate-on-scroll.animate .ani-item.fade-left {
  transform: translateX(0);
}

.ani-item.zoom-in {
  transform: scale(0.8);
}

.animate-on-scroll.animate .ani-item.zoom-in {
  transform: scale(1);
}

.ani-item.move-button {
  transform: translateY(40px);
  transition: transform 1s ease;
}

.animate-on-scroll.animate .ani-item.move-button {
  transform: translateY(0);
}/*# sourceMappingURL=page-all.css.map */