  @charset "utf-8";
/*初始化样式*/
*,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*设置平滑*/
html {
  scroll-behavior: smooth;
  font-size: calc(100 * 100vw / 1920);
}
body {
  font: 14px HONORSansCN-Regular, '微软雅黑', "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  color: #000;
  overflow-x: hidden;
  line-height: 1.8;
}
/*字体引入*/
@font-face {
  font-family: HONORSansCN-Regular;
  src: url("/static/home/webfonts/HONORSansCN-Regular.ttf") format('truetype');
}
@font-face {
  font-family: HONORSansCN-Bold;
  src: url("/static/home/webfonts/HONORSansCN-Bold.ttf") format('truetype');
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
ol,
ul {
  padding-left: 20px;
}
li::marker {
  color: var(--dominant-color);
}
img {
  vertical-align: top;
  border: 0;
  transition: all 0.5s;
}
input,
select,
textarea,
button {
  vertical-align: middle;
  font-family: '微软雅黑';
}
textarea,
input {
  text-indent: 10px;
}
/*表单元素默认有20像素的缩进*/
input[type='submit'],
input[type='button'],
button {
  text-indent: 0;
  text-align: center;
  cursor: pointer;
}
label,
button,
a {
  cursor: pointer;
}
ins,
em,
b,
i {
  text-decoration: none;
  font-style: normal;
}
/* 去掉浏览器激活样式 */
select:focus,
textarea:focus,
input:focus,
button {
  outline: none;
  border: none;
}
/* 提示文字的初始样式 */
input::-webkit-input-placeholder,
input::-moz-input-placeholder,
textarea::-webkit-textarea-placeholder,
textarea::-moz-textarea-placeholder {
  color: #999;
  transition: color 0.5s;
}
/* 提示文字的激活样式 */
input:focus::-webkit-input-placeholder,
input:focus::-moz-input-placeholder,
input:hover::-webkit-input-placeholder,
input:hover::-moz-input-placeholder,
textarea:focus::-webkit-input-placeholder,
textarea:focus::-moz-input-placeholder,
textarea:hover::-webkit-input-placeholder,
textarea:hover::-moz-input-placeholder {
  color: #c2c2c2;
}
/* table */
table {
  border-collapse: collapse;
  border-spacing: 0;
  font: inherit;
}
/* a_link */
a {
  color: inherit;
  text-decoration: none;
}
a[href] {
  cursor: pointer;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
}
li {
  max-width: 100%;
}
p {
  white-space: normal;
  max-width: 100%;
}
audio,
canvas,
progress,
video {
  vertical-align: baseline;
}
/*用来解决在安卓上的点击出现篮框问题*/
body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/*解决ios上去除微信点击蓝色边框 */
a:focus,
input:focus,
p:focus,
div:focus {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
img[src=""],
img:not([src]) {
  opacity: 0;
}
font {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  text-transform: inherit;
}
/*默认input样式*/
.input {
  border: 1px solid #e5e5e5;
  width: 100%;
  height: 40px;
  color: #666;
}
input[type=checkbox] {
  appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid #333;
  position: relative;
  text-indent: 0;
}
input[type=checkbox]:checked {
  background: var(--dominant-color) !important;
  border-color: var(--dominant-color) !important;
}
input[type=checkbox]:checked ~ span {
  color: var(--dominant-color);
}
input[type=checkbox]:checked::after {
  content: '?';
  color: #fff;
  position: absolute;
  top: -2px;
  left: 0;
  margin: auto;
  width: 14px;
  height: 14px;
}
input[type=radio] {
  border: 1px solid #e5e5e5;
  width: 14px;
  height: 14px;
}
textarea {
  resize: none;
  border: 1px solid #e5e5e5;
  width: 100%;
  min-height: 100px;
  padding: 10px 0;
}
select {
  height: 40px;
  width: 100%;
  padding: 0 20px;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  color: #666;
  background-size: 11px;
}
.pc {
  display: block;
}
.phone {
  display: none;
}
/*滚动条样式*/
::-webkit-scrollbar {
  width: 6px;
  background-color: #eaeaea;
}
::-webkit-scrollbar-thumb {
  width: 5px;
  border-radius: 10px;
  background-color: var(--dominant-color);
}
::-webkit-scrollbar-corner {
  background-color: #eaeaea;
  height: 10px;
}
::-webkit-scrollbar:horizontal {
  height: 5px;
}
::-webkit-selection {
  background: var(--dominant-color);
  color: #fff;
}
::-moz-selection {
  background: var(--dominant-color);
  color: #fff;
}
/*限制行数*/
.clamp1,
.clamp2,
.clamp3,
.clamp4,
.clamp5,
.clamp6,
.clamp7,
.clamp8 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.clamp1 {
  -webkit-line-clamp: 1;
}
.clamp2 {
  -webkit-line-clamp: 2;
}
.clamp3 {
  -webkit-line-clamp: 3;
}
.clamp4 {
  -webkit-line-clamp: 4;
}
.clamp5 {
  -webkit-line-clamp: 5;
}
.clamp6 {
  -webkit-line-clamp: 6;
}
.clamp7 {
  -webkit-line-clamp: 7;
}
.clamp8 {
  -webkit-line-clamp: 8;
}
/*swiper样式设置*/
body .swiper-button-prev:focus,
body .swiper-button-next:focus,
body .swiper-pagination-bullet:focus {
  outline: none;
}
/*swiper默认样式*/
body .swiper-button-prev,
body .swiper-button-next {
  color: var(--dominant-color);
  width: clamp(30px, 0.55rem, 55px);
  height: clamp(30px, 0.55rem, 55px);
  flex-direction: row;
  transition: all 0.5s;
  background: #fff;
  border-radius: 50%;
  z-index: 2;
  font-size: clamp(14px, 0.2rem, 20px);
  background: url('/static/home/images/img8.png') no-repeat center / contain;
}
body .swiper-button-prev::after,
body .swiper-button-next::after {
  display: none;
}
body .swiper-button-prev:hover,
body .swiper-button-next:hover {
  background: var(--dominant-color);
  border-color: var(--dominant-color);
  background: url('/static/home/images/img9.png') no-repeat center / contain;
}
body .swiper-button-prev:hover::after,
body .swiper-button-next:hover::after {
  color: #fff;
}
body .swiper-button-prev:hover i,
body .swiper-button-next:hover i {
  color: #fff;
}
body .swiper-button-prev {
  left: 30px;
}
body .swiper-button-next {
  right: 30px;
}
body .swiper-button-prev::after,
body .swiper-button-next::after {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  body .swiper-button-prev::after,
  body .swiper-button-next::after {
    font-size: 12px;
  }
}
/*默认弹窗样式*/
.pop-up {
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
.pop-up .mask {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.pop-up .pop-up-box {
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.pop-up .pop-up-box .loading-box {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: auto;
  height: 100%;
}
.pop-up .pop-up-box video {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.pop-up .pop-up-box .pop-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  transition: 0.5s;
}
.pop-up .pop-up-box .pop-close i {
  font-size: 36px;
  color: #fff;
}
.form-susses {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 18px;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.05);
  padding: 40px 50px;
  border-radius: 10px;
  height: fit-content;
  z-index: 999;
  background: #fff;
  width: fit-content;
  display: none;
  align-items: center;
}
.form-susses i {
  color: var(--dominant-color);
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  input::placeholder,
  textarea::placeholder {
    font-size: 12px !important;
  }
  .pc {
    display: none;
  }
  .phone {
    display: block;
  }
}
/*-----默认配置------*/
.section {
  width: 90%;
  max-width: 1600px;
  margin: auto;
}
img {
  vertical-align: middle;
  max-width: 100%;
}
.imgBox {
  overflow: hidden;
  position: relative;
  height: 0;
  padding-bottom: 100%;
}
.imgBox img {
  width: 100%;
  max-width: 100%;
  transition: all 0.5s;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.imgBox video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.imgBox-hover:hover img {
  transition: all 0.5s;
  transform: scale(1.02);
}
/*头部样式*/
header {
  width: 100%;
  z-index: 10;
  transition: all 0.5s;
  position: fixed;
  top: 0;
  height: clamp(60px, 0.8rem, 80px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  /*搜索*/
  /*搜索*/
  /*语言*/
  /*语言*/
}
header.z-active {
  z-index: 99;
}
header.active,
header.hover-active {
  background: #ffffff;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
}
header.active .header-box .header-menu nav .first-item .first-item-title,
header.hover-active .header-box .header-menu nav .first-item .first-item-title {
  color: rgba(0, 0, 0, 0.6);
}
header.active .logo,
header.hover-active .logo {
  filter: none !Important;
}
header.active .header-box .header-menu nav .first-item .first-item-title::after,
header.hover-active .header-box .header-menu nav .first-item .first-item-title::after {
  background: var(--dominant-color);
}
@media screen and (max-width: 1024px) {
  header {
    position: sticky;
    background: #fff;
  }
}
header .header-phone-click {
  cursor: pointer;
  width: 22px;
  height: 16px;
  align-items: center;
  position: relative;
  right: 0;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  header .header-phone-click {
    display: flex;
    order: 3;
    margin-left: 0;
  }
}
header .header-phone-click .phone-click-line {
  height: 2px;
  background: #000;
  width: 100%;
  transition: all 0.5s;
  overflow: hidden;
}
header .header-phone-click .phone-click-line::before,
header .header-phone-click .phone-click-line::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 0.5s;
}
header .header-phone-click .phone-click-line::before {
  top: 0;
  transition: all 0.5s;
}
header .header-phone-click .phone-click-line::after {
  bottom: 0;
  transition: all 0.5s;
}
header .header-phone-click.active .phone-click-line {
  background: transparent;
  transition: all 0.5s;
}
header .header-phone-click.active .phone-click-line::before {
  margin: auto;
  transition: all 0.5s;
  transform: translateY(7px) rotate(45deg);
}
header .header-phone-click.active .phone-click-line::after {
  margin: auto;
  transition: all 0.5s;
  transform: translateY(-7px) rotate(-45deg);
}
header .header-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding-left: 35px;
  /*logo*/
  /*logo*/
}
@media screen and (max-width: 1024px) {
  header .header-box {
    padding-left: 5%;
    padding-right: 5%;
    margin: auto;
  }
}
header .header-box .logo {
  width: clamp(123px, 2.46rem, 246px);
  filter: grayscale(1) brightness(10);
}
@media screen and (max-width: 1024px) {
  header .header-box .logo {
    justify-content: flex-start;
    display: block;
    filter: none;
  }
  header .header-box .logo.pc {
    display: none;
  }
}
header .header-box .logo img {
  max-width: inherit;
  max-height: 100%;
  object-fit: contain;
  width: 100%;
}
header .header-box .header-menu {
  height: 100%;
  /*导航*/
  /*导航*/
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu {
    width: 100%;
    position: absolute;
    background: #fff;
    top: 60px;
    height: 100vh;
    z-index: 10;
    left: 0;
    margin-left: 0;
    padding: 30px 5% 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: none;
    overflow: auto;
  }
}
header .header-box .header-menu nav {
  width: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: flex-start;
  gap: 0.55rem;
  margin-left: clamp(70px, 0.7rem, 70px);
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    gap: 0;
    margin-left: 0;
  }
}
header .header-box .header-menu nav .first-item {
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item {
    height: auto;
    width: 100%;
    margin-right: 0;
    justify-content: flex-start;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
  }
}
header .header-box .header-menu nav .first-item .first-box {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .first-box {
    border-bottom: 1px solid #eee;
  }
}
header .header-box .header-menu nav .first-item.active .first-box::after,
header .header-box .header-menu nav .first-item:hover .first-box::after {
  opacity: 1;
}
header .header-box .header-menu nav .first-item.active .first-item-title,
header .header-box .header-menu nav .first-item:hover .first-item-title {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item.active .first-item-title::after,
header .header-box .header-menu nav .first-item:hover .first-item-title::after {
  opacity: 1;
}
header .header-box .header-menu nav .first-item .first-item-title {
  font-size: clamp(14px, 0.2rem, 20px);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
  transition: all 0.5s;
  width: 100%;
  font-family: HONORSansCN-Bold;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .first-item-title {
    height: 50px;
    width: 100%;
    justify-content: flex-start;
    color: #333;
  }
}
header .header-box .header-menu nav .first-item .first-item-title::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  opacity: 0;
  transition: all 0.5s;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .first-item-title::after {
    display: none;
  }
}
header .header-box .header-menu nav .first-item i {
  display: none;
  width: 50px;
  height: 50px;
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item i {
    display: block;
  }
}
header .header-box .header-menu nav .first-item i::before,
header .header-box .header-menu nav .first-item i::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #000;
}
header .header-box .header-menu nav .first-item i::before {
  width: 14px;
  height: 2px;
}
header .header-box .header-menu nav .first-item i::after {
  height: 14px;
  width: 2px;
}
header .header-box .header-menu nav .first-item i.active {
  transform: rotate(45deg);
}
header .header-box .header-menu nav .first-item .second-box {
  border-bottom: 2px solid var(--dominant-color);
  position: absolute;
  top: clamp(60px, 0.8rem, 80px);
  -webkit-box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  background: #ffffff;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  padding: clamp(20px, 0.6rem, 60px) 0;
  /*特殊*/
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box {
    width: 100%;
    position: relative;
    top: 0;
    background: none;
    opacity: 1;
    visibility: visible;
    transform: translate(0);
    padding: 0;
    box-shadow: none;
    border: none;
    display: none;
    transition: all 0s;
    pointer-events: auto;
    left: 0;
  }
}
header .header-box .header-menu nav .first-item .second-box.single {
  padding: clamp(20px, 0.2rem, 20px) 0;
  width: clamp(100px, 1.8rem, 180px);
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box.single {
    width: 100%;
  }
}
header .header-box .header-menu nav .first-item .second-box.single .second-item {
  width: fit-content;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box.single .second-item {
    width: 100%;
    margin-left: 0;
  }
}
header .header-box .header-menu nav .first-item .second-box.single .second-item .second-item-title {
  font-size: clamp(14px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.6);
  font-family: HONORSansCN-Regular;
  border-bottom: none;
}
header .header-box .header-menu nav .first-item .second-box::before {
  position: absolute;
  height: 10px;
  left: 0;
  top: -10px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box::before {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box::after {
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  margin: auto;
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: #eee transparent transparent;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box::after {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box .section {
  display: grid;
  gap: clamp(20px, 0.4rem, 40px) clamp(20px, 0.7rem, 70px);
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .section {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
header .header-box .header-menu nav .first-item .second-box .brand-section {
  width: clamp(12.9rem, 12.9rem, 1290px);
  position: relative;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .brand-section {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
header .header-box .header-menu nav .first-item .second-box .brand-section .second-item {
  width: clamp(3.5rem, 3.5rem, 350px);
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .brand-section .second-item {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .brand-section .second-item .second-item-title {
    position: relative;
  }
}
header .header-box .header-menu nav .first-item .second-box .second-item {
  height: fit-content;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .second-item {
    position: relative;
  }
}
header .header-box .header-menu nav .first-item .second-box .second-item i {
  bottom: auto;
  height: 40px;
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title {
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(14px, 0.24rem, 24px);
  transition: all 0.2s;
  line-height: 1.4;
  text-align: left;
  padding: 10px 0;
  font-family: HONORSansCN-Bold;
  border-bottom: 1px solid #dfdfdf;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title {
    color: #000;
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #eee;
  }
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title span {
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title span {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title:hover {
    color: var(--dominant-color);
  }
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title:hover {
  color: var(--dominant-color);
  border-color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item .second-box .second-item .second-item-title:hover span {
  opacity: 1;
}
header .header-box .header-menu nav .first-item .second-box .second-item:hover .three-box2 {
  opacity: 1;
  pointer-events: auto;
}
header .header-box .header-menu nav .first-item .second-box .three-box {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(10px, 0.3rem, 30px);
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .three-box {
    padding: 0;
    pointer-events: auto;
    position: initial;
    opacity: 1;
    display: none;
    border: none;
    width: 100%;
  }
}
header .header-box .header-menu nav .first-item .second-box .three-box .three-box-box {
  height: fit-content;
  display: grid;
}
header .header-box .header-menu nav .first-item .second-box .three-box.active {
  display: block;
}
header .header-box .header-menu nav .first-item .second-box .three-box .three-item-title {
  margin-bottom: 20px;
  display: block;
  transition: all 0.5s;
  color: rgba(0, 0, 0, 0.6);
  font-size: clamp(14px, 0.2rem, 20px);
  border-bottom: 1px solid transparent;
  padding-bottom: 6px;
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .three-box .three-item-title {
    margin-bottom: 0;
    padding: 10px 20px;
    width: 100%;
  }
}
header .header-box .header-menu nav .first-item .second-box .three-box .three-item-title:hover {
  color: var(--dominant-color);
  border-bottom: 1px solid var(--dominant-color);
}
header .header-box .header-menu nav .first-item .second-box .three-box::after {
  width: 20px;
  height: 100%;
  left: -10px;
  position: absolute;
  top: 0;
  background: #fff;
  z-index: -1;
}
header .header-box .header-menu nav .first-item .second-box .three-box2 {
  opacity: 0;
  width: clamp(3.5rem, 3.5rem, 350px);
  padding-left: clamp(1rem, 1rem, 100px);
  position: absolute;
  left: clamp(5rem, 5rem, 500px);
  top: 0;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .three-box2 {
    position: relative;
    width: 100%;
    padding-left: 20px;
    left: 0;
    opacity: 1;
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box .three-box2::after {
  content: '';
  top: 0;
  left: clamp(0.6rem, 0.6rem, 60px);
  background: #d1d1d1;
  width: 1px;
  height: 100%;
  position: absolute;
  display: none;
}
header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item {
  color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(13px, 0.2rem, 20px);
  transition: all 0.2s;
  line-height: 1.6;
  text-align: left;
  padding-bottom: 12px;
  position: relative;
  margin-bottom: clamp(0.28rem, 0.28rem, 28px);
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item {
    display: block;
    padding: 10px 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid transparent;
  font-family: HONORSansCN-Bold;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item a {
    color: #000;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item a span {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item:hover a,
header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item.active a {
  color: var(--dominant-color);
  border-bottom: 2px solid var(--dominant-color);
}
header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item:hover .four-item {
  opacity: 1;
}
header .header-box .header-menu nav .first-item .second-box .four-item {
  opacity: 0;
  position: absolute;
  left: 100%;
  top: 0;
  width: clamp(4.7rem, 4.7rem, 470px);
  padding-left: clamp(1.2rem, 1.2rem, 120px);
  height: 100%;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .four-item {
    position: relative;
    left: 10px;
    width: 100%;
    padding-left: 0;
    opacity: 1;
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box .four-item::after {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: clamp(0.6rem, 0.6rem, 60px);
  background: #d1d1d1;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .four-item::after {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box .four-item a {
  padding: 12px 0;
  display: block;
  color: rgba(0, 0, 0, 0.6);
  font-size: clamp(14px, 0.2rem, 20px);
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .four-item a {
    padding: 10px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box {
  width: 100vw;
  min-height: 338px;
  padding: 0;
  position: fixed;
  border-radius: 0;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box {
    position: relative;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box {
  align-items: flex-start;
  padding: 50px 0;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .product-box {
    width: 100%;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .left {
  flex-basis: 300px;
  background: #fff;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .left {
    flex-basis: 100px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-title {
  margin-bottom: 20px;
  color: #888;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-item {
  color: #333;
  margin-bottom: 10px;
  width: 100%;
  background: #f8f8f8;
  padding: 15px;
  font-size: 14px;
  transition: all 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-item {
    font-size: 12px;
    padding: 10px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-item:hover,
header .header-box .header-menu nav .first-item .second-box.product-second-box .left .p-item.active {
  background: #e7e7e7;
  color: #2f2f2f;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right {
  margin-left: 60px;
  flex: 1;
  border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .right {
    margin-left: 10px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items {
  display: none;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-title {
  color: #333;
  margin-bottom: 20px;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items.active {
  display: block;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item {
    display: flex;
    overflow: auto;
    grid-gap: 10px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item .item {
  background: #f1f2f4;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item .item {
    flex-shrink: 0;
    width: 130px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item .item .imgBox {
  padding-bottom: 75%;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .right .p-items .p-item .title {
  color: #333;
  text-align: center;
  margin-top: 10px;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item {
  flex-basis: 20%;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item {
    flex-basis: 100%;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item:nth-child(n + 6) {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item:nth-child(n + 6) {
    margin-top: 0;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .img {
  height: 40px;
  position: relative;
  display: block;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .img {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .img img {
  height: auto;
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .second-item-title {
  color: #222;
  text-align: left;
  padding: 0;
  transition: all 0.5s;
  margin-top: 10px;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .second-item-title {
    margin-top: 10px;
    padding: 0 10px;
    position: relative;
    width: 100%;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .second-item-title:hover {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .three-box {
  margin-top: 10px;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .three-box {
    margin-top: 0;
    display: none;
    padding-left: 30px;
    margin-bottom: 10px;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .three-box .three-item-title {
  display: block;
  transition: all 0.5s;
  font-size: 12px;
  color: #999;
  width: fit-content;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .three-box .three-item-title:hover {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item .three-box .three-item-title.news {
  color: var(--dominant-color);
  font-size: 12px;
}
header .header-box .header-menu nav .first-item .second-box.product-second-box .second-item:hover .three-box {
  opacity: 1;
  visibility: visible;
}
header .header-box .header-menu nav .first-item .second-box.product-menu {
  padding: 0;
}
header .header-box .header-menu nav .first-item .second-box.product-menu::before {
  content: '';
  width: 1px;
  height: 100%;
  left: clamp(5rem, 5rem, 500px);
  background: #e5e5e5;
  position: absolute;
  top: 0;
}
header .header-box .header-menu nav .first-item .second-box.product-menu .brand-section {
  left: 0 !important;
}
header .header-box .header-menu nav .first-item .second-box.product-menu .menu-title {
  font-size: clamp(16px, 0.3rem, 30px);
  color: var(--dominant-color);
  font-family: HONORSansCN-Bold;
  margin-top: clamp(50px, 1rem, 100px);
  margin-bottom: clamp(35px, 0.7rem, 70px);
  padding-left: 1.5rem;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box.product-menu .menu-title {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-menu .second-item {
  margin-bottom: 30px;
  width: clamp(5rem, 5rem, 500px);
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box.product-menu .second-item {
    width: 100%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  header .header-box .header-menu nav .first-item .second-box.product-menu .second-item:last-child {
    margin-bottom: clamp(80px, 1.6rem, 160px);
  }
}
@media screen and (min-width: 1025px) {
  header .header-box .header-menu nav .first-item .second-box.product-menu .second-item:hover,
  header .header-box .header-menu nav .first-item .second-box.product-menu .second-item.active {
    background: var(--dominant-color);
  }
}
@media screen and (min-width: 1025px) {
  header .header-box .header-menu nav .first-item .second-box.product-menu .second-item:hover .second-item-title,
  header .header-box .header-menu nav .first-item .second-box.product-menu .second-item.active .second-item-title {
    color: #fff;
  }
}
@media screen and (min-width: 1025px) {
  header .header-box .header-menu nav .first-item .second-box.product-menu .second-item:hover .second-item-title span,
  header .header-box .header-menu nav .first-item .second-box.product-menu .second-item.active .second-item-title span {
    opacity: 1;
  }
}
@media screen and (min-width: 1025px) {
  header .header-box .header-menu nav .first-item .second-box.product-menu .second-item.active .three-box2 {
    opacity: 1;
  }
}
@media screen and (min-width: 1025px) {
  header .header-box .header-menu nav .first-item .second-box.product-menu .second-item.active .product-img {
    display: block;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-menu .second-item .second-item-title {
  padding: 12px 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-bottom: none;
  font-size: clamp(14px, 0.24rem, 24px);
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box.product-menu .second-item .second-item-title {
    padding: 10px;
    border-bottom: 1px solid #eee;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-menu .second-item .second-item-title span {
  opacity: 0;
}
header .header-box .header-menu nav .first-item .second-box.product-menu .product-img {
  width: clamp(220px, 4.4rem, 440px);
  position: absolute;
  left: 11rem;
  top: clamp(-50px, -1rem, -100px);
  display: none;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box.product-menu .product-img {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box.product-menu .product-img .i-box {
  display: none;
}
header .header-box .header-menu nav .first-item .second-box.product-menu .product-img .i-box.active {
  display: block;
}
header .header-box .header-menu nav .first-item .second-box.product-menu .product-img .imgBox {
  background: url('/static/home/images/img172.png') no-repeat center bottom / contain;
}
header .header-box .header-menu nav .first-item .second-box.product-menu .product-img .i-title {
  margin-top: 30px;
  font-family: HONORSansCN-Bold;
  color: #000;
  text-align: center;
  font-size: clamp(12px, 0.2rem, 20px);
}
@media screen and (min-width: 1025px) {
  header .header-box .header-menu nav .first-item:hover .second-box {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
header .header-box .header-menu nav .first-item:hover a {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .logo {
  margin-left: auto;
  margin-right: auto;
}
header .header-box .header-menu nav .logo ~ .first-item {
  margin-left: 60px;
  margin-right: 0;
}
@media screen and (max-width: 1600px) {
  header .header-box .header-menu nav .logo ~ .first-item {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1280px) {
  header .header-box .header-menu nav .logo ~ .first-item {
    margin-left: 15px;
  }
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .logo ~ .first-item {
    margin-left: 0;
  }
}
header .header-box .header-menu nav .shop {
  margin-left: 60px;
  background: #1e1e1e;
  border-radius: 25px;
  width: 120px;
  height: 50px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}
@media screen and (max-width: 1600px) {
  header .header-box .header-menu nav .shop {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1280px) {
  header .header-box .header-menu nav .shop {
    margin-left: 15px;
  }
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .shop {
    margin-left: 0;
    margin-top: 30px;
    height: 40px;
    font-size: 14px;
    width: 100%;
  }
}
header .header-box .header-menu nav .shop img {
  width: 19px;
  height: 19px;
  margin-right: 10px;
}
header .header-right {
  align-items: center;
  margin-right: 0;
  margin-left: auto;
  display: flex;
  background: var(--dominant-color);
  height: clamp(60px, 0.8rem, 80px);
  position: relative;
  transform: skewX(-25deg) translateX(100px);
  padding-right: 130px;
}
@media screen and (max-width: 1024px) {
  header .header-right {
    display: none;
  }
}
header .search {
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
  justify-content: center;
  margin-left: 20px;
  margin-right: 10px;
  width: clamp(24px, 0.46rem, 46px);
  height: clamp(24px, 0.46rem, 46px);
  border-radius: 50%;
  transform: skewX(25deg);
}
@media screen and (max-width: 1024px) {
  header .search {
    margin-left: 20px;
    display: none;
    margin-right: 16px;
  }
}
header .search.phone-search {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  header .search.phone-search {
    display: block !important;
  }
}
header .search .search-click {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  header .search .search-click {
    transform: skewX(-25deg);
    filter: brightness(0);
  }
}
header .search img {
  width: clamp(12px, 0.18rem, 18px);
}
header .language {
  color: #fff;
  position: relative;
  cursor: pointer;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skewX(25deg);
}
@media screen and (max-width: 1024px) {
  header .language {
    margin-top: 30px;
    display: none;
  }
}
header .language.phone-language {
  transform: skewX(0deg);
  display: none;
  margin-right: 0;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
}
@media screen and (max-width: 1024px) {
  header .language.phone-language {
    display: flex;
  }
}
header .language.phone-language .language-title {
  filter: brightness(0);
}
header .language .language-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: clamp(14px, 0.17rem, 17px);
  cursor: pointer;
  grid-gap: 4px;
}
@media screen and (max-width: 1024px) {
  header .language .language-title {
    color: #333;
  }
}
header .language .language-title img {
  width: clamp(12px, 0.18rem, 18px);
}
@media screen and (max-width: 1024px) {
  header .language .language-title img {
    filter: none;
  }
}
header .language .language-show {
  position: absolute;
  top: 10px;
  padding-top: 40px;
  color: #333;
  left: 50%;
  margin: auto;
  width: 120px;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) translateX(-50%);
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  header .language .language-show {
    padding-top: 10px;
  }
}
header .language .language-show .language-show-box {
  background: var(--dominant-color);
}
header .language .language-show .language-show-item {
  padding: 10px 0;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  display: block;
  text-align: center;
  transition: all 0.5s;
}
header .language .language-show .language-show-item:hover {
  background: var(--dominant-color);
  color: #fff;
}
header .language:hover .language-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateX(-50%);
  pointer-events: auto;
}
header .header-contact {
  margin-left: 50px;
  font-size: 14px;
  font-weight: 600;
  width: 133px;
  height: 42px;
  background: var(--dominant-color);
  color: #fff;
  border-radius: 21px;
}
@media screen and (max-width: 1024px) {
  header .header-contact {
    display: none;
  }
}
header .header-contact img {
  margin-right: 20px;
  width: 20px;
}
header .header-search-box {
  display: none;
  height: 100px;
  position: fixed;
  z-index: 99;
  width: 100%;
}
header .header-search {
  position: fixed;
  top: clamp(60px, 0.8rem, 80px);
  left: 0;
  width: 100%;
  background: var(--dominant-color);
  height: 100px;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  header .header-search {
    top: 60px;
  }
}
header .header-search label {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
  display: block;
  width: 100%;
  position: relative;
}
header .header-search label input {
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: 1px solid #eee;
  background: none;
  color: #fff;
  font-family: Montserrat-Regular;
}
header .header-search label input::placeholder {
  color: #fff;
  font-family: Montserrat-Regular;
}
header .header-search label button {
  width: 50px;
  height: 50px;
  background: none;
  color: #fff;
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 0;
}
header .header-search label button img {
  width: 18px;
  filter: contrast(0) brightness(100);
}
header .header-search label i {
  position: absolute;
  font-size: 20px;
  right: -50px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
}
@media screen and (min-width: 1025px) {
  .index header .logo {
    filter: none;
  }
  .index header .header-box .header-menu nav .first-item .first-item-title {
    color: rgba(255, 255, 255, 0.6);
  }
  .index header .header-box .header-menu nav .first-item:hover .first-item-title,
  .index header .header-box .header-menu nav .first-item.active .first-item-title {
    color: #fff;
  }
}
/*底部样式*/
.footer {
  z-index: 4;
  position: relative;
  background: url('/static/home/images/img11.jpg') no-repeat center bottom / cover;
}
.footer .footer-box {
  padding: 5.208vw 0 2.604vw;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer .footer-box {
    flex-direction: column;
  }
}
.footer .footer-box .footer-menu {
  display: flex;
  justify-content: flex-start;
  grid-gap: clamp(40px, 1.1rem, 110px);
}
@media screen and (max-width: 768px) {
  .footer .footer-box .footer-menu {
    flex-direction: column;
    grid-gap: 0;
  }
}
.footer .footer-box .footer-menu .item {
  position: relative;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer .footer-box .footer-menu .item {
    padding-bottom: 0;
  }
}
.footer .footer-box .footer-menu .first-item {
  display: block;
  font-size: clamp(14px, 0.18rem, 18px);
  position: relative;
  pointer-events: none;
  font-family: HONORSansCN-Bold;
}
@media screen and (max-width: 768px) {
  .footer .footer-box .footer-menu .first-item {
    pointer-events: auto;
    height: 64px;
    line-height: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer .footer-box .footer-menu .first-item i {
    width: 26px;
    height: 64px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    transition: all 0.5s;
    display: block;
  }
  .footer .footer-box .footer-menu .first-item i::before,
  .footer .footer-box .footer-menu .first-item i::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #fff;
    transition: all 0.5s;
  }
  .footer .footer-box .footer-menu .first-item i::before {
    width: 12px;
    height: 2px;
  }
  .footer .footer-box .footer-menu .first-item i::after {
    height: 12px;
    width: 2px;
  }
  .footer .footer-box .footer-menu .first-item i.active::after {
    transform: rotate(90deg);
  }
}
.footer .footer-box .footer-menu .first-summary {
  border-bottom: 1px solid #eee;
  font-size: clamp(12px, 0.16rem, 16px);
  margin-bottom: 20px;
  padding-bottom: 20px;
  margin-top: 20px;
}
.footer .footer-box .footer-menu .bottom .b-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.footer .footer-box .footer-menu .bottom .b-item .icon {
  margin-right: 20px;
}
.footer .footer-box .footer-menu .second-box {
  margin-top: 20px;
}
@media screen and (max-width: 1600px) {
  .footer .footer-box .footer-menu .second-box {
    min-width: auto;
  }
}
.footer .footer-box .footer-menu .second-box img {
  max-width: 120px;
}
@media screen and (max-width: 768px) {
  .footer .footer-box .footer-menu .second-box {
    margin-top: 20px;
    line-height: 1.6;
    border-top: none;
    padding-top: 0;
    display: none;
  }
}
.footer .footer-box .footer-menu .second-box a,
.footer .footer-box .footer-menu .second-box span {
  display: block;
  font-size: clamp(12px, 0.16rem, 16px);
  transition: all 0.5s;
  position: relative;
  width: fit-content;
  margin-bottom: 6px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  .footer .footer-box .footer-menu .second-box a,
  .footer .footer-box .footer-menu .second-box span {
    width: 100%;
  }
}
.footer .footer-box .footer-menu .second-box a::after {
  width: 0;
  background: var(--dominant-color);
  height: 1px;
  bottom: 0;
  left: 0;
  position: absolute;
  transition: all 0.5s;
}
.footer .footer-box .footer-menu .second-box a:hover {
  color: #fff;
}
.footer .footer-box .footer-menu .second-box a:hover::after {
  width: 100%;
}
.footer .footer-right {
  font-family: HONORSansCN-Bold;
}
@media screen and (max-width: 768px) {
  .footer .footer-right {
    margin-top: 50px;
  }
}
.footer .list {
  margin-bottom: clamp(20px, 0.3rem, 30px);
  display: flex;
  align-items: center;
  color: #fff;
  font-size: clamp(14px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .footer .list {
    text-align: left;
    margin-bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer .list .key {
  width: 120px;
  font-family: HONORSansCN-Bold;
}
@media screen and (max-width: 768px) {
  .footer .list .key {
    margin-bottom: 10px;
  }
}
.footer .footer-link {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  flex-basis: 50%;
}
@media screen and (max-width: 768px) {
  .footer .footer-link {
    margin-bottom: 20px;
  }
}
.footer .footer-link .item {
  border-radius: 50%;
  width: clamp(40px, 0.7rem, 70px);
  height: clamp(40px, 0.7rem, 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.5s;
  background: rgba(255, 255, 255, 0.1);
}
.footer .footer-link .item .show {
  position: absolute;
  bottom: clamp(40px, 0.7rem, 70px);
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  display: none;
}
.footer .footer-link .item img {
  transition: all 0.5s;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .footer .footer-link .item img {
    width: 30%;
  }
}
.footer .footer-link .item:hover {
  background: var(--dominant-color);
}
.footer .footer-link .item:hover .show {
  display: block;
}
.footer .footer-link .item:hover img {
  filter: none;
}
.footer .footer-copyright {
  color: rgba(0, 0, 0, 0.65);
  font-size: clamp(12px, 0.16rem, 16px);
  color: #fff;
  padding-top: clamp(30px, 0.5rem, 50px);
  padding-bottom: clamp(50px, 1rem, 100px);
}
@media screen and (max-width: 768px) {
  .footer .footer-copyright {
    padding: 20px 0;
    border-top: none;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.footer .footer-copyright .left {
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .footer .footer-copyright .left {
    flex-direction: column;
    gap: 0;
  }
}
.footer .footer-copyright .left .footer-logo {
  width: clamp(120px, 1.97rem, 197px);
  filter: brightness(100);
}
@media screen and (max-width: 768px) {
  .footer .footer-copyright .left .footer-logo {
    width: 120px;
    margin: 40px auto 20px 0;
  }
}
.footer .footer-copyright .left .text {
  line-height: 1.8;
}
.go-top {
  width: 140px;
  height: 50px;
  z-index: 1;
  font-size: 16px;
  border-radius: 25px;
  transition: all 0.5s;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
.go-top img {
  width: 16px;
  margin-left: 20px;
}
.go-top i {
  transition: all 0.5s;
}
.go-top:hover {
  background: var(--dominant-color) !important;
}
.go-top:hover i {
  color: #fff;
}
/*底部样式*/
.firight {
  position: fixed;
  right: -3px;
  bottom: 25%;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .firight {
    bottom: 0;
    width: 100%;
    display: flex;
    right: 0;
  }
}
.firight a {
  width: 80px;
  background-color: var(--dominant-color);
  height: 80px;
  margin-bottom: 1px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .firight a {
    width: 33.33%;
    height: 60px;
    margin-bottom: 0;
    border-radius: 0;
  }
}
.firight a p {
  text-align: center;
  font-size: 12px;
  color: #fff;
}
.frimg {
  height: 35px;
  line-height: 35px;
}
.frnum {
  transition: all 0.5s ease;
  position: relative;
}
.frnum:hover {
  margin-left: -185px;
}
@media screen and (max-width: 768px) {
  .frnum:hover {
    margin-left: 0;
  }
}
.frnum .number {
  position: absolute;
  height: 80px;
  background-color: var(--dominant-color);
  width: 185px;
  right: -182px;
  top: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .frnum .number {
    height: 60px;
    display: none;
  }
}
.frnum .number p {
  font-size: 22px;
  color: #fff;
  border-left: 1px solid #9fcce8;
  padding-left: 16px;
}
@media screen and (max-width: 768px) {
  .frnum .number p {
    font-size: 16px;
  }
}
.wxfr {
  position: relative;
}
.frewm {
  position: absolute;
  right: 100px;
  top: 10%;
  display: none;
  max-width: fit-content;
  width: 140px;
}
@media screen and (max-width: 768px) {
  .frewm {
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
  }
}
/*根元素代码*/
:root {
  /*--dominant-color:#3a93bd;*/
  --dominant-color: #1411c0;
  /*--linear-color:linear-gradient(to right ,#3a93bd 14%,#0079b2);*/
  --linear-color: linear-gradient(223deg, rgba(99, 229, 242, 0.2), rgba(58, 174, 239, 0.8));
}
/*--------------------------------------------------------*/
/*通用*/
.index-padding {
  padding: clamp(40px, 0.5rem, 50px) 0;
}
@media screen and (max-width: 768px) {
  .index-padding {
    padding: 40px 0;
  }
}
.index-padding2 {
  padding: clamp(40px, 1.2rem, 120px) 0;
}
@media screen and (max-width: 768px) {
  .index-padding2 {
    padding: 40px 0;
  }
}
.index-padding3 {
  padding: clamp(40px, 1rem, 100px) 0;
}
.index-title {
  color: #9b9b9b;
}
.index-title .sup {
  color: var(--dominant-color);
  font-size: 16px;
}
.index-title .title {
  font-size: clamp(18px, 0.4rem, 40px);
  line-height: 1.3;
  color: var(--dominant-color);
  font-family: HONORSansCN-Bold;
}
.index-title .title span {
  color: #9b9b9b;
}
.index-title .tip {
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dominant-color);
  font-size: 20px;
}
@media screen and (max-width: 1440px) {
  .index-title .tip {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .index-title .tip {
    font-size: 14px;
    margin-bottom: 6px;
  }
}
.index-title .summary {
  font-size: clamp(14px, 0.2rem, 20px);
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
}
.index-title .summary span {
  color: #000;
}
.index-title .summary2 {
  font-size: 18px;
  color: #666666;
  margin: 30px 0 40px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .index-title .summary2 {
    font-size: 14px;
  }
}
.index-title .summary3 {
  font-size: 16px;
  color: #666666;
  margin: 30px 0 40px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .index-title .summary3 {
    font-size: 14px;
  }
}
.index-title .summary3 a {
  color: var(--dominant-color);
}
.index-title a {
  display: flex;
  transform: skewX(-25deg);
  background: var(--dominant-color);
  color: #fff;
  height: clamp(30px, 0.5rem, 50px);
  padding: 0 clamp(20px, 0.32rem, 32px);
  align-items: center;
  font-size: clamp(12px, 0.18rem, 18px);
  transition: all 0.5s;
  gap: 20px;
  margin-right: 20px;
  font-family: HONORSansCN-Bold;
}
.index-title a span {
  display: block;
  transform: skewX(25deg);
}
.index-title a:hover {
  opacity: 0.7;
}
.f-more {
  width: fit-content;
  height: 0.58rem;
  min-height: 48px;
  background: #fff;
  color: #000;
  transition: all 0.5s;
  position: relative;
  border-radius: 999px;
  font-size: clamp(12px, 0.16rem, 16px);
  text-transform: uppercase;
  border: 1px solid transparent;
}
@media screen and (max-width: 768px) {
  .f-more {
    height: 35px;
    min-height: auto;
    border-radius: 29px;
  }
}
.f-more span {
  padding: 0 0.3rem;
  flex: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .f-more span {
    padding: 0 10px;
  }
}
.f-more:hover {
  background: var(--dominant-color);
  color: #fff;
}
.f-more:hover .icon {
  background: #fff;
}
.f-more:hover .icon i {
  color: var(--dominant-color);
}
.f-more .icon {
  width: 0.48rem;
  height: 0.48rem;
  min-width: 38px;
  min-height: 38px;
  border-radius: 50%;
  background: var(--dominant-color);
  margin-right: 0.05rem;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .f-more .icon {
    min-width: auto;
    min-height: auto;
    width: 25px;
    height: 25px;
    margin-right: 5px;
  }
}
.f-more .icon i {
  color: #fff;
  transition: all 0.5s;
}
.f-more-show {
  font-size: 16px;
  color: var(--dominant-color);
  line-height: 1;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: auto;
  cursor: pointer;
}
.zhan-wei {
  height: clamp(100px, 2rem, 200px);
}
@media screen and (max-width: 768px) {
  .zhan-wei {
    display: none;
  }
}
.zhan-wei2 {
  height: 100px;
}
@media screen and (max-width: 1024px) {
  .zhan-wei2 {
    height: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .zhan-wei2 {
    display: none;
  }
}
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
/*麻花星空无限mv*/
/*轮播*/
.banner {
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .banner {
    height: auto;
  }
}
.banner .img {
  height: 100%;
}
.banner .img video {
  display: block;
}
.banner .img img,
.banner .img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .banner .img img,
  .banner .img video {
    height: 50vh;
  }
}
.banner .swiper-banner {
  height: 100%;
  position: relative;
}
.banner .swiper-banner .text {
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  color: #fff;
  text-align: center;
  height: fit-content;
  z-index: 4;
}
@media screen and (max-width: 1366px) {
  .banner .swiper-banner .text {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .text {
    top: auto;
    bottom: 100px;
  }
}
.banner .swiper-banner .text .text1,
.banner .swiper-banner .text .text2,
.banner .swiper-banner .text .text3 {
  transform: translateY(100px);
  opacity: 0;
  font-size: clamp(18px, 0.4rem, 40px);
  transition: all 0.5s;
  font-family: HONORSansCN-Bold;
}
.banner .swiper-banner .text .text1.show,
.banner .swiper-banner .text .text2.show,
.banner .swiper-banner .text .text3.show {
  opacity: 1;
  transform: translateY(0);
}
.banner .swiper-banner .text .text1 p,
.banner .swiper-banner .text .text2 p,
.banner .swiper-banner .text .text3 p {
  font-size: clamp(14px, 0.2rem, 20px);
}
.banner .swiper-banner .text .text2,
.banner .swiper-banner .text .text3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.banner .swiper-banner .text .img {
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
}
.banner .swiper-banner .text .img img {
  max-width: 724px;
  width: 37.708vw;
}
.banner .swiper-banner .text .sup {
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
  font-size: 20px;
  color: #000;
}
@media screen and (max-width: 1600px) {
  .banner .swiper-banner .text .sup {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .text .sup {
    font-size: 14px;
  }
}
.banner .swiper-banner .text .title {
  font-size: clamp(18px, 0.5rem, 50px);
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
  width: 100%;
  line-height: 1.3;
  text-transform: uppercase;
}
.banner .swiper-banner .text .summary {
  font-size: clamp(14px, 0.24rem, 24px);
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
  width: 100%;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.6);
}
.banner .swiper-banner .text .banner-more {
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
  text-align: left;
  margin-top: 40px;
}
.banner .swiper-banner .banner-img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0.5rem;
  margin: auto;
  height: fit-content;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .banner-img {
    top: 20%;
    bottom: auto;
    text-align: center;
  }
}
.banner .swiper-banner .banner-img img {
  width: 6.4rem;
  max-width: 640px;
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .banner-img img {
    width: 80%;
  }
}
.banner .swiper-banner .swiper-slide-active .img {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}
.banner .swiper-banner .swiper-slide-active .sup {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}
.banner .swiper-banner .swiper-slide-active .title {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}
.banner .swiper-banner .swiper-slide-active .summary {
  transform: translateY(0);
  opacity: 0.2;
  transition-delay: 0.7s;
}
.banner .swiper-banner .swiper-slide-active .numbers {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.7s;
}
.banner .swiper-banner .swiper-slide-active .tip {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.9s;
}
.banner .swiper-banner .swiper-slide-active .banner-more {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.9s;
}
.banner .swiper-banner .swiper-horizontal > .swiper-pagination-bullets,
.banner .swiper-banner .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 30px;
  width: 90%;
  margin: auto;
  left: 0;
  right: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .swiper-horizontal > .swiper-pagination-bullets,
  .banner .swiper-banner .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 30px;
  }
}
.banner .swiper-banner .swiper-pagination-box {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 5;
  margin: auto;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .swiper-pagination-box {
    width: 70%;
    right: 0;
    height: 30px;
  }
}
.banner .swiper-banner .swiper-pagination {
  position: initial;
}
.banner .swiper-banner .swiper-pagination-bullet {
  --swiper-pagination-bullet-inactive-color: #fff;
  opacity: 0.4;
  --swiper-pagination-bullet-width: 37px;
  --swiper-pagination-bullet-height: 11px;
  --swiper-pagination-bullet-horizontal-gap: 7px;
  position: relative;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .swiper-pagination-bullet {
    --swiper-pagination-bullet-width: 17px;
    --swiper-pagination-bullet-height: 4px;
  }
}
.banner .swiper-banner .swiper-pagination-bullet::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  opacity: 0.8;
}
.banner .swiper-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  --swiper-pagination-color: #fff;
  opacity: 1;
}
.banner .swiper-banner .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background: var(--dominant-color);
}
.banner .swiper-banner .swiper-pager {
  display: flex;
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  z-index: 1;
  width: 90%;
  max-width: 1740px;
  margin: auto;
  align-items: center;
  color: #fff;
}
.banner .swiper-banner .swiper-pagination-progressbar {
  position: initial;
  max-width: 700px;
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .swiper-pagination-progressbar {
    max-width: 50%;
  }
}
.banner .swiper-banner .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #fff;
}
.banner .swiper-banner .swiper-pagination-progressbar.swiper-pagination-horizontal {
  height: 2px;
}
.index1 {
  overflow: hidden;
  padding-bottom: clamp(40px, 0.8rem, 80px);
}
.index1 .button {
  display: flex;
  gap: 6px;
}
.index1 .swiper-button-prev,
.index1 .swiper-button-next {
  transition: all 0.5s;
  position: initial;
  background: url('/static/home/images/img8.png') no-repeat center / contain;
  margin-top: auto;
}
.index1 .swiper-button-prev::after,
.index1 .swiper-button-next::after {
  display: none;
}
.index1 .swiper-button-prev:hover,
.index1 .swiper-button-next:hover {
  background: url('/static/home/images/img9.png') no-repeat center / contain;
}
.index1 .swiper-button-prev:hover i,
.index1 .swiper-button-next:hover i {
  color: #fff;
}
.index1 .index1-box {
  margin-top: clamp(20px, 0.4rem, 40px);
}
.index1 .index1-box .swiper {
  overflow: initial;
}
.index1 .index1-box .swiper .swiper-slide {
  background: #fff;
  height: auto;
}
.index1 .index1-box .swiper .swiper-slide .imgBox {
  padding-bottom: 72%;
}
.index1 .index1-box .swiper .swiper-slide .show-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 57%;
  height: 100%;
}
.index1 .index1-box .swiper .swiper-slide .show-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all 0.5s;
}
.index1 .index1-box .swiper .swiper-slide .show-img .img2 {
  opacity: 0;
}
.index1 .index1-box .swiper .swiper-slide .text {
  position: absolute;
  top: clamp(30px, 1rem, 100px);
  padding: 0 clamp(20px, 0.6rem, 60px);
}
.index1 .index1-box .swiper .swiper-slide .text .title {
  font-family: HONORSansCN-Bold;
  color: var(--dominant-color);
  font-size: clamp(14px, 0.3rem, 30px);
  transition: all 0.5s;
}
.index1 .index1-box .swiper .swiper-slide .text .summary {
  font-size: clamp(12px, 0.18rem, 18px);
  color: rgba(0, 0, 0, 0.6);
  margin-top: clamp(20px, 0.2rem, 20px);
  max-width: 50%;
  line-height: 1.6;
}
.index1 .index1-box .swiper .swiper-slide .text .more {
  margin-top: clamp(20px, 0.7rem, 70px);
  font-size: clamp(12px, 0.16rem, 16px);
  color: var(--dominant-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(30px, 0.55rem, 55px);
  height: clamp(30px, 0.55rem, 55px);
  position: relative;
  background: url('/static/home/images/img8.png') no-repeat center / contain;
}
.index1 .index1-box .swiper .swiper-slide .text .more i {
  position: relative;
  z-index: 2;
}
.index1 .index1-box .swiper .swiper-slide .text .more::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s;
  background: url('/static/home/images/img9.png') no-repeat center / contain;
}
.index1 .index1-box .swiper .swiper-slide:hover .title {
  color: var(--dominant-color);
}
.index1 .index1-box .swiper .swiper-slide:hover .more::after {
  opacity: 1;
}
.index1 .index1-box .swiper .swiper-slide:hover .more i {
  color: #fff;
}
.index1 .index1-box .swiper .swiper-slide:hover .show-img .img1 {
  opacity: 0;
}
.index1 .index1-box .swiper .swiper-slide:hover .show-img .img2 {
  opacity: 1;
}
.index1 .index1-box .swiper .swiper-button-prev {
  left: 20px;
}
.index1 .index1-box .swiper .swiper-button-next {
  right: 20px;
}
.index1 .index1-box .swiper:hover .swiper-button-prev,
.index1 .index1-box .swiper:hover .swiper-button-next {
  opacity: 1;
}
.index1 .index1-box .swiper .swiper-pagination {
  position: initial;
  margin-top: clamp(20px, 0.6rem, 60px);
}
.index1 .index1-box .swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--dominant-color);
}
.index1 .index1-box .swiper .swiper-pagination-progressbar {
  background: #f8f9fd;
}
.index2 {
  position: relative;
}
.index2 .img img {
  width: 100%;
  position: relative;
  opacity: 0;
  transition: all 0.5s;
  max-height: 1000px;
  object-fit: cover;
}
.index2 .img img:nth-of-type(n + 2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .index2 .img img {
    opacity: 1;
  }
}
.index2 .img img.active {
  opacity: 1;
}
.index2 .text {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(400px, 7.94rem, 794px);
  height: clamp(140px, 2.79rem, 279px);
  background: url('/static/home/images/img162.png') no-repeat center / contain;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .index2 .text {
    position: initial;
    color: #fff;
    height: auto;
    padding: 20px;
    width: 100%;
    background: url('/static/home/images/img162.png') no-repeat center / cover;
    background: var(--dominant-color);
  }
}
.index2 .text .item {
  transition: all 0.5s;
  transform: translateY(20px);
  opacity: 0;
  padding-left: clamp(80px, 1.6rem, 160px);
  padding-top: clamp(20px, 0.45rem, 45px);
  padding-right: clamp(40px, 0.8rem, 80px);
  color: #fff;
  position: relative;
}
.index2 .text .item:nth-child(n + 2) {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.index2 .text .item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto !important;
}
.index2 .text .title {
  font-size: clamp(14px, 0.3rem, 30px);
  font-family: HONORSansCN-Bold;
}
@media screen and (max-width: 768px) {
  .index2 .text .title {
    color: #fff;
  }
}
.index2 .text .summary {
  margin-top: clamp(10px, 0.2rem, 20px);
  font-size: clamp(12px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .index2 .text .summary {
    color: #fff;
  }
}
.index2 .text .more {
  width: clamp(40px, 0.55rem, 55px);
  height: clamp(40px, 0.55rem, 55px);
  background: url('/static/home/images/img9-1.png') no-repeat center / contain;
  transition: all 0.5s;
  color: var(--dominant-color);
  margin-top: clamp(10px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .index2 .text .more {
    display: none;
  }
}
.index2 .text .more i {
  color: var(--dominant-color);
}
.index2 .text .more:hover {
  filter: none;
  color: #fff;
  background: url('/static/home/images/img9.png') no-repeat center / contain;
}
.index2 .text .more:hover i {
  color: #fff;
}
.index2 .index2-menu {
  position: absolute;
  left: 0;
  top: clamp(50px, 1.3rem, 130px);
  margin: auto;
  width: clamp(250px, 4.69rem, 469px);
}
.index2 .index2-menu .index-title {
  padding-left: clamp(75px, 1.5rem, 150px);
}
.index2 .index2-menu .index-title .title {
  color: #fff;
}
.index2 .index2-menu .menu {
  margin-top: clamp(40px, 0.8rem, 80px);
}
.index2 .index2-menu .menu .line {
  width: clamp(150px, 3.2rem, 320px);
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-right: 0;
  margin-left: auto;
}
.index2 .index2-menu .menu .item {
  display: flex;
  align-items: center;
  font-size: clamp(14px, 0.2rem, 20px);
  color: rgba(255, 255, 255, 0.4);
  font-family: HONORSansCN-Bold;
  transition: all 0.5s;
  cursor: pointer;
  justify-content: flex-start;
  position: relative;
  height: clamp(40px, 0.6rem, 60px);
  padding: 0 0.5rem 0 clamp(75px, 1.5rem, 150px);
}
.index2 .index2-menu .menu .item::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  width: clamp(150px, 3.2rem, 320px);
}
.index2 .index2-menu .menu .item::after {
  content: '';
  height: 100%;
  position: absolute;
  background: url('/static/home/images/img51.png') no-repeat center / contain;
  top: 0;
  right: 0;
  width: 100%;
  opacity: 1;
  transition: all 0.5s;
  left: -100%;
}
.index2 .index2-menu .menu .item .icon {
  width: clamp(20px, 0.4rem, 40px);
  height: clamp(20px, 0.4rem, 40px);
  display: flex;
  align-items: center;
  opacity: 0.4;
  transition: all 0.5s;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .index2 .index2-menu .menu .item .icon {
    width: 20px;
    height: 20px;
  }
}
.index2 .index2-menu .menu .item .icon img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
.index2 .index2-menu .menu .item .title {
  line-height: 1;
  margin-left: clamp(20px, 0.3rem, 30px);
  position: relative;
  z-index: 1;
}
.index2 .index2-menu .menu .item span {
  display: flex;
  margin-right: 0;
  margin-left: auto;
  opacity: 0;
  transition: all 0.5s;
  position: relative;
  z-index: 1;
}
.index2 .index2-menu .menu .item.active,
.index2 .index2-menu .menu .item:hover {
  color: #fff;
}
.index2 .index2-menu .menu .item.active::after,
.index2 .index2-menu .menu .item:hover::after {
  left: 0;
}
.index2 .index2-menu .menu .item.active .icon,
.index2 .index2-menu .menu .item:hover .icon {
  opacity: 1;
}
.index2 .index2-menu .menu .item.active span,
.index2 .index2-menu .menu .item:hover span {
  opacity: 1;
}
.index2 .swiper {
  margin-top: 30px;
}
.index3 {
  padding-bottom: clamp(40px, 1.2rem, 120px);
}
.index3 .items {
  margin-top: clamp(20px, 0.4rem, 40px);
  height: clamp(300px, 6rem, 600px);
  display: flex;
  gap: 5px;
}
@media (max-width: 768px) {
  .index3 .items {
    flex-direction: column;
    height: auto;
  }
}
.index3 .items .item {
  flex-basis: clamp(230px, 2.3rem, 230px);
  background: #000;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s;
}
@media (max-width: 768px) {
  .index3 .items .item {
    flex-basis: auto !important;
  }
}
.index3 .items .item .img {
  opacity: 0.6;
  height: 100%;
  transition: all 0.5s;
}
@media (max-width: 768px) {
  .index3 .items .item .img {
    opacity: 1;
  }
}
.index3 .items .item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .index3 .items .item .img img {
    height: 200px;
    object-fit: cover;
  }
}
.index3 .items .item .text {
  height: 100%;
  width: clamp(553px, 5.53rem, 553px);
  position: absolute;
  background: url('/static/home/images/img160.png') no-repeat center right / contain;
  top: 0;
  right: 0;
  opacity: 0;
  color: #fff;
  padding-right: clamp(40px, 0.4rem, 40px);
}
@media (max-width: 768px) {
  .index3 .items .item .text {
    opacity: 1;
    width: 100%;
    padding-right: 10px;
  }
}
.index3 .items .item .text .text-box {
  width: clamp(142px, 2.85rem, 285px);
  margin-top: clamp(85px, 1.7rem, 170px);
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 768px) {
  .index3 .items .item .text .text-box {
    width: 30%;
    margin-top: 20px;
  }
}
.index3 .items .item .text .text-box .title {
  font-family: HONORSansCN-Bold;
  font-size: clamp(12px, 0.3rem, 30px);
}
.index3 .items .item .text .text-box .summary {
  font-size: clamp(12px, 0.2rem, 20px);
  margin-top: clamp(10px, 0.16rem, 16px);
}
.index3 .items .item .text .text-box .more {
  margin-top: clamp(20px, 0.7rem, 70px);
  width: clamp(30px, 0.55rem, 55px);
  height: clamp(30px, 0.55rem, 55px);
  background: url('/static/home/images/img8.png') no-repeat center right / contain;
  filter: grayscale(1) brightness(100);
}
.index3 .items .item .text .text-box .more:hover {
  filter: none;
  color: var(--dominant-color);
  background: url('/static/home/images/img9-1.png') no-repeat center right / contain;
}
.index3 .items .item .sub {
  position: absolute;
  bottom: clamp(20px, 0.5rem, 50px);
  color: #fff;
  font-family: HONORSansCN-Bold;
  font-size: clamp(12px, 0.3rem, 30px);
  text-align: center;
  width: 100%;
}
@media (max-width: 768px) {
  .index3 .items .item .sub {
    display: none;
  }
}
.index3 .items .item.active {
  flex: 1;
  z-index: 2;
}
.index3 .items .item.active .sub {
  opacity: 0;
}
.index3 .items .item.active .img {
  opacity: 1;
}
.index3 .items .item.active .text {
  opacity: 1;
}
.index3 .swiper {
  margin-top: 30px;
}
.index3 .swiper .swiper-slide {
  background: var(--dominant-color);
}
.index3 .swiper .imgBox {
  padding-bottom: 50%;
}
.index3 .swiper .text {
  color: #fff;
  padding: 20px;
}
.index3 .swiper .text .summary {
  font-size: 12px;
  margin-top: 6px;
}
.index4 {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .index4 {
    height: auto;
  }
}
.index4 .img1 {
  margin: auto;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100vh;
  display: none;
}
@media screen and (max-width: 768px) {
  .index4 .img1 {
    height: auto;
    display: block;
  }
}
.index4 .img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index4 .img2-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .index4 .img2-box {
    display: none;
  }
}
.index4 .img2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
.index4 .img2 .img-box {
  width: clamp(3.645rem, 7.29rem, 729px);
  height: clamp(2.725rem, 5.45rem, 545px);
  position: absolute;
  left: 25%;
}
.index4 .img2 .img-box .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: screen;
  background: url('/static/home/images/img168-1.svg') no-repeat center / cover;
}
.index4 .img2 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.index4 .text {
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  font-size: clamp(16px, 0.4rem, 40px);
  color: #fff;
  font-family: HONORSansCN-Bold;
  text-align: center;
}
.index4 .text-box {
  display: flex;
  justify-content: space-between;
  position: absolute;
  align-items: flex-start;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: clamp(545px, 5.45rem, 545px);
}
@media screen and (max-width: 768px) {
  .index4 .text-box {
    position: initial;
    margin-top: 40px;
    margin-bottom: 50px;
    height: auto;
  }
}
.index4 .text-box .left {
  position: relative;
  width: clamp(729px, 7.29rem, 729px);
  height: clamp(545px, 5.45rem, 545px);
}
.index4 .text-box .left::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('/static/home/images/img168-1.png') no-repeat center / contain;
}
.index4 .text-box .left img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.index4 .text-box .right {
  flex: 1;
  margin-right: 0;
  margin-left: auto;
  max-width: clamp(550px, 7.2rem, 720px);
  transform: translateY(clamp(5.45rem, 5.45rem, 545px));
  opacity: 0;
  margin-top: auto;
  margin-bottom: auto;
}
@media screen and (max-width: 768px) {
  .index4 .text-box .right {
    opacity: 1;
    transform: translateY(0);
    max-width: 100%;
    width: 100%;
  }
}
.index4 .text-box .right .text1 .sup {
  font-size: clamp(12px, 0.3rem, 30px);
  color: var(--dominant-color);
  font-family: HONORSansCN-Bold;
}
.index4 .text-box .right .text1 .title {
  font-size: clamp(16px, 0.4rem, 40px);
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: clamp(20px, 0.3rem, 30px);
  padding-bottom: clamp(20px, 0.3rem, 30px);
  font-family: HONORSansCN-Bold;
  color: var(--dominant-color);
}
.index4 .text-box .right .text1 .summary {
  font-size: clamp(12px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.6);
  margin-top: clamp(20px, 0.3rem, 30px);
}
.index4 .text-box .right .text1 .more {
  display: flex;
  transform: skewX(-25deg);
  background: var(--dominant-color);
  color: #fff;
  height: clamp(40px, 0.5rem, 50px);
  padding: 0 clamp(20px, 0.5rem, 50px);
  align-items: center;
  font-size: clamp(12px, 0.18rem, 18px);
  transition: all 0.5s;
  width: fit-content;
  margin-top: clamp(40px, 0.8rem, 80px);
  gap: 20px;
  justify-content: space-between;
}
.index4 .text-box .right .text1 .more span {
  display: block;
  transform: skewX(25deg);
  font-family: HONORSansCN-Bold;
}
.index4 .text-box .right .text1 .more:hover {
  opacity: 0.7;
}
.index4 .text-box .right .text2 {
  margin-top: clamp(90px, 1.8rem, 180px);
}
.index4 .text-box .right .text2 .item {
  display: flex;
  align-items: center;
  padding: clamp(12px, 0.3rem, 30px) 0;
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 768px) {
  .index4 .text-box .right .text2 .item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.index4 .text-box .right .text2 .item:first-child {
  border-top: 1px solid #e5e5e5;
}
.index4 .text-box .right .text2 .item .key {
  font-size: clamp(16px, 0.5rem, 50px);
  flex-basis: 50%;
  color: var(--dominant-color);
  font-family: HONORSansCN-Bold;
}
.index4 .text-box .right .text2 .item .key.key2 {
  font-size: clamp(14px, 0.3rem, 30px);
}
.index4 .text-box .right .text2 .item .key span {
  font-size: clamp(16px, 0.3rem, 30px);
}
.index4 .text-box .right .text2 .item .value {
  flex: 1;
  font-size: clamp(12px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  .index4 .text-box .right .text2 .item .value {
    margin-top: 6px;
  }
}
.index5 {
  position: relative;
}
.index5 .img {
  width: 100%;
}
@media (max-width: 768px) {
  .index5 .img {
    position: absolute;
    height: 100%;
  }
}
.index5 .img img {
  width: 100%;
}
@media (max-width: 768px) {
  .index5 .img img {
    height: 100%;
    object-fit: cover;
  }
}
.index5 .text {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  display: flex;
  height: 100%;
}
@media (max-width: 768px) {
  .index5 .text {
    flex-direction: column;
    position: initial;
    padding: 50px 0;
    z-index: 2;
  }
}
.index5 .text .left {
  flex: 1;
  position: relative;
  z-index: 2;
}
.index5 .text .left .index-title {
  margin-top: clamp(40px, 1.3rem, 130px);
}
.index5 .text .left .index-title .title {
  color: #fff;
}
.index5 .text .left .index-title .summary {
  color: rgba(255, 255, 255, 0.6);
  margin-top: clamp(10px, 0.2rem, 20px);
}
.index5 .text .left .button {
  margin-top: clamp(40px, 1.4rem, 140px);
}
.index5 .text .left .button .more {
  display: flex;
  transform: skewX(-25deg);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  height: clamp(40px, 0.5rem, 50px);
  padding: 0 clamp(20px, 0.5rem, 50px);
  align-items: center;
  font-size: clamp(14px, 0.18rem, 18px);
  transition: all 0.5s;
  width: clamp(200px, 2.4rem, 240px);
  margin-bottom: 20px;
  cursor: pointer;
  font-family: HONORSansCN-Bold;
}
.index5 .text .left .button .more span {
  display: block;
  transform: skewX(25deg);
}
.index5 .text .left .button .more:hover,
.index5 .text .left .button .more.active {
  color: var(--dominant-color);
  background: #fff;
}
.index5 .text .right {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  height: fit-content;
  width: clamp(650px, 13rem, 1300px);
}
@media (max-width: 768px) {
  .index5 .text .right {
    position: relative;
    width: 100%;
    margin-top: 40px;
  }
}
.index5 .text .right img {
  opacity: 0;
}
.index5 .text .right img:nth-child(n+2) {
  position: absolute;
  top: 0;
  left: 0;
}
.index5 .text .right img.active {
  opacity: 1;
}
.index6 {
  overflow: hidden;
  background: url('/static/home/images/img163.png') no-repeat center bottom -40% / contain;
}
.index6 .button {
  display: flex;
  gap: 6px;
}
.index6 .swiper-button-prev,
.index6 .swiper-button-next {
  transition: all 0.5s;
  position: initial;
  background: url('/static/home/images/img8.png') no-repeat center / contain;
  margin-top: auto;
}
.index6 .swiper-button-prev::after,
.index6 .swiper-button-next::after {
  display: none;
}
.index6 .swiper-button-prev:hover,
.index6 .swiper-button-next:hover {
  background: url('/static/home/images/img9.png') no-repeat center / contain;
}
.index6 .swiper-button-prev:hover i,
.index6 .swiper-button-next:hover i {
  color: #fff;
}
.index6 .items-box {
  margin-top: clamp(20px, 0.4rem, 40px);
}
.index6 .items {
  display: flex;
  align-items: center;
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
  transform: skewX(-25deg);
  width: calc(100% - 45px);
}
@media screen and (max-width: 768px) {
  .index6 .items {
    flex-direction: column !important;
    width: 100%;
    border: none !important;
    transform: skewX(0);
  }
}
.index6 .items::after {
  content: '';
  background: #eee;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 1px;
  width: calc(100% - 45px);
}
.index6 .items .left {
  transform: skewX(25deg);
  width: clamp(2.51rem, 2.51rem, 251px);
  height: clamp(1.84rem, 1.84rem, 184px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/static/home/images/img60.png') no-repeat center / contain;
  font-size: clamp(12px, 0.24rem, 24px);
  font-family: HONORSansCN-Bold;
  padding-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  .index6 .items .left {
    width: 100%;
    height: auto;
    background: none !important;
    color: var(--dominant-color);
    justify-content: flex-start;
    transform: skewX(0);
    margin-bottom: 20px;
  }
}
.index6 .items .right {
  position: relative;
  width: calc(100% - clamp(2.5rem, 2.5rem, 250px));
  padding-left: 30px;
  padding-right: 30px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}
@media screen and (max-width: 768px) {
  .index6 .items .right {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.index6 .items .right .item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media screen and (max-width: 768px) {
  .index6 .items .right .item {
    gap: 10px;
  }
}
.index6 .items .right .item .imgBox {
  background: #f6f8fa;
  padding-bottom: 40%;
}
.index6 .items .right .item .imgBox img {
  transform: skewX(25deg);
}
@media screen and (max-width: 768px) {
  .index6 .items .right .item .imgBox img {
    transform: skewX(0deg);
  }
}
.index6 .items:nth-child(even) {
  margin-right: 0;
  margin-left: auto;
  flex-direction: row-reverse;
  border-left: 1px solid #eee;
}
.index6 .items:nth-child(even) .left {
  padding-right: 0;
  padding-left: 0.5rem;
  background: url('/static/home/images/img60-1.png') no-repeat center / contain;
}
.index6 .swiper {
  margin-bottom: 20px;
}
.index6 .swiper:nth-child(even) .items {
  margin-right: 0;
  margin-left: auto;
  flex-direction: row-reverse;
  border-left: 1px solid #eee;
}
.index6 .swiper:nth-child(even) .items::after {
  left: 0;
  right: auto;
  width: calc(100% + 45px);
}
.index6 .swiper:nth-child(even) .items .left {
  padding-right: 0;
  padding-left: 0.5rem;
  background: url('/static/home/images/img60-1.png') no-repeat center / contain;
}
/*.index6 {
  overflow: hidden;
  background: url('/static/home/images/img163.png') no-repeat center bottom -40%/contain;

  .button {
    display: flex;
    gap: 6px;
  }

  .swiper-button-prev, .swiper-button-next {
    transition: all 0.5s;
    position: initial;
    background: url('/static/home/images/img8.png') no-repeat center/contain;
    margin-top: auto;

    &::after {
      display: none;
    }

    &:hover {
      background: url('/static/home/images/img9.png') no-repeat center/contain;

      i {
        color: #fff;
      }
    }
  }

  .items-box {
    margin-top: clamp(20px, 0.4rem, 40px);
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .items {
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    transform: skewX(-25deg);
    width: calc(100% - 65px);
    @media screen and (max-width: 768px) {
      flex-direction: column !important;
      width: 100%;
      border: none !important;
    }

    .left {
      transform: skewX(25deg);
      width: clamp(2.51rem,2.51rem,251px);
      height: clamp(1.84rem,1.84rem,184px);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      background: url('/static/home/images/img60.png') no-repeat center/contain;
      font-size: clamp(12px, 0.24rem, 24px);
      font-family: HONORSansCN-Bold;
      padding-right: 0.5rem;
      @media screen and (max-width: 768px) {
        width: 100%;
        height: 70px;
        background: none !important;
        color: var(--dominant-color);
        //align-items: flex-start;
        justify-content: flex-start;
      }
    }

    .right {
      position: relative;
      width: calc(100% - clamp(2.5rem,2.5rem,250px));
      padding-left: 30px;
      padding-right: 30px;
      @media screen and (max-width: 768px) {
        padding-left: 10px;
        padding-right: 10px;
        width: 100%;
      }
      .swiper {
        .swiper-slide {


          display: flex;
          flex-direction: column;
          gap: 2px;
          @media screen and (max-width: 768px) {
            gap: 10px;
          }
          .imgBox {
            background: #f6f8fa;
            img {
              transform: skewX(25deg);
            }
          }
        }
      }
      .imgBox {
        padding-bottom: 40%;
      }
    }

    &:nth-child(even) {
      margin-right: 0;
      margin-left: auto;
      flex-direction: row-reverse;
      border-left: 1px solid #eee;

      .left {
        padding-right: 0;
        padding-left: 0.5rem;
        background: url('/static/home/images/img60-1.png') no-repeat center/contain;
      }
    }
  }
}*/
.index7 {
  padding-bottom: clamp(75px, 1.5rem, 150px);
}
@media screen and (max-width: 768px) {
  .index7 {
    padding-top: 0;
  }
}
.index7 .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(20px, 0.4rem, 40px);
}
@media screen and (max-width: 768px) {
  .index7 .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.index7 .items .item {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
}
.index7 .items .item .imgBox {
  padding-bottom: 57%;
}
.index7 .items .item .text {
  padding: clamp(20px, 0.4rem, 40px);
  background: #fff;
  position: relative;
}
.index7 .items .item .text::after {
  content: '';
  background: url('/static/home/images/img161.png') no-repeat center / cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s;
}
.index7 .items .item .text .time {
  font-size: clamp(12px, 0.18rem, 18px);
  position: relative;
  z-index: 2;
  transition: all 0.5s;
}
.index7 .items .item .text .summary {
  font-family: HONORSansCN-Bold;
  margin-top: clamp(16px, 0.16rem, 16px);
  font-size: clamp(14px, 0.18rem, 18px);
  position: relative;
  z-index: 2;
  transition: all 0.5s;
}
.index7 .items .item:hover .text::after {
  opacity: 1;
}
.index7 .items .item:hover .text .time,
.index7 .items .item:hover .text .summary {
  color: #fff;
}
.form {
  display: flex;
  grid-gap: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .form {
    grid-gap: 10px;
  }
}
.form label {
  display: block;
  flex-basis: calc(50% - 15px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .form label {
    flex-basis: 100%;
  }
}
.form label.w100 {
  flex-basis: 100%;
}
.form label.w33 {
  flex-basis: calc((100% - 60px) / 3);
}
@media screen and (max-width: 768px) {
  .form label.w33 {
    flex-basis: 100%;
  }
}
.form label span {
  font-size: clamp(12px, 0.14rem, 14px);
  color: #374151;
  display: block;
  margin-bottom: 10px;
}
.form label.checkbox {
  flex-basis: 16px;
  height: 16px;
  padding: 0;
  margin-right: 10px;
}
.form label.checkbox input {
  width: 16px;
  height: 16px;
  padding: 0;
  border-radius: 2px;
}
.form .form-box.w100 {
  flex-basis: 100%;
}
.form .form-box.w33 {
  flex-basis: calc((100% - 60px) / 3);
}
@media screen and (max-width: 768px) {
  .form .form-box.w33 {
    flex-basis: 100%;
  }
}
.form select {
  height: 50px;
  padding-left: 20px;
  background: #fff;
  font-size: clamp(12px, 0.14rem, 14px);
  border-radius: 8px;
  border: 1px solid #B3B3B3;
  color: #1F2937;
  -webkit-appearance: none;
  position: relative;
}
.form input {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  text-indent: 0;
  font-size: clamp(12px, 0.14rem, 14px);
  border-radius: 8px;
  border: 1px solid #B3B3B3;
  background: #FFF;
  color: #9CA3AF;
}
.form input::placeholder {
  font-size: clamp(12px, 0.14rem, 14px);
  color: #9CA3AF;
}
.form textarea {
  height: 98px;
  padding: 20px;
  text-indent: 0;
  font-size: clamp(12px, 0.14rem, 14px);
  border-radius: 8px;
  border: 1px solid #B3B3B3;
  background: #FFF;
  color: #9CA3AF;
}
.form textarea::placeholder {
  font-size: clamp(12px, 0.14rem, 14px);
  color: #9CA3AF;
}
.form button {
  display: flex;
  width: fit-content;
  margin: auto;
  border-radius: 8px;
  background: linear-gradient(90deg, #2559B5 0%, #183D85 100%);
  color: #fff;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: clamp(14px, 0.14rem, 14px);
  gap: 10px;
  transition: all 0.5s;
}
.form button:hover {
  transform: translateY(-10px);
}
@media screen and (max-width: 768px) {
  .form button {
    margin-top: 30px;
  }
}
.form .tip {
  flex-basis: 100%;
}
.form .tip span {
  font-size: clamp(12px, 0.14rem, 14px);
  color: #374151;
}
.form .tip a {
  color: var(--dominant-color);
}
.form .tip a:hover {
  text-decoration: underline;
}
.f-button {
  display: flex;
  width: 200px;
  height: 50px;
  background: #00abf1;
  border-radius: 4px;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.goTop {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  position: absolute;
  transition: all 0.5s;
  z-index: 1000;
  top: -70px;
  left: 0;
  right: 0;
  margin: auto;
}
.goTop:hover .button span {
  transform: translateY(-10px);
}
@media screen and (max-width: 768px) {
  .goTop {
    transform: scale(0.5);
  }
}
.goTop .lazy {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-size: cover;
  -webkit-animation-name: spin;
  animation-name: spin;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
.goTop .button {
  width: 80px;
  height: 80px;
  color: var(--dominant-color);
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goTop .button span {
  transition: all 0.5s;
}
.goTop svg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 55px);
  height: calc(100% - 55px);
}
.goTop svg.cm {
  transition: none;
  opacity: 1;
}
.goTop svg .p1 {
  animation: circleRotate 4s linear infinite;
  transform-origin: 50% 50%;
}
.goTop svg circle {
  fill: #fff;
  stroke: transparent;
}
.goTop svg .p2 {
  animation: circleRotateReverse 4s linear infinite;
}
.goTop.button-div {
  display: block;
  width: 60px;
  height: 60px;
  top: 0;
  margin-left: 0;
  transform-origin: 0;
  transform: scale(1);
}
.goTop.button-div .button {
  width: 30px;
  height: 30px;
}
.goTop.button-div .button span {
  font-size: 14px;
  transform: translateY(0) !important;
}
/*--------------------------------------------------------*/
/*内页*/
/*内页通用*/
.page-title {
  text-align: left;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .page-title {
    gap: 20px;
  }
}
.page-title.textC {
  text-align: center;
}
.page-title.colorW {
  color: #fff;
}
.page-title .title {
  font-family: HONORSansCN-Bold;
  line-height: 1.25;
  font-size: clamp(16px, 0.4rem, 40px);
  color: var(--dominant-color);
  position: relative;
}
.page-title .title.colorW {
  color: #fff;
}
.page-title .title.colorB {
  color: #000;
}
.page-title .title img {
  max-width: 200px;
}
.page-title .tip {
  font-size: clamp(12px, 0.24rem, 24px);
  color: var(--dominant-color);
  margin-top: clamp(10px, 0.2rem, 20px);
}
.page-title .summary {
  margin-top: clamp(10px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.6);
  font-size: clamp(12px, 0.2rem, 20px);
  line-height: 1.6;
}
.page-title .summary.colorW {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .page-title .summary {
    margin-top: 10px;
  }
}
.page-title .summary a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .page-title .page-form {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page-title .page-form form {
    width: 100%;
  }
}
.page-title .page-form label {
  position: relative;
  transform: skewX(-25deg);
  display: block;
  border: 2px solid #e7e7f9;
}
@media screen and (max-width: 768px) {
  .page-title .page-form label {
    width: 100%;
  }
}
.page-title .page-form label input {
  width: clamp(200px, 4.1rem, 410px);
  height: clamp(34px, 0.46rem, 46px);
  transform: skewX(25deg);
  border: none;
  background: none;
  padding-left: 20px;
  font-size: clamp(14px, 0.18rem, 18px);
  color: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .page-title .page-form label input {
    width: 100%;
  }
}
.page-title .page-form label input::placeholder {
  color: rgba(20, 17, 192, 0.4);
}
.page-title .page-form button {
  width: clamp(50px, 1.1rem, 110px);
  height: clamp(38px, 0.5rem, 50px);
  background: var(--dominant-color);
  color: #fff;
  transform: skewX(-25deg);
}
.page-title .page-form button i {
  font-size: clamp(12px, 0.2rem, 20px);
  transform: skewX(25deg);
}
.page-title .page-select {
  display: flex;
  gap: 10px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .page-title .page-select {
    flex-direction: column;
    width: 100%;
  }
}
.page-title .page-select .select-item {
  display: flex;
  align-items: center;
  position: relative;
  height: clamp(38px, 0.55rem, 55px);
  cursor: pointer;
}
.page-title .page-select .select-item.select-item1 {
  width: clamp(2.36rem, 2.36rem, 236px);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .page-title .page-select .select-item.select-item1 {
    width: 100%;
  }
}
.page-title .page-select .select-item.select-item2 {
  width: clamp(3.76rem, 3.76rem, 376px);
}
@media screen and (max-width: 768px) {
  .page-title .page-select .select-item.select-item2 {
    width: 100%;
  }
}
.page-title .page-select .select-item .select-text {
  font-size: clamp(12px, 0.18rem, 18px);
  color: var(--dominant-color);
  font-family: HONORSansCN-Bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 0.3rem, 30px);
  width: 100%;
  transform: skewX(-25deg);
  border: 2px solid #e7e7f9;
  height: 100%;
}
.page-title .page-select .select-item .select-text span,
.page-title .page-select .select-item .select-text i {
  transform: skewX(25deg);
}
.page-title .page-select .select-item .select {
  display: none;
  position: absolute;
  left: 0%;
  top: 110%;
  background: #fff;
  padding: clamp(20px, 0.3rem, 30px);
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.04);
  z-index: 20;
  width: 100%;
  line-height: 2;
  max-height: 50vh;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .page-title .page-select .select-item .select {
    width: 100vw;
  }
}
.page-title .page-select .select-item .select .s-item {
  display: block;
  font-size: clamp(12px, 0.16rem, 16px);
  margin-bottom: 12px;
  line-height: 1.2;
}
.page-title .page-select .select-item .select .s-item:hover {
  color: var(--dominant-color);
}
/*内页大图*/
.pageBanner {
  transition: all 0.5s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  color: #fff;
  height: 6rem;
  max-height: 600px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .pageBanner {
    height: 200px;
  }
}
.pageBanner.news {
  height: 4rem;
  max-height: 400px;
}
@media screen and (max-width: 768px) {
  .pageBanner.news {
    height: 250px;
  }
}
.pageBanner.product {
  height: 9.7rem;
  max-height: 970px;
}
@media screen and (max-width: 768px) {
  .pageBanner.product {
    height: 450px;
  }
}
.pageBanner.product::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.pageBanner.product .banner-box {
  bottom: auto;
  top: clamp(70px, 2.2rem, 220px);
}
.pageBanner.product .banner-box .banner-title {
  margin-bottom: 0;
}
.pageBanner.product .banner-box .banner-summary {
  margin-top: clamp(10px, 0.3rem, 30px);
}
.pageBanner.industry {
  height: 9.7rem;
  max-height: 970px;
}
@media screen and (max-width: 768px) {
  .pageBanner.industry {
    height: 450px;
  }
}
.pageBanner.industry .banner-box {
  bottom: 0;
  top: 0;
  margin: auto;
}
.pageBanner.industry .banner-box .banner-title {
  margin-bottom: 0;
}
.pageBanner.industry .banner-box .banner-summary {
  margin-top: clamp(10px, 0.3rem, 30px);
}
.pageBanner.product-detail {
  height: 8rem;
  max-height: 800px;
}
@media screen and (max-width: 768px) {
  .pageBanner.product-detail {
    height: auto;
    max-height: initial;
  }
}
.pageBanner.product-detail .banner-box {
  bottom: 0;
  top: 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .pageBanner.product-detail .banner-box {
    flex-direction: column;
    position: initial;
    padding: 50px 0;
  }
}
.pageBanner.product-detail .banner-box .banner-title {
  margin-bottom: 0;
}
.pageBanner.product-detail .banner-box .banner-list {
  display: flex;
  gap: clamp(20px, 0.6rem, 60px);
  margin-top: clamp(10px, 0.2rem, 20px);
}
.pageBanner.product-detail .banner-box .banner-list .list {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dominant-color);
  font-family: HONORSansCN-Bold;
}
.pageBanner.product-detail .banner-box .banner-list .list .key {
  font-size: clamp(12px, 0.2rem, 20px);
}
.pageBanner.product-detail .banner-box .banner-list .list .value {
  font-size: clamp(14px, 0.3rem, 30px);
}
.pageBanner.product-detail .banner-box .banner-summary {
  margin-top: clamp(10px, 0.2rem, 20px);
}
.pageBanner.product-detail .banner-box .left {
  flex-basis: clamp(400px, 6rem, 600px);
}
@media screen and (max-width: 768px) {
  .pageBanner.product-detail .banner-box .left {
    flex-basis: auto;
  }
}
.pageBanner.product-detail .banner-box .right {
  width: clamp(400px, 6rem, 600px);
}
@media screen and (max-width: 768px) {
  .pageBanner.product-detail .banner-box .right {
    width: 100%;
  }
}
.pageBanner.product-detail .banner-box .right .swiper-slide {
  text-align: center;
}
.pageBanner.imgBanner {
  height: auto;
  max-height: initial;
}
.pageBanner.imgBanner::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .pageBanner.imgBanner .img img {
    height: 300px;
    object-fit: cover;
  }
}
.pageBanner.imgBanner .banner-box {
  bottom: 0;
  top: 0;
  margin: auto;
}
.pageBanner.imgBanner .banner-box .banner-title {
  margin-bottom: 0;
}
.pageBanner.imgBanner .banner-box .banner-summary {
  margin-top: clamp(10px, 0.3rem, 30px);
}
.pageBanner .video {
  width: 100%;
}
.pageBanner video {
  display: block;
  width: 100%;
}
.pageBanner .banner-box {
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(35px, 0.7rem, 70px);
  z-index: 2;
  height: fit-content;
  text-align: left;
}
.pageBanner .banner-box .banner-title {
  color: #fff;
  font-size: clamp(18px, 0.5rem, 50px);
  line-height: 1;
  font-family: HONORSansCN-Bold;
  margin-bottom: clamp(20px, 0.5rem, 50px);
}
.pageBanner .banner-box .banner-summary {
  font-size: clamp(14px, 0.2rem, 20px);
  line-height: 1.6;
  max-width: 800px;
}
.pageBanner .banner-box .banner-button {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(20px, 0.3rem, 30px);
}
.pageBanner .banner-box .banner-button a {
  display: flex;
  transform: skewX(-25deg);
  background: var(--dominant-color);
  color: #fff;
  height: clamp(30px, 0.5rem, 50px);
  padding: 0 clamp(20px, 0.5rem, 50px);
  align-items: center;
  font-size: clamp(14px, 0.18rem, 18px);
  transition: all 0.5s;
  font-family: HONORSansCN-Bold;
}
.pageBanner .banner-box .banner-button a span {
  display: block;
  transform: skewX(25deg);
}
.pageBanner .banner-box .banner-button a:hover {
  opacity: 0.7;
}
.pageBanner .banner-box .index-title {
  color: #fff;
}
.pageBanner .banner-box .index-title .title {
  color: #fff;
}
.pageBanner .banner-box .index-title .summary {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .pageBanner .banner-box .index-title .summary {
    display: none;
  }
}
.pageBanner .banner-box .about-play {
  display: inline-block;
  margin: 30px auto 0;
  font-size: 57px;
  cursor: pointer;
}
.pageBanner .pageBanner-mask {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 1;
}
.pageBanner .pageBanner-mask img {
  width: 100%;
}
/*内页侧边栏*/
/*内页导航*/
.page-menu {
  margin-top: clamp(20px, 0.5rem, 50px);
}
.page-menu .page-phone-click {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-menu .page-phone-click {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background: var(--dominant-color);
    color: #fff;
    font-size: 14px;
  }
}
.page-menu .menu-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  height: clamp(40px, 0.5rem, 50px);
}
@media screen and (max-width: 768px) {
  .page-menu .menu-box {
    grid-gap: 20px;
    justify-content: flex-start;
    overflow: auto;
    padding-left: 20px;
  }
  .page-menu .menu-box::-webkit-scrollbar {
    height: 0;
  }
}
.page-menu .menu-box a {
  color: #fff;
  font-size: clamp(14px, 0.18rem, 18px);
  transition: all 0.5s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  backdrop-filter: blur(10px);
  width: clamp(120px, 1.9rem, 190px);
  font-family: HONORSansCN-Bold;
  transform: skewX(-25deg);
  background: #383d46;
  box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.3);
}
.page-menu .menu-box a span {
  transform: skewX(25deg);
}
@media screen and (max-width: 768px) {
  .page-menu .menu-box a {
    flex-shrink: 0;
  }
}
.page-menu .menu-box a.active,
.page-menu .menu-box a:hover {
  background: var(--dominant-color);
  color: #fff;
  box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0);
}
.page-menu.product-menu a {
  flex-direction: column;
  text-align: center;
}
.page-menu.product-menu a .icon {
  width: 0.65rem;
  height: 0.65rem;
  min-width: 30px;
  min-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.page-menu.product-menu a .icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.page-menu.page-menu2 {
  margin-top: clamp(20px, 1rem, 100px);
}
.page-menu.page-menu2 .menu-box a {
  background: #fff;
  color: var(--dominant-color);
  border: 2px solid #e7e7f9;
}
.page-menu.page-menu2 .menu-box a.active,
.page-menu.page-menu2 .menu-box a:hover {
  background: var(--dominant-color);
  color: #fff;
  border-color: var(--dominant-color);
}
.page-menu.bgW .menu-box a {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.page-menu.bgW .menu-box a.active,
.page-menu.bgW .menu-box a:hover {
  background: var(--dominant-color);
  color: #fff;
  box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0);
}
/*面包屑*/
.location {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  z-index: 2;
  color: #b9b9b9;
  margin-top: 20px;
  font-family: HONORSansCN-Bold;
}
.location i {
  color: #fff;
  font-size: 16px;
}
.location a {
  font-size: clamp(12px, 0.16rem, 16px);
  color: #b9b9b9;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 10px;
}
.location a img {
  width: clamp(12px, 0.19rem, 19px);
  transform: translateY(-2px);
}
.location a i {
  color: var(--dominant-color);
  margin-right: 4px;
}
.location a.active {
  color: var(--dominant-color);
}
.location a:hover {
  text-decoration: underline;
}
/*分页*/
.pagers {
  margin-top: clamp(30px, 0.9rem, 90px);
  gap: 1.2rem;
  font-family: HONORSansCN-Bold;
}
@media screen and (max-width: 768px) {
  .pagers {
    flex-direction: column;
  }
}
.pagers .pager {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: HONORSansCN-Bold;
}
.pagers .pager a {
  width: clamp(30px, 0.65rem, 65px);
  height: clamp(30px, 0.65rem, 65px);
  margin: 0 10px;
  color: var(--dominant-color);
  transition: all 0.5s;
  background: #fff;
  border-radius: 50%;
  font-size: clamp(12px, 0.2rem, 20px);
  background: url('/static/home/images/img8.png') no-repeat center / contain;
  font-family: HONORSansCN-Bold;
}
@media screen and (max-width: 768px) {
  .pagers .pager a {
    margin: 0 4px;
  }
}
.pagers .pager a:hover,
.pagers .pager a.active {
  background: url('/static/home/images/img9.png') no-repeat center / contain;
  color: #fff;
}
.pagers .pager a.more {
  font-size: 12px;
  background: none;
}
.pagers .pager a.more:hover {
  color: var(--dominant-color);
}
.pagers .pager a.disable {
  color: #9CA3AF;
  pointer-events: none;
}
.pagers .pager-to {
  display: flex;
  align-items: center;
  gap: 30px;
}
.pagers .pager-to .num {
  font-size: clamp(12px, 0.2rem, 20px);
  color: #cccccc;
}
.pagers .pager-to .num span {
  color: var(--dominant-color);
}
.pagers .pager-to form {
  color: var(--dominant-color);
  display: flex;
  align-items: center;
  font-size: clamp(12px, 0.2rem, 20px);
}
.pagers .pager-to form input {
  width: clamp(30px, 0.65rem, 65px);
  height: clamp(30px, 0.65rem, 65px);
  border: none;
  background: url('/static/home/images/img8.png') no-repeat center / contain;
  border-radius: 50%;
  text-align: center;
  text-indent: 0;
  font-size: clamp(12px, 0.2rem, 20px);
}
.pagers .pager-to form button {
  width: clamp(50px, 1rem, 100px);
  height: clamp(30px, 0.46rem, 46px);
  background: var(--dominant-color);
  color: #fff;
  font-size: clamp(12px, 0.2rem, 20px);
  transition: all 0.5s;
  margin-left: clamp(20px, 0.5rem, 50px);
  transform: skewX(-25deg);
}
.pagers .pager-to form button span {
  transform: skewX(25deg);
  display: block;
}
.pagers .pager-to form button:hover {
  color: #fff;
  background: var(--dominant-color);
}
.pager2 {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .pager2 {
    margin-top: 50px;
    flex-direction: column-reverse;
  }
}
.pager2 .left .prev,
.pager2 .left .next {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: #000;
  transition: all 0.5s;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.04);
  margin-right: 20px;
  cursor: pointer;
}
.pager2 .left .prev:hover,
.pager2 .left .next:hover {
  background: #000;
  color: #fff;
}
.pager2 .right {
  flex-basis: calc(100% - 220px);
  color: #d5d5d5;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .pager2 .right {
    margin-bottom: 20px;
  }
}
.pager2 .right .line1 {
  height: 1px;
  flex: 1;
  background: #d5d5d5;
}
@media screen and (max-width: 768px) {
  .pager2 .right .line1 {
    display: none;
  }
}
.pager2 .right .number {
  flex-basis: 145px;
}
.pager2 .right .number .num {
  color: #000;
  margin-right: 6px;
}
.pager2 .right .number .max {
  margin-left: 6px;
}
.pager2 .right .line2 {
  height: 1px;
  flex-basis: 270px;
  background: #d5d5d5;
}
@media screen and (max-width: 768px) {
  .pager2 .right .line2 {
    display: none;
  }
}
/*内页左右结构*/
.page-box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-box {
    flex-direction: column;
  }
}
.page-box .left {
  flex-basis: 340px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .page-box .left {
    flex-basis: 300px;
  }
}
@media screen and (max-width: 768px) {
  .page-box .left {
    width: 100%;
    flex-basis: 100%;
  }
}
.page-box .right {
  flex: 1;
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .page-box .right {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-box .right .right-content {
    padding: 10px;
  }
}
.pages {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 30px;
  border-top: 1px solid #eee;
  padding-top: 50px;
}
.pages .prev,
.pages .next {
  flex-basis: 100%;
  transition: all 0.5s;
  font-size: 20px;
  color: var(--dominant-color);
  margin-bottom: 20px;
  display: inline-block;
}
.pages .prev:hover,
.pages .next:hover {
  text-decoration: underline;
}
/*新闻资讯*/
@media screen and (max-width: 768px) {
  .news .page-title {
    flex-direction: column;
  }
}
.news .news-box {
  margin-top: clamp(30px, 0.9rem, 90px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 0.2rem, 20px);
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .news .news-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.news .news-box .item {
  transition: all 0.5s;
  position: relative;
  background: #f6f6f6;
  overflow: hidden;
  align-items: normal;
}
@media screen and (max-width: 768px) {
  .news .news-box .item {
    flex-direction: column;
  }
}
.news .news-box .item .img {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .news .news-box .item .img {
    width: 100%;
  }
}
.news .news-box .item .img .imgBox {
  padding-bottom: 57%;
}
.news .news-box .item .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  color: #666;
  align-items: normal;
  padding: clamp(20px, 0.2rem, 20px);
}
.news .news-box .item .text .time {
  font-size: clamp(12px, 0.18rem, 18px);
  opacity: 0.6;
  transition: all 0.5s;
  margin-bottom: 0.1rem;
}
.news .news-box .item .text .title {
  font-family: HONORSansCN-Bold;
  color: #000;
  transition: all 0.5s;
  font-size: clamp(16px, 0.18rem, 18px);
}
.news .news-box .item:hover .title {
  color: var(--dominant-color);
}
.news-search {
  margin-bottom: 30px;
}
.news-search label {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
  display: block;
  width: 100%;
  position: relative;
}
.news-search label input {
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: 2px solid #eee;
  background: none;
  color: #666;
  padding-left: 0;
  text-indent: 0;
}
.news-search label input::placeholder {
  color: #666;
}
.news-search label button {
  width: 50px;
  height: 50px;
  background: none;
  color: #666;
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 0;
}
.news-search label button img {
  width: 16px;
  filter: brightness(0);
  opacity: 0.5;
}
.news-search label i {
  position: absolute;
  font-size: 20px;
  right: -50px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
}
.video {
  margin-top: clamp(20px, 0.4rem, 40px);
}
.video .item {
  cursor: pointer;
}
.video .item .img {
  position: relative;
}
.video .item .img .play {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: clamp(40px, 0.7rem, 70px);
  height: clamp(40px, 0.7rem, 70px);
}
.video .top .item {
  position: relative;
}
.video .top .item .imgBox {
  padding-bottom: 45%;
}
@media screen and (max-width: 768px) {
  .video .top .item .imgBox {
    padding-bottom: 65%;
  }
}
.video .top .item .text {
  position: absolute;
  color: #fff;
  padding: 30px;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: clamp(16px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .video .top .item .text {
    padding: 20px;
  }
}
.video .bottom {
  margin-top: clamp(20px, 0.8rem, 80px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 0.6rem, 60px);
}
@media screen and (max-width: 768px) {
  .video .bottom {
    grid-template-columns: repeat(1, 1fr);
  }
}
.video .bottom .item {
  background: #fff;
}
.video .bottom .item .imgBox {
  padding-bottom: 65%;
}
.video .bottom .item .text {
  padding: clamp(20px, 0.3rem, 30px);
}
.video .bottom .item .text .title {
  font-size: clamp(16px, 0.24rem, 24px);
}
.video .bottom .item .text .time {
  color: rgba(0, 0, 0, 0.6);
  margin-top: clamp(10px, 0.2rem, 20px);
  font-size: clamp(14px, 0.18rem, 18px);
}
.file {
  margin-top: clamp(20px, 0.4rem, 40px);
}
.file .items {
  position: relative;
  padding: clamp(20px, 0.8rem, 80px) 0;
}
.file .items .line {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  background: #e8e9eb;
  height: 2px;
}
.file .items .line.line1 {
  top: 0;
}
.file .items .line.line2 {
  bottom: 0;
}
.file .items .item-container {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .file .items .item-container {
    flex-direction: column;
  }
}
.file .items .item-container .left {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  font-size: clamp(16px, 0.3rem, 30px);
  color: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .file .items .item-container .left {
    position: initial;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.file .items .item-container .left .add {
  margin-top: 30px;
  width: clamp(30px, 0.42rem, 42px);
  height: clamp(30px, 0.42rem, 42px);
  background: var(--dominant-color);
  border-radius: 50%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .file .items .item-container .left .add {
    margin-top: 0;
  }
}
.file .items .item-container .left .add i {
  font-size: clamp(12px, 0.16rem, 16px);
}
.file .items .item-container .right {
  width: 14rem;
  max-width: 75%;
}
@media screen and (max-width: 768px) {
  .file .items .item-container .right {
    max-width: 90%;
    width: 100%;
    margin: 20px auto 0;
  }
}
.file .items .item-container .right .swiper-slide {
  cursor: pointer;
}
.file .items .item-container .right .swiper-slide .img {
  position: relative;
}
.file .items .item-container .right .swiper-slide .img .play {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: clamp(30px, 0.5rem, 50px);
  height: clamp(30px, 0.5rem, 50px);
}
.file .items .item-container .right .swiper-slide .imgBox {
  padding-bottom: 65%;
}
.file .items .item-container .right .swiper-slide .text {
  padding-top: clamp(20px, 0.3rem, 30px);
}
.file .items .item-container .right .swiper-slide .text .title {
  font-size: clamp(16px, 0.24rem, 24px);
}
.file .lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
}
@media screen and (max-width: 768px) {
  .file .lists {
    grid-template-columns: repeat(1, 1fr);
  }
}
.file .lists .list {
  cursor: pointer;
}
.file .lists .list .img {
  position: relative;
}
.file .lists .list .img .play {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: clamp(30px, 0.5rem, 50px);
  height: clamp(30px, 0.5rem, 50px);
}
.file .lists .list .imgBox {
  padding-bottom: 65%;
}
.file .lists .list .text {
  padding-top: clamp(10px, 0.1rem, 10px);
}
.file .lists .list .text .title {
  font-size: clamp(16px, 0.24rem, 24px);
}
.related-title {
  font-size: clamp(16px, 0.24rem, 24px);
  background: var(--dominant-color);
  text-transform: uppercase;
  color: #fff;
  height: 0.76rem;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .related-title {
    height: 50px;
  }
}
/*新闻详情*/
.news-detail .title {
  font-size: clamp(16px, 0.4rem, 40px);
  line-height: 1.3;
  text-align: left;
  margin-bottom: 0.2rem;
  color: var(--dominant-color);
  font-family: HONORSansCN-Bold;
}
@media screen and (max-width: 768px) {
  .news-detail .title {
    margin-bottom: 0.3rem;
  }
}
.news-detail .mid {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #000000;
  gap: clamp(10px, 0.6rem, 60px);
  border-bottom: 2px solid #e6ebf2;
  padding-bottom: 0.2rem;
  margin-bottom: 0.5rem;
  font-family: HONORSansCN-Bold;
}
@media screen and (max-width: 768px) {
  .news-detail .mid {
    align-items: flex-start;
    gap: 20px;
    margin-top: 10px;
    padding-bottom: 20px;
  }
}
.news-detail .mid .item {
  display: flex;
  align-items: center;
  font-size: clamp(12px, 0.2rem, 20px);
}
.news-detail .details {
  background: #fff;
  padding-top: clamp(40px, 0.8rem, 80px);
  padding-bottom: clamp(40px, 1rem, 100px);
}
.news-detail .details .content {
  display: flex;
  gap: clamp(20px, 1.1rem, 110px);
}
@media screen and (max-width: 768px) {
  .news-detail .details .content {
    max-width: 100%;
    flex-direction: column;
  }
}
.news-detail .details .content .details-container {
  width: 10rem;
  max-width: 1000px;
  font-size: clamp(12px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.8;
  min-height: 300px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .news-detail .details .content .details-container {
    font-size: 14px;
    margin-top: 20px;
    width: 100%;
  }
  .news-detail .details .content .details-container img {
    max-width: 100% !important;
    height: auto !important;
  }
}
.news-detail .detail-pager {
  display: flex;
  flex-direction: column;
}
.news-detail .detail-pager a {
  display: flex;
  font-size: clamp(12px, 0.2rem, 20px);
  padding: clamp(20px, 0.2rem, 20px) 0;
  color: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid #eee;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .news-detail .detail-pager a {
    flex-basis: 100%;
  }
}
.news-detail .detail-pager a .text .t-summary {
  font-family: HONORSansCN-Bold;
  position: relative;
  color: #000;
}
.news-detail .detail-pager a .text .t-summary .icon {
  position: absolute;
  left: -0.5rem;
}
@media screen and (max-width: 768px) {
  .news-detail .detail-pager a .text .t-summary .icon {
    left: -20px;
  }
}
.news-detail .detail-pager a:hover {
  background: var(--dominant-color);
  padding: clamp(20px, 0.2rem, 20px);
}
.news-detail .detail-pager a:hover .t-summary {
  color: #fff;
}
.news-detail .footer-link {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  flex-basis: 50%;
}
@media screen and (max-width: 768px) {
  .news-detail .footer-link {
    margin-bottom: 20px;
  }
}
.news-detail .footer-link .item {
  border-radius: 50%;
  width: clamp(40px, 0.7rem, 70px);
  height: clamp(40px, 0.7rem, 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.5s;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
}
.news-detail .footer-link .item .show {
  position: absolute;
  bottom: clamp(40px, 0.7rem, 70px);
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  display: none;
}
.news-detail .footer-link .item img {
  transition: all 0.5s;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .news-detail .footer-link .item img {
    width: 30%;
  }
}
.news-detail .footer-link .item:hover {
  background: var(--dominant-color);
}
.news-detail .footer-link .item:hover .show {
  display: block;
}
.news-detail .footer-link .item:hover img {
  filter: brightness(100);
}
.news-relate {
  flex: 1;
}
.news-relate .page-title .title {
  text-align: left;
  font-size: clamp(14px, 0.3rem, 30px);
  color: #000;
}
.news-relate .items {
  margin-top: clamp(20px, 0.3rem, 30px);
  margin-bottom: clamp(40px, 0.6rem, 60px);
  gap: 20px;
}
.news-relate .items .item {
  display: block;
  transition: all 0.5s;
  border-bottom: 1px solid #eee;
}
.news-relate .items .item .text {
  padding: clamp(20px, 0.25rem, 25px);
}
.news-relate .items .item .text .time {
  transition: all 0.5s;
  font-size: clamp(12px, 0.16rem, 16px);
  color: rgba(0, 0, 0, 0.6);
}
.news-relate .items .item .text .title {
  margin-top: 10px;
  color: #000;
  font-size: clamp(14px, 0.2rem, 20px);
}
.news-relate .items .item:hover {
  background: var(--dominant-color);
}
.news-relate .items .item:hover .time {
  color: rgba(255, 255, 255, 0.6);
}
.news-relate .items .item:hover .title {
  color: #fff;
}
/*联系我们*/
.contact .contact1 {
  position: relative;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .contact .contact1 {
    flex-direction: column;
  }
}
.contact .contact1 .item {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .contact .contact1 .item {
    position: initial;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.contact .contact1 .item .icon {
  border-radius: 50%;
  font-size: 42px;
  color: var(--dominant-color);
}
@media screen and (max-width: 1600px) {
  .contact .contact1 .item .icon {
    font-size: 36px;
  }
}
@media screen and (max-width: 1440px) {
  .contact .contact1 .item .icon {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .contact .contact1 .item .icon {
    font-size: 20px;
  }
}
.contact .contact1 .item .text {
  text-align: center;
}
.contact .contact1 .item .text .key {
  font-size: 26px;
  color: #000;
  margin-bottom: 4px;
  margin-top: 10px;
}
@media screen and (max-width: 1600px) {
  .contact .contact1 .item .text .key {
    font-size: 24px;
  }
}
@media screen and (max-width: 1440px) {
  .contact .contact1 .item .text .key {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact .contact1 .item .text .key {
    font-size: 18px;
  }
}
.contact .contact1 .item .text .value {
  font-size: 16px;
  color: #666;
}
@media screen and (max-width: 768px) {
  .contact .contact1 .item .text .value {
    font-size: 14px;
  }
}
.contact .contact2 {
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .contact .contact2 {
    flex-direction: column;
    gap: 20px;
  }
}
.contact .contact2 .left {
  flex-basis: clamp(200px, 3rem, 300px);
}
@media screen and (max-width: 768px) {
  .contact .contact2 .left {
    flex-basis: 100%;
  }
}
.contact .contact2 .right {
  flex-basis: 11rem;
  max-width: 1100px;
}
.contact .contact2 .right .form {
  grid-gap: 2px;
}
.contact .contact2 .right .form label {
  position: relative;
  flex-basis: calc((100% - 4px) / 3);
  background: #fff;
}
@media screen and (max-width: 768px) {
  .contact .contact2 .right .form label {
    flex-basis: 100% !important;
  }
}
.contact .contact2 .right .form label span {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 150px;
  color: #000;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .contact .contact2 .right .form label span {
    font-size: 14px;
  }
}
.contact .contact2 .right .form label.w66 {
  flex-basis: calc(((100% - 40px) / 3 * 2) + 20px);
}
.contact .contact2 .right .form label.w100 {
  flex-basis: 100%;
}
.contact .contact2 .right .form label input,
.contact .contact2 .right .form label select {
  background: none;
  border: none;
  text-indent: 0;
  font-size: clamp(12px, 0.18rem, 18px);
  border-radius: 0;
  padding-left: 20px;
  font-family: HYZhengYuan-65W;
}
@media screen and (max-width: 768px) {
  .contact .contact2 .right .form label input,
  .contact .contact2 .right .form label select {
    padding-left: 10px;
  }
}
.contact .contact2 .right .form label textarea {
  background: none;
  border: none;
  padding: 20px;
  font-size: clamp(12px, 0.18rem, 18px);
  height: clamp(100px, 3rem, 300px);
  border-radius: 0;
  font-family: HYZhengYuan-65W;
}
@media screen and (max-width: 768px) {
  .contact .contact2 .right .form label textarea {
    height: 100px;
    padding: 10px;
  }
}
.contact .contact2 .right .form label img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.contact .contact2 .right .form label .check-box {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.contact .contact2 .right .form button {
  width: clamp(120px, 2rem, 200px);
  height: clamp(50px, 0.7rem, 70px);
  border-radius: 10px;
  margin-top: 0.2rem;
  margin-left: 0;
  transition: all 0.5s;
  background: var(--dominant-color);
  font-size: clamp(12px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .contact .contact2 .right .form button {
    margin-top: 10px;
  }
}
.contact .contact2 .right .form button:hover {
  opacity: 0.8;
}
.contact .contact3 {
  margin-bottom: clamp(50px, 1.2rem, 120px);
}
.contact .contact3 .page-title {
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: clamp(20px, 0.3rem, 30px);
  margin-bottom: clamp(20px, 0.5rem, 50px);
}
.contact .contact3 .contact3-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: clamp(20px, 0.5rem, 50px);
}
@media screen and (max-width: 768px) {
  .contact .contact3 .contact3-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
}
.contact .contact3 .contact3-box .item {
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}
.contact .contact3 .contact3-box .item .title {
  font-size: clamp(14px, 0.3rem, 30px);
  color: var(--dominant-color);
  border-bottom: 2px solid #e5e5e5;
  margin-bottom: clamp(10px, 0.3rem, 30px);
  padding-bottom: clamp(10px, 0.3rem, 30px);
  font-family: HONORSansCN-Bold;
}
.contact .contact3 .contact3-box .item .summary {
  font-size: clamp(12px, 0.2rem, 20px);
  line-height: 1.6;
  color: #8d8c8c;
}
.contact .contact3 .contact3-box .item .summary strong {
  color: #000;
  display: block;
  margin-bottom: 10px;
}
.contact .contact3 .contact3-box .item .summary a {
  display: flex;
  gap: 20px;
  transition: all 0.5s;
}
.contact .contact3 .contact3-box .item .summary a span {
  color: var(--dominant-color);
}
.contact .contact3 .contact3-box .item .summary a:hover {
  color: var(--dominant-color);
}
.contact .c-box {
  width: 100%;
  height: clamp(100px, 2rem, 200px);
}
.contact .contact4 {
  position: relative;
  overflow: hidden;
}
.contact .contact4 .text {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .contact .contact4 .text {
    position: inherit;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 10px;
  }
}
.contact .contact4 .text .item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(14px, 0.28rem, 28px);
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.2);
  padding: clamp(50px, 0.8rem, 80px) clamp(10px, 0.2rem, 20px);
  transition: all 2s;
}
@media screen and (max-width: 768px) {
  .contact .contact4 .text .item {
    background: var(--dominant-color) url('../images/img37.png') no-repeat center / cover;
  }
}
.contact .contact4 .text .item:hover {
  background: var(--dominant-color) url('../images/img37.png') no-repeat center / cover;
}
/*产物中心*/
.product {
  padding: clamp(40px, 1.2rem, 120px) 0;
}
.product .top {
  padding: clamp(20px, 0.5rem, 50px);
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 768px) {
  .product .top {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .product .top .page-title {
    flex-direction: column;
  }
}
.product .top .page-title .title {
  font-size: clamp(18px, 0.3rem, 30px);
}
.product .top .p-search {
  gap: clamp(30px, 1rem, 100px);
  margin-top: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .product .top .p-search {
    flex-direction: column;
    gap: 60px;
  }
}
.product .top .p-search .s-title {
  font-size: clamp(14px, 0.2rem, 20px);
  font-family: HONORSansCN-Bold;
  margin-bottom: clamp(20px, 0.2rem, 20px);
}
.product .top .p-search .points {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.product .top .p-search .points::after {
  content: "";
  width: 100%;
  background: #e1e0ff;
  height: 4px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.5s;
}
.product .top .p-search .points .line {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.5s;
  width: 0;
  height: 4px;
  background: var(--dominant-color);
  z-index: 2;
}
.product .top .p-search .points .item {
  position: relative;
}
.product .top .p-search .points .item .point {
  width: clamp(10px, 0.14rem, 14px);
  height: clamp(10px, 0.14rem, 14px);
  border-radius: 50%;
  background: #e1e0ff;
  position: relative;
  z-index: 5;
  cursor: pointer;
}
.product .top .p-search .points .item .text {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  font-size: clamp(14px, 0.18rem, 18px);
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.product .top .p-search .points .item.active .point,
.product .top .p-search .points .item.selected-start .point,
.product .top .p-search .points .item.selected-end .point {
  background: var(--dominant-color);
}
.product .top .p-search .points .item.active .text,
.product .top .p-search .points .item.selected-start .text,
.product .top .p-search .points .item.selected-end .text {
  color: var(--dominant-color);
}
.product .top .p-search .points .selection-range {
  position: absolute;
  top: 50%;
  height: 4px;
  background: var(--dominant-color);
  z-index: 2;
  transform: translateY(-50%);
  transition: all 3s;
  width: 0;
}
@media screen and (max-width: 768px) {
  .product .top .p-search .search1 {
    width: 100%;
  }
}
.product .top .p-search .search1 .points {
  width: clamp(340px, 6.8rem, 680px);
}
@media screen and (max-width: 768px) {
  .product .top .p-search .search1 .points {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .product .top .p-search .search2 {
    width: 100%;
  }
}
.product .top .p-search .search2 .points {
  width: clamp(160px, 3.2rem, 320px);
}
@media screen and (max-width: 768px) {
  .product .top .p-search .search2 .points {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .product .top .p-search .search3 {
    width: 100%;
  }
}
.product .top .p-search .search3 .points {
  width: clamp(120px, 2.4rem, 240px);
}
@media screen and (max-width: 768px) {
  .product .top .p-search .search3 .points {
    width: auto;
  }
}
.product .bottom {
  margin-top: clamp(30px, 0.6rem, 60px);
  gap: clamp(20px, 0.3rem, 30px);
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .product .bottom {
    flex-direction: column;
  }
}
.product .bottom .left {
  flex-basis: clamp(200px, 4rem, 400px);
}
@media screen and (max-width: 768px) {
  .product .bottom .left {
    width: 100%;
  }
}
.product .bottom .left .items {
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
  margin-bottom: clamp(20px, 0.3rem, 30px);
}
.product .bottom .left .items .title {
  font-size: clamp(14px, 0.3rem, 30px);
  color: var(--dominant-color);
  font-family: HONORSansCN-Bold;
  padding: clamp(20px, 0.4rem, 40px) clamp(20px, 0.5rem, 50px) clamp(20px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .product .bottom .left .items .title {
    display: flex;
    justify-content: space-between;
  }
}
.product .bottom .left .items .title i {
  display: none;
}
@media screen and (max-width: 768px) {
  .product .bottom .left .items .title i {
    display: block;
  }
}
.product .bottom .left .items .item {
  padding-bottom: clamp(20px, 0.7rem, 70px);
}
@media screen and (max-width: 768px) {
  .product .bottom .left .items .item {
    display: none;
  }
}
.product .bottom .left .items .i-item {
  display: block;
  font-size: clamp(14px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.6);
  font-family: HONORSansCN-Bold;
  padding: 0 clamp(20px, 0.5rem, 50px);
  transition: all 0.5s;
}
.product .bottom .left .items .i-item .key {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  padding: clamp(20px, 0.3rem, 30px) 0;
  transition: all 0.5s;
}
.product .bottom .left .items .i-item:first-child .key {
  border-top: 1px solid #e5e5e5;
}
.product .bottom .left .items .i-item:hover,
.product .bottom .left .items .i-item.active {
  background: var(--dominant-color);
  color: #fff;
}
.product .bottom .left .items .i-item:hover .key,
.product .bottom .left .items .i-item.active .key {
  border-color: var(--dominant-color);
}
.product .bottom .right {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .product .bottom .right {
    width: 100%;
  }
}
.product .bottom .right .pro_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 0.2rem, 20px);
}
.product .bottom .right .pro_items.pro_items2 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  .product .bottom .right .pro_items {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.product .bottom .right .pro_items .item {
  position: relative;
  background: url('/static/home/images/img31.jpg') no-repeat center / cover;
}
.product .bottom .right .pro_items .item .text {
  position: absolute;
  bottom: 0;
  padding: clamp(20px, 0.3rem, 30px) 20px;
  font-size: clamp(14px, 0.24rem, 24px);
  font-family: HONORSansCN-Bold;
  text-align: center;
  width: 100%;
}
.product .bottom .right .pro_items .item img {
  object-fit: contain;
  width: 65%;
  left: 0;
  right: 0;
  margin: auto;
}
.product .bottom .right .items {
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}
.product .bottom .right .items .i-item {
  padding-left: 30px !important;
  padding-right: 30px !important;
}
.product-detail {
  font-size: clamp(14px, 0.18rem, 18px);
  line-height: 1.9444;
}
.product-detail .top {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .product-detail .top {
    flex-direction: column;
    gap: 20px;
  }
}
.product-detail .top .left {
  flex-basis: 40%;
}
.product-detail .top .left img {
  width: 100%;
}
.product-detail .top .right {
  flex: 1;
}
.product-detail .bottom {
  margin-top: 10px;
}
/*对于我们*/
.about {
  background: #fff;
  overflow: hidden;
}
.about .about1 {
  position: relative;
}
@media screen and (max-width: 768px) {
  .about .about1 {
    height: 50vh;
  }
}
.about .about1 .img {
  height: 100%;
}
.about .about1 .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.about .about1 .text {
  position: absolute;
  top: clamp(100px, 1.7rem, 170px);
  bottom: auto;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
  text-align: center;
  color: #fff;
  font-family: HONORSansCN-Bold;
}
.about .about1 .text .text1 {
  font-size: clamp(50px, 1rem, 100px);
  margin: auto;
}
.about .about1 .text .text2 {
  margin-top: clamp(30px, 0.6rem, 60px);
  font-size: clamp(25px, 0.5rem, 50px);
}
.about .about1 .more {
  position: absolute;
  width: clamp(40px, 0.64rem, 64px);
  left: 0;
  right: 0;
  bottom: clamp(45px, 0.75rem, 75px);
  margin: auto;
}
.about .about2 {
  background: url('/static/home/images/img72.jpg') no-repeat center bottom / cover;
}
.about .about2 .top {
  max-width: 1920px;
  margin: auto;
  position: relative;
  padding-top: clamp(50px, 1.5rem, 150px);
}
.about .about2 .top .text .text-box {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .about .about2 .top .text .text-box {
    width: 100%;
  }
}
.about .about2 .top .img {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(400px, 8.3rem, 830px);
}
@media screen and (max-width: 768px) {
  .about .about2 .top .img {
    position: initial;
    margin-top: 30px;
  }
}
.about .about2 .bottom {
  margin-top: clamp(40px, 0.6rem, 60px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .about .about2 .bottom {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about .about2 .bottom .item {
  cursor: pointer;
  background: url('/static/home/images/img117.jpg') no-repeat center / cover;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: clamp(20px, 1.3rem, 130px) clamp(20px, 0.4rem, 40px);
  transition: all 0.5s;
}
.about .about2 .bottom .item .title {
  font-size: clamp(14px, 0.24rem, 24px);
  color: var(--dominant-color);
  font-family: HONORSansCN-Bold;
}
.about .about2 .bottom .item .title.title2 {
  font-size: clamp(18px, 0.3rem, 30px);
  height: clamp(0.66rem, 0.66rem, 66px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .about2 .bottom .item .title span {
  font-size: clamp(24px, 0.5rem, 50px);
}
.about .about2 .bottom .item .summary {
  line-height: 1.8;
  margin-top: clamp(10px, 0.1rem, 10px);
  font-size: clamp(14px, 0.18rem, 18px);
  color: rgba(0, 0, 0, 0.6);
}
.about .about2 .bottom .item:hover {
  background: url('/static/home/images/img118.jpg') no-repeat center / cover;
}
.about .about2 .bottom .item:hover .title,
.about .about2 .bottom .item:hover .summary {
  color: #fff;
}
.about .about2 .bottom .item:hover .summary {
  opacity: 0.6;
}
.about .about3 {
  background: url('/static/home/images/img119.jpg') no-repeat center / cover;
  padding-bottom: clamp(100px, 2rem, 200px);
  width: 100%;
}
.about .about3 .items {
  margin-top: clamp(20px, 0.4rem, 40px);
  box-shadow: 0 0 3px 0 rgba(255, 255, 255, 0.1);
  color: #fff;
}
.about .about3 .items .item {
  padding: clamp(20px, 0.5rem, 50px) clamp(20px, 0.4rem, 40px);
  height: clamp(400px, 6.5rem, 650px);
}
.about .about3 .items .item .title {
  font-size: clamp(14px, 0.3rem, 30px);
}
.about .about3 .items .item .summary {
  padding-right: 10px;
  font-size: clamp(14px, 0.16rem, 16px);
  color: rgba(255, 255, 255, 0.8);
  margin-top: clamp(10px, 0.2rem, 20px);
  line-height: 1.8;
  height: clamp(300px, 4.5rem, 450px);
  overflow: auto;
}
.about .about3 .items .item .summary ul {
  padding-left: 0;
}
.about .about3 .items .item .summary ul li::marker {
  color: #fff;
}
.about .about4 {
  padding-bottom: clamp(150px, 3rem, 300px);
  background: url('/static/home/images/img123.jpg') no-repeat center bottom / cover;
}
.about .about4 .about4-box {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .about .about4 .about4-box {
    flex-direction: column;
  }
}
.about .about4 .about4-box .text {
  flex: 1;
}
.about .about4 .about4-box .text .swiper {
  margin-top: clamp(20px, 0.6rem, 60px);
  height: 350px;
}
@media screen and (max-width: 768px) {
  .about .about4 .about4-box .text .swiper {
    display: none;
  }
}
.about .about4 .about4-box .text .swiper-slide {
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 50px;
  font-size: clamp(14px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.3);
}
.about .about4 .about4-box .text .swiper-slide.swiper-slide-active {
  color: var(--dominant-color);
}
.about .about4 .about4-box .text .button {
  display: flex;
  margin-top: clamp(20px, 0.5rem, 50px);
  gap: 20px;
}
.about .about4 .about4-box .text .button .swiper-button-prev,
.about .about4 .about4-box .text .button .swiper-button-next {
  position: initial;
  margin-top: auto;
}
.about .about4 .about4-box .swiper-img {
  margin-right: -1.5rem;
  width: clamp(500px, 11rem, 1100px);
}
@media screen and (max-width: 768px) {
  .about .about4 .about4-box .swiper-img {
    width: 100%;
    margin-right: auto;
    margin-top: 50px;
  }
}
.about .about4 .about4-box .swiper-img .swiper-slide {
  opacity: 0.2;
  transition: all 0.5s;
}
.about .about4 .about4-box .swiper-img .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.about .about4 .about4-box .swiper-img .imgBox {
  padding-bottom: 128%;
}
.about .about4 .about4-box .swiper-img .imgBox img {
  object-fit: contain;
}
.about .about5 {
  background: url('/static/home/images/img127.jpg') no-repeat center / cover;
}
.about .about5 .items {
  margin-top: clamp(20px, 0.4rem, 40px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .about .about5 .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about .about5 .items .item .imgBox {
  padding-bottom: 103%;
}
.about .about5 .items .item:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about .about5 .items .item:nth-child(2) .imgBox {
  padding-bottom: 50.5%;
}
.about .about6 {
  background: url('/static/home/images/img143.jpg') no-repeat center / cover;
}
.about .about6 .items {
  display: flex;
  margin-top: clamp(20px, 0.4rem, 40px);
  gap: clamp(50px, 1.4rem, 140px);
}
@media screen and (max-width: 768px) {
  .about .about6 .items {
    flex-direction: column;
  }
}
.about .about6 .items .left {
  flex-basis: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 0.3rem, 30px);
}
.about .about6 .items .left .item {
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about .about6 .items .left .item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.about .about6 .items .left .item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - clamp(1.94rem, 1.94rem, 194px));
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 768px) {
  .about .about6 .items .left .item::after {
    display: none;
  }
}
.about .about6 .items .left .item .title {
  font-size: clamp(14px, 0.24rem, 24px);
  width: clamp(1.94rem, 1.94rem, 194px);
  height: clamp(1.12rem, 1.12rem, 112px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about .about6 .items .left .item .title {
    height: auto;
    background: none !important;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    padding-bottom: 10px;
    width: 100%;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.about .about6 .items .left .item .title span {
  font-size: clamp(14px, 0.2rem, 20px);
  margin-left: 10px;
}
.about .about6 .items .left .item .summary {
  font-size: clamp(14px, 0.18rem, 18px);
}
.about .about6 .items .right {
  flex-basis: 50%;
}
.about .about6 .items .right .item .imgBox {
  padding-bottom: 40%;
}
.about .about6 .items .right .item:nth-child(2) {
  margin-top: 7px;
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(2, 1fr);
}
.about .about6 .items .right .item:nth-child(2) .imgBox {
  padding-bottom: 57%;
}
.about .about7 .about7-box {
  margin-top: clamp(20px, 0.4rem, 40px);
}
.about .about7 .about7-box .swiper {
  overflow: initial;
}
.about .about7 .about7-box .imgBox {
  padding-bottom: 140%;
}
.about .about7 .about7-box .button {
  margin: auto;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.about .about7 .about7-box .swiper-button-prev,
.about .about7 .about7-box .swiper-button-next {
  position: initial;
  margin-top: 0;
}
@media screen and (min-width: 769px) {
  .index_section .fadeUp {
    opacity: 0;
    transform: translateY(200px);
    transition: all 0.5s;
  }
}
@media screen and (min-width: 769px) {
  .index_section.active .fadeUp {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.5s;
  }
}
/*搜索结果*/
.search {
  padding-top: 0;
}
.search .search-menu {
  padding: clamp(20px, 0.4rem, 40px) 0;
  grid-gap: clamp(20px, 0.2rem, 20px);
  flex-wrap: wrap;
}
.search .search-menu a {
  font-size: 16px;
  color: #666;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .search .search-menu a {
    font-size: 13px;
  }
}
.search .search-menu a.active,
.search .search-menu a:hover {
  color: var(--dominant-color);
}
.search .search-box {
  max-width: 1000px;
}
.download-search form {
  max-width: 550px;
  background: #f3f2f2;
  border-radius: 33px;
  position: relative;
}
.download-search form label {
  display: block;
}
.download-search form input {
  height: 66px;
  width: 100%;
  border: none;
  background: none;
  padding-left: 30px;
  font-size: 16px;
  padding-right: 76px;
}
.download-search form input::placeholder {
  color: #999;
}
.download-search form button {
  position: absolute;
  height: 66px;
  width: 66px;
  right: 0;
  top: 0;
  background: none;
}
.download-search form button img {
  width: 20px;
}
.investor {
  padding-bottom: clamp(100px, 1.8rem, 180px);
}
.investor .investor1 .table {
  overflow: auto;
}
.investor .investor1 .table table {
  border: 1px solid #e7e6ec;
  width: 100% !important;
  height: auto !important;
  text-align: center;
  font-size: clamp(14px, 0.2rem, 20px);
}
.investor .investor1 .table table tr {
  width: 100% !important;
  display: flex;
}
.investor .investor1 .table table tr td {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e7e6ec;
  border-right: 1px solid #e7e6ec;
  padding: clamp(20px, 0.3rem, 30px) clamp(20px, 0.6rem, 60px);
  flex: 1;
}
.investor .investor1 .table table tr td:first-child {
  font-family: HONORSansCN-Bold;
  background: #f2f2f9;
  flex: 0 0 clamp(150px, 3rem, 300px) !important;
  min-height: clamp(40px, 0.8rem, 80px) !important;
}
.investor .investor1 .table table tr td.bg {
  font-family: HONORSansCN-Bold;
  background: #f2f2f9;
  flex: 0 0 clamp(150px, 3rem, 300px) !important;
}
.investor .investor1 .table table tr td.bg2 {
  font-family: HONORSansCN-Bold;
  background: #f2f2f9;
}
.investor .investor1 .table table tr td.noBg {
  background: none;
}
.investor .investor1 .table.table2 {
  text-align: right;
}
.investor .investor3 .item .title {
  font-family: HONORSansCN-Bold;
  line-height: 1;
  gap: clamp(10px, 0.3rem, 30px);
}
.investor .investor3 .item .title .i-title {
  font-size: clamp(16px, 0.3rem, 30px);
}
.investor .investor3 .item .title .sub {
  color: var(--dominant-color);
  font-size: clamp(14px, 0.2rem, 20px);
  line-height: 1.4;
}
.investor .investor3 .item .text {
  font-size: clamp(14px, 0.2rem, 20px);
  padding-top: clamp(20px, 0.3rem, 30px);
  margin-top: clamp(20px, 0.3rem, 30px);
  border-top: 1px solid #e5e5e5;
}
.investor .investor3 .item .text .summary {
  opacity: 0.6;
  margin-top: clamp(10px, 0.16rem, 16px);
  line-height: 1.6;
}
.investor .investor3 .top {
  margin-bottom: clamp(30px, 0.6rem, 60px);
}
.investor .investor3 .top .title {
  border-left: 6px solid var(--dominant-color);
  padding-left: clamp(20px, 0.4rem, 40px);
}
.investor .investor3 .bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .investor .investor3 .bottom {
    grid-template-columns: repeat(1, 1fr);
  }
}
.investor .investor3 .bottom .item {
  padding: clamp(20px, 0.36rem, 36px);
  box-shadow: 0 0 4px 5px rgba(0, 0, 0, 0.04);
}
.investor .investor5 {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .investor .investor5 {
    gap: 20px;
  }
}
.investor .investor5 .item {
  transition: all 0.5s;
  position: relative;
  background: #FFF;
  overflow: hidden;
  align-items: normal;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.02);
}
@media screen and (max-width: 768px) {
  .investor .investor5 .item {
    flex-direction: column;
  }
}
.investor .investor5 .item .text {
  display: flex;
  color: #666;
  align-items: normal;
  position: relative;
  z-index: 2;
  padding: clamp(20px, 0.3rem, 30px) clamp(20px, 0.35rem, 35px);
  gap: clamp(20px, 0.2rem, 20px);
  font-family: HONORSansCN-Bold;
}
@media screen and (max-width: 768px) {
  .investor .investor5 .item .text {
    flex-direction: column;
  }
}
.investor .investor5 .item .text .icon {
  width: clamp(14px, 0.18rem, 18px);
  filter: brightness(0);
  opacity: 0.4;
  transition: all 0.5s;
}
.investor .investor5 .item .text .title {
  color: #000000;
  transition: all 0.5s;
  font-size: clamp(16px, 0.2rem, 20px);
  font-family: HONORSansCN-Bold;
}
.investor .investor5 .item:hover .title {
  color: var(--dominant-color);
}
.investor .investor5 .item:hover .icon {
  opacity: 1;
  filter: none;
}
.investor .investor6 {
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.02);
}
.investor .investor6 .news-detail .details .content {
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.investor .investor6 .news-detail .details .content .title {
  text-align: center;
  color: #000000;
  font-size: clamp(16px, 0.4rem, 40px);
  border-bottom: 2px solid #e5e5e5;
  margin-bottom: clamp(20px, 0.5rem, 50px);
  padding-bottom: clamp(20px, 0.5rem, 50px);
}
.investor .investor6 .video {
  position: relative;
}
.investor .investor6 .video .imgBox {
  padding-bottom: 50%;
}
.investor .investor6 .video .play {
  position: absolute;
  width: clamp(20px, 0.65rem, 65px);
  height: clamp(20px, 0.65rem, 65px);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.service {
  padding: clamp(50px, 1rem, 100px) 0;
}
@media screen and (max-width: 768px) {
  .service .page-title {
    flex-direction: column;
  }
}
.service .service1 {
  display: flex;
  flex-direction: column;
  gap: clamp(50px, 0.9rem, 90px);
}
.service .service1 .i-item {
  margin-top: clamp(20px, 0.3rem, 30px);
  position: relative;
}
.service .service1 .i-item .imgBox {
  padding-bottom: 37%;
}
@media screen and (max-width: 768px) {
  .service .service1 .i-item .imgBox {
    padding-bottom: 100%;
  }
}
.service .service1 .i-item .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(350px, 7rem, 700px);
  min-height: clamp(150px, 3rem, 300px);
  box-shadow: 0 0 4px 4px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: clamp(20px, 0.36rem, 36px);
}
@media screen and (max-width: 768px) {
  .service .service1 .i-item .text {
    width: 90%;
  }
}
.service .service1 .i-item .text .text1 {
  width: clamp(230px, 4.6rem, 460px);
  height: clamp(50px, 1rem, 100px);
  backdrop-filter: blur(20px);
  margin-bottom: clamp(10px, 0.1rem, 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.5s;
}
.service .service1 .i-item .text .text1:hover {
  background: var(--dominant-color);
}
.service .service1 .i-item .text .text1 .title1 {
  text-align: center;
  font-size: clamp(14px, 0.2rem, 20px);
  font-family: HONORSansCN-Bold;
}
.service .service1 .i-item .text .text2 {
  font-size: clamp(14px, 0.16rem, 16px);
}
.service .service1 .i-item .text .text3 {
  font-size: clamp(14px, 0.18rem, 18px);
  font-family: HONORSansCN-Bold;
  margin-top: clamp(20px, 0.4rem, 40px);
  display: flex;
  gap: clamp(20px, 0.3rem, 30px);
}
.service .service1 .i-item .text .text3 a {
  transition: all 0.5s;
}
.service .service1 .i-item .text .text3 a:hover {
  text-decoration: underline;
}
.service .service1 .i-item .text .title2 {
  font-size: clamp(14px, 0.3rem, 30px);
  font-family: HONORSansCN-Bold;
}
.service .service1 .i-item .text .title3 {
  margin-top: clamp(10px, 0.2rem, 20px);
  font-size: clamp(14px, 0.2rem, 20px);
}
.service .service1 .i-item .text .title3 a {
  display: flex;
  transition: all 0.5s;
}
.service .service1 .i-item .text .title3 a:hover {
  color: var(--dominant-color);
}
.service .service2 {
  margin-top: clamp(20px, 0.5rem, 50px);
  position: relative;
  z-index: 0;
}
.service .service2 .page-title {
  border-bottom: 2px solid #e5e5e5;
  margin-bottom: clamp(20px, 0.5rem, 50px);
  padding-bottom: clamp(20px, 0.3rem, 30px);
}
.service .service2 .service2-box {
  gap: clamp(20px, 0.5rem, 50px);
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .service .service2 .service2-box {
    flex-direction: column;
  }
}
.service .service2 .service2-box .left {
  flex-basis: 260px;
  position: sticky;
  top: clamp(60px, 0.9rem, 90px);
}
@media screen and (max-width: 768px) {
  .service .service2 .service2-box .left {
    position: inherit;
    flex-basis: 100%;
  }
}
.service .service2 .service2-box .left .item {
  font-size: clamp(14px, 0.24rem, 24px);
  font-family: HONORSansCN-Bold;
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.5s;
  display: flex;
  padding-left: clamp(20px, 0.4rem, 40px);
  position: relative;
  line-height: 2.1;
}
.service .service2 .service2-box .left .item.active,
.service .service2 .service2-box .left .item:hover {
  color: var(--dominant-color);
}
.service .service2 .service2-box .left .item.active::after,
.service .service2 .service2-box .left .item:hover::after {
  background: var(--dominant-color);
}
.service .service2 .service2-box .left .item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 100%;
  background: #e5e5e5;
  transition: all 0.5s;
}
.service .service2 .service2-box .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 0.9rem, 90px);
}
@media screen and (max-width: 768px) {
  .service .service2 .service2-box .right {
    width: 100%;
  }
}
.service .service2 .service2-box .right .items {
  scroll-margin: clamp(1rem, 1rem, 100px);
}
.service .service2 .service2-box .right .title {
  font-size: clamp(14px, 0.3rem, 30px);
  color: var(--dominant-color);
  font-family: HONORSansCN-Bold;
  margin-bottom: clamp(20px, 0.3rem, 30px);
}
.service .service2 .service2-box .right .item .i-item {
  padding: clamp(20px, 0.26rem, 26px) 30px clamp(20px, 0.26rem, 26px) 0;
  border-bottom: 2px solid #e5e5e5;
  font-size: clamp(14px, 0.24rem, 24px);
  font-family: HONORSansCN-Bold;
  transition: all 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .service .service2 .service2-box .right .item .i-item {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.service .service2 .service2-box .right .item .i-item:first-child {
  border-top: 2px solid #e5e5e5;
}
.service .service2 .service2-box .right .item .i-item:hover .i-title {
  color: var(--dominant-color);
}
.service .service2 .service2-box .right .item .i-item .i-download {
  background: var(--dominant-color);
  transform: skewX(-25deg);
  font-size: clamp(12px, 0.18rem, 18px);
  color: #fff;
  height: clamp(40px, 0.5rem, 50px);
  padding: 0 clamp(20px, 0.4rem, 40px);
}
@media screen and (max-width: 768px) {
  .service .service2 .service2-box .right .item .i-item .i-download {
    margin-right: 0;
    margin-left: auto;
  }
}
.service .service2 .service2-box .right .item .i-item .i-download span {
  gap: clamp(20px, 0.2rem, 20px);
  transform: skewX(25deg);
}
.service .service2 .service2-box .right .item .i-item .i-download span img {
  width: clamp(12px, 0.14rem, 14px);
}
.download-pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: none;
}
.download-pop .close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: clamp(14px, 0.3rem, 30px);
  color: #000;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.5s;
}
.download-pop .close:hover {
  color: var(--dominant-color);
}
.download-pop .download-pop-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.download-pop .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.download-pop .download-pop-box {
  width: clamp(350px, 6.5rem, 650px);
  height: fit-content;
  background: #fff;
  padding: clamp(20px, 0.64rem, 64px);
  padding-bottom: clamp(20px, 0.8rem, 80px);
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.download-pop .download-pop-box .title {
  font-size: clamp(14px, 0.3rem, 30px);
  color: var(--dominant-color);
  font-family: HONORSansCN-Bold;
  text-align: center;
  margin-bottom: clamp(20px, 0.5rem, 50px);
}
.download-pop .download-pop-box .form {
  gap: 10px;
}
.download-pop .download-pop-box .form-item {
  width: 100%;
}
.download-pop .download-pop-box label {
  display: flex;
  align-items: center;
  width: 100%;
}
.download-pop .download-pop-box label span {
  color: #000;
  margin-bottom: 0;
  width: fit-content;
  font-size: clamp(14px, 0.2rem, 20px);
}
.download-pop .download-pop-box label input {
  flex: 1;
  border-radius: 0;
  border-color: #e7e6ec;
  color: rgba(0, 0, 0, 0.4);
  font-size: clamp(12px, 0.2rem, 20px);
}
.download-pop .download-pop-box label input::placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-size: clamp(12px, 0.2rem, 20px);
}
.download-pop .download-pop-box input[type=checkbox] {
  width: 18px !important;
  height: 18px;
  flex: 0;
  padding: 0;
  flex-basis: 18px;
  margin-right: 10px;
}
.download-pop .download-pop-box .span1 {
  font-size: clamp(12px, 0.18rem, 18px);
  color: rgba(0, 0, 0, 0.4);
}
.download-pop .download-pop-box button {
  display: flex;
  transform: skewX(-25deg);
  background: var(--dominant-color);
  color: #fff;
  height: clamp(30px, 0.5rem, 50px);
  padding: 0 clamp(20px, 0.5rem, 50px);
  align-items: center;
  font-size: clamp(14px, 0.18rem, 18px);
  transition: all 0.5s;
  font-family: HONORSansCN-Bold;
  border-radius: 0;
  margin-top: clamp(20px, 0.6rem, 60px);
}
.download-pop .download-pop-box button span {
  display: block;
  transform: skewX(25deg);
}
.download-pop .download-pop-box button:hover {
  opacity: 0.7;
}
.social {
  padding: clamp(50px, 1.45rem, 145px) 0;
}
.social .item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.social .item img {
  width: 100%;
}
.social .item .text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: clamp(20px, 0.2rem, 20px);
  font-size: clamp(14px, 0.2rem, 20px);
  font-family: HONORSansCN-Bold;
  color: #fff;
  opacity: 0;
  transition: all 0.5s;
  z-index: 2;
}
.social .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  opacity: 0;
  transition: all 0.5s;
  background: linear-gradient(rgba(255, 255, 255, 0), var(--dominant-color));
}
.social .item:hover .text {
  opacity: 1;
}
.social .item:hover::after {
  opacity: 1;
}
.social .top {
  display: flex;
  gap: 3px;
}
@media screen and (max-width: 768px) {
  .social .top {
    flex-direction: column;
  }
}
.social .top .left {
  width: 51%;
  display: flex;
  gap: 3px;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .social .top .left {
    width: 100%;
  }
}
.social .top .left .item:nth-child(1) .imgBox {
  padding-bottom: 75%;
}
.social .top .left .item:nth-child(2) .imgBox {
  padding-bottom: 58%;
}
.social .top .right {
  width: 49%;
  display: flex;
  gap: 3px;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .social .top .right {
    width: 100%;
  }
}
.social .top .right .item:nth-child(1) .imgBox {
  padding-bottom: 48%;
}
.social .top .right .item:nth-child(2) .imgBox {
  padding-bottom: 90.4%;
}
.social .bottom {
  display: flex;
  gap: 3px;
  margin-top: 3px;
}
@media screen and (max-width: 768px) {
  .social .bottom {
    flex-direction: column;
  }
}
.social .bottom .item {
  flex-basis: calc(520 / 1600 * 100%);
}
.social .bottom .item .imgBox {
  padding-bottom: 120%;
}
.social .bottom .item:first-child {
  flex: 1;
}
.social .bottom .item:first-child .img {
  height: 100%;
}
.social .bottom .item:first-child img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.join .join1 {
  padding-top: clamp(40px, 1.6rem, 160px);
  padding-bottom: clamp(40px, 1.6rem, 160px);
  position: relative;
}
.join .join1::after {
  content: '';
  position: absolute;
  width: clamp(250px, 5.3rem, 530px);
  height: clamp(125px, 2.3rem, 230px);
  background: #edecfa;
}
@media screen and (max-width: 768px) {
  .join .join1::after {
    display: none;
  }
}
.join .join1::after {
  bottom: clamp(1rem, 1rem, 100px);
  left: 0;
}
.join .join1 .items {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 2.2rem, 220px);
  position: relative;
  z-index: 2;
}
.join .join1 .item {
  gap: clamp(20px, 1.6rem, 160px);
}
@media screen and (max-width: 768px) {
  .join .join1 .item {
    flex-direction: column !important;
  }
}
.join .join1 .item .subtitle {
  font-size: clamp(14px, 0.3rem, 30px);
  margin-top: clamp(10px, 0.2rem, 20px);
}
.join .join1 .item .img {
  margin-top: clamp(20px, 0.3rem, 30px);
  margin-bottom: clamp(20px, 0.3rem, 30px);
}
.join .join1 .item:nth-child(even) {
  flex-direction: row-reverse;
}
.join .join1 .item .left {
  overflow: hidden;
  flex-basis: clamp(305px, 6.1rem, 610px);
}
@media screen and (max-width: 768px) {
  .join .join1 .item .left {
    margin-bottom: 20px;
    flex-basis: 100%;
    width: 100%;
  }
}
.join .join1 .item .left .imgBox {
  padding-bottom: 106%;
}
.join .join1 .item .right {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .join .join1 .item .right {
    flex-basis: 100%;
    width: 100%;
  }
}
.join .join2 {
  padding-bottom: clamp(40px, 1.6rem, 160px);
  position: relative;
}
.join .join2::before {
  content: '';
  position: absolute;
  width: 100%;
  height: calc(100% - clamp(40px, 1.2rem, 120px));
  background: #fafafa;
  top: clamp(40px, 1.2rem, 120px);
}
.join .join2::after {
  content: '';
  position: absolute;
  width: clamp(250px, 5.3rem, 530px);
  height: clamp(125px, 2.3rem, 230px);
  background: #edecfa;
}
.join .join2::after {
  bottom: clamp(40px, 1rem, 100px);
  right: 0;
}
.join .join2 .items {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 2.2rem, 220px);
  position: relative;
  z-index: 2;
}
.join .join2 .item {
  align-items: flex-start;
  gap: clamp(20px, 1.6rem, 160px);
}
@media screen and (max-width: 768px) {
  .join .join2 .item {
    flex-direction: column !important;
  }
}
.join .join2 .item .subtitle {
  font-size: clamp(14px, 0.3rem, 30px);
  font-family: HONORSansCN-Bold;
  margin-top: clamp(10px, 0.2rem, 20px);
}
.join .join2 .item .img {
  margin-top: clamp(20px, 0.3rem, 30px);
  margin-bottom: clamp(20px, 0.3rem, 30px);
}
.join .join2 .item:nth-child(even) {
  flex-direction: row-reverse;
}
.join .join2 .item .left {
  flex: 1;
  margin-top: clamp(120px, 2.4rem, 240px);
}
.join .join2 .item .left .l-items {
  margin-top: clamp(20px, 0.5rem, 50px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 0.3rem, 30px);
}
.join .join2 .item .left .l-items .l-item {
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}
.join .join2 .item .left .l-items .l-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #e1e1e1;
}
.join .join2 .item .left .l-items .l-item .key {
  font-size: clamp(14px, 0.3rem, 30px);
  font-family: HONORSansCN-Bold;
  transition: all 0.5s;
}
.join .join2 .item .left .l-items .l-item .value {
  color: rgba(0, 0, 0, 0.6);
  font-size: clamp(14px, 0.2rem, 20px);
  line-height: 1.8;
  margin-top: clamp(20px, 0.2rem, 20px);
  margin-bottom: clamp(20px, 0.5rem, 50px);
  display: none;
}
.join .join2 .item .left .l-items .l-item.active::after {
  background: var(--dominant-color);
}
.join .join2 .item .left .l-items .l-item.active .key {
  color: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .join .join2 .item .left {
    margin-bottom: 20px;
    flex-basis: 100%;
    width: 100%;
  }
}
.join .join2 .item .right {
  overflow: hidden;
  flex-basis: clamp(305px, 6.1rem, 610px);
}
@media screen and (max-width: 768px) {
  .join .join2 .item .right {
    flex-basis: 100%;
    width: 100%;
  }
}
.join .join2 .item .right .imgBox {
  padding-bottom: 133%;
}
.join .join3 {
  max-width: clamp(12rem, 12rem, 1200px);
}
@media screen and (max-width: 768px) {
  .join .join3 {
    max-width: 100%;
  }
}
.join .join3 .swiper {
  margin-top: clamp(20px, 0.6rem, 60px);
  overflow: initial;
}
.join .join3 .swiper .swiper-slide {
  height: auto;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
}
.join .join3 .swiper .swiper-slide .items {
  display: flex;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .join .join3 .swiper .swiper-slide .items {
    flex-direction: column-reverse;
  }
}
.join .join3 .swiper .swiper-slide .items .left {
  flex: 1;
  padding: clamp(20px, 0.9rem, 90px) clamp(20px, 0.7rem, 70px) clamp(20px, 0.2rem, 20px);
}
.join .join3 .swiper .swiper-slide .items .left .title {
  font-size: clamp(14px, 0.3rem, 30px);
  font-family: HONORSansCN-Bold;
}
.join .join3 .swiper .swiper-slide .items .left .summary {
  color: rgba(0, 0, 0, 0.6);
  font-size: clamp(14px, 0.2rem, 20px);
  margin-top: clamp(20px, 0.3rem, 30px);
}
.join .join3 .swiper .swiper-slide .items .right {
  overflow: hidden;
  flex-basis: clamp(250px, 5.55rem, 555px);
  position: relative;
}
.join .join3 .swiper .swiper-slide .items .right .imgBox {
  padding-bottom: 90%;
}
.join .join3 .swiper .swiper-slide .items .right::before,
.join .join3 .swiper .swiper-slide .items .right::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: url('/static/home/images/img69.png') no-repeat center left / contain;
}
.join .join3 .swiper .swiper-slide .items .right::before {
  z-index: 3;
  background: #fff;
  width: 20px;
  left: -19px;
}
.join .join3 .swiper .swiper-button-prev,
.join .join3 .swiper .swiper-button-next {
  background: url('/static/home/images/img8.png') no-repeat center / contain;
}
.join .join3 .swiper .swiper-button-prev::after,
.join .join3 .swiper .swiper-button-next::after {
  display: none;
}
.join .join3 .swiper .swiper-button-prev:hover,
.join .join3 .swiper .swiper-button-next:hover {
  background: url('/static/home/images/img9.png') no-repeat center / contain;
}
.join .join3 .swiper .swiper-button-prev:hover i,
.join .join3 .swiper .swiper-button-next:hover i {
  color: #fff;
}
.join .join3 .swiper .swiper-button-prev {
  left: -130px;
}
.join .join3 .swiper .swiper-button-next {
  right: -130px;
}
.industry {
  padding: clamp(40px, 1.2rem, 120px) 0;
}
.industry .top {
  padding: clamp(20px, 0.5rem, 50px);
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 768px) {
  .industry .top {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .industry .top .page-title {
    flex-direction: column;
  }
}
.industry .top .industry-select {
  margin-top: clamp(20px, 0.45rem, 45px);
}
.industry .top .industry-select .items {
  border-bottom: 2px solid #e5e5e5;
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(20px, 0.5rem, 50px);
}
.industry .top .industry-select .items .item {
  position: relative;
  cursor: pointer;
  padding: clamp(20px, 0.3rem, 30px) 0;
  display: flex;
  font-size: clamp(12px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.6);
  font-family: HONORSansCN-Bold;
  gap: clamp(10px, 0.2rem, 20px);
  transition: all 0.5s;
}
.industry .top .industry-select .items .item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--dominant-color);
  opacity: 0;
  transition: all 0.5s;
}
.industry .top .industry-select .items .item .icon {
  height: clamp(16px, 0.19rem, 19px);
  filter: brightness(0);
  opacity: 0.6;
  transition: all 0.5s;
}
.industry .top .industry-select .items .item .icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.industry .top .industry-select .items .item.active,
.industry .top .industry-select .items .item:hover {
  color: var(--dominant-color);
}
.industry .top .industry-select .items .item.active .icon,
.industry .top .industry-select .items .item:hover .icon {
  filter: none;
  opacity: 1;
}
.industry .top .industry-select .items .item.active::after,
.industry .top .industry-select .items .item:hover::after {
  opacity: 1;
}
.industry .top .industry-select .items:first-child {
  border-top: 2px solid #e5e5e5;
}
.industry .bottom {
  margin-top: clamp(30px, 0.6rem, 60px);
}
.industry .bottom .in_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .industry .bottom .in_items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.industry .bottom .in_items .item {
  position: relative;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.04);
}
.industry .bottom .in_items .item .imgBox {
  padding-bottom: 66%;
}
.industry .bottom .in_items .item .text {
  padding: clamp(20px, 0.3rem, 30px) 20px;
  font-size: clamp(14px, 0.24rem, 24px);
  font-family: HONORSansCN-Bold;
  width: 100%;
  height: clamp(100px, 2rem, 200px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.5s;
}
.industry .bottom .in_items .item .text .title {
  position: relative;
  z-index: 1;
}
.industry .bottom .in_items .item .text .more {
  position: relative;
  z-index: 1;
  color: var(--dominant-color);
  gap: 10px;
  font-size: clamp(12px, 0.18rem, 18px);
}
.industry .bottom .in_items .item .text::after {
  content: '';
  width: 100%;
  height: 100%;
  background: url('/static/home/images/img79.png') no-repeat center / cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s;
}
.industry .bottom .in_items .item:hover .text {
  color: #fff;
}
.industry .bottom .in_items .item:hover .text .more {
  color: #fff;
}
.industry .bottom .in_items .item:hover .text::after {
  opacity: 1;
}
.industry-menu {
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 4;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .industry-menu {
    top: 40px;
  }
}
.industry-menu .menu-box {
  height: clamp(70px, 0.7rem, 70px);
}
@media screen and (max-width: 768px) {
  .industry-menu .menu-box {
    flex-direction: column-reverse;
    height: auto;
    align-items: flex-start;
    margin-top: 30px;
  }
}
.industry-menu .menu-box .menu {
  color: rgba(0, 0, 0, 0.4);
  font-size: clamp(14px, 0.2rem, 20px);
  font-family: HONORSansCN-Bold;
  display: flex;
  gap: clamp(20px, 0.7rem, 70px);
}
.industry-menu .menu-box .menu a {
  height: clamp(70px, 0.7rem, 70px);
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .industry-menu .menu-box .menu a {
    flex-shrink: 0;
  }
}
.industry-menu .menu-box .menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--dominant-color);
}
.industry-menu .menu-box .menu a.active {
  color: var(--dominant-color);
}
.industry-menu .menu-box .menu a.active::after {
  width: 100%;
}
.industry-menu .menu-box .location {
  margin-top: 0;
}
.industry-detail .industry-box1 .items {
  margin-top: clamp(20px, 0.6rem, 60px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .industry-detail .industry-box1 .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.industry-detail .industry-box1 .items .item {
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.03);
  height: clamp(200px, 2.3rem, 230px);
  display: flex;
  align-items: center;
  padding: clamp(20px, 0.6rem, 60px);
  gap: clamp(20px, 0.5rem, 50px);
  border-right: 4px solid var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .industry-detail .industry-box1 .items .item {
    height: 120px;
  }
}
.industry-detail .industry-box1 .items .item .icon {
  width: clamp(50px, 0.9rem, 90px);
}
.industry-detail .industry-box1 .items .item .icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.industry-detail .industry-box1 .items .item .text {
  flex: 1;
}
.industry-detail .industry-box1 .items .item .title {
  font-size: clamp(14px, 0.3rem, 30px);
  font-family: HONORSansCN-Bold;
}
.industry-detail .industry-box1 .items .item .summary {
  font-size: clamp(12px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.6);
  margin-top: clamp(10px, 0.2rem, 20px);
}
.industry-detail .industry-box2 {
  position: relative;
}
.industry-detail .industry-box2 .img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .industry-detail .industry-box2 .img {
    position: absolute;
    height: 100%;
  }
}
.industry-detail .industry-box2 .img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .industry-detail .industry-box2 .img img {
    height: 100%;
    object-fit: cover;
  }
}
.industry-detail .industry-box2 .text {
  position: absolute;
  left: 0;
  right: 0;
  top: clamp(40px, 1rem, 100px);
  max-width: clamp(300px, 6rem, 600px);
}
@media screen and (max-width: 768px) {
  .industry-detail .industry-box2 .text {
    position: initial;
    padding: 50px 0;
  }
}
.industry-detail .industry-box2 .text.text2 {
  max-width: clamp(500px, 10rem, 1000px);
}
.industry-detail .industry-box2 .text.text2 .swiper-button-prev,
.industry-detail .industry-box2 .text.text2 .swiper-button-next {
  display: none;
}
.industry-detail .industry-box2 .text.text3 {
  max-width: clamp(600px, 13rem, 1300px);
}
.industry-detail .industry-box2 .text .swiper {
  margin-top: clamp(20px, 0.5rem, 50px);
}
.industry-detail .industry-box2 .text .swiper .imgBox {
  width: 67%;
  margin: auto;
  padding-bottom: 80%;
}
.industry-detail .industry-box2 .text .swiper .imgBox img {
  object-fit: contain;
}
.industry-detail .industry-box2 .text .swiper .title {
  font-family: HONORSansCN-Bold;
  font-size: clamp(14px, 0.24rem, 24px);
  text-align: center;
}
.industry-detail .industry-box3 .items {
  margin-top: clamp(20px, 0.4rem, 40px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .industry-detail .industry-box3 .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.industry-detail .industry-box3 .items .item {
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.03);
  height: clamp(300px, 4.5rem, 450px);
  padding: clamp(20px, 1rem, 100px) clamp(20px, 0.6rem, 60px);
  gap: clamp(20px, 0.5rem, 50px);
  border-bottom: 4px solid var(--dominant-color);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .industry-detail .industry-box3 .items .item {
    height: auto;
  }
}
.industry-detail .industry-box3 .items .item .icon {
  width: clamp(50px, 0.9rem, 90px);
  margin: auto;
}
.industry-detail .industry-box3 .items .item .icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.industry-detail .industry-box3 .items .item .summary {
  margin-top: clamp(20px, 0.6rem, 60px);
  font-size: clamp(12px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.6);
}
.industry-detail .industry-box4 {
  position: relative;
}
.industry-detail .industry-box4 .img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .industry-detail .industry-box4 .img {
    position: absolute;
    height: 100%;
  }
}
.industry-detail .industry-box4 .img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .industry-detail .industry-box4 .img img {
    height: 100%;
    object-fit: cover;
  }
}
.industry-detail .industry-box4 .text {
  position: absolute;
  top: clamp(40px, 1rem, 100px);
  left: 0;
  right: 0;
  max-width: 1200px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .industry-detail .industry-box4 .text {
    position: initial;
    padding: 50px 0;
  }
}
.industry-detail .industry-box4 .text .text1,
.industry-detail .industry-box4 .text ul {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 1rem, 100px);
  margin-top: clamp(20px, 0.3rem, 30px);
}
.industry-detail .industry-box4 .text .text1 .item,
.industry-detail .industry-box4 .text ul .item {
  text-align: center;
}
.industry-detail .industry-box4 .text .text1 .item .key,
.industry-detail .industry-box4 .text ul .item .key {
  font-family: HONORSansCN-Bold;
  font-size: clamp(14px, 0.5rem, 50px);
}
.industry-detail .industry-box4 .text .text1 .item .value,
.industry-detail .industry-box4 .text ul .item .value {
  font-size: clamp(12px, 0.2rem, 20px);
}
.industry-detail .industry-box4 .text .text1 ul,
.industry-detail .industry-box4 .text ul ul {
  list-style: none;
}
.industry-detail .industry-box4 .text .text1 li,
.industry-detail .industry-box4 .text ul li {
  list-style: none;
  text-align: center;
  font-size: clamp(12px, 0.2rem, 20px);
}
.industry-detail .industry-box4 .text .text1 li p,
.industry-detail .industry-box4 .text ul li p {
  font-family: HONORSansCN-Bold;
  font-size: clamp(14px, 0.5rem, 50px);
}
.industry-detail .industry-box4 .text .text1 li::marker,
.industry-detail .industry-box4 .text ul li::marker {
  display: none;
}
.industry-detail .industry-box4 .text .summary {
  margin-top: clamp(20px, 0.6rem, 60px);
  font-size: clamp(12px, 0.2rem, 20px);
  text-align: center;
}
.industry-detail .industry-box5 .swiper:hover .swiper-button-prev,
.industry-detail .industry-box5 .swiper:hover .swiper-button-next {
  opacity: 1;
}
.industry-detail .industry-box5 .swiper .swiper-slide img {
  aspect-ratio: 160 / 65;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.industry-detail .industry-box5 .swiper .swiper-pagination {
  position: inherit;
  margin-top: clamp(20px, 0.4rem, 40px);
}
.industry-detail .industry-box5 .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 46px;
  height: 3px;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  .industry-detail .industry-box5 .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
  }
}
.industry-detail .industry-box5 .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--dominant-color);
}
.industry-detail .industry-box5 .swiper-button-prev,
.industry-detail .industry-box5 .swiper-button-next {
  opacity: 0;
}
.industry-detail .industry-box5 .swiper-button-prev::after,
.industry-detail .industry-box5 .swiper-button-next::after {
  display: none;
}
.industry-detail .industry-box5 .swiper-button-prev:hover i,
.industry-detail .industry-box5 .swiper-button-next:hover i {
  color: #fff;
}
.industry-detail .industry-box5 .swiper-button-prev {
  left: 30px;
}
.industry-detail .industry-box5 .swiper-button-next {
  right: 30px;
}
.application .application-box1 .items {
  margin-top: clamp(20px, 0.4rem, 40px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .application .application-box1 .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.application .application-box1 .items .item {
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.03);
  padding: clamp(20px, 0.9rem, 90px) clamp(20px, 0.6rem, 60px);
  gap: clamp(20px, 0.5rem, 50px);
  border-bottom: 4px solid var(--dominant-color);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .application .application-box1 .items .item {
    height: auto;
  }
}
.application .application-box1 .items .item .icon {
  width: clamp(50px, 0.9rem, 90px);
  margin: auto;
}
.application .application-box1 .items .item .icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.application .application-box1 .items .item .title {
  font-family: HONORSansCN-Bold;
  margin-top: clamp(20px, 0.6rem, 60px);
  font-size: clamp(12px, 0.24rem, 24px);
}
.application .application-box1 .items .item .summary {
  font-size: clamp(12px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.6);
  margin-top: clamp(20px, 0.3rem, 30px);
}
.application .application-box2 {
  position: relative;
}
.application .application-box2::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}
.application .application-box2 .img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .application .application-box2 .img {
    height: 400px;
  }
}
.application .application-box2 .img img {
  width: 100%;
  max-height: 950px;
}
@media screen and (max-width: 768px) {
  .application .application-box2 .img img {
    height: 100%;
    object-fit: cover;
  }
}
.application .application-box2 .text {
  z-index: 2;
  position: absolute;
  top: clamp(40px, 1rem, 100px);
  left: 0;
  right: 0;
  color: #fff;
}
.application .application-box2 .text .show-text {
  text-align: center;
  margin-top: 12%;
}
.application .application-box2 .text .show-text .item {
  display: none;
  background: rgba(0, 0, 0, 0.5);
  padding: clamp(20px, 0.3rem, 30px);
}
.application .application-box2 .text .show-text .item.active {
  display: block;
}
.application .application-box2 .text .show-text .i-title {
  font-size: clamp(20px, 0.24rem, 24px);
}
.application .application-box2 .text .show-text .i-summary {
  font-size: clamp(16px, 0.2rem, 20px);
  margin-top: clamp(10px, 0.2rem, 20px);
}
.application .application-box2 .items {
  z-index: 2;
  position: absolute;
  bottom: clamp(40px, 1rem, 100px);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .application .application-box2 .items {
    gap: 20px;
    overflow: auto;
  }
}
.application .application-box2 .items::-webkit-scrollbar {
  display: none;
}
.application .application-box2 .items .item {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .application .application-box2 .items .item {
    flex-shrink: 0;
  }
}
.application .application-box2 .items .item .icon {
  box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: clamp(50px, 0.9rem, 90px);
  height: clamp(50px, 0.9rem, 90px);
  margin: auto;
  transition: all 0.5s;
}
.application .application-box2 .items .item .icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .application .application-box2 .items .item .icon img {
    max-width: 50%;
    max-height: 50%;
  }
}
.application .application-box2 .items .item .title {
  transition: all 0.5s;
  color: #fff;
  font-family: HONORSansCN-Bold;
  text-align: center;
  font-size: clamp(12px, 0.2rem, 20px);
  margin-top: clamp(20px, 0.3rem, 30px);
}
.application .application-box2 .items .item:hover .icon {
  background: var(--dominant-color);
}
.application .application-box2 .items .item:hover .title {
  color: var(--dominant-color);
}
.application .application-box3 .items {
  margin-top: clamp(20px, 0.4rem, 40px);
  height: clamp(310px, 6.2rem, 620px);
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .application .application-box3 .items {
    flex-direction: column;
    height: auto;
  }
}
.application .application-box3 .items .item {
  flex-basis: clamp(290px, 2.9rem, 290px);
  background: #000;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .application .application-box3 .items .item {
    flex-basis: 100% !important;
  }
}
.application .application-box3 .items .item .img {
  opacity: 0.6;
  height: 100%;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .application .application-box3 .items .item .img {
    opacity: 1;
  }
}
.application .application-box3 .items .item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.application .application-box3 .items .item .text {
  height: 100%;
  width: 5.42rem;
  position: absolute;
  background: url('/static/home/images/img109.png') no-repeat center right / contain;
  top: 0;
  right: 0;
  opacity: 0;
  color: #fff;
  padding-right: clamp(40px, 0.7rem, 70px);
}
@media screen and (max-width: 768px) {
  .application .application-box3 .items .item .text {
    width: 220px;
    padding-right: 20px;
    opacity: 1;
  }
}
.application .application-box3 .items .item .text .text-box {
  width: clamp(140px, 2.1rem, 210px);
  margin-top: clamp(50px, 1rem, 100px);
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .application .application-box3 .items .item .text .text-box {
    margin-top: 30px;
    width: 100px;
  }
}
.application .application-box3 .items .item .text .text-box .title {
  font-family: HONORSansCN-Bold;
  font-size: clamp(12px, 0.3rem, 30px);
  border-bottom: 1px solid #ffffff;
  margin-bottom: clamp(20px, 0.2rem, 20px);
  padding-bottom: clamp(20px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .application .application-box3 .items .item .text .text-box .title {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.application .application-box3 .items .item .text .text-box .lists a {
  margin-bottom: clamp(10px, 0.2rem, 20px);
  font-size: clamp(12px, 0.24rem, 24px);
  transition: all 0.5s;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .application .application-box3 .items .item .text .text-box .lists a {
    margin-bottom: 10px;
  }
}
.application .application-box3 .items .item .text .text-box .lists a:hover {
  text-decoration: underline;
}
.application .application-box3 .items .item .sub {
  position: absolute;
  bottom: clamp(20px, 0.5rem, 50px);
  color: #fff;
  font-family: HONORSansCN-Bold;
  font-size: clamp(12px, 0.3rem, 30px);
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .application .application-box3 .items .item .sub {
    display: none;
  }
}
.application .application-box3 .items .item.active {
  flex: 1;
  z-index: 2;
}
.application .application-box3 .items .item.active .sub {
  opacity: 0;
}
.application .application-box3 .items .item.active .img {
  opacity: 1;
}
.application .application-box3 .items .item.active .text {
  opacity: 1;
}
.application .bottom .in_items {
  margin-top: clamp(20px, 0.5rem, 50px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .application .bottom .in_items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.application .bottom .in_items .item {
  position: relative;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.04);
}
.application .bottom .in_items .item .imgBox {
  padding-bottom: 66%;
}
.application .bottom .in_items .item .text {
  padding: clamp(20px, 0.3rem, 30px) 20px;
  font-size: clamp(14px, 0.24rem, 24px);
  font-family: HONORSansCN-Bold;
  width: 100%;
  height: clamp(100px, 2rem, 200px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.5s;
}
.application .bottom .in_items .item .text .title {
  position: relative;
  z-index: 1;
}
.application .bottom .in_items .item .text .more {
  position: relative;
  z-index: 1;
  color: var(--dominant-color);
  gap: 10px;
  font-size: clamp(12px, 0.18rem, 18px);
}
.application .bottom .in_items .item .text::after {
  content: '';
  width: 100%;
  height: 100%;
  background: url('/static/home/images/img79.png') no-repeat center / cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s;
}
.application .bottom .in_items .item:hover .text {
  color: #fff;
}
.application .bottom .in_items .item:hover .text .more {
  color: #fff;
}
.application .bottom .in_items .item:hover .text::after {
  opacity: 1;
}
.application .service2 .i-item {
  padding-left: 30px !important;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}
.application .application-box4 {
  background: url('/static/home/images/img109.jpg') no-repeat center / cover;
  height: clamp(200px, 4.7rem, 470px);
}
.application .application-box4 a {
  width: fit-content;
  display: flex;
  transform: skewX(-25deg);
  background: var(--dominant-color);
  color: #fff;
  height: clamp(30px, 0.5rem, 50px);
  padding: 0 clamp(20px, 0.5rem, 50px);
  align-items: center;
  font-size: clamp(14px, 0.18rem, 18px);
  transition: all 0.5s;
  margin: clamp(20px, 0.3rem, 30px) auto 0;
}
.application .application-box4 a span {
  display: block;
  transform: skewX(25deg);
  font-family: HONORSansCN-Bold;
}
.application .application-box4 a:hover {
  opacity: 0.7;
}
.application .application-box5 {
  background: url('/static/home/images/img115.png') no-repeat center / cover;
}
.application .application-box5 .items {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.application .application-box5 .swiper {
  margin-top: clamp(20px, 0.5rem, 50px);
}
.application .application-box5 .swiper .swiper-slide {
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.04);
}
.application .application-box5 .swiper .imgBox {
  padding-bottom: 106%;
}
.application .application-box5 .swiper .title {
  position: absolute;
  bottom: clamp(20px, 0.4rem, 40px);
  padding: clamp(20px, 0.3rem, 30px);
  width: 100%;
  text-align: center;
  font-size: clamp(14px, 0.24rem, 24px);
  font-family: HONORSansCN-Bold;
}
.application .application-box6 .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: clamp(20px, 0.4rem, 40px);
}
@media screen and (max-width: 768px) {
  .application .application-box6 .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.application .application-box6 .items .item {
  display: flex;
  border: 1px solid #e5e5e5;
  font-size: clamp(14px, 0.24rem, 24px);
}
.application .application-box6 .items .item .key {
  font-family: HONORSansCN-Bold;
  background: var(--dominant-color);
  color: #fff;
  width: clamp(110px, 2.2rem, 220px);
  text-align: center;
  padding: clamp(20px, 0.4rem, 40px) 0;
}
.application .application-box6 .items .item .value {
  flex: 1;
  padding: clamp(20px, 0.4rem, 40px);
}
.application .application-box7 .swiper {
  margin-top: clamp(20px, 0.4rem, 40px);
  padding-top: 10px;
  padding-left: 4px;
  padding-right: 4px;
}
.application .application-box7 .swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.04);
  padding: clamp(20px, 0.7rem, 70px) 0;
}
.application .application-box7 .swiper .swiper-slide .icon {
  width: clamp(50px, 1rem, 100px);
  height: clamp(50px, 1rem, 100px);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.application .application-box7 .swiper .swiper-slide .icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.application .application-box7 .swiper .swiper-slide .title {
  text-align: center;
  font-size: clamp(14px, 0.2rem, 20px);
  margin-top: clamp(20px, 0.2rem, 20px);
}
.application .application-box7 .swiper .swiper-pagination {
  position: initial;
  margin-top: clamp(35px, 0.7rem, 70px);
  background: #e7e6ec;
}
.application .application-box7 .swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background: var(--dominant-color);
}
.application .application-box8 {
  max-width: clamp(10rem, 10rem, 1000px);
}
@media screen and (max-width: 768px) {
  .application .application-box8 {
    max-width: 100%;
  }
}
.application .application-box8 .tabs {
  margin-top: clamp(20px, 0.4rem, 40px);
  display: flex;
  position: relative;
  justify-content: center;
  gap: clamp(20px, 1rem, 100px);
  overflow: hidden;
}
.application .application-box8 .tabs::after {
  content: '';
  width: 100%;
  height: 2px;
  background: #e5e5e5;
  position: absolute;
  left: 0;
  bottom: 0;
}
.application .application-box8 .tabs .item {
  font-size: clamp(14px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.4);
  position: relative;
  cursor: pointer;
  padding-bottom: clamp(20px, 0.3rem, 30px);
  font-family: HONORSansCN-Bold;
  transition: all 0.5s;
  margin-right: clamp(20px, 1rem, 100px);
  width: fit-content !important;
}
.application .application-box8 .tabs .item::after {
  content: '';
  width: 100%;
  height: 2px;
  background: var(--dominant-color);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: all 0.5s;
  opacity: 0;
}
.application .application-box8 .tabs .item.swiper-slide-thumb-active,
.application .application-box8 .tabs .item:hover,
.application .application-box8 .tabs .item.swiper-slide-active1 {
  color: var(--dominant-color);
}
.application .application-box8 .tabs .item.swiper-slide-thumb-active::after,
.application .application-box8 .tabs .item:hover::after,
.application .application-box8 .tabs .item.swiper-slide-active1::after {
  opacity: 1;
}
.application .application-box8 .swiper-img {
  margin-top: clamp(20px, 0.6rem, 60px);
  overflow: initial;
}
.application .application-box8 .swiper-img .swiper-slide {
  height: auto;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
}
.application .application-box8 .swiper-img .swiper-slide .items {
  margin: auto;
}
@media screen and (max-width: 768px) {
  .application .application-box8 .swiper-img .swiper-slide .items {
    flex-direction: column-reverse;
  }
}
.application .application-box8 .swiper-img .swiper-slide .items .text {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background: url('/static/home/images/img159.png') no-repeat right / contain;
  padding: clamp(20px, 0.9rem, 90px) clamp(20px, 0.7rem, 70px) clamp(20px, 0.2rem, 20px) clamp(20px, 0.7rem, 70px);
  color: #fff;
  opacity: 0;
  transition: all 0.5s;
}
.application .application-box8 .swiper-img .swiper-slide .items .text .text-box {
  max-width: 60%;
  margin-right: 0;
  margin-left: auto;
}
.application .application-box8 .swiper-img .swiper-slide .items .text .title {
  font-size: clamp(14px, 0.3rem, 30px);
  font-family: HONORSansCN-Bold;
}
.application .application-box8 .swiper-img .swiper-slide .items .text .summary {
  color: #fff;
  font-size: clamp(14px, 0.2rem, 20px);
  margin-top: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .application .application-box8 .swiper-img .swiper-slide .items .text .summary {
    -webkit-line-clamp: 3;
  }
}
.application .application-box8 .swiper-img .swiper-slide .items .text .more {
  margin-top: clamp(20px, 0.3rem, 30px);
  width: 55px;
  height: 55px;
  filter: grayscale(1) brightness(100);
  transition: all 0.5s;
  background: url('/static/home/images/img8.png') no-repeat center / contain;
}
@media screen and (max-width: 768px) {
  .application .application-box8 .swiper-img .swiper-slide .items .text .more {
    display: none;
  }
}
.application .application-box8 .swiper-img .swiper-slide .items .text .more:hover {
  color: var(--dominant-color);
  background: var(--dominant-color);
  border-color: var(--dominant-color);
  background: url('/static/home/images/img9-1.png') no-repeat center / contain;
  filter: none;
}
.application .application-box8 .swiper-img .swiper-slide .items .img {
  overflow: hidden;
  position: relative;
}
.application .application-box8 .swiper-img .swiper-slide .items .img .imgBox {
  padding-bottom: 50%;
}
.application .application-box8 .swiper-img .swiper-slide.swiper-slide-active .text {
  opacity: 1;
}
.application .application-box8 .swiper-img .swiper-button-prev,
.application .application-box8 .swiper-img .swiper-button-next {
  background: url('/static/home/images/img8.png') no-repeat center / contain;
}
.application .application-box8 .swiper-img .swiper-button-prev.swiper-button-disabled,
.application .application-box8 .swiper-img .swiper-button-next.swiper-button-disabled {
  display: none;
}
.application .application-box8 .swiper-img .swiper-button-prev::after,
.application .application-box8 .swiper-img .swiper-button-next::after {
  display: none;
}
.application .application-box8 .swiper-img .swiper-button-prev:hover,
.application .application-box8 .swiper-img .swiper-button-next:hover {
  background: url('/static/home/images/img9.png') no-repeat center / contain;
}
.application .application-box8 .swiper-img .swiper-button-prev:hover i,
.application .application-box8 .swiper-img .swiper-button-next:hover i {
  color: #fff;
}
.application .application-box8 .swiper-img .swiper-button-prev {
  left: -130px;
}
.application .application-box8 .swiper-img .swiper-button-next {
  right: -130px;
}
.application .page {
  padding: 0 !important;
  padding-top: clamp(60px, 1.2rem, 120px) !important;
}
.application .page:last-child {
  padding-bottom: clamp(60px, 1.2rem, 120px) !important;
}
.application .page.application-box2 {
  padding-top: 0 !important;
  margin-top: clamp(60px, 1.2rem, 120px) !important;
}
.application .page.application-box4 {
  margin-top: clamp(60px, 1.2rem, 120px) !important;
}
/*网格布局*/
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.grid-gap-10 {
  grid-gap: 0.521vw;
}
.grid-gap-20 {
  grid-gap: 1.042vw;
}
.grid-gap-30 {
  grid-gap: 1.5625vw;
}
.grid-gap-40 {
  grid-gap: 2.083vw;
}
@media screen and (max-width: 1600px) {
  .grid-1600-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-1600-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-1600-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-1600-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-1600-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 1280px) {
  .grid-1280-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-1280-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-1280-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-1280-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-1280-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .grid-768-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-768-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-768-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-768-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-768-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
/*弹性布局*/
.flex-center,
.flex-left,
.flex-right,
.flex-between {
  display: flex;
}
.flex-center {
  align-items: center;
  justify-content: center;
}
.flex-left {
  align-items: center;
  justify-content: flex-start;
}
.flex-right {
  align-items: center;
  justify-content: flex-end;
}
.flex-between {
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .flex-phone-direction-column {
    flex-direction: column;
  }
  .flex-phone-direction-column-r {
    flex-direction: column-reverse;
  }
  .flex-phone-direction-row {
    flex-direction: row;
  }
  .flex-phone-direction-row-r {
    flex-direction: row-reverse;
  }
}
/*# sourceMappingURL=style.css.map */