@import url(iconfont/iconfont.css);
@font-face {
  font-family: m_s_b;
  src: url(font/Montserrat-SemiBold-9.otf);
}
@font-face {
  font-family: m_b;
  src: url(font/Montserrat-Bold-3.otf);
}
@font-face {
  font-family: m_r;
  src: url(font/Montserrat-Regular-8.otf);
}
@font-face {
  font-family: m_l;
  src: url(font/Montserrat-Light-6.otf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --themeColor: #ea5514;
  --headerHeight: 0.96rem;
  --container: 14rem;
  --cm: calc((100vw - var(--container)) / 2);
}
.iconfont {
  font-size: 18px;
}
body {
  -webkit-font-smoothing: antialiased;
  font: 0.16rem/1.73 m_r, Microsoft YaHei, "PingFang SC", Heiti SC, tahoma, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
  color: #3e3a39;
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: m_b;
}
em,
i {
  font-style: normal;
}
li {
  list-style: none;
}
img {
  border: 0;
  vertical-align: middle;
}
a {
  text-decoration: none;
  color: #3e3a39;
}
/* 表单元素 */
textarea,
select,
button,
input {
  /* "\5B8B\4F53" => 宋体 */
  font-family: AlibabaSans, Microsoft YaHei, "PingFang SC", Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
  border: none;
  outline: none;
  resize: none;
  background: none;
  font-size: 0.15rem;
  /* chrome */
  /* 火狐浏览器 */
}
textarea::-webkit-outer-spin-button,
select::-webkit-outer-spin-button,
button::-webkit-outer-spin-button,
input::-webkit-outer-spin-button,
textarea::-webkit-inner-spin-button,
select::-webkit-inner-spin-button,
button::-webkit-inner-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
textarea[type="number"],
select[type="number"],
button[type="number"],
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}
textarea::placeholder,
select::placeholder,
button::placeholder,
input::placeholder {
  color: #cdcdcd;
}
/* 版芯 */
.container {
  width: var(--container);
  margin: 0 auto;
}
/* 单行文本 */
.dh_text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 多行文本省略 */
.dh_text2 {
  display: -webkit-box;
  display: -moz-box;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal !important;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.dh_text3 {
  display: -webkit-box;
  display: -moz-box;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal !important;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.dh_text4 {
  display: -webkit-box;
  display: -moz-box;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal !important;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.dh_text5 {
  display: -webkit-box;
  display: -moz-box;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal !important;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
/* 富文本 */
.rich img,
.rich video {
  max-width: 100% !important;
  height: auto !important;
}
.rich * {
  text-wrap: wrap !important;
  white-space: wrap !important;
}
/* 分页器 */
.pages,
.pagination {
  margin: 0.64rem auto;
  display: flex;
  justify-content: center;
}
.pages a,
.pagination a,
.pages span,
.pagination span {
  display: block;
  width: 0.4rem;
  line-height: 0.4rem;
  text-align: center;
  font-family: AlibabaSans-Medium;
  border-radius: 0.06rem;
  background: #f6f6f6;
  transition: all 0.3s;
}
.pages a + a,
.pagination a + a,
.pages span + a,
.pagination span + a,
.pages a + span,
.pagination a + span,
.pages span + span,
.pagination span + span {
  margin-left: 0.08rem;
}

.pages li.active span,
.pagination li.active span,
.pages a:hover,
.pagination a:hover,
.pages a.active,
.pagination a.active {
  background: var(--themeColor);
  color: white;
}
.pages li + li,
.pagination li + li {
  margin-left: 0.08rem;
}

.pages li.disabled,
.pagination li.disabled {
    opacity: .6;
}

/* 手机 */
.moblie {
  display: none;
}
.fs-10 {
  font-size: 0.1rem;
}
.fs-11 {
  font-size: 0.11rem;
}
.fs-12 {
  font-size: 0.12rem;
}
.fs-13 {
  font-size: 0.13rem;
}
.fs-14 {
  font-size: 0.14rem;
}
.fs-15 {
  font-size: 0.15rem;
}
.fs-16 {
  font-size: 0.16rem;
}
.fs-17 {
  font-size: 0.17rem;
}
.fs-18 {
  font-size: 0.18rem;
}
.fs-19 {
  font-size: 0.19rem;
}
.fs-20 {
  font-size: 0.2rem;
}
.fs-21 {
  font-size: 0.21rem;
}
.fs-22 {
  font-size: 0.22rem;
}
.fs-23 {
  font-size: 0.23rem;
}
.fs-24 {
  font-size: 0.24rem;
}
.fs-25 {
  font-size: 0.25rem;
}
.fs-26 {
  font-size: 0.26rem;
}
.fs-27 {
  font-size: 0.27rem;
}
.fs-28 {
  font-size: 0.28rem;
}
.fs-29 {
  font-size: 0.29rem;
}
.fs-30 {
  font-size: 0.3rem;
}
.fs-31 {
  font-size: 0.31rem;
}
.fs-32 {
  font-size: 0.32rem;
}
.fs-33 {
  font-size: 0.33rem;
}
.fs-34 {
  font-size: 0.34rem;
}
.fs-35 {
  font-size: 0.35rem;
}
.fs-36 {
  font-size: 0.36rem;
}
.fs-37 {
  font-size: 0.37rem;
}
.fs-38 {
  font-size: 0.38rem;
}
.fs-39 {
  font-size: 0.39rem;
}
.fs-40 {
  font-size: 0.4rem;
}
.fs-41 {
  font-size: 0.41rem;
}
.fs-42 {
  font-size: 0.42rem;
}
.fs-43 {
  font-size: 0.43rem;
}
.fs-44 {
  font-size: 0.44rem;
}
.fs-45 {
  font-size: 0.45rem;
}
.fs-46 {
  font-size: 0.46rem;
}
.fs-47 {
  font-size: 0.47rem;
}
.fs-48 {
  font-size: 0.48rem;
}
.fs-49 {
  font-size: 0.49rem;
}
.fs-50 {
  font-size: 0.5rem;
}
.fs-51 {
  font-size: 0.51rem;
}
.fs-52 {
  font-size: 0.52rem;
}
.fs-53 {
  font-size: 0.53rem;
}
.fs-54 {
  font-size: 0.54rem;
}
.fs-55 {
  font-size: 0.55rem;
}
.fs-56 {
  font-size: 0.56rem;
}
.fs-57 {
  font-size: 0.57rem;
}
.fs-58 {
  font-size: 0.58rem;
}
.fs-59 {
  font-size: 0.59rem;
}
.fs-60 {
  font-size: 0.6rem;
}
.fs-61 {
  font-size: 0.61rem;
}
.fs-62 {
  font-size: 0.62rem;
}
.fs-63 {
  font-size: 0.63rem;
}
.fs-64 {
  font-size: 0.64rem;
}
.fs-65 {
  font-size: 0.65rem;
}
.fs-66 {
  font-size: 0.66rem;
}
.fs-67 {
  font-size: 0.67rem;
}
.fs-68 {
  font-size: 0.68rem;
}
.fs-69 {
  font-size: 0.69rem;
}
.fs-70 {
  font-size: 0.7rem;
}
.fs-71 {
  font-size: 0.71rem;
}
.fs-72 {
  font-size: 0.72rem;
}
/* 遍历动画延迟 */
/* 生成固定比例的图片元素 div.img>img */
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999999999;
  padding: 0.24rem 0;
  transition: all 0.3s;
}
.header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: var(--headerHeight);
}
.header > .container .logo {
  height: 0.95rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header > .container .logo img {
  height: 100%;
  width: auto;
  transition: all 0.3s;
}
.header > .container .menu {
  display: flex;
}
.header > .container .menu li {
  position: relative;
}
.header > .container .menu li > a {
  display: block;
  transition: all 0.3s, font-size 0s;
  color: white;
  font-family: m_s_b;
  text-transform: uppercase;
}
.header > .container .menu li > a:hover,
.header > .container .menu li > a.active {
  color: var(--themeColor);
}
.header > .container .menu li + li {
  margin-left: 0.37rem;
}
.header > .container .menu li .childs {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 0.1rem;
  box-shadow: 0 0.1rem 0.1rem rgba(170, 175, 180, 0.3);
  padding: 0.2rem 0;
  line-height: 1.2;
  padding: 0.4rem 0.3rem;
}
.header > .container .menu li .childs a {
  color: #595757;
  display: block;
  white-space: nowrap;
}
.header > .container .menu li .childs a:hover,
.header > .container .menu li .childs a.active {
  color: var(--themeColor);
}
.header > .container .menu li .childs a + a {
  margin-top: 0.28rem;
}
.header > .container .menu li.menu_box > a {
  display: flex;
  align-items: center;
}
.header > .container .menu li.menu_box > a::after {
  content: "\e840";
  font-family: iconfont;
  font-weight: 700;
  margin-left: 0.05rem;
}
.header > .container .nav-actions {
  display: flex;
  align-items: center;
  gap: 0.16rem;
}
.header > .container .nav-actions .lang {
  width: 1rem;
  line-height: 0.4rem;
  text-align: center;
  background-color: white;
  border: 0.02rem solid white;
  border-radius: 0.08rem;
  color: var(--themeColor);
  font-family: m_s_b;
  transition: all 0.3s;
}
.header > .container .nav-actions .lang:hover {
  background-color: transparent;
  color: white;
}
.header > .container .nav-actions .menu_btn {
  display: none;
  width: 0.56rem;
  height: 0.56rem;
  padding: 0.14rem;
  border-radius: 0.12rem;
  border: 0.02rem solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
}
.header > .container .nav-actions .menu_btn span {
  display: block;
  height: 0.03rem;
  border-radius: 0.02rem;
  background-color: white;
  transition: all 0.3s;
}
.header > .container .nav-actions .menu_btn.active {
  border-color: white;
}
.header > .container .nav-actions .menu_btn.active span:nth-child(1) {
  transform: translateY(0.09rem) rotate(45deg);
}
.header > .container .nav-actions .menu_btn.active span:nth-child(2) {
  opacity: 0;
}
.header > .container .nav-actions .menu_btn.active span:nth-child(3) {
  transform: translateY(-0.09rem) rotate(-45deg);
}
.header .header.had > .container .logo,
.header .header.active > .container .logo {
  height: 40px;
}
.header.had,
.header.active {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.05);
  padding: 0.05rem 0;
  top: 0.2rem;
  width: auto;
  left: calc(var(--cm) - 0.4rem);
  right: calc(var(--cm) - 0.4rem);
  border-radius: 1rem;
  backdrop-filter: blur(16px);
}
.header.had > .container .logo,
.header.active > .container .logo {
  height: 0.7rem;
}
.header.had > .container .menu li > a,
.header.active > .container .menu li > a {
  color: #000;
}
.header.had > .container .menu li > a.active,
.header.active > .container .menu li > a.active,
.header.had > .container .menu li > a:hover,
.header.active > .container .menu li > a:hover {
  color: var(--themeColor);
}
.header.had > .container .nav-actions .lang,
.header.active > .container .nav-actions .lang {
  background-color: var(--themeColor);
  border-color: var(--themeColor);
  color: white;
}
.header.had > .container .nav-actions .lang:hover,
.header.active > .container .nav-actions .lang:hover {
  background-color: transparent;
  color: var(--themeColor);
}
.header.had > .container .nav-actions .menu_btn,
.header.active > .container .nav-actions .menu_btn {
  border-color: rgba(0, 0, 0, 0.15);
}
.header.had > .container .nav-actions .menu_btn span,
.header.active > .container .nav-actions .menu_btn span {
  background-color: #3e3a39;
}
.header.had > .container .nav-actions .menu_btn.active,
.header.active > .container .nav-actions .menu_btn.active {
  border-color: rgba(0, 0, 0, 0.4);
}
.footer {
  background-color: #202020;
  margin-top: 1.2rem;
  padding-top: 0.77rem;
}
.footer .container .top {
  display: flex;
  justify-content: space-between;
}
.footer .container .top .left {
  width: 3.63rem;
}
.footer .container .top .left .logo {
  width: 1.12rem;
}
.footer .container .top .left .contact {
  margin-top: 1rem;
}
.footer .container .top .left .contact a {
  display: flex;
  color: rgba(255, 255, 255, 0.8);
  align-items: center;
  line-height: 1.1;
}
.footer .container .top .left .contact a::before {
  color: var(--themeColor);
  font-size: 0.3rem;
  margin-right: 0.05rem;
}
.footer .container .top .left .contact a + a {
  margin-top: 0.22rem;
}
.footer .container .top .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer .container .top .right ul {
  display: flex;
}
.footer .container .top .right ul li a {
  text-transform: uppercase;
  display: block;
  color: rgba(255, 255, 255, 0.8);
}
.footer .container .top .right ul li a:first-child {
  color: white;
  font-family: m_s_b;
  margin-bottom: 0.24rem;
}
.footer .container .top .right ul li a + a {
  margin-top: 0.08rem;
}
.footer .container .top .right ul li:last-child a {
  color: white;
  font-family: m_s_b;
}
.footer .container .top .right ul li + li {
  margin-left: 0.76rem;
}
.footer .container .top .right .bm {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .container .top .right .bm .ll {
  color: white;
}
.footer .container .top .right .bm .ll div {
  display: flex;
  margin-top: 0.14rem;
}
.footer .container .top .right .bm .ll div a {
  display: block;
}
.footer .container .top .right .bm .ll div a img {
  width: 0.46rem;
}
.footer .container .top .right .bm .ll div a + a {
  margin-left: 0.1rem;
}
.footer .container .top .right .bm .rr {
  color: white;
  width: 0.46rem;
  line-height: 0.46rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
}
.footer .container .top .right .bm .rr:hover {
  background-color: var(--themeColor);
}
.footer .container .btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 0.94rem;
  margin-top: 0.43rem;
  border-top: 0.01rem solid rgba(255, 255, 255, 0.12);
}
.footer .container .btm,
.footer .container .btm a {
  color: rgba(255, 255, 255, 0.8);
}
.footer a:hover {
  color: var(--themeColor) !important;
}
.page_banner {
  position: relative;
}
.page_banner .text {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 0.88rem;
}
.page_banner .text > *:nth-child(1) {
  animation-delay: 0.13s;
}
.page_banner .text > *:nth-child(2) {
  animation-delay: 0.26s;
}
.page_banner .text > *:nth-child(3) {
  animation-delay: 0.39s;
}
.page_banner .text > *:nth-child(4) {
  animation-delay: 0.52s;
}
.page_banner .text > *:nth-child(5) {
  animation-delay: 0.65s;
}
.page_banner .text > *:nth-child(6) {
  animation-delay: 0.78s;
}
.page_banner .text > *:nth-child(7) {
  animation-delay: 0.91s;
}
.page_banner .text > *:nth-child(8) {
  animation-delay: 1.04s;
}
.page_banner .text > *:nth-child(9) {
  animation-delay: 1.17s;
}
.page_banner .text > *:nth-child(10) {
  animation-delay: 1.3s;
}
.page_banner .text > *:nth-child(11) {
  animation-delay: 1.43s;
}
.page_banner .text > *:nth-child(12) {
  animation-delay: 1.56s;
}
.page_banner .text > *:nth-child(13) {
  animation-delay: 1.69s;
}
.page_banner .text > *:nth-child(14) {
  animation-delay: 1.82s;
}
.page_banner .text > *:nth-child(15) {
  animation-delay: 1.95s;
}
.page_banner .text > *:nth-child(16) {
  animation-delay: 2.08s;
}
.page_banner .text > *:nth-child(17) {
  animation-delay: 2.21s;
}
.page_banner .text > *:nth-child(18) {
  animation-delay: 2.34s;
}
.page_banner .text > *:nth-child(19) {
  animation-delay: 2.47s;
}
.page_banner .text > *:nth-child(20) {
  animation-delay: 2.6s;
}
.page_banner .text > *:nth-child(21) {
  animation-delay: 2.73s;
}
.page_banner .text > *:nth-child(22) {
  animation-delay: 2.86s;
}
.page_banner .text > *:nth-child(23) {
  animation-delay: 2.99s;
}
.page_banner .text > *:nth-child(24) {
  animation-delay: 3.12s;
}
.page_banner .text > *:nth-child(25) {
  animation-delay: 3.25s;
}
.page_banner .text > *:nth-child(26) {
  animation-delay: 3.38s;
}
.page_banner .text > *:nth-child(27) {
  animation-delay: 3.51s;
}
.page_banner .text > *:nth-child(28) {
  animation-delay: 3.64s;
}
.page_banner .text > *:nth-child(29) {
  animation-delay: 3.77s;
}
/* 首页 */
.home .banner .swiper {
  overflow: hidden;
}
.home .banner .swiper .swiper-slide {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 980;
}
.home .banner .swiper .swiper-slide img,
.home .banner .swiper .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .banner .swiper .swiper-slide .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}
.home .banner .swiper .swiper-slide .text h2 {
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.home .banner .swiper .swiper-slide .text p {
  font-family: m_b;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(2) {
  animation-delay: 0.26s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(3) {
  animation-delay: 0.39s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(4) {
  animation-delay: 0.52s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(5) {
  animation-delay: 0.65s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(6) {
  animation-delay: 0.78s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(7) {
  animation-delay: 0.91s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(8) {
  animation-delay: 1.04s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(9) {
  animation-delay: 1.17s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(10) {
  animation-delay: 1.3s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(11) {
  animation-delay: 1.43s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(12) {
  animation-delay: 1.56s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(13) {
  animation-delay: 1.69s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(14) {
  animation-delay: 1.82s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(15) {
  animation-delay: 1.95s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(16) {
  animation-delay: 2.08s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(17) {
  animation-delay: 2.21s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(18) {
  animation-delay: 2.34s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(19) {
  animation-delay: 2.47s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(20) {
  animation-delay: 2.6s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(21) {
  animation-delay: 2.73s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(22) {
  animation-delay: 2.86s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(23) {
  animation-delay: 2.99s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(24) {
  animation-delay: 3.12s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(25) {
  animation-delay: 3.25s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(26) {
  animation-delay: 3.38s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(27) {
  animation-delay: 3.51s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(28) {
  animation-delay: 3.64s;
}
.home .banner .swiper .swiper-slide .text > *:nth-child(29) {
  animation-delay: 3.77s;
}
.home .banner .swiper .swiper-slide .btm {
  display: flex;
  align-items: center;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home .banner .swiper .swiper-slide .btm a {
  width: 1.63rem;
  line-height: 0.56rem;
  text-align: center;
  background-color: var(--themeColor);
  border: 0.02rem solid var(--themeColor);
  border-radius: 0.08rem;
  color: white;
  transition: all 0.3s;
}
.home .banner .swiper .swiper-slide .btm a:hover {
  color: var(--themeColor);
  background-color: transparent;
}
.home .banner .swiper .swiper-slide .btm .iconfont {
  margin-left: 0.56rem;
  display: flex;
  align-items: center;
  color: white;
  cursor: pointer;
  font-family: m_b;
  font-weight: 600;
}
.home .banner .swiper .swiper-slide .btm .iconfont::before {
  font-family: iconfont;
  font-size: 0.3rem;
  margin-right: 0.1rem;
}
.home .banner .swiper .swiper-slide .btm .iconfont:hover {
  color: var(--themeColor);
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(2) {
  animation-delay: 0.26s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(3) {
  animation-delay: 0.39s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(4) {
  animation-delay: 0.52s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(5) {
  animation-delay: 0.65s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(6) {
  animation-delay: 0.78s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(7) {
  animation-delay: 0.91s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(8) {
  animation-delay: 1.04s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(9) {
  animation-delay: 1.17s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(10) {
  animation-delay: 1.3s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(11) {
  animation-delay: 1.43s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(12) {
  animation-delay: 1.56s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(13) {
  animation-delay: 1.69s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(14) {
  animation-delay: 1.82s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(15) {
  animation-delay: 1.95s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(16) {
  animation-delay: 2.08s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(17) {
  animation-delay: 2.21s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(18) {
  animation-delay: 2.34s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(19) {
  animation-delay: 2.47s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(20) {
  animation-delay: 2.6s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(21) {
  animation-delay: 2.73s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(22) {
  animation-delay: 2.86s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(23) {
  animation-delay: 2.99s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(24) {
  animation-delay: 3.12s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(25) {
  animation-delay: 3.25s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(26) {
  animation-delay: 3.38s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(27) {
  animation-delay: 3.51s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(28) {
  animation-delay: 3.64s;
}
.home .banner .swiper .swiper-slide .btm > *:nth-child(29) {
  animation-delay: 3.77s;
}
.home .banner .swiper .pagi {
  position: absolute;
  top: 40%;
  right: 0.65rem;
  left: auto;
  bottom: auto;
  z-index: 9;
  width: max-content;
  display: flex;
  flex-direction: column;
}
.home .banner .swiper .pagi .swiper-pagination-bullet {
  background-color: transparent;
  border: 0.01rem solid white;
  opacity: 1;
  width: 0.12rem;
  height: 0.12rem;
}
.home .banner .swiper .pagi .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: white;
}
.home .banner .swiper .pagi .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-top: 0.1rem;
}
.home .maps {
  margin-top: 1.6rem;
}
.home .maps .slogen {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  font-family: m_b;
  color: var(--themeColor);
  line-height: 1.2;
}
.home .maps .slogen a {
  margin-top: 0.35rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  color: var(--themeColor);
}
.home .maps .slogen a::before {
  margin-left: 0.1rem;
  font-size: 0.12rem;
  width: 0.3rem;
  line-height: 0.3rem;
  text-align: center;
  border-radius: 50%;
  border: 0.01rem solid var(--themeColor);
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.home .maps .slogen a:hover::before {
  transform: none;
}
.home .maps .slogen > *:nth-child(2) {
  animation-delay: 0.26s;
}
.home .maps .slogen > *:nth-child(3) {
  animation-delay: 0.39s;
}
.home .maps .slogen > *:nth-child(4) {
  animation-delay: 0.52s;
}
.home .maps .slogen > *:nth-child(5) {
  animation-delay: 0.65s;
}
.home .maps .slogen > *:nth-child(6) {
  animation-delay: 0.78s;
}
.home .maps .slogen > *:nth-child(7) {
  animation-delay: 0.91s;
}
.home .maps .slogen > *:nth-child(8) {
  animation-delay: 1.04s;
}
.home .maps .slogen > *:nth-child(9) {
  animation-delay: 1.17s;
}
.home .maps .slogen > *:nth-child(10) {
  animation-delay: 1.3s;
}
.home .maps .slogen > *:nth-child(11) {
  animation-delay: 1.43s;
}
.home .maps .slogen > *:nth-child(12) {
  animation-delay: 1.56s;
}
.home .maps .slogen > *:nth-child(13) {
  animation-delay: 1.69s;
}
.home .maps .slogen > *:nth-child(14) {
  animation-delay: 1.82s;
}
.home .maps .slogen > *:nth-child(15) {
  animation-delay: 1.95s;
}
.home .maps .slogen > *:nth-child(16) {
  animation-delay: 2.08s;
}
.home .maps .slogen > *:nth-child(17) {
  animation-delay: 2.21s;
}
.home .maps .slogen > *:nth-child(18) {
  animation-delay: 2.34s;
}
.home .maps .slogen > *:nth-child(19) {
  animation-delay: 2.47s;
}
.home .maps .slogen > *:nth-child(20) {
  animation-delay: 2.6s;
}
.home .maps .slogen > *:nth-child(21) {
  animation-delay: 2.73s;
}
.home .maps .slogen > *:nth-child(22) {
  animation-delay: 2.86s;
}
.home .maps .slogen > *:nth-child(23) {
  animation-delay: 2.99s;
}
.home .maps .slogen > *:nth-child(24) {
  animation-delay: 3.12s;
}
.home .maps .slogen > *:nth-child(25) {
  animation-delay: 3.25s;
}
.home .maps .slogen > *:nth-child(26) {
  animation-delay: 3.38s;
}
.home .maps .slogen > *:nth-child(27) {
  animation-delay: 3.51s;
}
.home .maps .slogen > *:nth-child(28) {
  animation-delay: 3.64s;
}
.home .maps .slogen > *:nth-child(29) {
  animation-delay: 3.77s;
}
.home .maps .mains {
  display: flex;
  align-items: center;
}
.home .maps .mains ul {
  margin-left: var(--cm);
  flex: 1;
}
.home .maps .mains ul li {
  margin-left: 0.21rem;
  color: #595757;
  position: relative;
}
.home .maps .mains ul li::before {
  content: "";
  width: 0.05rem;
  height: 0.05rem;
  border-radius: 50%;
  background-color: var(--themeColor);
  position: absolute;
  left: -0.16rem;
  top: 0.13rem;
}
.home .maps .mains ul li + li {
  margin-top: 0.5rem;
}
.home .maps .mains ul > *:nth-child(2) {
  animation-delay: 0.26s;
}
.home .maps .mains ul > *:nth-child(3) {
  animation-delay: 0.39s;
}
.home .maps .mains ul > *:nth-child(4) {
  animation-delay: 0.52s;
}
.home .maps .mains ul > *:nth-child(5) {
  animation-delay: 0.65s;
}
.home .maps .mains ul > *:nth-child(6) {
  animation-delay: 0.78s;
}
.home .maps .mains ul > *:nth-child(7) {
  animation-delay: 0.91s;
}
.home .maps .mains ul > *:nth-child(8) {
  animation-delay: 1.04s;
}
.home .maps .mains ul > *:nth-child(9) {
  animation-delay: 1.17s;
}
.home .maps .mains ul > *:nth-child(10) {
  animation-delay: 1.3s;
}
.home .maps .mains ul > *:nth-child(11) {
  animation-delay: 1.43s;
}
.home .maps .mains ul > *:nth-child(12) {
  animation-delay: 1.56s;
}
.home .maps .mains ul > *:nth-child(13) {
  animation-delay: 1.69s;
}
.home .maps .mains ul > *:nth-child(14) {
  animation-delay: 1.82s;
}
.home .maps .mains ul > *:nth-child(15) {
  animation-delay: 1.95s;
}
.home .maps .mains ul > *:nth-child(16) {
  animation-delay: 2.08s;
}
.home .maps .mains ul > *:nth-child(17) {
  animation-delay: 2.21s;
}
.home .maps .mains ul > *:nth-child(18) {
  animation-delay: 2.34s;
}
.home .maps .mains ul > *:nth-child(19) {
  animation-delay: 2.47s;
}
.home .maps .mains ul > *:nth-child(20) {
  animation-delay: 2.6s;
}
.home .maps .mains ul > *:nth-child(21) {
  animation-delay: 2.73s;
}
.home .maps .mains ul > *:nth-child(22) {
  animation-delay: 2.86s;
}
.home .maps .mains ul > *:nth-child(23) {
  animation-delay: 2.99s;
}
.home .maps .mains ul > *:nth-child(24) {
  animation-delay: 3.12s;
}
.home .maps .mains ul > *:nth-child(25) {
  animation-delay: 3.25s;
}
.home .maps .mains ul > *:nth-child(26) {
  animation-delay: 3.38s;
}
.home .maps .mains ul > *:nth-child(27) {
  animation-delay: 3.51s;
}
.home .maps .mains ul > *:nth-child(28) {
  animation-delay: 3.64s;
}
.home .maps .mains ul > *:nth-child(29) {
  animation-delay: 3.77s;
}
.home .maps .mains .leaflet-left {
  display: none;
}
.home .maps .mains .leaflet-popup-content {
  margin: 0;
}
.home .maps .mains .leaflet-popup-content-wrapper {
  background-color: transparent;
  box-shadow: none;
}
.home .maps .mains .leaflet-popup-tip,
.home .maps .mains .leaflet-container .leaflet-control-attribution {
  display: none !important;
}
.home .maps .mains .map_wrap {
  position: relative;
  overflow: hidden;
}
.home .maps .mains .map_wrap::after {
  content: "";
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 55%;
  background-image: linear-gradient(to bottom, white 50%, transparent);
  z-index: 999;
  transform: rotate(-8deg);
}
.home .maps .mains .map_wrap::before {
  content: "";
  position: absolute;
  bottom: -20%;
  left: 0;
  width: 100%;
  height: 55%;
  background-image: linear-gradient(to bottom, transparent, white 50%);
  z-index: 999;
  transform: rotate(15deg);
}
.home .maps .mains #map {
  width: 9.8rem;
  aspect-ratio: 2 / 1.5;
}
.home .maps .mains #map::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background-image: linear-gradient(to left, transparent, white 50%);
  z-index: 999;
}
.home .product {
  background: #f7f7f7;
  padding: 1.6rem 0;
}
.home .product .block_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home .product .block_top .slogen {
  display: flex;
  flex-direction: column;
  font-family: m_b;
  color: var(--themeColor);
  line-height: 1.2;
}
.home .product .block_top .slogen a {
  width: max-content;
  margin-top: 0.35rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  color: var(--themeColor);
}
.home .product .block_top .slogen a::before {
  margin-left: 0.1rem;
  font-size: 0.12rem;
  width: 0.3rem;
  line-height: 0.3rem;
  text-align: center;
  border-radius: 50%;
  border: 0.01rem solid var(--themeColor);
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.home .product .block_top .slogen a:hover::before {
  transform: none;
}
.home .product .block_top .slogen > *:nth-child(2) {
  animation-delay: 0.26s;
}
.home .product .block_top .slogen > *:nth-child(3) {
  animation-delay: 0.39s;
}
.home .product .block_top .slogen > *:nth-child(4) {
  animation-delay: 0.52s;
}
.home .product .block_top .slogen > *:nth-child(5) {
  animation-delay: 0.65s;
}
.home .product .block_top .slogen > *:nth-child(6) {
  animation-delay: 0.78s;
}
.home .product .block_top .slogen > *:nth-child(7) {
  animation-delay: 0.91s;
}
.home .product .block_top .slogen > *:nth-child(8) {
  animation-delay: 1.04s;
}
.home .product .block_top .slogen > *:nth-child(9) {
  animation-delay: 1.17s;
}
.home .product .block_top .slogen > *:nth-child(10) {
  animation-delay: 1.3s;
}
.home .product .block_top .slogen > *:nth-child(11) {
  animation-delay: 1.43s;
}
.home .product .block_top .slogen > *:nth-child(12) {
  animation-delay: 1.56s;
}
.home .product .block_top .slogen > *:nth-child(13) {
  animation-delay: 1.69s;
}
.home .product .block_top .slogen > *:nth-child(14) {
  animation-delay: 1.82s;
}
.home .product .block_top .slogen > *:nth-child(15) {
  animation-delay: 1.95s;
}
.home .product .block_top .slogen > *:nth-child(16) {
  animation-delay: 2.08s;
}
.home .product .block_top .slogen > *:nth-child(17) {
  animation-delay: 2.21s;
}
.home .product .block_top .slogen > *:nth-child(18) {
  animation-delay: 2.34s;
}
.home .product .block_top .slogen > *:nth-child(19) {
  animation-delay: 2.47s;
}
.home .product .block_top .slogen > *:nth-child(20) {
  animation-delay: 2.6s;
}
.home .product .block_top .slogen > *:nth-child(21) {
  animation-delay: 2.73s;
}
.home .product .block_top .slogen > *:nth-child(22) {
  animation-delay: 2.86s;
}
.home .product .block_top .slogen > *:nth-child(23) {
  animation-delay: 2.99s;
}
.home .product .block_top .slogen > *:nth-child(24) {
  animation-delay: 3.12s;
}
.home .product .block_top .slogen > *:nth-child(25) {
  animation-delay: 3.25s;
}
.home .product .block_top .slogen > *:nth-child(26) {
  animation-delay: 3.38s;
}
.home .product .block_top .slogen > *:nth-child(27) {
  animation-delay: 3.51s;
}
.home .product .block_top .slogen > *:nth-child(28) {
  animation-delay: 3.64s;
}
.home .product .block_top .slogen > *:nth-child(29) {
  animation-delay: 3.77s;
}
.home .product .block_top .riht {
  max-width: 5rem;
  color: var(--themeColor);
  text-align: right;
  font-family: m_l;
  position: relative;
}
.home .product .block_top .riht::before {
  content: "";
  width: 0.05rem;
  height: 0.05rem;
  border-radius: 50%;
  background-color: var(--themeColor);
  position: absolute;
  left: 0.16rem;
  top: 0.13rem;
}
.home .product ul.container {
  margin-top: 0.7rem;
  display: flex;
}
.home .product ul.container > li {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home .product ul.container > li .img {
  width: 100%;
  position: relative;
  background-color: #000;
  border-radius: 0.3rem;
  overflow: hidden;
}
.home .product ul.container > li .img img {
  width: 100%;
  opacity: 0.7;
}
.home .product ul.container > li .img ul {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home .product ul.container > li .img ul a {
  display: block;
  white-space: nowrap;
  font-family: m_b;
  color: white;
  line-height: 1.2;
  transform: translateY(-0.3rem);
  opacity: 0;
  transition: all 0.3s;
}
.home .product ul.container > li .img ul a + a {
  margin-top: 0.2rem;
}
.home .product ul.container > li .img ul a:hover {
  color: var(--themeColor);
}
.home .product ul.container > li .img ul a:nth-child(1) {
  transition-delay: 0s;
}
.home .product ul.container > li .img ul a:nth-child(2) {
  transition-delay: 0.05s;
}
.home .product ul.container > li .img ul a:nth-child(3) {
  transition-delay: 0.1s;
}
.home .product ul.container > li .img ul a:nth-child(4) {
  transition-delay: 0.15s;
}
.home .product ul.container > li .img ul a:nth-child(5) {
  transition-delay: 0.2s;
}
.home .product ul.container > li .img > a {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%) translateY(0.2rem);
  opacity: 0;
  transition: all 0.3s;
  color: white;
}
.home .product ul.container > li .img > a::before {
  background-color: white;
  width: 0.3rem;
  line-height: 0.3rem;
  border-radius: 50%;
  margin-left: 0.1rem;
  color: var(--themeColor);
  text-align: center;
  font-size: 0.1rem;
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.home .product ul.container > li .img > a:hover::before {
  transform: none;
}
.home .product ul.container > li .img:hover ul a {
  transform: none;
  opacity: 1;
}
.home .product ul.container > li .img:hover > a {
  transform: translateX(-50%);
  opacity: 1;
}
.home .product ul.container > li h5 {
  margin-top: 0.38rem;
}
.home .product ul.container > li + li {
  margin-left: 0.9rem;
}
.home .product ul.container > li:nth-child(even) {
  flex-direction: column-reverse;
}
.home .product ul.container > li:nth-child(even) h5 {
  margin-top: 0;
  margin-bottom: 0.38rem;
}
.home .product ul.container > li > *:nth-child(2) {
  animation-delay: 0.26s;
}
.home .product ul.container > li > *:nth-child(3) {
  animation-delay: 0.39s;
}
.home .product ul.container > li > *:nth-child(4) {
  animation-delay: 0.52s;
}
.home .product ul.container > li > *:nth-child(5) {
  animation-delay: 0.65s;
}
.home .product ul.container > li > *:nth-child(6) {
  animation-delay: 0.78s;
}
.home .product ul.container > li > *:nth-child(7) {
  animation-delay: 0.91s;
}
.home .product ul.container > li > *:nth-child(8) {
  animation-delay: 1.04s;
}
.home .product ul.container > li > *:nth-child(9) {
  animation-delay: 1.17s;
}
.home .product ul.container > li > *:nth-child(10) {
  animation-delay: 1.3s;
}
.home .product ul.container > li > *:nth-child(11) {
  animation-delay: 1.43s;
}
.home .product ul.container > li > *:nth-child(12) {
  animation-delay: 1.56s;
}
.home .product ul.container > li > *:nth-child(13) {
  animation-delay: 1.69s;
}
.home .product ul.container > li > *:nth-child(14) {
  animation-delay: 1.82s;
}
.home .product ul.container > li > *:nth-child(15) {
  animation-delay: 1.95s;
}
.home .product ul.container > li > *:nth-child(16) {
  animation-delay: 2.08s;
}
.home .product ul.container > li > *:nth-child(17) {
  animation-delay: 2.21s;
}
.home .product ul.container > li > *:nth-child(18) {
  animation-delay: 2.34s;
}
.home .product ul.container > li > *:nth-child(19) {
  animation-delay: 2.47s;
}
.home .product ul.container > li > *:nth-child(20) {
  animation-delay: 2.6s;
}
.home .product ul.container > li > *:nth-child(21) {
  animation-delay: 2.73s;
}
.home .product ul.container > li > *:nth-child(22) {
  animation-delay: 2.86s;
}
.home .product ul.container > li > *:nth-child(23) {
  animation-delay: 2.99s;
}
.home .product ul.container > li > *:nth-child(24) {
  animation-delay: 3.12s;
}
.home .product ul.container > li > *:nth-child(25) {
  animation-delay: 3.25s;
}
.home .product ul.container > li > *:nth-child(26) {
  animation-delay: 3.38s;
}
.home .product ul.container > li > *:nth-child(27) {
  animation-delay: 3.51s;
}
.home .product ul.container > li > *:nth-child(28) {
  animation-delay: 3.64s;
}
.home .product ul.container > li > *:nth-child(29) {
  animation-delay: 3.77s;
}
.home .news {
  margin-top: 1.2rem;
}
.home .news .block_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home .news .block_top .slogen {
  display: flex;
  flex-direction: column;
  font-family: m_b;
  color: var(--themeColor);
  line-height: 1.2;
}
.home .news .block_top .slogen a {
  width: max-content;
  margin-top: 0.35rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  color: var(--themeColor);
}
.home .news .block_top .slogen a::before {
  margin-left: 0.1rem;
  font-size: 0.12rem;
  width: 0.3rem;
  line-height: 0.3rem;
  text-align: center;
  border-radius: 50%;
  border: 0.01rem solid var(--themeColor);
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.home .news .block_top .slogen a:hover::before {
  transform: none;
}
.home .news .block_top .slogen > *:nth-child(2) {
  animation-delay: 0.26s;
}
.home .news .block_top .slogen > *:nth-child(3) {
  animation-delay: 0.39s;
}
.home .news .block_top .slogen > *:nth-child(4) {
  animation-delay: 0.52s;
}
.home .news .block_top .slogen > *:nth-child(5) {
  animation-delay: 0.65s;
}
.home .news .block_top .slogen > *:nth-child(6) {
  animation-delay: 0.78s;
}
.home .news .block_top .slogen > *:nth-child(7) {
  animation-delay: 0.91s;
}
.home .news .block_top .slogen > *:nth-child(8) {
  animation-delay: 1.04s;
}
.home .news .block_top .slogen > *:nth-child(9) {
  animation-delay: 1.17s;
}
.home .news .block_top .slogen > *:nth-child(10) {
  animation-delay: 1.3s;
}
.home .news .block_top .slogen > *:nth-child(11) {
  animation-delay: 1.43s;
}
.home .news .block_top .slogen > *:nth-child(12) {
  animation-delay: 1.56s;
}
.home .news .block_top .slogen > *:nth-child(13) {
  animation-delay: 1.69s;
}
.home .news .block_top .slogen > *:nth-child(14) {
  animation-delay: 1.82s;
}
.home .news .block_top .slogen > *:nth-child(15) {
  animation-delay: 1.95s;
}
.home .news .block_top .slogen > *:nth-child(16) {
  animation-delay: 2.08s;
}
.home .news .block_top .slogen > *:nth-child(17) {
  animation-delay: 2.21s;
}
.home .news .block_top .slogen > *:nth-child(18) {
  animation-delay: 2.34s;
}
.home .news .block_top .slogen > *:nth-child(19) {
  animation-delay: 2.47s;
}
.home .news .block_top .slogen > *:nth-child(20) {
  animation-delay: 2.6s;
}
.home .news .block_top .slogen > *:nth-child(21) {
  animation-delay: 2.73s;
}
.home .news .block_top .slogen > *:nth-child(22) {
  animation-delay: 2.86s;
}
.home .news .block_top .slogen > *:nth-child(23) {
  animation-delay: 2.99s;
}
.home .news .block_top .slogen > *:nth-child(24) {
  animation-delay: 3.12s;
}
.home .news .block_top .slogen > *:nth-child(25) {
  animation-delay: 3.25s;
}
.home .news .block_top .slogen > *:nth-child(26) {
  animation-delay: 3.38s;
}
.home .news .block_top .slogen > *:nth-child(27) {
  animation-delay: 3.51s;
}
.home .news .block_top .slogen > *:nth-child(28) {
  animation-delay: 3.64s;
}
.home .news .block_top .slogen > *:nth-child(29) {
  animation-delay: 3.77s;
}
.home .news .block_top .riht {
  display: flex;
}
.home .news .block_top .riht .iconfont {
  width: 0.6rem;
  line-height: 0.6rem;
  background-color: var(--themeColor);
  border: 0.02rem solid var(--themeColor);
  border-radius: 50%;
  color: white;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.home .news .block_top .riht .iconfont + .iconfont {
  margin-left: 0.1rem;
}
.home .news .block_top .riht .iconfont:hover {
  background-color: transparent;
  color: var(--themeColor);
}
.home .news .block_top .riht > *:nth-child(2) {
  animation-delay: 0.26s;
}
.home .news .block_top .riht > *:nth-child(3) {
  animation-delay: 0.39s;
}
.home .news .block_top .riht > *:nth-child(4) {
  animation-delay: 0.52s;
}
.home .news .block_top .riht > *:nth-child(5) {
  animation-delay: 0.65s;
}
.home .news .block_top .riht > *:nth-child(6) {
  animation-delay: 0.78s;
}
.home .news .block_top .riht > *:nth-child(7) {
  animation-delay: 0.91s;
}
.home .news .block_top .riht > *:nth-child(8) {
  animation-delay: 1.04s;
}
.home .news .block_top .riht > *:nth-child(9) {
  animation-delay: 1.17s;
}
.home .news .block_top .riht > *:nth-child(10) {
  animation-delay: 1.3s;
}
.home .news .block_top .riht > *:nth-child(11) {
  animation-delay: 1.43s;
}
.home .news .block_top .riht > *:nth-child(12) {
  animation-delay: 1.56s;
}
.home .news .block_top .riht > *:nth-child(13) {
  animation-delay: 1.69s;
}
.home .news .block_top .riht > *:nth-child(14) {
  animation-delay: 1.82s;
}
.home .news .block_top .riht > *:nth-child(15) {
  animation-delay: 1.95s;
}
.home .news .block_top .riht > *:nth-child(16) {
  animation-delay: 2.08s;
}
.home .news .block_top .riht > *:nth-child(17) {
  animation-delay: 2.21s;
}
.home .news .block_top .riht > *:nth-child(18) {
  animation-delay: 2.34s;
}
.home .news .block_top .riht > *:nth-child(19) {
  animation-delay: 2.47s;
}
.home .news .block_top .riht > *:nth-child(20) {
  animation-delay: 2.6s;
}
.home .news .block_top .riht > *:nth-child(21) {
  animation-delay: 2.73s;
}
.home .news .block_top .riht > *:nth-child(22) {
  animation-delay: 2.86s;
}
.home .news .block_top .riht > *:nth-child(23) {
  animation-delay: 2.99s;
}
.home .news .block_top .riht > *:nth-child(24) {
  animation-delay: 3.12s;
}
.home .news .block_top .riht > *:nth-child(25) {
  animation-delay: 3.25s;
}
.home .news .block_top .riht > *:nth-child(26) {
  animation-delay: 3.38s;
}
.home .news .block_top .riht > *:nth-child(27) {
  animation-delay: 3.51s;
}
.home .news .block_top .riht > *:nth-child(28) {
  animation-delay: 3.64s;
}
.home .news .block_top .riht > *:nth-child(29) {
  animation-delay: 3.77s;
}
.home .news .swiper {
  overflow: hidden;
  margin-top: 0.8rem;
}
.home .news .swiper .swiper-slide {
  cursor: url("../image/logo2.svg"), pointer;
}
.home .news .swiper .swiper-slide .img {
  overflow: hidden;
  border-radius: 0.25rem;
}
.home .news .swiper .swiper-slide .img img {
  transition: all 0.3s;
}
.home .news .swiper .swiper-slide span {
  color: var(--themeColor);
  display: block;
  margin: 0.3rem 0;
}
.home .news .swiper .swiper-slide h3 {
  color: #3e3a39;
  line-height: 1.2;
}
.home .news .swiper .swiper-slide p {
  color: #595757;
  margin-top: 0.26rem;
}
.home .news .swiper .swiper-slide:hover img {
  transform: scale(1.05);
}
.home .news .swiper .swiper-slide > *:nth-child(1) {
  animation-delay: 0.13s;
}
.home .news .swiper .swiper-slide > *:nth-child(2) {
  animation-delay: 0.26s;
}
.home .news .swiper .swiper-slide > *:nth-child(3) {
  animation-delay: 0.39s;
}
.home .news .swiper .swiper-slide > *:nth-child(4) {
  animation-delay: 0.52s;
}
.home .news .swiper .swiper-slide > *:nth-child(5) {
  animation-delay: 0.65s;
}
.home .news .swiper .swiper-slide > *:nth-child(6) {
  animation-delay: 0.78s;
}
.home .news .swiper .swiper-slide > *:nth-child(7) {
  animation-delay: 0.91s;
}
.home .news .swiper .swiper-slide > *:nth-child(8) {
  animation-delay: 1.04s;
}
.home .news .swiper .swiper-slide > *:nth-child(9) {
  animation-delay: 1.17s;
}
.home .news .swiper .swiper-slide > *:nth-child(10) {
  animation-delay: 1.3s;
}
.home .news .swiper .swiper-slide > *:nth-child(11) {
  animation-delay: 1.43s;
}
.home .news .swiper .swiper-slide > *:nth-child(12) {
  animation-delay: 1.56s;
}
.home .news .swiper .swiper-slide > *:nth-child(13) {
  animation-delay: 1.69s;
}
.home .news .swiper .swiper-slide > *:nth-child(14) {
  animation-delay: 1.82s;
}
.home .news .swiper .swiper-slide > *:nth-child(15) {
  animation-delay: 1.95s;
}
.home .news .swiper .swiper-slide > *:nth-child(16) {
  animation-delay: 2.08s;
}
.home .news .swiper .swiper-slide > *:nth-child(17) {
  animation-delay: 2.21s;
}
.home .news .swiper .swiper-slide > *:nth-child(18) {
  animation-delay: 2.34s;
}
.home .news .swiper .swiper-slide > *:nth-child(19) {
  animation-delay: 2.47s;
}
.home .news .swiper .swiper-slide > *:nth-child(20) {
  animation-delay: 2.6s;
}
.home .news .swiper .swiper-slide > *:nth-child(21) {
  animation-delay: 2.73s;
}
.home .news .swiper .swiper-slide > *:nth-child(22) {
  animation-delay: 2.86s;
}
.home .news .swiper .swiper-slide > *:nth-child(23) {
  animation-delay: 2.99s;
}
.home .news .swiper .swiper-slide > *:nth-child(24) {
  animation-delay: 3.12s;
}
.home .news .swiper .swiper-slide > *:nth-child(25) {
  animation-delay: 3.25s;
}
.home .news .swiper .swiper-slide > *:nth-child(26) {
  animation-delay: 3.38s;
}
.home .news .swiper .swiper-slide > *:nth-child(27) {
  animation-delay: 3.51s;
}
.home .news .swiper .swiper-slide > *:nth-child(28) {
  animation-delay: 3.64s;
}
.home .news .swiper .swiper-slide > *:nth-child(29) {
  animation-delay: 3.77s;
}
/* 关于我们 */
.about #descript {
  margin-top: 1.34rem;
  display: flex;
  align-items: center;
  position: relative;
}
.about #descript .le {
  position: absolute;
  top: 50%;
  font-size: 1.7rem;
  left: calc(-1 * var(--cm));
  color: transparent;
  -webkit-text-stroke: 0.02rem #eee;
  /* 宽度 + 颜色 */
  text-stroke: 0.02rem #eee;
  /* 标准写法（部分浏览器不支持） */
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
}
.about #descript .left {
  flex: 1;
  margin-right: -1rem;
  position: relative;
  z-index: 2;
}
.about #descript .left h2 {
  color: var(--themeColor);
}
.about #descript .left p {
  margin-top: 1rem;
  color: #3e3a39;
  background-color: white;
  padding: 0.55rem 0.55rem 0 0;
}
.about #descript .right {
  width: 6.9rem;
}
.about #vision {
  margin-top: 1.66rem;
  position: relative;
}
.about #vision .sdl {
  font-size: 1.28rem;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: -0.5rem;
  margin-left: 50vw;
  color: #eeeeee;
}
.about #vision .sdl > *:nth-child(1) {
  animation-delay: 0.13s;
}
.about #vision .sdl > *:nth-child(2) {
  animation-delay: 0.26s;
}
.about #vision .sdl > *:nth-child(3) {
  animation-delay: 0.39s;
}
.about #vision .sdl > *:nth-child(4) {
  animation-delay: 0.52s;
}
.about #vision .sdl > *:nth-child(5) {
  animation-delay: 0.65s;
}
.about #vision .sdl > *:nth-child(6) {
  animation-delay: 0.78s;
}
.about #vision .sdl > *:nth-child(7) {
  animation-delay: 0.91s;
}
.about #vision .sdl > *:nth-child(8) {
  animation-delay: 1.04s;
}
.about #vision .sdl > *:nth-child(9) {
  animation-delay: 1.17s;
}
.about #vision .sdl > *:nth-child(10) {
  animation-delay: 1.3s;
}
.about #vision .sdl > *:nth-child(11) {
  animation-delay: 1.43s;
}
.about #vision .sdl > *:nth-child(12) {
  animation-delay: 1.56s;
}
.about #vision .sdl > *:nth-child(13) {
  animation-delay: 1.69s;
}
.about #vision .sdl > *:nth-child(14) {
  animation-delay: 1.82s;
}
.about #vision .sdl > *:nth-child(15) {
  animation-delay: 1.95s;
}
.about #vision .sdl > *:nth-child(16) {
  animation-delay: 2.08s;
}
.about #vision .sdl > *:nth-child(17) {
  animation-delay: 2.21s;
}
.about #vision .sdl > *:nth-child(18) {
  animation-delay: 2.34s;
}
.about #vision .sdl > *:nth-child(19) {
  animation-delay: 2.47s;
}
.about #vision .sdl > *:nth-child(20) {
  animation-delay: 2.6s;
}
.about #vision .sdl > *:nth-child(21) {
  animation-delay: 2.73s;
}
.about #vision .sdl > *:nth-child(22) {
  animation-delay: 2.86s;
}
.about #vision .sdl > *:nth-child(23) {
  animation-delay: 2.99s;
}
.about #vision .sdl > *:nth-child(24) {
  animation-delay: 3.12s;
}
.about #vision .sdl > *:nth-child(25) {
  animation-delay: 3.25s;
}
.about #vision .sdl > *:nth-child(26) {
  animation-delay: 3.38s;
}
.about #vision .sdl > *:nth-child(27) {
  animation-delay: 3.51s;
}
.about #vision .sdl > *:nth-child(28) {
  animation-delay: 3.64s;
}
.about #vision .sdl > *:nth-child(29) {
  animation-delay: 3.77s;
}
.about #vision img {
  position: relative;
  z-index: 9;
}
.about #vision .text {
  background: rgba(255, 255, 255, 0.76);
  position: absolute;
  right: var(--cm);
  bottom: 0;
  width: 7.83rem;
  padding: 0.84rem 0.46rem 1.14rem 0.83rem;
  z-index: 10;
}
.about #vision .text h3 {
  color: var(--themeColor);
}
.about #vision .text p {
  color: #3e3a39;
}
.about #history {
  padding: 1.2rem 0 0;
  margin-bottom: -1.2rem;
  background-image: url(../image/history.png);
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.about #history .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}
.about #history .container .right {
  display: flex;
}
.about #history .container .right .iconfont {
  width: 0.6rem;
  line-height: 0.6rem;
  background-color: var(--themeColor);
  border: 0.02rem solid var(--themeColor);
  border-radius: 50%;
  color: white;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.about #history .container .right .iconfont + .iconfont {
  margin-left: 0.1rem;
}
.about #history .container .right .iconfont:hover {
  background-color: transparent;
  color: var(--themeColor);
}
.about #history .container .right > *:nth-child(1) {
  animation-delay: 0.13s;
}
.about #history .container .right > *:nth-child(2) {
  animation-delay: 0.26s;
}
.about #history .container .right > *:nth-child(3) {
  animation-delay: 0.39s;
}
.about #history .container .right > *:nth-child(4) {
  animation-delay: 0.52s;
}
.about #history .container .right > *:nth-child(5) {
  animation-delay: 0.65s;
}
.about #history .container .right > *:nth-child(6) {
  animation-delay: 0.78s;
}
.about #history .container .right > *:nth-child(7) {
  animation-delay: 0.91s;
}
.about #history .container .right > *:nth-child(8) {
  animation-delay: 1.04s;
}
.about #history .container .right > *:nth-child(9) {
  animation-delay: 1.17s;
}
.about #history .container .right > *:nth-child(10) {
  animation-delay: 1.3s;
}
.about #history .container .right > *:nth-child(11) {
  animation-delay: 1.43s;
}
.about #history .container .right > *:nth-child(12) {
  animation-delay: 1.56s;
}
.about #history .container .right > *:nth-child(13) {
  animation-delay: 1.69s;
}
.about #history .container .right > *:nth-child(14) {
  animation-delay: 1.82s;
}
.about #history .container .right > *:nth-child(15) {
  animation-delay: 1.95s;
}
.about #history .container .right > *:nth-child(16) {
  animation-delay: 2.08s;
}
.about #history .container .right > *:nth-child(17) {
  animation-delay: 2.21s;
}
.about #history .container .right > *:nth-child(18) {
  animation-delay: 2.34s;
}
.about #history .container .right > *:nth-child(19) {
  animation-delay: 2.47s;
}
.about #history .container .right > *:nth-child(20) {
  animation-delay: 2.6s;
}
.about #history .container .right > *:nth-child(21) {
  animation-delay: 2.73s;
}
.about #history .container .right > *:nth-child(22) {
  animation-delay: 2.86s;
}
.about #history .container .right > *:nth-child(23) {
  animation-delay: 2.99s;
}
.about #history .container .right > *:nth-child(24) {
  animation-delay: 3.12s;
}
.about #history .container .right > *:nth-child(25) {
  animation-delay: 3.25s;
}
.about #history .container .right > *:nth-child(26) {
  animation-delay: 3.38s;
}
.about #history .container .right > *:nth-child(27) {
  animation-delay: 3.51s;
}
.about #history .container .right > *:nth-child(28) {
  animation-delay: 3.64s;
}
.about #history .container .right > *:nth-child(29) {
  animation-delay: 3.77s;
}
.about #history .swiper {
  overflow-x: hidden;
}
.about #history .swiper .swiper-slide {
  position: relative;
  padding-left: 0.4rem;
  height: 6.7rem;
}
.about #history .swiper .swiper-slide .year {
  transition: all 0.7s;
}
.about #history .swiper .swiper-slide ul {
  width: 200%;
  margin-top: 0.54rem;
}
.about #history .swiper .swiper-slide ul li {
  margin-top: 0.3rem;
  opacity: 0;
  transform: translateY(0.1rem);
}
.about #history .swiper .swiper-slide ul li p {
  font-family: m_l;
}
.about #history .swiper .swiper-slide::before {
  content: "";
  border: 1px solid #ea5514;
  width: 0.19rem;
  height: 0.19rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.7s;
}
.about #history .swiper .swiper-slide::after {
  content: "";
  width: 0;
  height: calc(100% - 0.19rem);
  border-left: 1px solid;
  border-image: linear-gradient(90deg, #d9d9d9, rgba(217, 217, 217, 0)) 1 1;
  position: absolute;
  bottom: 0;
  left: 0.1rem;
  transition: all 0.7s;
}
.about #history .swiper .swiper-slide.swiper-slide-active .year {
  color: var(--themeColor);
}
.about #history .swiper .swiper-slide.swiper-slide-active::before {
  background-color: var(--themeColor);
}
.about #history .swiper .swiper-slide.swiper-slide-active::after {
  border-color: var(--themeColor);
  border-image: none;
}
.about #history .swiper .swiper-slide.swiper-slide-active ul li {
  transition: all 0.7s;
  opacity: 1;
  transform: none;
}
.about #history .swiper .swiper-slide.swiper-slide-active ul li:nth-child(1) {
  transition-delay: 0.7s;
}
.about #history .swiper .swiper-slide.swiper-slide-active ul li:nth-child(2) {
  transition-delay: 0.8s;
}
.about #history .swiper .swiper-slide.swiper-slide-active ul li:nth-child(3) {
  transition-delay: 0.9s;
}
.about #history .swiper .swiper-slide.swiper-slide-active ul li:nth-child(4) {
  transition-delay: 1s;
}
.about #history .swiper .swiper-slide.swiper-slide-active ul li:nth-child(5) {
  transition-delay: 1.1s;
}
.about #history .big_year {
  font-size: 1.28rem;
  font-family: m_b;
  overflow: hidden;
  line-height: 1;
  color: var(--themeColor);
  position: absolute;
  left: var(--cm);
  bottom: 20%;
  z-index: 9;
}
/* 解决方案 */
.solution .cate {
  display: flex;
  margin: 1.2rem auto;
}
.solution .cate a {
  flex: 1;
  position: relative;
}
.solution .cate a .text {
  position: absolute;
  bottom: 0.26rem;
  left: 0.26rem;
  right: 0.26rem;
  background-color: white;
  border-radius: 0.14rem;
  padding: 0.3rem;
}
.solution .cate a .text p {
  margin-top: 0.1rem;
  font-family: m_l;
  line-height: 1.4;
}
.solution .cate a + a {
  margin-left: 0.27rem;
}
.solution .cate > *:nth-child(1) {
  animation-delay: 0.13s;
}
.solution .cate > *:nth-child(2) {
  animation-delay: 0.26s;
}
.solution .cate > *:nth-child(3) {
  animation-delay: 0.39s;
}
.solution .cate > *:nth-child(4) {
  animation-delay: 0.52s;
}
.solution .cate > *:nth-child(5) {
  animation-delay: 0.65s;
}
.solution .cate > *:nth-child(6) {
  animation-delay: 0.78s;
}
.solution .cate > *:nth-child(7) {
  animation-delay: 0.91s;
}
.solution .cate > *:nth-child(8) {
  animation-delay: 1.04s;
}
.solution .cate > *:nth-child(9) {
  animation-delay: 1.17s;
}
.solution .cate > *:nth-child(10) {
  animation-delay: 1.3s;
}
.solution .cate > *:nth-child(11) {
  animation-delay: 1.43s;
}
.solution .cate > *:nth-child(12) {
  animation-delay: 1.56s;
}
.solution .cate > *:nth-child(13) {
  animation-delay: 1.69s;
}
.solution .cate > *:nth-child(14) {
  animation-delay: 1.82s;
}
.solution .cate > *:nth-child(15) {
  animation-delay: 1.95s;
}
.solution .cate > *:nth-child(16) {
  animation-delay: 2.08s;
}
.solution .cate > *:nth-child(17) {
  animation-delay: 2.21s;
}
.solution .cate > *:nth-child(18) {
  animation-delay: 2.34s;
}
.solution .cate > *:nth-child(19) {
  animation-delay: 2.47s;
}
.solution .cate > *:nth-child(20) {
  animation-delay: 2.6s;
}
.solution .cate > *:nth-child(21) {
  animation-delay: 2.73s;
}
.solution .cate > *:nth-child(22) {
  animation-delay: 2.86s;
}
.solution .cate > *:nth-child(23) {
  animation-delay: 2.99s;
}
.solution .cate > *:nth-child(24) {
  animation-delay: 3.12s;
}
.solution .cate > *:nth-child(25) {
  animation-delay: 3.25s;
}
.solution .cate > *:nth-child(26) {
  animation-delay: 3.38s;
}
.solution .cate > *:nth-child(27) {
  animation-delay: 3.51s;
}
.solution .cate > *:nth-child(28) {
  animation-delay: 3.64s;
}
.solution .cate > *:nth-child(29) {
  animation-delay: 3.77s;
}
.solution .advantage {
  padding: 1.2rem 0;
  background: #f5f5f5;
  margin-bottom: -1.2rem;
}
.solution .advantage .cont {
  margin-top: 0.36rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.42rem;
}
.solution .advantage .cont .item {
  background-color: white;
  padding: 0.6rem 0.46rem 0.6rem 0.75rem;
  border-radius: 0.2rem;
  color: var(--themeColor);
  transition: all 0.3s;
}
.solution .advantage .cont .item .icon {
  width: 0.43rem;
  position: relative;
}
.solution .advantage .cont .item .icon img {
  transition: all 0.3s;
}
.solution .advantage .cont .item .icon img:last-child {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.solution .advantage .cont .item h3 {
  margin-top: 0.7rem;
  position: relative;
  transition: all 0.3s;
  white-space: nowrap;
}
.solution .advantage .cont .item h3::before {
  content: "";
  position: absolute;
  width: 0.14rem;
  height: 0.14rem;
  border-radius: 50%;
  background-color: var(--themeColor);
  left: -0.35rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.solution .advantage .cont .item p {
  width: 80%;
  transition: all 0.3s;
}
.solution .advantage .cont .item:hover {
  background-color: var(--themeColor);
  color: white;
}
.solution .advantage .cont .item:hover .icon img:first-child {
  opacity: 0;
}
.solution .advantage .cont .item:hover .icon img:last-child {
  opacity: 1;
}
.solution .advantage .cont .item:hover h3::before {
  background-color: white;
}
.solution .advantage .cont > *:nth-child(1) {
  animation-delay: 0.13s;
}
.solution .advantage .cont > *:nth-child(2) {
  animation-delay: 0.26s;
}
.solution .advantage .cont > *:nth-child(3) {
  animation-delay: 0.39s;
}
.solution .advantage .cont > *:nth-child(4) {
  animation-delay: 0.52s;
}
.solution .advantage .cont > *:nth-child(5) {
  animation-delay: 0.65s;
}
.solution .advantage .cont > *:nth-child(6) {
  animation-delay: 0.78s;
}
.solution .advantage .cont > *:nth-child(7) {
  animation-delay: 0.91s;
}
.solution .advantage .cont > *:nth-child(8) {
  animation-delay: 1.04s;
}
.solution .advantage .cont > *:nth-child(9) {
  animation-delay: 1.17s;
}
.solution .advantage .cont > *:nth-child(10) {
  animation-delay: 1.3s;
}
.solution .advantage .cont > *:nth-child(11) {
  animation-delay: 1.43s;
}
.solution .advantage .cont > *:nth-child(12) {
  animation-delay: 1.56s;
}
.solution .advantage .cont > *:nth-child(13) {
  animation-delay: 1.69s;
}
.solution .advantage .cont > *:nth-child(14) {
  animation-delay: 1.82s;
}
.solution .advantage .cont > *:nth-child(15) {
  animation-delay: 1.95s;
}
.solution .advantage .cont > *:nth-child(16) {
  animation-delay: 2.08s;
}
.solution .advantage .cont > *:nth-child(17) {
  animation-delay: 2.21s;
}
.solution .advantage .cont > *:nth-child(18) {
  animation-delay: 2.34s;
}
.solution .advantage .cont > *:nth-child(19) {
  animation-delay: 2.47s;
}
.solution .advantage .cont > *:nth-child(20) {
  animation-delay: 2.6s;
}
.solution .advantage .cont > *:nth-child(21) {
  animation-delay: 2.73s;
}
.solution .advantage .cont > *:nth-child(22) {
  animation-delay: 2.86s;
}
.solution .advantage .cont > *:nth-child(23) {
  animation-delay: 2.99s;
}
.solution .advantage .cont > *:nth-child(24) {
  animation-delay: 3.12s;
}
.solution .advantage .cont > *:nth-child(25) {
  animation-delay: 3.25s;
}
.solution .advantage .cont > *:nth-child(26) {
  animation-delay: 3.38s;
}
.solution .advantage .cont > *:nth-child(27) {
  animation-delay: 3.51s;
}
.solution .advantage .cont > *:nth-child(28) {
  animation-delay: 3.64s;
}
.solution .advantage .cont > *:nth-child(29) {
  animation-delay: 3.77s;
}
/* 解决方案详情 */
.solution-info .cont {
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
}
.solution-info .cont .left {
  width: 3.6rem;
  position: sticky;
  top: calc(var(--headerHeight) + 0.5rem);
}
.solution-info .cont .left li {
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
}
.solution-info .cont .left li h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  line-height: 1;
  cursor: pointer;
}
.solution-info .cont .left li .ls {
  margin-left: 0.1rem;
  margin-top: 0.2rem;
  display: none;
}
.solution-info .cont .left li .ls a {
  display: block;
  margin-top: 0.05rem;
  color: #595757;
  transition: color 0.3s;
}
.solution-info .cont .left li .ls a:hover,
.solution-info .cont .left li .ls a.active {
  color: var(--themeColor);
}
.solution-info .cont .left li.active h3::before {
  transform: rotate(180deg);
}
.solution-info .cont .left li + li {
  margin-top: 0.5rem;
}
.solution-info .cont .right {
  position: sticky;
  top: calc(var(--headerHeight) + 0.5rem);
  flex: 1;
  margin-left: 1.43rem;
}
.solution-info .cont .right .download {
  margin-top: 0.4rem;
  border-top: 0.01rem solid #d9d9d9;
  padding-top: 0.4rem;
}
.solution-info .cont .right .download a {
  width: max-content;
  margin-top: 0.34rem;
  line-height: 0.5rem;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  color: white;
  background-color: var(--themeColor);
  border: 0.02rem solid var(--themeColor);
  padding: 0 0.2rem;
  border-radius: 1rem;
  transition: all 0.3s;
}
.solution-info .cont .right .download a::before {
  margin-left: 0.1rem;
}
.solution-info .cont .right .download a:hover {
  background-color: transparent;
  color: var(--themeColor);
}
/* 新闻 */
.news .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.36rem 0.6rem;
  margin: 1.2rem auto;
}
.news .list a {
  cursor: url("../image/logo2.svg"), pointer;
}
.news .list a .img {
  overflow: hidden;
  border-radius: 0.25rem;
}
.news .list a .img img {
  transition: all 0.3s;
}
.news .list a span {
  color: var(--themeColor);
  display: block;
  margin: 0.3rem 0;
}
.news .list a h3 {
  color: #3e3a39;
  line-height: 1.2;
}
.news .list a p {
  color: #595757;
  margin-top: 0.26rem;
}
.news .list a:hover img {
  transform: scale(1.05);
}
.news .list a > *:nth-child(1) {
  animation-delay: 0.13s;
}
.news .list a > *:nth-child(2) {
  animation-delay: 0.26s;
}
.news .list a > *:nth-child(3) {
  animation-delay: 0.39s;
}
.news .list a > *:nth-child(4) {
  animation-delay: 0.52s;
}
.news .list a > *:nth-child(5) {
  animation-delay: 0.65s;
}
.news .list a > *:nth-child(6) {
  animation-delay: 0.78s;
}
.news .list a > *:nth-child(7) {
  animation-delay: 0.91s;
}
.news .list a > *:nth-child(8) {
  animation-delay: 1.04s;
}
.news .list a > *:nth-child(9) {
  animation-delay: 1.17s;
}
.news .list a > *:nth-child(10) {
  animation-delay: 1.3s;
}
.news .list a > *:nth-child(11) {
  animation-delay: 1.43s;
}
.news .list a > *:nth-child(12) {
  animation-delay: 1.56s;
}
.news .list a > *:nth-child(13) {
  animation-delay: 1.69s;
}
.news .list a > *:nth-child(14) {
  animation-delay: 1.82s;
}
.news .list a > *:nth-child(15) {
  animation-delay: 1.95s;
}
.news .list a > *:nth-child(16) {
  animation-delay: 2.08s;
}
.news .list a > *:nth-child(17) {
  animation-delay: 2.21s;
}
.news .list a > *:nth-child(18) {
  animation-delay: 2.34s;
}
.news .list a > *:nth-child(19) {
  animation-delay: 2.47s;
}
.news .list a > *:nth-child(20) {
  animation-delay: 2.6s;
}
.news .list a > *:nth-child(21) {
  animation-delay: 2.73s;
}
.news .list a > *:nth-child(22) {
  animation-delay: 2.86s;
}
.news .list a > *:nth-child(23) {
  animation-delay: 2.99s;
}
.news .list a > *:nth-child(24) {
  animation-delay: 3.12s;
}
.news .list a > *:nth-child(25) {
  animation-delay: 3.25s;
}
.news .list a > *:nth-child(26) {
  animation-delay: 3.38s;
}
.news .list a > *:nth-child(27) {
  animation-delay: 3.51s;
}
.news .list a > *:nth-child(28) {
  animation-delay: 3.64s;
}
.news .list a > *:nth-child(29) {
  animation-delay: 3.77s;
}
/* 新闻详情 */
.news-info main.container {
  margin-top: 2.5rem;
  max-width: 10rem;
  position: relative;
}
.news-info main.container .date {
  font-family: m_b;
  color: var(--themeColor);
  margin-top: 0.15rem;
}
.news-info main.container .rich {
  margin-top: 0.5rem;
  border-top: 0.01rem solid #e8e8e8;
  padding-top: 0.5rem;
  min-height: 60vh;
}
.news-info main.container .back {
  position: absolute;
  left: -3rem;
  top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(51, 51, 51, 0.8);
}
.news-info main.container .back .iconfont {
  width: 0.6rem;
  height: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f1f1;
  color: #000;
  margin-bottom: 0.1rem;
  cursor: pointer;
  transition: all 0.3s;
}
.news-info main.container .back .iconfont:hover {
  background-color: var(--themeColor);
  color: white;
}
/* 联系我们 */
.contact main.container {
  margin-top: 2.5rem;
  display: flex;
}
.contact main.container .left {
  flex: 1;
}
.contact main.container .left h1 {
  line-height: 1;
}
.contact main.container .left ul {
  margin-top: 0.6rem;
}
.contact main.container .left ul li .iconfont {
  color: var(--themeColor);
  font-weight: 500;
}
.contact main.container .left ul li div {
  display: flex;
}
.contact main.container .left ul li div a {
  width: 0.46rem;
}
.contact main.container .left ul li div a img {
  width: 100%;
}
.contact main.container .left ul li div a + a {
  margin-left: 0.08rem;
}
.contact main.container .left ul li a {
  line-height: 1.2;
  display: block;
  margin-top: 0.08rem;
}
.contact main.container .left ul li a:hover:not([href="JavaScript:;"]) {
  color: var(--themeColor);
}
.contact main.container .left ul li + li {
  margin-top: 0.38rem;
}
.contact main.container .left ul > *:nth-child(1) {
  animation-delay: 0.13s;
}
.contact main.container .left ul > *:nth-child(2) {
  animation-delay: 0.26s;
}
.contact main.container .left ul > *:nth-child(3) {
  animation-delay: 0.39s;
}
.contact main.container .left ul > *:nth-child(4) {
  animation-delay: 0.52s;
}
.contact main.container .left ul > *:nth-child(5) {
  animation-delay: 0.65s;
}
.contact main.container .left ul > *:nth-child(6) {
  animation-delay: 0.78s;
}
.contact main.container .left ul > *:nth-child(7) {
  animation-delay: 0.91s;
}
.contact main.container .left ul > *:nth-child(8) {
  animation-delay: 1.04s;
}
.contact main.container .left ul > *:nth-child(9) {
  animation-delay: 1.17s;
}
.contact main.container .left ul > *:nth-child(10) {
  animation-delay: 1.3s;
}
.contact main.container .left ul > *:nth-child(11) {
  animation-delay: 1.43s;
}
.contact main.container .left ul > *:nth-child(12) {
  animation-delay: 1.56s;
}
.contact main.container .left ul > *:nth-child(13) {
  animation-delay: 1.69s;
}
.contact main.container .left ul > *:nth-child(14) {
  animation-delay: 1.82s;
}
.contact main.container .left ul > *:nth-child(15) {
  animation-delay: 1.95s;
}
.contact main.container .left ul > *:nth-child(16) {
  animation-delay: 2.08s;
}
.contact main.container .left ul > *:nth-child(17) {
  animation-delay: 2.21s;
}
.contact main.container .left ul > *:nth-child(18) {
  animation-delay: 2.34s;
}
.contact main.container .left ul > *:nth-child(19) {
  animation-delay: 2.47s;
}
.contact main.container .left ul > *:nth-child(20) {
  animation-delay: 2.6s;
}
.contact main.container .left ul > *:nth-child(21) {
  animation-delay: 2.73s;
}
.contact main.container .left ul > *:nth-child(22) {
  animation-delay: 2.86s;
}
.contact main.container .left ul > *:nth-child(23) {
  animation-delay: 2.99s;
}
.contact main.container .left ul > *:nth-child(24) {
  animation-delay: 3.12s;
}
.contact main.container .left ul > *:nth-child(25) {
  animation-delay: 3.25s;
}
.contact main.container .left ul > *:nth-child(26) {
  animation-delay: 3.38s;
}
.contact main.container .left ul > *:nth-child(27) {
  animation-delay: 3.51s;
}
.contact main.container .left ul > *:nth-child(28) {
  animation-delay: 3.64s;
}
.contact main.container .left ul > *:nth-child(29) {
  animation-delay: 3.77s;
}
.contact main.container .right {
  width: 8.38rem;
  margin-left: 0.8rem;
}
.contact main.container .right p {
  margin-bottom: 1rem;
  color: #595757;
  line-height: 1;
  font-family: m_l;
}
.contact main.container .right .form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.2rem;
}
.contact main.container .right .form input,
.contact main.container .right .form textarea {
  background-color: #f1f5f5;
  border-radius: 0.1rem;
  padding: 0.2rem;
  border: 0.02rem solid #f1f5f5;
  transition: all 0.3s;
}
.contact main.container .right .form input::placeholder,
.contact main.container .right .form textarea::placeholder {
  color: #999999;
}
.contact main.container .right .form input:focus,
.contact main.container .right .form textarea:focus {
  border-color: var(--themeColor);
}
.contact main.container .right .form .row {
  grid-column-start: 1;
  grid-column-end: 3;
}
.contact main.container .right .btn {
  margin-top: 0.3rem;
  border: 0.02rem solid var(--themeColor);
  background-color: var(--themeColor);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 2;
}
.contact main.container .right .btn:hover {
  background-color: transparent;
  color: var(--themeColor);
}
.contact main.container .right > *:nth-child(1) {
  animation-delay: 0.13s;
}
.contact main.container .right > *:nth-child(2) {
  animation-delay: 0.26s;
}
.contact main.container .right > *:nth-child(3) {
  animation-delay: 0.39s;
}
.contact main.container .right > *:nth-child(4) {
  animation-delay: 0.52s;
}
.contact main.container .right > *:nth-child(5) {
  animation-delay: 0.65s;
}
.contact main.container .right > *:nth-child(6) {
  animation-delay: 0.78s;
}
.contact main.container .right > *:nth-child(7) {
  animation-delay: 0.91s;
}
.contact main.container .right > *:nth-child(8) {
  animation-delay: 1.04s;
}
.contact main.container .right > *:nth-child(9) {
  animation-delay: 1.17s;
}
.contact main.container .right > *:nth-child(10) {
  animation-delay: 1.3s;
}
.contact main.container .right > *:nth-child(11) {
  animation-delay: 1.43s;
}
.contact main.container .right > *:nth-child(12) {
  animation-delay: 1.56s;
}
.contact main.container .right > *:nth-child(13) {
  animation-delay: 1.69s;
}
.contact main.container .right > *:nth-child(14) {
  animation-delay: 1.82s;
}
.contact main.container .right > *:nth-child(15) {
  animation-delay: 1.95s;
}
.contact main.container .right > *:nth-child(16) {
  animation-delay: 2.08s;
}
.contact main.container .right > *:nth-child(17) {
  animation-delay: 2.21s;
}
.contact main.container .right > *:nth-child(18) {
  animation-delay: 2.34s;
}
.contact main.container .right > *:nth-child(19) {
  animation-delay: 2.47s;
}
.contact main.container .right > *:nth-child(20) {
  animation-delay: 2.6s;
}
.contact main.container .right > *:nth-child(21) {
  animation-delay: 2.73s;
}
.contact main.container .right > *:nth-child(22) {
  animation-delay: 2.86s;
}
.contact main.container .right > *:nth-child(23) {
  animation-delay: 2.99s;
}
.contact main.container .right > *:nth-child(24) {
  animation-delay: 3.12s;
}
.contact main.container .right > *:nth-child(25) {
  animation-delay: 3.25s;
}
.contact main.container .right > *:nth-child(26) {
  animation-delay: 3.38s;
}
.contact main.container .right > *:nth-child(27) {
  animation-delay: 3.51s;
}
.contact main.container .right > *:nth-child(28) {
  animation-delay: 3.64s;
}
.contact main.container .right > *:nth-child(29) {
  animation-delay: 3.77s;
}
/* 加入我们 */
.join main.container {
  margin-top: 1rem;
}
.join main.container h1 {
  margin-bottom: 0.6rem;
}
.join main.container > ul .lavle {
  display: flex;
  line-height: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
}
.join main.container > ul .lavle div {
  flex: 1;
  color: #333;
  text-align: center;
}
.join main.container > ul > .lavle {
  background-color: #3e3a39;
  font-family: m_b;
}
.join main.container > ul > .lavle div {
  color: white;
}
.join main.container > ul > li {
  margin-top: 0.3rem;
  border: 1px solid #d9d9d9;
  transition: all 0.3s;
}
.join main.container > ul > li .cont {
  display: none;
}
.join main.container > ul > li .cont .text {
  padding: 0.7rem;
  color: #595757;
}
.join main.container > ul > li .cont .text .item p {
  margin-bottom: 0.2rem;
}
.join main.container > ul > li .cont .text .item ul {
  padding-left: 0.3rem;
}
.join main.container > ul > li .cont .text .item ul li {
  list-style: disc;
}
.join main.container > ul > li .cont .text .item + .item {
  margin-top: 0.7rem;
}
.join main.container > ul > li .cont .text a {
  display: block;
  margin-top: 0.7rem;
  width: max-content;
  background-color: var(--themeColor);
  line-height: 0.5rem;
  padding: 0 0.2rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  color: white;
  font-weight: 500;
  border: 0.02rem solid var(--themeColor);
  transition: all 0.3s;
}
.join main.container > ul > li .cont .text a::before {
  width: 0.3rem;
  line-height: 0.3rem;
  background-color: white;
  color: var(--themeColor);
  border-radius: 50%;
  margin-left: 0.1rem;
  font-size: 0.1rem;
  text-align: center;
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.join main.container > ul > li .cont .text a:hover {
  background-color: transparent;
  color: var(--themeColor);
}
.join main.container > ul > li .cont .text a:hover::before {
  background-color: var(--themeColor);
  color: white;
  transform: none;
}
.join main.container > ul > li.active .lavle {
  background: #eeeeee;
}
/* 隐私政策 */
.policy main.container {
  margin-top: 2.5rem;
  max-width: 10rem;
}
.policy main.container > h1 {
  margin: 0.7rem auto 0.6rem;
  text-align: center;
}
/* 手机 */
@media (max-width: 450px) {
  :root {
    --headerHeight: 60px;
    --container: 92vw;
  }
  body {
    font-size: 15px;
  }
  .iconfont,
  .iconfont::before {
    font-size: 16px !important;
  }
  .moblie {
    display: block;
  }
  .fs-64,
  .fs-60,
  .fs-48 {
    font-size: 30px;
  }
  .fs-42 {
    font-size: 26px;
  }
  .fs-40 {
    font-size: 24px;
  }
  .fs-38,
  .fs-36 {
    font-size: 22px;
  }
  .fs-32 {
    font-size: 21px;
  }
  .fs-28,
  .fs-30 {
    font-size: 20px;
  }
  .fs-26,
  .fs-27 {
    font-size: 19px;
  }
  .fs-24 {
    font-size: 18px;
  }
  .fs-22 {
    font-size: 17px;
  }
  .fs-20 {
    font-size: 16px;
  }
  .fs-18 {
    font-size: 14px;
  }
  .fs-16,
  .fs-15,
  .fs-14 {
    font-size: 13px;
  }
  .fs-13,
  .fs-12 {
    font-size: 12px;
  }
  .iconfont {
    font-size: 16px;
  }
  .header .top {
    line-height: 2;
  }
  .header > .container .menu {
    position: absolute;
    left: 100vw;
    top: 100%;
    background-color: white;
    width: 100vw;
    height: calc(100vh - var(--headerHeight));
    text-align: center;
    display: block;
    transition: all 0.3s;
  }
  .header > .container .menu.active {
    left: 0;
  }
  .header > .container .menu li + li {
    margin-left: 0;
  }
  .header > .container .right .search_box {
    width: 50vw;
    line-height: 2;
    padding: 0 20px;
  }
  .header > .container .right .search_box input {
    font-size: 14px;
  }
  .header > .container .menu li .childs {
    position: static;
  }
  .header > .container .menu li .childs .container {
    display: block;
  }
  .header > .container .menu li .childs .container img {
    display: none;
  }
  body.no-scroll {
    overflow: hidden;
  }
  .header {
    padding: 12px 0;
    background-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .header.had,
  .header.active {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
  }
  .header,
  .header.had,
  .header.active {
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    border-radius: 0;
  }
  .header > .container {
    align-items: center;
  }
  .header > .container .logo {
    height: 48px;
    width: auto;
  }
  .header > .container .logo img {
    height: 100%;
    width: auto;
  }
  .header > .container .nav-actions {
    gap: 12px;
  }
  .header > .container .nav-actions .lang {
    width: auto;
    padding: 0 18px;
    line-height: 36px;
    font-size: 14px;
    border-color: rgba(234, 85, 20, 0.18);
  }
  .header > .container .nav-actions .menu_btn {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-color: rgba(255, 255, 255, 0.6);
  }
  .header > .container .nav-actions .menu_btn span {
    background-color: #ffffff;
    height: 3px;
  }
  .header > .container .nav-actions .menu_btn.active {
    border-color: rgba(234, 85, 20, 0.6);
  }
  .header > .container .nav-actions .menu_btn.active span {
    background-color: var(--themeColor);
  }
  .header > .container .nav-actions .menu_btn.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .header > .container .nav-actions .menu_btn.active span:nth-child(2) {
    opacity: 0;
  }
  .header > .container .nav-actions .menu_btn.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  /* had/active 状态时（移动端）菜单按钮为黑色 */
  .header.had > .container .nav-actions .menu_btn,
  .header.active > .container .nav-actions .menu_btn {
    border-color: rgba(0, 0, 0, 0.2);
  }
  .header.had > .container .nav-actions .menu_btn span,
  .header.active > .container .nav-actions .menu_btn span {
    background-color: #3e3a39;
  }
  .header > .container .menu {
    padding: 72px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
  }
  .header > .container .menu li {
    width: 100%;
  }
  .header > .container .menu li > a {
    padding: 14px 32px;
    text-align: left;
    color: #3e3a39;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header > .container .menu li > a:hover,
  .header > .container .menu li > a.active {
    color: var(--themeColor);
  }
  .header > .container .menu li.menu_box > a::after {
    transition: transform 0.3s;
  }
  .header > .container .menu li.menu_box > a.open::after {
    transform: rotate(180deg);
  }
  .header > .container .menu li .childs {
    background-color: #f9f9f9;
    padding: 0 32px 12px;
    border-bottom: 1px solid #f0f0f0;
    display: none;
  }
  .header > .container .menu li .childs a {
    padding: 10px 0;
    font-size: 14px;
    color: #595757;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .header > .container .menu li .childs a:last-child {
    border-bottom: none;
  }
  .header > .container .menu li .childs a:hover,
  .header > .container .menu li .childs a.active {
    color: var(--themeColor);
  }
  .home .banner .swiper .swiper-slide {
    aspect-ratio: 9 / 14;
  }
  .home .banner .swiper .swiper-slide .text {
    width: 86vw;
    top: 45%;
    transform: translate(-50%, -50%);
  }
  .home .banner .swiper .swiper-slide .text h2 {
    margin-bottom: 16px;
  }
  .home .banner .swiper .swiper-slide .btm {
    top: auto;
    bottom: 12%;
    flex-direction: column;
    gap: 16px;
  }
  .home .banner .swiper .swiper-slide .btm a {
    width: auto;
    line-height: 44px;
    padding: 0 24px;
  }
  .home .banner .swiper .swiper-slide .btm a,
  .home .banner .swiper .swiper-slide .btm .iconfont {
    margin-left: 0;
  }
  .home .banner .swiper .pagi {
    top: auto;
    bottom: 5%;
    right: 50%;
    transform: translateX(50%);
    flex-direction: row;
    gap: 12px;
  }
  .home .maps {
    margin-top: 36px;
  }
  .home .maps .slogen {
    align-items: flex-start;
    text-align: left;
  }
  .home .maps .mains {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .home .maps .mains ul {
    margin-left: 0;
    order: 2;
  }
  .home .maps .mains .map_wrap {
    width: 100%;
    order: 1;
  }
  .home .maps .mains .map_wrap::before,
  .home .maps .mains .map_wrap::after,
  .home .maps .mains #map::before {
    display: none;
  }
  .home .maps .mains #map {
    width: 100%;
    aspect-ratio: 16 / 12;
  }
  .home .maps .popup {
    width: 54vw !important;
    padding: 16px !important;
  }
  .home .maps .slogen a::before,
  .home .product .block_top .slogen a::before,
  .home .product ul li .img > a::before,
  .home .news .block_top .slogen a::before {
    font-size: 10px !important;
    width: 28px;
    line-height: 28px;
    margin-left: 6px;
  }
  .home .product ul.container > li .img > a,
  .home .product ul.container > li .img ul a {
    opacity: 1;
    transform: none;
  }
  .footer .container .top .right ul li + li {
    margin-left: 0;
  }
  .home .product ul.container > li .img > a {
    transform: translateX(-50%);
  }
  .home .product ul.container > li .img > a::before {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .home .product {
    padding: 44px 0 32px;
  }
  .home .product .block_top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .home .product .block_top .riht {
    max-width: none;
    text-align: left;
  }
  .home .product ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .home .product ul li {
    flex-direction: column;
  }
  .home .product ul li + li {
    margin-left: 0;
    margin-top: 24px;
  }
  .home .product ul.container > li + li {
    margin-left: 0;
    margin-top: 24px;
  }
  .home .product ul li:nth-child(even) {
    flex-direction: column;
  }
  .home .product ul li:nth-child(even) h5 {
    margin-bottom: 0;
  }
  .home .product ul.container > li:nth-child(even) {
    flex-direction: column;
  }
  .home .product ul li h5 {
    margin-top: 24px;
  }
  .home .news {
    margin-top: 36px;
  }
  .home .news .block_top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .home .news .block_top .riht {
    order: -1;
    display: flex;
    gap: 12px;
  }
  .home .news .block_top .riht .iconfont {
    width: 42px;
    line-height: 42px;
    font-size: 16px;
  }
  .home .news .swiper {
    margin-top: 24px;
  }
  .home .news .block_top .riht .iconfont::before,
  .solution .advantage .cont .item h3::before,
  .contact main.container .left ul li .iconfont {
    font-size: 20px;
  }
  .page_banner .text {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    padding-bottom: 0;
    border: none;
    width: 88vw;
    text-align: center;
  }
  .solution .cate {
    flex-direction: column;
    margin: 32px auto;
  }
  .solution .cate a + a {
    margin-left: 0;
    margin-top: 20px;
  }
  .solution .cate a .text {
    position: static;
    margin-top: 16px;
  }
  .solution .advantage {
    padding: 32px 0;
    margin-bottom: -32px;
  }
  .solution .advantage .cont {
    grid-template-columns: 1fr;
  }
  .solution .advantage .cont .item {
    padding: 32px 24px;
  }
  .solution .advantage .cont .item h3 {
    white-space: normal;
  }
  .solution .advantage .cont .item p {
    width: 100%;
  }
  .solution-info .cont {
    flex-direction: column;
    margin-top: 48px;
  }
  .solution-info .cont .left {
    width: 100%;
    position: static;
    top: auto;
    margin-top: 80px;
  }
  .solution-info .cont .right {
    position: static;
    margin-left: 0;
    margin-top: 32px;
  }
  .news .list {
    grid-template-columns: 1fr;
    grid-gap: 24px;
    margin: 36px auto;
  }
  .news-info main.container {
    margin-top: 48px;
    max-width: none;
    padding-bottom: 48px;
  }
  .news-info main.container .back {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 24px;
    gap: 8px;
    margin-top: 20px;
  }
  .policy main.container {
    margin-top: 48px;
    max-width: none;
  }
  .contact main.container {
    margin-top: 48px;
    flex-direction: column;
  }
  .contact main.container .right {
    width: 100%;
    margin-left: 0;
    margin-top: 32px;
  }
  .contact main.container .right .form {
    grid-template-columns: 1fr;
  }
  .contact main.container .right .form .row {
    grid-column: auto;
  }
  .join main.container {
    margin-top: 48px;
  }
  .join main.container > ul > .lavle {
    display: none;
  }
  .join main.container > ul .lavle {
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.8;
    padding: 20px 16px;
    gap: 12px;
  }
  .join main.container > ul .lavle div {
    width: 100%;
    text-align: left;
  }
  .join main.container > ul > li .cont .text {
    padding: 24px 16px;
  }
  .footer {
    margin-top: 36px;
    padding-top: 32px;
  }
  .footer .container .top {
    flex-direction: column;
    gap: 32px;
  }
  .footer .container .top .left {
    width: 100%;
  }
  .footer .container .top .left .logo {
    width: 60px;
  }
  .footer .container .top .left .contact a::before {
    font-size: 20px;
    margin-right: 8px;
  }
  .footer .container .top .right {
    width: 100%;
  }
  .footer .container .top .right ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .footer .container .top .right ul li {
    margin: 0;
  }
  .footer .container .top .right ul li a + a {
    margin-top: 10px;
  }
  .footer .container .top .right .bm {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer .container .top .right .bm .ll {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer .container .top .right .bm .ll div {
    display: flex;
    gap: 16px;
  }
  .footer .container .top .right .bm .ll div a img {
    width: 40px;
  }
  .footer .container .top .right .bm .rr {
    align-self: flex-start;
    width: 40px;
    line-height: 40px;
  }
  .footer .container .btm {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .page_banner img {
    height: 100vw;
    object-fit: cover;
  }
  .page_banner .text h1 {
    font-size: 30px;
  }
  .about #descript .left h2 {
    line-height: 1.3;
  }
  .about #descript {
    display: block;
  }
  .about #descript .right {
    width: 100%;
  }
  .about #vision .text {
    position: static;
    width: 100%;
  }
  .about #history .container .right .iconfont {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about #history .swiper .swiper-slide {
    height: auto;
    padding-bottom: 30px;
  }
  .solution-info .cont {
    display: block;
  }
  .solution-info .cont .right .download a {
    line-height: 2;
    padding: 0 20px;
  }
  .pages a,
  .pagination a,
  .pages span,
  .pagination span {
    width: 30px;
    line-height: 30px;
  }
  .news-info main.container .back .iconfont {
    width: 25px;
    height: 25px;
  }
  .contact main.container .left ul li div a {
    width: 30px;
  }
  .contact main.container .right .form textarea,
  .contact main.container .right .form input {
    font-size: 15px;
  }
  .join main.container > ul > li .cont .text a {
    line-height: 2;
  }
  .join main.container > ul > li .cont .text a::before {
    width: 25px;
    line-height: 25px;
    font-size: 12px !important;
  }
  .about #history .swiper .swiper-slide .year {
    font-size: 23px;
  }
  
  .fs-17 {
    font-size: 15px;
  }
  
  .solution .advantage .cont .item .icon {
      width: 40px;
  }
}
