@charset "utf-8";
/*初始化样式*/
*,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*设置平滑*/
html {
  scroll-behavior: smooth;
  font-size: calc(100 * 100vw / 1920);
  background: #f6f8fa;
}
body {
  font: 14px HYZhengYuan-65W, '微软雅黑', "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: HYZhengYuan-65W;
  src: url("../webfonts/HYZhengYuan-65W.ttf") format('truetype');
}
@font-face {
  font-family: BebasNeue;
  src: url("../webfonts/BebasNeue.otf") format('truetype');
}
@font-face {
  font-family: HONORSans-Regular;
  src: url("../webfonts/HONORSans-Regular.ttf") format('truetype');
}
strong {
  color: #000;
}
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 {
  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;
}
/*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: 64px;
  height: 64px;
  flex-direction: row;
  transition: all 0.5s;
  background: #fff;
  border-radius: 50%;
  z-index: 2;
  font-size: clamp(14px, 0.2rem, 20px);
}
@media screen and (max-width: 1600px) {
  body .swiper-button-prev,
  body .swiper-button-next {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  body .swiper-button-prev,
  body .swiper-button-next {
    width: 30px;
    height: 30px;
  }
}
body .swiper-button-prev:hover,
body .swiper-button-next:hover {
  background: var(--dominant-color);
  border-color: var(--dominant-color);
}
body .swiper-button-prev:hover::after,
body .swiper-button-next:hover::after {
  color: #fff;
}
body .swiper-button-prev {
  left: 0;
}
body .swiper-button-next {
  right: 0;
}
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.7rem, 70px);
  background: rgba(0, 0, 0, 0.1);
  /*搜索*/
  /*搜索*/
  /*语言*/
  /*语言*/
}
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,
header.active .language .language-title,
header.hover-active .language .language-title {
  color: #000;
}
header.active .language .language-title img,
header.hover-active .language .language-title img {
  filter: brightness(0);
}
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: space-between;
  align-items: center;
  height: 100%;
  padding-left: 35px;
  padding-right: 35px;
  /*logo*/
  /*logo*/
}
@media screen and (max-width: 1024px) {
  header .header-box {
    padding-left: 0;
    padding-right: 0;
    width: 90%;
    margin: auto;
  }
}
header .header-box .logo {
  width: clamp(124px, 1.24rem, 124px);
  filter: grayscale(1) brightness(10);
}
@media screen and (max-width: 1024px) {
  header .header-box .logo {
    width: 100%;
    justify-content: flex-start;
    max-width: 100px;
    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-end;
  gap: 0.55rem;
}
@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;
  }
}
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: 768px) {
  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.18rem, 18px);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
  transition: all 0.5s;
  width: 100%;
}
@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: 768px) {
  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 {
  position: absolute;
  top: clamp(60px, 0.7rem, 70px);
  -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: rgba(255, 255, 255, 0.9);
  justify-content: center;
  align-items: center;
  pointer-events: none;
  padding: clamp(20px, 0.6rem, 60px) 0;
  /*特殊*/
}
@media screen and (max-width: 768px) {
  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::before {
  position: absolute;
  height: 10px;
  left: 0;
  top: -10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  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: 768px) {
  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(4, 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: 768px) {
  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: #666;
  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;
  border-bottom: 1px solid #dfdfdf;
}
@media screen and (max-width: 768px) {
  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-box {
  opacity: 1;
  pointer-events: auto;
}
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: 70%;
  padding-left: clamp(1.2rem, 1.2rem, 120px);
  position: absolute;
  left: clamp(3.5rem, 3.5rem, 350px);
  top: 0;
  opacity: 0;
  pointer-events: none;
  height: 100%;
}
@media screen and (max-width: 768px) {
  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 {
  padding: 12px 0;
  display: block;
  color: rgba(0, 0, 0, 0.6);
  font-size: clamp(14px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  header .header-box .header-menu nav .first-item .second-box .three-box .three-item-title {
    margin-bottom: 0;
    padding: 10px 20px;
  }
}
header .header-box .header-menu nav .first-item .second-box .three-box .three-item-title:hover {
  color: 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(4.7rem, 4.7rem, 470px);
  padding-left: clamp(1.2rem, 1.2rem, 120px);
  position: absolute;
  left: clamp(3.5rem, 3.5rem, 350px);
  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;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .three-box2::after {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item {
  color: #666;
  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;
  border-bottom: 1px solid #dfdfdf;
  position: relative;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item {
    display: block;
  }
}
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.6);
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item a {
    color: #000;
  }
}
header .header-box .header-menu nav .first-item .second-box .three-box2 .three-item a:hover {
  color: var(--dominant-color);
}
@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 .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: 768px) {
  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: 768px) {
  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: 768px) {
  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: 768px) {
  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: 768px) {
  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: 768px) {
  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: 768px) {
  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: 768px) {
  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: 768px) {
  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: 768px) {
  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: 768px) {
  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: 768px) {
  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: 768px) {
  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;
}
@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: 768px) {
  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: 768px) {
  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 .search {
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
  justify-content: center;
  margin-left: 30px;
  background: var(--dominant-color);
  width: clamp(24px, 0.46rem, 46px);
  height: clamp(24px, 0.46rem, 46px);
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  header .search {
    margin-left: auto;
    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;
}
header .search img {
  width: clamp(10px, 0.18rem, 18px);
}
header .language {
  color: #fff;
  position: relative;
  cursor: pointer;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  header .language {
    margin-top: 30px;
    display: none;
  }
}
header .language .language-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: clamp(14px, 0.18rem, 18px);
  cursor: pointer;
  grid-gap: 2px;
}
@media screen and (max-width: 768px) {
  header .language .language-title {
    color: #333;
  }
}
header .language .language-title img {
  margin-left: 6px;
  width: 13px;
}
@media screen and (max-width: 768px) {
  header .language .language-title img {
    filter: none;
  }
}
header .language .language-show {
  position: absolute;
  top: 10px;
  padding-top: 50px;
  color: #333;
  left: 50%;
  margin: auto;
  width: 120px;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) translateX(-50%);
  pointer-events: none;
}
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.7rem, 70px);
  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: #f5f5f5;
}
.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: space-between;
  flex-basis: 100%;
  grid-gap: clamp(10px, 0.4rem, 40px);
}
@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;
}
@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;
}
@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(0, 0, 0, 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: #000;
    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(0, 0, 0, 0.66);
}
@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: #000;
}
.footer .footer-box .footer-menu .second-box a:hover::after {
  width: 100%;
}
.footer .footer-logo {
  width: 1.94rem;
  margin-bottom: 0.4rem;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .footer .footer-logo {
    width: 120px;
    margin-top: 40px;
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 20px;
  }
}
.footer .list {
  margin-bottom: 0.4rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footer .list {
    text-align: left;
    margin-bottom: 20px;
  }
}
.footer .list .key {
  color: rgba(0, 0, 0, 0.66);
  font-size: clamp(12px, 0.16rem, 16px);
}
.footer .list .value {
  margin-top: 0.2rem;
  line-height: 1;
  font-weight: 900;
  font-size: clamp(16px, 0.4rem, 40px);
  font-family: BebasNeue;
}
.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);
  border: 1px solid #c5c5c5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.5s;
}
.footer .footer-link .item .show {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  display: none;
}
.footer .footer-link .item img {
  transition: all 0.5s;
  width: fit-content;
  filter: brightness(0);
}
@media screen and (max-width: 768px) {
  .footer .footer-link .item img {
    width: 50%;
  }
}
.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 {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.65);
  padding: 30px 0;
  font-size: clamp(12px, 0.16rem, 16px);
}
@media screen and (max-width: 768px) {
  .footer .footer-copyright {
    padding: 20px 0;
    border-top: none;
    flex-direction: column;
    align-items: flex-start;
  }
}
.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;
}
/*底部样式*/
/*根元素代码*/
:root {
  /*--dominant-color:#3a93bd;*/
  --dominant-color: #073781;
  /*--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: 1rem 0;
}
@media screen and (max-width: 768px) {
  .index-padding {
    padding: 40px 0;
  }
}
.index-padding2 {
  padding: 1.3rem 0;
}
@media screen and (max-width: 768px) {
  .index-padding2 {
    padding: 40px 0;
  }
}
.index-title {
  color: #9b9b9b;
}
.index-title .sup {
  color: var(--dominant-color);
  font-size: 16px;
}
.index-title .title {
  font-size: clamp(18px, 0.5rem, 50px);
  line-height: 1.3;
  color: var(--dominant-color);
}
.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.6rem, 60px);
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.08);
}
.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);
}
.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(60px, 0.7rem, 70px);
}
@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;
  }
}
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
/*首页*/
/*轮播*/
.banner {
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .banner {
    height: auto;
  }
}
.banner .img {
  height: 100%;
}
.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: 80vh;
  }
}
.banner .swiper-banner {
  height: 100%;
}
.banner .swiper-banner .text {
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  color: #fff;
  text-align: left;
  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 .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;
}
@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 {
  text-align: left;
}
.banner .swiper-banner .swiper-pagination-bullet {
  --swiper-pagination-bullet-inactive-color: #fff;
  opacity: 0.4;
  --swiper-pagination-bullet-width: 12px;
  --swiper-pagination-bullet-height: 12px;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  position: relative;
  border-radius: 50%;
}
.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: var(--dominant-color);
  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;
  position: relative;
}
@media screen and (max-width: 768px) {
  .index1 {
    padding: 40px 0;
  }
}
.index1 .index1-sup {
  font-size: clamp(14px, 0.18rem, 18px);
}
.index1 .index1-box {
  display: flex;
  margin-top: 1rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .index1 .index1-box {
    flex-direction: column;
  }
}
.index1 .index1-box .left {
  padding-right: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .index1 .index1-box .left {
    width: 90%;
    margin: auto;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }
}
.index1 .index1-box .left .swiper {
  margin-left: 0;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .index1 .index1-box .left .swiper {
    width: 100%;
  }
}
.index1 .index1-box .left .swiper .swiper-slide {
  opacity: 0 !important;
}
.index1 .index1-box .left .swiper .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.index1 .index1-box .left .text {
  width: 7.8rem;
  max-width: 780px;
}
@media screen and (max-width: 768px) {
  .index1 .index1-box .left .text {
    width: 100%;
  }
}
.index1 .index1-box .left .text .title {
  font-size: clamp(16px, 0.4rem, 40px);
  transition: all 0.5s;
  border-bottom: 2px solid #eee;
  padding-bottom: clamp(20px, 0.3rem, 30px);
  margin-bottom: clamp(20px, 0.5rem, 50px);
  color: var(--dominant-color);
}
.index1 .index1-box .left .text .summary {
  font-size: clamp(12px, 0.2rem, 20px);
  line-height: 1.8;
  opacity: 0.6;
}
.index1 .index1-box .left .text .more {
  margin-top: clamp(20px, 0.5rem, 50px);
  gap: 20px;
  border-radius: 999px;
  border: 1px solid #d1d1d1;
  padding: 16px 40px;
  width: fit-content;
  font-size: clamp(12px, 0.2rem, 20px);
  color: var(--dominant-color);
  transition: all 0.5s;
}
.index1 .index1-box .left .text .more:hover {
  background: var(--dominant-color);
  border-color: var(--dominant-color);
  color: #fff;
}
.index1 .index1-box .right {
  width: 7.7rem;
  overflow: hidden;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .index1 .index1-box .right {
    width: 96%;
    margin: 50px 0 auto 5%;
  }
}
.index1 .index1-box .right .v-title {
  font-size: clamp(14px, 0.6rem, 60px);
  color: rgba(0, 0, 0, 0.08);
  margin-bottom: clamp(10px, 0.2rem, 20px);
}
.index1 .index1-box .right .swiper {
  overflow: initial;
  margin-left: 0;
}
.index1 .index1-box .right .swiper .swiper-slide {
  overflow: hidden;
  transform-origin: left bottom;
  transition: all 0.8s;
  width: fit-content;
}
.index1 .swiper-pagination {
  margin-top: 0.8rem;
  position: initial;
}
.index1 .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
}
.index1 .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}
.index2 {
  overflow: hidden;
  background: #eff2f7;
}
@media screen and (max-width: 768px) {
  .index2 {
    padding: 40px 0;
  }
}
.index2 .index2-box {
  margin-top: clamp(20px, 0.4rem, 40px);
}
.index2 .index2-box .swiper {
  overflow: initial;
}
.index2 .index2-box .swiper .swiper-slide {
  background: #fff;
  height: auto;
}
.index2 .index2-box .swiper .swiper-slide .imgBox {
  padding-bottom: 85%;
}
.index2 .index2-box .swiper .swiper-slide .text {
  padding: clamp(20px, 0.3rem, 30px);
}
.index2 .index2-box .swiper .swiper-slide .text .title {
  font-size: clamp(14px, 0.2rem, 20px);
  transition: all 0.5s;
}
.index2 .index2-box .swiper .swiper-slide .text .more {
  margin-top: clamp(10px, 0.2rem, 20px);
  font-size: clamp(12px, 0.16rem, 16px);
  color: var(--dominant-color);
  gap: 10px;
}
.index2 .index2-box .swiper .swiper-slide:hover .title {
  color: var(--dominant-color);
}
.index2 .index2-box .swiper .swiper-button-prev,
.index2 .index2-box .swiper .swiper-button-next {
  border-color: #eee;
  opacity: 0;
  transition: all 0.5s;
}
.index2 .index2-box .swiper .swiper-button-prev.swiper-button-disabled,
.index2 .index2-box .swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0 !important;
}
.index2 .index2-box .swiper .swiper-button-prev {
  left: 20px;
}
.index2 .index2-box .swiper .swiper-button-next {
  right: 20px;
}
.index2 .index2-box .swiper:hover .swiper-button-prev,
.index2 .index2-box .swiper:hover .swiper-button-next {
  opacity: 1;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
.index3 {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .index3 {
    padding: 40px 0;
    height: auto;
  }
}
.index3 .img {
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .index3 .img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: -1;
    width: 100%;
  }
}
.index3 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index3 .big {
  position: absolute;
  top: 13%;
  left: 18%;
  width: 3.74rem;
  transition: all 0.5s;
  animation: bounce 2s infinite ease-in-out;
}
@media screen and (max-width: 768px) {
  .index3 .big {
    position: relative;
    left: 0;
    right: 0;
    margin: auto;
    width: 150px;
  }
}
.index3 .big img {
  width: 100%;
}
.index3 .big.active {
  transform: translateY(-30px);
}
.index3 .big .title {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  font-size: clamp(16px, 0.5rem, 50px);
  color: #fff;
  height: fit-content;
  left: 0;
  right: 0;
}
.index3 .small1 {
  position: absolute;
  top: 25%;
  left: 47%;
  width: 0.9rem;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .index3 .small1 {
    display: none;
  }
}
.index3 .small1 img {
  mix-blend-mode: lighten;
  width: 100%;
}
.index3 .small1 img:hover {
  transform: scale(1.1);
}
.index3 .small1 .text {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  height: fit-content;
  left: 120%;
}
.index3 .small1 .text .title {
  font-size: clamp(16px, 0.24rem, 24px);
  color: #fff;
  opacity: 0;
  width: max-content;
  transform: translateY(30px);
  transition: all 0.5s;
}
.index3 .small1 .text .title:nth-child(n + 2) {
  position: absolute;
  top: 0;
  left: 0;
}
.index3 .small1 .text .title.active {
  opacity: 1;
  transform: translateY(0);
}
.index3 .small2 {
  position: absolute;
  top: 62%;
  left: 15%;
  width: 1.18rem;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .index3 .small2 {
    display: none;
  }
}
.index3 .small2 img {
  mix-blend-mode: lighten;
  width: 100%;
}
.index3 .small2 img:hover {
  transform: scale(1.1);
}
.index3 .small2 .text {
  position: absolute;
  top: 120%;
  bottom: 0;
  margin: auto;
  height: fit-content;
  left: 0;
  right: 0;
}
.index3 .small2 .text .title {
  text-align: center;
  font-size: clamp(16px, 0.24rem, 24px);
  color: #fff;
  opacity: 0;
  width: max-content;
  transform: translateY(30px);
  transition: all 0.5s;
}
.index3 .small2 .text .title:nth-child(n + 2) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.index3 .small2 .text .title.active {
  opacity: 1;
  transform: translateY(0);
}
.index3 .small3 {
  position: absolute;
  top: 45%;
  left: 36%;
  width: 1.54rem;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .index3 .small3 {
    position: initial;
    width: 90%;
    margin: auto;
  }
}
.index3 .small3 img {
  mix-blend-mode: lighten;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .index3 .small3 img {
    width: 50px;
    display: none;
  }
}
.index3 .small3 img:hover {
  transform: scale(1.1);
}
.index3 .small3 .text {
  position: absolute;
  top: 40%;
  margin: auto;
  text-align: left;
  font-size: clamp(16px, 0.24rem, 24px);
  color: #fff;
  height: fit-content;
  left: 110%;
  width: 9rem;
  max-width: 900px;
}
@media screen and (max-width: 768px) {
  .index3 .small3 .text {
    position: initial;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
.index3 .small3 .text .item {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .index3 .small3 .text .item {
    opacity: 1;
    transform: translateY(0);
  }
}
.index3 .small3 .text .item:nth-child(n+2) {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .index3 .small3 .text .item:nth-child(n+2) {
    position: initial;
  }
}
.index3 .small3 .text .item.active {
  opacity: 1;
  transform: translateY(0);
}
.index3 .small3 .text .item .title {
  font-size: clamp(16px, 0.4rem, 40px);
}
.index3 .small3 .text .item .summary {
  font-size: clamp(12px, 0.2rem, 20px);
  color: rgba(255, 255, 255, 0.6);
  margin-top: clamp(10px, 0.3rem, 30px);
}
.index3 .phone-items {
  color: #fff;
}
.index3 .phone-items .title {
  font-size: clamp(16px, 0.24rem, 24px);
}
.index3 .phone-items .summary {
  font-size: clamp(12px, 0.2rem, 20px);
}
.index4 {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .index4 {
    height: auto;
    padding: 40px 0;
  }
}
.index4 .img {
  width: 100vw;
  height: 100vh;
  margin: auto;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .index4 .img {
    display: none;
  }
}
.index4 .img .img-box {
  width: 100vw;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.index4 .img .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.index4 .text {
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .index4 .text {
    position: initial;
  }
}
.index4 .text .index-title {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .index4 .text .index-title {
    margin-bottom: 30px;
  }
}
.index4 .text .index-title .title {
  width: fit-content;
  margin: auto;
  background: url('../images/img76.webp') center / cover;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.index4 .text .index-title .summary {
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(14px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .index4 .text .index-title .summary {
    color: rgba(0, 0, 0, 0.6);
  }
}
.index4 .text .items {
  margin-top: clamp(30px, 1rem, 100px);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(20px, 0.8rem, 80px);
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .index4 .text .items {
    margin-top: 30px;
  }
}
.index4 .text .items .item {
  cursor: pointer;
  flex-basis: 35%;
}
@media screen and (max-width: 768px) {
  .index4 .text .items .item {
    flex-basis: 100%;
  }
}
.index4 .text .items .item .i-title {
  color: #fff;
  font-size: clamp(16px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .index4 .text .items .item .i-title {
    color: #000;
  }
}
.index4 .text .items .item .i-summary {
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(14px, 0.2rem, 20px);
  margin-top: clamp(10px, 0.2rem, 20px);
  display: none;
}
@media screen and (max-width: 768px) {
  .index4 .text .items .item .i-summary {
    color: rgba(0, 0, 0, 0.6);
  }
}
.index4 .text .items .item:nth-child(even) {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .index4 .text .items .item:nth-child(even) {
    text-align: left;
  }
}
.index5 {
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .index5 {
    padding: 50px 0;
  }
}
.index5 .index5-box {
  position: relative;
}
.index5 .index5-box .v-title {
  position: absolute;
  right: -5rem;
  top: 0;
  color: rgba(0, 0, 0, 0.08);
  font-size: clamp(14px, 0.6rem, 60px);
}
.index5 .index5-box .h-line {
  flex-basis: 256px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .index5 .index5-box .h-line {
    display: none;
  }
}
.index5 .index5-box .history-box {
  position: relative;
}
.index5 .index5-box .history-box .button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #eee;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  z-index: 2;
  cursor: pointer;
  transition: all 0.5s;
  opacity: 0;
}
.index5 .index5-box .history-box .button:hover {
  background: var(--dominant-color);
  color: #fff;
}
.index5 .index5-box .history-box .button-prev {
  left: 50px;
}
.index5 .index5-box .history-box .button-next {
  right: 50px;
}
.index5 .index5-box .history-box:hover .button {
  opacity: 1;
}
.index5 .index5-box .history {
  transition: all 1s;
  margin-top: clamp(30px, 0.5rem, 50px);
  flex-basis: calc(100% - 256px);
}
@media screen and (max-width: 768px) {
  .index5 .index5-box .history {
    overflow: auto;
  }
  .index5 .index5-box .history::-webkit-scrollbar {
    height: 2px;
  }
}
.index5 .index5-box .history .mid {
  display: flex;
  position: relative;
}
.index5 .index5-box .history .mid .item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  font-size: clamp(20px, 0.5rem, 50px);
  font-weight: 600;
  width: 370px;
  color: rgba(0, 0, 0, 0.4);
  transition: all 0.5s;
  cursor: pointer;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .index5 .index5-box .history .mid .item {
    width: 200px;
  }
}
.index5 .index5-box .history .mid .item.active {
  color: #8c36e0;
}
.index5 .index5-box .history .mid .item .year {
  position: relative;
  background: #fff;
}
.index5 .index5-box .history .mid .item .year::after,
.index5 .index5-box .history .mid .item .year::before {
  content: '';
  width: 20px;
  background: #fff;
  position: absolute;
  top: 0;
  height: 100%;
}
.index5 .index5-box .history .mid .item .year::before {
  left: -20px;
}
.index5 .index5-box .history .mid .item .year::after {
  right: -20px;
}
.index5 .index5-box .history .mid .item .line {
  opacity: 0;
  flex: 1;
  height: 10px;
  background: #e6ebf2;
}
@media screen and (max-width: 768px) {
  .index5 .index5-box .history .mid .item .line {
    height: 4px;
    opacity: 1;
  }
}
.index5 .index5-box .history .mid::before {
  height: 10px;
  top: 0;
  bottom: 0;
  left: 256px;
  position: absolute;
  margin: auto;
  width: 100%;
  background: #e6ebf2;
}
@media screen and (max-width: 768px) {
  .index5 .index5-box .history .mid::before {
    left: 0;
    height: 4px;
  }
}
.index5 .index5-box .history .mid .bg-line-high {
  left: 276px;
  height: 10px;
  top: 0;
  bottom: 0;
  position: absolute;
  background: #e6ebf2;
  width: 100%;
  margin: auto;
}
.index5 .index5-box .history .mid .bg-line {
  transition: all 1s;
  position: absolute;
  height: 10px;
  top: 0;
  bottom: 0;
  left: 276px;
  background: #8c36e0;
  width: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .index5 .index5-box .history .mid .bg-line {
    left: 0;
    height: 4px;
  }
}
.index5 .index5-box .history .top,
.index5 .index5-box .history .bottom {
  display: flex;
}
.index5 .index5-box .history .top .item,
.index5 .index5-box .history .bottom .item {
  width: 370px;
  display: flex;
  flex-shrink: 0;
  gap: clamp(20px, 0.5rem, 50px);
  align-items: flex-end;
  position: relative;
  padding-left: clamp(0px, 0.7rem, 70px);
}
@media screen and (max-width: 768px) {
  .index5 .index5-box .history .top .item,
  .index5 .index5-box .history .bottom .item {
    padding-left: 0;
    width: 200px;
  }
}
.index5 .index5-box .history .top .item .line,
.index5 .index5-box .history .bottom .item .line {
  filter: brightness(0);
  opacity: 0.1;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .index5 .index5-box .history .top .item .line,
  .index5 .index5-box .history .bottom .item .line {
    display: none;
  }
}
.index5 .index5-box .history .top .item.active .line,
.index5 .index5-box .history .bottom .item.active .line {
  filter: none;
  opacity: 1;
}
.index5 .index5-box .history .top .item .text,
.index5 .index5-box .history .bottom .item .text {
  flex: 1;
}
.index5 .index5-box .history .top .item .text .title,
.index5 .index5-box .history .bottom .item .text .title {
  font-weight: 600;
  font-size: clamp(14px, 0.3rem, 30px);
}
.index5 .index5-box .history .top .item .text .summary,
.index5 .index5-box .history .bottom .item .text .summary {
  font-size: clamp(14px, 0.2rem, 20px);
  padding-right: clamp(30px, 0.4rem, 40px);
}
.index5 .index5-box .history .top {
  padding-bottom: 0.4rem;
  align-items: flex-end;
}
.index5 .index5-box .history .top .item .line {
  bottom: auto;
  top: 0;
  transform: rotate(180deg);
}
.index5 .index5-box .history .top .item .text {
  padding-top: 0;
}
.index5 .index5-box .history .bottom {
  padding-top: 0.4rem;
}
.index5 .index5-box .history .bottom .item .text {
  padding-bottom: 0.7rem;
}
.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;
  background: url('../images/solid.svg') no-repeat right 10px center;
}
.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;
}
@media screen and (max-width: 768px) {
  .page-title {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 20px;
  }
}
.page-title.textC {
  text-align: center;
}
.page-title.colorW {
  color: #fff;
}
.page-title .title {
  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: #666;
  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;
}
/*内页大图*/
.pageBanner {
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  height: 7rem;
  max-height: 700px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .pageBanner {
    height: 200px;
  }
}
.pageBanner .video {
  width: 100%;
}
.pageBanner video {
  display: block;
  width: 100%;
}
.pageBanner .banner-box {
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.3rem;
  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;
}
.pageBanner .banner-box .banner-summary {
  font-size: clamp(14px, 0.3rem, 30px);
  line-height: 1.6;
  opacity: 0.4;
}
.pageBanner .banner-box .banner-button {
  width: 210px;
  height: 60px;
  background: var(--dominant-color);
  border-radius: 4px;
  margin: 40px auto 0;
  transition: all 0.5s;
  text-transform: uppercase;
}
.pageBanner .banner-box .banner-button: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 {
  background: #fff;
  width: 100%;
}
.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;
  overflow: hidden;
  justify-content: flex-start;
  grid-gap: 0.6rem;
  height: clamp(50px, 0.8rem, 80px);
}
@media screen and (max-width: 768px) {
  .page-menu .menu-box {
    grid-gap: 20px;
    justify-content: flex-start;
    overflow: auto;
  }
  .page-menu .menu-box::-webkit-scrollbar {
    height: 0;
  }
}
.page-menu .menu-box a {
  color: #6B7280;
  font-size: clamp(14px, 0.2rem, 20px);
  transition: all 0.5s;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@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 {
  color: var(--dominant-color);
}
.page-menu .menu-box a.active::after,
.page-menu .menu-box a:hover::after {
  width: 100%;
}
.page-menu .menu-box a::after {
  content: '';
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--dominant-color);
  height: 2px;
  transition: all 0.5s;
}
.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;
}
/*面包屑*/
.location {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  z-index: 2;
  color: #b9b9b9;
  margin-top: 20px;
}
.location i {
  color: #fff;
  font-size: 16px;
}
.location a {
  font-size: clamp(12px, 0.16rem, 16px);
  color: #b9b9b9;
}
.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;
}
@media screen and (max-width: 768px) {
  .pagers {
    flex-direction: column;
  }
}
.pagers .pager {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagers .pager a {
  width: clamp(30px, 0.65rem, 65px);
  height: clamp(30px, 0.65rem, 65px);
  margin: 0 10px;
  color: #374151;
  transition: all 0.5s;
  background: #fff;
  border-radius: 50%;
  font-size: clamp(12px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .pagers .pager a {
    margin: 0 4px;
  }
}
.pagers .pager a:hover,
.pagers .pager a.active {
  background: var(--dominant-color);
  border-color: var(--dominant-color);
  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: #fff;
  border-radius: 50%;
  text-align: center;
  text-indent: 0;
  font-size: clamp(12px, 0.2rem, 20px);
}
.pagers .pager-to form button {
  border-radius: 10px;
  width: clamp(30px, 0.8rem, 80px);
  height: clamp(30px, 0.65rem, 65px);
  background: #fff;
  font-size: clamp(12px, 0.2rem, 20px);
  transition: all 0.5s;
  margin-left: clamp(20px, 0.3rem, 30px);
}
.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;
}
/*新闻资讯*/
.news-menu {
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .news-menu {
    gap: 6px;
    overflow: auto;
    justify-content: flex-start;
  }
}
.news-menu a {
  background: #fff;
  height: clamp(36px, 0.5rem, 50px);
  width: clamp(80px, 1.4rem, 140px);
  font-size: clamp(12px, 0.22rem, 20px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .news-menu a {
    width: fit-content;
    height: fit-content;
    padding: 10px 20px;
    flex-shrink: 0;
  }
}
.news-menu a:hover,
.news-menu a.active {
  background: var(--dominant-color);
  color: #fff;
}
.news .news-swiper {
  margin-top: clamp(20px, 0.4rem, 40px);
}
.news .news-swiper .swiper-slide {
  background: #fff;
  display: flex;
}
@media screen and (max-width: 768px) {
  .news .news-swiper .swiper-slide {
    flex-direction: column;
  }
}
.news .news-swiper .swiper-slide .left {
  flex-basis: 50%;
}
.news .news-swiper .swiper-slide .right {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 0.7rem, 70px) clamp(20px, 0.5rem, 50px);
}
.news .news-swiper .swiper-slide .right .time,
.news .news-swiper .swiper-slide .right .more {
  font-size: clamp(12px, 0.2rem, 20px);
}
.news .news-swiper .swiper-slide .right .time {
  opacity: 0.6;
  margin-bottom: 0.1rem;
}
.news .news-swiper .swiper-slide .right .more {
  margin-top: auto;
  margin-bottom: 0;
  color: var(--dominant-color);
}
.news .news-swiper .swiper-slide .right .more i {
  margin-left: 0.1rem;
  color: var(--dominant-color);
}
.news .news-swiper .swiper-slide .right .title {
  color: var(--dominant-color);
  font-size: clamp(14px, 0.3rem, 30px);
}
.news .news-swiper .swiper-pagination {
  position: initial;
  margin-top: clamp(20px, 0.4rem, 40px);
}
.news .news-box {
  margin-top: clamp(30px, 0.9rem, 90px);
  display: flex;
  gap: 0.32rem;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .news .news-box {
    gap: 20px;
  }
}
.news .news-box .item {
  transition: all 0.5s;
  position: relative;
  background: #FFF;
  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;
  width: 6rem;
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .news .news-box .item .img {
    width: 100%;
  }
}
.news .news-box .item .img .imgBox {
  padding-bottom: 60%;
}
@media screen and (max-width: 768px) {
  .news .news-box .item .img .imgBox {
    padding-bottom: 50%;
  }
}
.news .news-box .item .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  color: #666;
  align-items: normal;
  padding: clamp(20px, 0.5rem, 50px) clamp(20px, 0.7rem, 70px);
}
.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 {
  color: #111827;
  transition: all 0.5s;
  font-size: clamp(16px, 0.3rem, 30px);
}
.news .news-box .item .text .summary {
  margin: 0.2rem 0;
  line-height: 1.6;
  transition: all 0.5s;
  color: #4B5563;
  font-size: clamp(12px, 0.16rem, 16px);
}
@media screen and (max-width: 768px) {
  .news .news-box .item .text .summary {
    margin: 10px 0;
  }
}
.news .news-box .item .text .more {
  margin-top: auto;
  margin-bottom: 0;
  transition: all 0.5s;
  color: var(--dominant-color);
  font-size: clamp(12px, 0.2rem, 20px);
}
.news .news-box .item .text .more i {
  margin-left: 0.1rem;
  color: var(--dominant-color);
}
.news .news-box .item:hover .title {
  color: var(--dominant-color);
}
.news .news-box .item:hover .more {
  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;
  }
}
.page-menu2 .items {
  margin-bottom: 15px;
  background: #f8f8f9;
}
@media screen and (max-width: 768px) {
  .page-menu2 .items {
    margin-bottom: 10px;
  }
}
.page-menu2 .items.active .icon {
  transform: rotate(90deg);
}
.page-menu2 .items .first-item {
  height: 55px;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  transition: all 0.5s;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .page-menu2 .items .first-item {
    font-size: 14px;
    height: 40px;
  }
}
.page-menu2 .items .first-item.active,
.page-menu2 .items .first-item:hover {
  background: var(--dominant-color);
  color: #fff;
}
.page-menu2 .items .first-item.active .icon,
.page-menu2 .items .first-item:hover .icon {
  color: #fff;
}
.page-menu2 .items .first-item .icon {
  width: 34px;
  height: 34px;
  color: #666;
  border-radius: 50%;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .page-menu2 .items .first-item .icon {
    width: 20px;
    height: 20px;
  }
}
.page-menu2 .items .second-box {
  border-top: 1px solid #eee;
  padding-top: 20px;
  padding-bottom: 10px;
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  display: none;
}
.page-menu2 .items .second-box label {
  display: block;
  font-size: 14px;
  color: #999;
  cursor: pointer;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .page-menu2 .items .second-box label {
    font-size: 14px;
    margin: 10px 0;
  }
}
.page-menu2 .items .second-box label input {
  border: 1px solid #a7a7a7;
}
.page-menu2 .items .second-box label.active,
.page-menu2 .items .second-box label:hover {
  color: var(--dominant-color);
}
/*新闻详情*/
.news-detail {
  margin-top: clamp(20px, 0.5rem, 50px);
}
.news-detail .title {
  font-size: clamp(16px, 0.5rem, 50px);
  line-height: 1.3;
  text-align: left;
  margin-bottom: 0.2rem;
  color: var(--dominant-color);
}
@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: rgba(0, 0, 0, 0.6);
  gap: clamp(10px, 0.6rem, 60px);
  border-bottom: 2px solid #e6ebf2;
  padding-bottom: 0.2rem;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 768px) {
  .news-detail .mid {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: 10px;
  }
}
.news-detail .mid .item {
  display: flex;
  align-items: center;
  font-size: clamp(12px, 0.2rem, 20px);
}
.news-detail .details {
  background: #fff;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .news-detail .details {
    flex-direction: column;
  }
}
.news-detail .details .baseline {
  flex: 1;
  padding: clamp(20px, 1.2rem, 120px) 0.4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news-detail .details .baseline {
    order: 2;
    padding: 20px;
  }
}
.news-detail .details .baseline .tag-absolute {
  position: absolute;
  top: 0;
  left: 0.4rem;
  gap: 10px;
  font-size: clamp(12px, 0.16rem, 16px);
  color: var(--dominant-color);
  font-weight: 600;
}
.news-detail .details .baseline .tag-absolute img {
  width: clamp(17px, 0.17rem, 17px);
}
@media screen and (max-width: 768px) {
  .news-detail .details .baseline .tag-absolute {
    display: none;
  }
}
.news-detail .details .baseline .tags {
  max-width: 1.5rem;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .news-detail .details .baseline .tags {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
  }
}
.news-detail .details .baseline .tags .tag {
  text-align: center;
  background: #f6f8fa;
  font-size: clamp(12px, 0.18rem, 18px);
  color: var(--dominant-color);
  padding: 16px 16px;
  border-radius: 10px;
  width: 100%;
}
.news-detail .details .baseline .go-back {
  margin: 1.3rem auto 0;
  font-size: clamp(12px, 0.2rem, 20px);
  text-align: center;
  color: var(--dominant-color);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}
.news-detail .details .baseline .go-back .img {
  margin: auto auto 10px;
  background: #f6f8fa;
  border-radius: 50%;
  width: clamp(40px, 0.8rem, 80px);
  height: clamp(40px, 0.8rem, 80px);
  transition: all 0.5s;
  cursor: pointer;
}
.news-detail .details .baseline .go-back .img img {
  width: clamp(14px, 0.28rem, 28px);
  transition: all 0s;
}
.news-detail .details .baseline .go-back .img:hover {
  background: var(--dominant-color);
}
.news-detail .details .baseline .go-back .img:hover img {
  filter: grayscale(1) brightness(10);
}
.news-detail .details .content {
  width: 10rem;
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  .news-detail .details .content {
    order: 1;
    max-width: 100%;
    padding: 20px;
    width: 100%;
  }
}
.news-detail .details .content .details-container {
  margin-top: 0.2rem;
  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;
  }
  .news-detail .details .content .details-container img {
    max-width: 100% !important;
    height: auto !important;
  }
}
.news-detail .detail-pager {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .news-detail .detail-pager {
    flex-direction: column;
    gap: 10px;
  }
}
.news-detail .detail-pager a {
  display: flex;
  background: #f6f8fa;
  font-size: clamp(12px, 0.2rem, 20px);
  transition: all 0.5s;
  padding: clamp(20px, 0.6rem, 60px);
  color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .news-detail .detail-pager a {
    flex-basis: 100%;
  }
}
.news-detail .detail-pager a .text {
  padding-left: 0.5rem;
}
@media screen and (max-width: 768px) {
  .news-detail .detail-pager a .text {
    padding-left: 20px;
  }
}
.news-detail .detail-pager a .text .t-summary {
  position: relative;
}
.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.next .text {
  padding-left: 0;
  padding-right: 0.5rem;
}
.news-detail .detail-pager a.next .text .t-summary .icon {
  position: absolute;
  left: auto;
  right: -0.5rem;
}
.news-detail .detail-pager a .t-title,
.news-detail .detail-pager a i {
  color: #000;
}
.news-detail .detail-pager a .t-title {
  font-size: clamp(14px, 0.3rem, 30px);
}
.news-detail .detail-pager a:hover {
  color: var(--dominant-color);
}
.news-detail .detail-pager a:hover .t-title,
.news-detail .detail-pager a:hover i {
  color: var(--dominant-color);
}
.news-relate {
  display: none;
}
.news-relate .items {
  margin-top: clamp(20px, 0.5rem, 50px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .news-relate .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.news-relate .items .imgBox {
  padding-bottom: 75%;
}
@media screen and (max-width: 768px) {
  .news-relate .items .imgBox {
    padding-bottom: 50%;
  }
}
.news-relate .items .text {
  margin-top: clamp(10px, 0.2rem, 20px);
}
.news-relate .items .text .time {
  font-size: clamp(12px, 0.18rem, 18px);
  color: rgba(0, 0, 0, 0.6);
}
.news-relate .items .text .title {
  font-size: clamp(14px, 0.24rem, 24px);
}
/*联系我们*/
.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 .img {
  margin-top: 0.3rem;
  margin-bottom: 20px;
}
.contact .contact3 .contact3-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
@media screen and (max-width: 768px) {
  .contact .contact3 .contact3-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact .contact3 .contact3-box .item {
  background: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  padding: clamp(20px, 0.9rem, 90px) clamp(20px, 0.6rem, 60px);
}
.contact .contact3 .contact3-box .item .title {
  font-size: clamp(16px, 0.3rem, 30px);
  color: var(--dominant-color);
  border-bottom: 1px solid #e6ebf2;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.contact .contact3 .contact3-box .item .summary {
  font-size: clamp(14px, 0.2rem, 20px);
  line-height: 1.6;
  opacity: 0.6;
}
.contact .contact3 .contact3-box .item:hover {
  transform: translateY(-10px);
}
.contact .contact4 {
  position: relative;
  overflow: hidden;
}
.contact .contact4 .text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
  padding: clamp(20px, 1rem, 100px);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .contact .contact4 .text {
    position: relative;
    background: var(--dominant-color);
  }
}
.contact .contact4 .text .summary {
  max-width: 480px;
  font-size: clamp(14px, 0.2rem, 20px);
  line-height: 1.6;
}
.contact .contact4 .text .more {
  border-radius: 35px;
  margin-top: clamp(10px, 0.5rem, 50px);
  font-size: clamp(14px, 0.24rem, 24px);
  width: clamp(150px, 2.4rem, 240px);
  height: clamp(40px, 0.7rem, 70px);
  gap: 20px;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
}
.contact .contact4 .text .more:hover {
  background: var(--dominant-color);
}
.investor .investor1 {
  background: #fff;
  margin-top: clamp(20px, 0.4rem, 40px);
}
.investor .investor1 .k-line {
  padding: clamp(20px, 1rem, 100px);
}
.investor .investor1 .k-line .item {
  width: 8rem;
  max-width: 800px;
  margin: auto;
  display: none;
}
@media screen and (max-width: 768px) {
  .investor .investor1 .k-line .item {
    max-width: 100%;
    width: 100%;
  }
}
.investor .investor1 .k-line .item.active {
  display: block;
}
.investor .investor1 .k-line .item img {
  width: 100%;
}
.investor .investor1 .tabs {
  border-top: 2px solid #e6ebf2;
}
.investor .investor1 .tabs .item {
  font-size: clamp(14px, 0.2rem, 20px);
  color: var(--dominant-color);
  flex-basis: 25%;
  transition: all 0.5s;
  height: clamp(50px, 0.8rem, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 2px solid #e6ebf2;
  cursor: pointer;
}
.investor .investor1 .tabs .item:last-child {
  border-right: none;
}
.investor .investor1 .tabs .item.active,
.investor .investor1 .tabs .item:hover {
  background: #e6ebf2;
}
.investor .investor2 {
  margin-top: clamp(20px, 0.4rem, 40px);
  display: flex;
  gap: 10px;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .investor .investor2 {
    gap: 20px;
  }
}
.investor .investor2 .item {
  transition: all 0.5s;
  position: relative;
  background: #FFF;
  overflow: hidden;
  align-items: normal;
}
@media screen and (max-width: 768px) {
  .investor .investor2 .item {
    flex-direction: column;
  }
}
.investor .investor2 .item::after {
  content: '';
  width: 8px;
  background: var(--dominant-color);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 1s;
}
.investor .investor2 .item .text {
  display: flex;
  color: #666;
  align-items: normal;
  position: relative;
  z-index: 2;
  padding: clamp(20px, 0.3rem, 30px) clamp(20px, 0.7rem, 70px);
}
@media screen and (max-width: 768px) {
  .investor .investor2 .item .text {
    flex-direction: column;
  }
}
.investor .investor2 .item .text .time {
  font-size: clamp(12px, 0.18rem, 18px);
  opacity: 0.6;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .investor .investor2 .item .text .time {
    margin-top: 10px;
  }
}
.investor .investor2 .item .text .title {
  color: #000;
  transition: all 0.5s;
  font-size: clamp(16px, 0.24rem, 24px);
}
.investor .investor2 .item:hover::after {
  width: 100%;
}
.investor .investor2 .item:hover .title {
  color: #fff;
}
.investor .investor2 .item:hover .time {
  color: rgba(255, 255, 255, 0.6);
}
.investor .investor4 {
  margin-top: clamp(20px, 0.4rem, 40px);
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .investor .investor4 {
    flex-direction: column;
  }
}
.investor .investor4 .left {
  flex: 1;
  padding: clamp(20px, 0.8rem, 80px);
}
@media screen and (max-width: 768px) {
  .investor .investor4 .left {
    width: 100%;
  }
}
.investor .investor4 .left .title {
  font-size: clamp(16px, 0.3rem, 30px);
  color: var(--dominant-color);
  border-bottom: 2px solid #e6ebf2;
  padding-bottom: 20px;
}
.investor .investor4 .left .items .item {
  min-height: clamp(70px, 0.9rem, 90px);
  border-bottom: 1px solid #e6ebf2;
}
@media screen and (max-width: 768px) {
  .investor .investor4 .left .items .item {
    min-height: auto;
    padding: 20px 0;
  }
}
.investor .investor4 .left .items .item .key {
  flex-basis: clamp(40px, 0.9rem, 90px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.investor .investor4 .left .items .item .key img {
  width: 30%;
}
.investor .investor4 .left .items .item .value {
  flex: 1;
  color: var(--dominant-color);
  font-size: clamp(12px, 0.2rem, 20px);
}
.investor .investor4 .right {
  flex-basis: 7.8rem;
  max-width: 780px;
}
.investor .investor4 .right img {
  width: 100%;
}
.sustainability .sustainability1 {
  position: relative;
}
.sustainability .sustainability1 .img {
  position: absolute;
  right: 0;
  width: 6.25rem;
  z-index: 2;
}
.sustainability .sustainability1 .img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sustainability .sustainability1 .img {
    display: none;
  }
}
.sustainability .sustainability1 .sustainability1-box {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 1rem, 100px);
}
.sustainability .sustainability1 .sustainability1-box .item {
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .sustainability .sustainability1 .sustainability1-box .item {
    flex-direction: column;
  }
}
.sustainability .sustainability1 .sustainability1-box .item .left {
  flex-basis: 5.6rem;
}
.sustainability .sustainability1 .sustainability1-box .item .left img {
  width: 100%;
}
.sustainability .sustainability1 .sustainability1-box .item .right {
  flex: 1;
  padding: clamp(20px, 1rem, 100px);
  max-width: calc(100% - 5.6rem);
}
@media screen and (max-width: 768px) {
  .sustainability .sustainability1 .sustainability1-box .item .right {
    width: 100%;
    max-width: 100%;
  }
}
.sustainability .sustainability1 .sustainability1-box .item .right .title {
  font-size: clamp(16px, 0.3rem, 30px);
  color: var(--dominant-color);
}
.sustainability .sustainability1 .sustainability1-box .item .right .summary {
  font-size: clamp(14px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.6);
  margin-top: clamp(20px, 0.3rem, 30px);
}
.sustainability .sustainability1 .sustainability1-box .item .right .tip {
  margin-top: clamp(20px, 0.4rem, 40px);
  font-size: clamp(14px, 0.24rem, 24px);
  color: var(--dominant-color);
}
.sustainability .sustainability1 .sustainability1-box .item:nth-child(2) {
  position: relative;
  z-index: 3;
}
.sustainability .sustainability2 {
  margin-top: clamp(20px, 0.4rem, 40px);
  display: flex;
  gap: 10px;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .sustainability .sustainability2 {
    gap: 20px;
  }
}
.sustainability .sustainability2 .item {
  transition: all 0.5s;
  position: relative;
  background: #FFF;
  overflow: hidden;
}
.sustainability .sustainability2 .item .text {
  display: flex;
  color: #666;
  gap: clamp(30px, 0.8rem, 80px);
  padding: clamp(20px, 0.3rem, 30px) clamp(20px, 0.7rem, 70px);
}
@media screen and (max-width: 768px) {
  .sustainability .sustainability2 .item .text {
    flex-direction: column;
  }
}
.sustainability .sustainability2 .item .text .img {
  width: 1.5rem;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 768px) {
  .sustainability .sustainability2 .item .text .img {
    width: 50%;
  }
}
.sustainability .sustainability2 .item .text .img img {
  width: 100%;
}
.sustainability .sustainability2 .item .text .title {
  color: var(--dominant-color);
  transition: all 0.5s;
  font-size: clamp(16px, 0.24rem, 24px);
}
.sustainability .sustainability2 .item .text .buttons {
  margin-right: 0;
  margin-left: auto;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .sustainability .sustainability2 .item .text .buttons {
    width: 100%;
  }
}
.sustainability .sustainability2 .item .text .buttons .button {
  border: 2px solid #cdd7e6;
  color: var(--dominant-color);
  padding: 10px 20px;
  width: clamp(140px, 1.4rem, 140px);
  height: clamp(40px, 0.5rem, 50px);
  gap: 10px;
  transition: all 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .sustainability .sustainability2 .item .text .buttons .button {
    width: 50%;
  }
}
.sustainability .sustainability2 .item .text .buttons .button:first-child {
  border-color: var(--dominant-color);
  background: var(--dominant-color);
  color: #fff;
}
.sustainability .sustainability2 .item .text .buttons .button:first-child img {
  filter: brightness(100);
}
.sustainability .sustainability2 .item .text .buttons .button img {
  transition: all 0s;
}
.sustainability .sustainability2 .item .text .buttons .button:hover {
  border-color: var(--dominant-color);
  background: var(--dominant-color);
  color: #fff;
}
.sustainability .sustainability2 .item .text .buttons .button:hover img {
  filter: brightness(100);
}
.sustainability .sustainability3 .page-title {
  align-items: flex-start;
}
.sustainability .sustainability3 .page-title .summary {
  flex-basis: 9rem;
  margin-top: 0;
  max-width: 900px;
}
@media screen and (max-width: 768px) {
  .sustainability .sustainability3 .page-title .summary {
    flex-basis: 100%;
  }
}
.sustainability .sustainability3 .img {
  margin-top: clamp(20px, 1rem, 100px);
}
.sustainability .sustainability4 .sustainability4-box {
  margin-top: clamp(20px, 0.4rem, 40px);
}
.sustainability .sustainability4 .sustainability4-box .item {
  align-items: normal;
  border-bottom: 1px solid #dee4ee;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .sustainability .sustainability4 .sustainability4-box .item {
    flex-direction: column;
  }
}
.sustainability .sustainability4 .sustainability4-box .item:first-child {
  border-top: 1px solid #dee4ee;
}
.sustainability .sustainability4 .sustainability4-box .item .left {
  padding: clamp(20px, 0.2rem, 20px) 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: clamp(20px, 0.4rem, 40px);
}
.sustainability .sustainability4 .sustainability4-box .item .left .title {
  font-size: clamp(16px, 0.3rem, 30px);
  margin-bottom: auto;
  margin-top: 0;
  color: var(--dominant-color);
}
.sustainability .sustainability4 .sustainability4-box .item .left .summary {
  display: none;
  max-width: 6.8rem;
  font-size: clamp(14px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  .sustainability .sustainability4 .sustainability4-box .item .left .summary {
    max-width: 100%;
  }
}
.sustainability .sustainability4 .sustainability4-box .item .left .more {
  display: none;
  border-radius: 999px;
  padding: 10px 30px;
  gap: 10px;
  color: var(--dominant-color);
  border: 1px solid #dee4ee;
  width: fit-content;
  transition: all 0.5s;
  font-size: clamp(14px, 0.2rem, 20px);
}
.sustainability .sustainability4 .sustainability4-box .item .left .more:hover {
  border-color: var(--dominant-color);
  background: var(--dominant-color);
  color: #fff;
}
.sustainability .sustainability4 .sustainability4-box .item .right {
  display: none;
  flex-basis: 5.4rem;
  transition: all 0.5s;
}
.sustainability .sustainability4 .sustainability4-box .item .right .imgBox {
  padding-bottom: 0;
  transition: all 0.5s;
}
.sustainability .sustainability4 .sustainability4-box .item .right img {
  width: 100%;
}
.sustainability .sustainability4 .sustainability4-box .item.active {
  background: #fff;
}
.sustainability .sustainability4 .sustainability4-box .item.active .left {
  padding: clamp(20px, 0.4rem, 40px);
}
.sustainability .sustainability4 .sustainability4-box .item.active .left .summary {
  display: -webkit-box;
}
.sustainability .sustainability4 .sustainability4-box .item.active .left .more {
  display: flex;
}
.sustainability .sustainability4 .sustainability4-box .item.active .right {
  display: block;
}
.sustainability .sustainability4 .sustainability4-box .item.active .right .imgBox {
  padding-bottom: 90%;
}
.sustainability .sustainability4 .sustainability4-box .item:hover {
  transform: translateY(-5px);
}
.sustainability .sustainability4 .sustainability4-detail {
  margin-top: clamp(20px, 0.4rem, 40px);
}
.sustainability .sustainability4 .sustainability4-detail .item {
  border-bottom: 1px solid #dee4ee;
  cursor: pointer;
  transition: all 0.5s;
  padding: clamp(20px, 0.8rem, 80px) 0;
  gap: clamp(20px, 1.5rem, 150px);
  align-items: normal;
}
@media screen and (max-width: 768px) {
  .sustainability .sustainability4 .sustainability4-detail .item {
    flex-direction: column;
  }
}
.sustainability .sustainability4 .sustainability4-detail .item:first-child {
  border-top: 1px solid #dee4ee;
}
.sustainability .sustainability4 .sustainability4-detail .item .left {
  flex: 1;
}
.sustainability .sustainability4 .sustainability4-detail .item .left .title {
  font-size: clamp(16px, 0.3rem, 30px);
  margin-bottom: auto;
  margin-top: 0;
  color: var(--dominant-color);
}
.sustainability .sustainability4 .sustainability4-detail .item .left .summary {
  margin-top: clamp(10px, 0.2rem, 20px);
  font-size: clamp(14px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.6);
}
.sustainability .sustainability4 .sustainability4-detail .item .right {
  flex-basis: 6.5rem;
  transition: all 0.5s;
}
.sustainability .sustainability4 .sustainability4-detail .item .right img {
  width: 100%;
}
.sustainability .sustainability5 {
  margin-top: clamp(20px, 0.4rem, 40px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .sustainability .sustainability5 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.sustainability .sustainability5 .item {
  transition: all 0.5s;
  position: relative;
  background: #FFF;
  overflow: hidden;
}
.sustainability .sustainability5 .item .text {
  color: #666;
  padding: clamp(20px, 0.7rem, 70px);
}
.sustainability .sustainability5 .item .text .img {
  width: clamp(20px, 0.34rem, 34px);
}
.sustainability .sustainability5 .item .text .img img {
  width: 100%;
}
.sustainability .sustainability5 .item .text .title {
  color: var(--dominant-color);
  transition: all 0.5s;
  font-size: clamp(16px, 0.24rem, 24px);
  margin-top: 20px;
}
.sustainability .sustainability5 .item .text .buttons {
  gap: 20px;
  border-top: 1px dashed #dee4ee;
  margin-top: clamp(20px, 0.8rem, 80px);
  padding-top: clamp(20px, 0.4rem, 40px);
}
@media screen and (max-width: 768px) {
  .sustainability .sustainability5 .item .text .buttons {
    width: 100%;
  }
}
.sustainability .sustainability5 .item .text .buttons .button {
  border: 2px solid #cdd7e6;
  color: var(--dominant-color);
  padding: 10px 20px;
  width: clamp(140px, 1.4rem, 140px);
  height: clamp(40px, 0.5rem, 50px);
  gap: 10px;
  transition: all 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .sustainability .sustainability5 .item .text .buttons .button {
    width: 50%;
  }
}
.sustainability .sustainability5 .item .text .buttons .button:first-child {
  border-color: var(--dominant-color);
  background: var(--dominant-color);
  color: #fff;
}
.sustainability .sustainability5 .item .text .buttons .button:first-child img {
  filter: brightness(100);
}
.sustainability .sustainability5 .item .text .buttons .button img {
  transition: all 0s;
}
.sustainability .sustainability5 .item .text .buttons .button:hover {
  border-color: var(--dominant-color);
  background: var(--dominant-color);
  color: #fff;
}
.sustainability .sustainability5 .item .text .buttons .button:hover img {
  filter: brightness(100);
}
.sustainability .sustainability6 {
  margin-top: clamp(20px, 0.4rem, 40px);
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 1rem, 100px);
}
.sustainability .sustainability6 .items {
  position: relative;
}
.sustainability .sustainability6 .items .i-title {
  font-size: clamp(16px, 0.3rem, 30px);
  color: var(--dominant-color);
}
.sustainability .sustainability6 .items .item-container {
  margin-top: 20px;
}
.sustainability .sustainability6 .items .item-container .swiper {
  overflow: initial;
}
.sustainability .sustainability6 .items .item-container .swiper .swiper-button {
  margin-top: clamp(20px, 0.5rem, 50px);
  gap: 20px;
}
.sustainability .sustainability6 .items .item-container .swiper .swiper-button .swiper-button-prev,
.sustainability .sustainability6 .items .item-container .swiper .swiper-button .swiper-button-next {
  position: initial;
  margin-top: auto;
}
.sustainability .sustainability6 .items .item-container .swiper .swiper-button .swiper-button-prev::after,
.sustainability .sustainability6 .items .item-container .swiper .swiper-button .swiper-button-next::after {
  display: none;
}
.sustainability .sustainability6 .items .item-container .swiper .swiper-button .swiper-button-prev:hover,
.sustainability .sustainability6 .items .item-container .swiper .swiper-button .swiper-button-next:hover {
  color: #fff;
}
.sustainability .sustainability6 .items .item-container .swiper-slide {
  position: relative;
  background: #FFF;
  overflow: hidden;
  height: auto;
}
.sustainability .sustainability6 .items .item-container .swiper-slide .text {
  color: #666;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(20px, 0.5rem, 50px);
}
.sustainability .sustainability6 .items .item-container .swiper-slide .text .img {
  width: clamp(20px, 0.33rem, 33px);
}
.sustainability .sustainability6 .items .item-container .swiper-slide .text .img img {
  width: 100%;
}
.sustainability .sustainability6 .items .item-container .swiper-slide .text .title {
  color: #000;
  transition: all 0.5s;
  font-size: clamp(16px, 0.2rem, 20px);
  margin-top: 20px;
  margin-bottom: clamp(20px, 0.8rem, 80px);
}
.sustainability .sustainability6 .items .item-container .swiper-slide .text .tip {
  font-size: clamp(12px, 0.2rem, 20px);
  border-top: 1px dashed #dee4ee;
  margin-top: auto;
  padding-top: clamp(20px, 0.2rem, 20px);
  color: var(--dominant-color);
  margin-bottom: 0;
}
.sustainability .sustainability6 .items .item-container .swiper-slide .text .tip span {
  font-size: clamp(14px, 0.3rem, 30px);
}
.social .social1 .social1-box {
  margin-top: clamp(20px, 0.4rem, 40px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 0.3rem, 30px);
}
.social .social1 .social1-box .item {
  background: #fff;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .social .social1 .social1-box .item {
    flex-direction: column !important;
  }
}
.social .social1 .social1-box .item:nth-child(even) {
  flex-direction: row-reverse;
}
.social .social1 .social1-box .item .left {
  width: clamp(300px, 6rem, 600px);
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .social .social1 .social1-box .item .left {
    width: 100%;
  }
}
.social .social1 .social1-box .item .left .imgBox {
  padding-bottom: 83.5%;
}
.social .social1 .social1-box .item .left img {
  width: 100%;
}
.social .social1 .social1-box .item .left .swiper-pagination {
  text-align: left;
  padding: 10px 50px;
}
.social .social1 .social1-box .item .left .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
}
.social .social1 .social1-box .item .left .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}
.social .social1 .social1-box .item .right {
  padding: clamp(20px, 0.8rem, 80px);
}
.social .social1 .social1-box .item .right .title {
  font-size: clamp(16px, 0.3rem, 30px);
  margin-bottom: auto;
  margin-top: 0;
  color: var(--dominant-color);
}
.social .social1 .social1-box .item .right .summary {
  margin-top: clamp(20px, 0.3rem, 30px);
  font-size: clamp(14px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  .social .social1 .social1-box .item .right .summary {
    max-width: 100%;
  }
}
.social .social1 .social1-box .item:hover {
  transform: translateY(-5px);
}
/*服务支持*/
.support .support1 .box1 {
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .support .support1 .box1 {
    flex-direction: column;
  }
}
.support .support1 .box1 .left {
  flex-basis: 50%;
}
.support .support1 .box1 .left .summary {
  font-size: clamp(14px, 14rem, 14px);
}
.support .support1 .box1 .right {
  flex-basis: 50%;
  padding-right: 1rem;
}
.support .support1 .box1 .right .img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.support .support1 .box1 .right .img img {
  width: 100%;
}
.support .support1 .box1 .right .img .play {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.65rem;
  height: 0.65rem;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .support .support1 .box1 .right .img .play {
    width: 40px;
    height: 40px;
  }
}
.support .support1 .box2 .swiper {
  margin-top: 30px;
}
.support .support1 .box2 .swiper-slide {
  overflow: hidden;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.support .support1 .box2 .swiper-slide .imgBox {
  padding-bottom: 139%;
}
.support .support1 .box2 .swiper-slide .text {
  font-size: clamp(12px, 0.18rem, 18px);
  background: #fff;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .support .support1 .box2 .swiper-slide .text {
    padding: 10px;
  }
}
.support .support1 .box2 .swiper-button {
  margin-top: 50px;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .support .support1 .box2 .swiper-button {
    gap: 20px;
  }
}
.support .support1 .box2 .swiper-button .swiper-button-prev,
.support .support1 .box2 .swiper-button .swiper-button-next {
  position: initial;
  margin-top: auto;
  width: 36px;
  height: 36px;
  border: 1px solid #D2D2D2;
  background: rgba(255, 255, 255, 0.8);
}
.support .support1 .box2 .swiper-button .swiper-button-prev::after,
.support .support1 .box2 .swiper-button .swiper-button-next::after {
  display: none;
}
.support .support1 .box2 .swiper-button .swiper-button-prev:hover,
.support .support1 .box2 .swiper-button .swiper-button-next:hover {
  background: var(--dominant-color);
  color: #fff;
}
.support .support2 .tables {
  margin-top: 50px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
}
.support .support2 .tables .table-box {
  overflow: auto;
}
.support .support2 .tables .table-box table {
  text-align: left;
}
.support .support2 .tables .table-box table th {
  color: #fff;
  padding: 16px;
  font-weight: 400;
  font-size: clamp(14px, 0.14rem, 14px);
}
.support .support2 .tables .table-box table tr:first-child {
  background: linear-gradient(90deg, #2559B5 0%, #183D85 100%);
}
.support .support2 .tables .table-box table tr:nth-child(odd) {
  background-color: #F9FAFB;
}
.support .support2 .tables .table-box table tr:last-child td {
  border-bottom: none;
}
.support .support2 .tables .table-box table tr td {
  font-size: clamp(12px, 0.12rem, 12px);
  color: #374151;
  border-right: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  padding: 16px;
}
.support .support2 .tables .table-box table tr td:first-child {
  text-align: center;
  width: 100px;
  padding: 0;
}
.support .support2 .tables .table-box table tr td:nth-child(2) {
  text-align: center;
  width: 200px;
}
.support .support2 .tables .table-box table tr td:last-child {
  border-right: none;
  width: 130px;
  text-align: center;
  padding: 0;
}
.support .support2 .tables .table-box table tr td:last-child span {
  border-radius: 9999px;
  background: #DCFCE7;
  display: block;
  color: #3B8642;
  padding: 5px 12px;
  width: fit-content;
  margin: auto;
  cursor: pointer;
  transition: all 0.3s;
}
.support .support2 .tables .table-box table tr td:last-child span:hover {
  background: #16A34A;
  color: #fff;
}
.support .support3 .top {
  margin: 0.6rem auto;
}
@media screen and (max-width: 768px) {
  .support .support3 .top {
    flex-direction: column;
  }
}
.support .support3 .top .search {
  width: 4.5rem;
  min-width: 200px;
}
@media screen and (max-width: 768px) {
  .support .support3 .top .search {
    width: 100%;
  }
}
.support .support3 .top .search label {
  display: block;
  position: relative;
}
.support .support3 .top .search label button {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  background: none;
  opacity: 0.5;
}
.support .support3 .top .search input {
  font-family: Montserrat-Regular;
  text-indent: 60px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #D1D5DB;
  background: #FFF;
  height: 42px;
  color: #9CA3AF;
  font-size: 16px;
}
.support .support3 .top .search input::placeholder {
  color: #9CA3AF;
  font-size: 16px;
}
.support .support3 .top .filter {
  flex-basis: calc(100% - 300px);
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .support .support3 .top .filter {
    flex-basis: 100%;
    margin-top: 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.support .support3 .top .filter .left {
  min-width: 70px;
  font-size: clamp(14px, 0.14rem, 14px);
  color: #374151;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .support .support3 .top .filter .left {
    margin-bottom: 10px;
  }
}
.support .support3 .top .filter .left img {
  margin-right: 10px;
}
.support .support3 .top .filter .right {
  gap: 10px;
  flex-wrap: wrap;
}
.support .support3 .top .filter .right span {
  font-size: clamp(12px, 0.14rem, 14px);
  color: #374151;
  background: #F3F4F6;
  padding: 10px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.5s;
}
.support .support3 .top .filter .right span.active {
  background: var(--dominant-color);
  color: #fff;
}
.support .support3 .bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.support .support3 .bottom .item {
  gap: 24px;
  padding: 24px;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 1px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .support .support3 .bottom .item {
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    align-items: flex-start;
  }
}
.support .support3 .bottom .item .icon {
  width: 0.48rem;
  height: 0.48rem;
  min-width: 36px;
  min-height: 36px;
  border-radius: 8px;
  background: #DBEAFE;
  display: flex;
  align-items: center;
  justify-content: center;
}
.support .support3 .bottom .item .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.support .support3 .bottom .item .text .title {
  font-size: clamp(16px, 0.18rem, 18px);
}
.support .support3 .bottom .item .text .summary {
  font-size: clamp(14px, 0.14rem, 14px);
}
.support .support3 .bottom .item .text .tip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(12px, 0.12rem, 12px);
  color: #6B7280;
}
.support .support3 .bottom .item .text .tip .t:first-child {
  border-radius: 4px;
  background: #F3F4F6;
  padding: 4px 6px;
}
.support .support3 .bottom .item .download {
  width: 127px;
  height: 38px;
  margin-right: 0;
  margin-left: auto;
  border-radius: 8px;
  background: #2559B5;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  gap: 8px;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .support .support3 .bottom .item .download {
    width: 100%;
  }
}
.support .support3 .bottom .item .download:hover {
  transform: translateY(-10px);
}
.support .support4 .support-form {
  margin: 0.5rem auto;
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .support .support4 .support-form {
    padding: 20px;
  }
}
.support .support4 .support-form .form-title {
  flex-basis: 100%;
  color: #111827;
  font-size: clamp(16px, 0.18rem, 18px);
}
@media screen and (max-width: 768px) {
  .support .support4 .support-form .form-title {
    margin-bottom: 10px;
    margin-top: 20px;
  }
}
.support .support4 .support-form .form-title img {
  margin-right: 6px;
}
.support .support4 .support4-contact .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .support .support4 .support4-contact .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-top: 24px;
  }
}
.support .support4 .support4-contact .items .item {
  padding: 32px;
  border-radius: 8px;
  background: #FFF;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.support .support4 .support4-contact .items .item .i-icon {
  border-radius: 8px;
  width: 48px;
  height: 48px;
  min-width: 36px;
  min-height: 36px;
  margin: auto;
}
.support .support4 .support4-contact .items .item .i-title {
  margin-top: 24px;
  font-size: clamp(14px, 0.16rem, 16px);
}
.support .support4 .support4-contact .items .item .i-summary {
  color: #4B5563;
  font-size: clamp(12px, 0.14rem, 14px);
  margin-top: 12px;
}
.support .support4 .support4-contact .items .item:nth-child(1) .i-icon {
  background: #DBEAFE;
}
.support .support4 .support4-contact .items .item:nth-child(2) .i-icon {
  background: #DCFCE7;
}
.support .support4 .support4-contact .items .item:nth-child(3) .i-icon {
  background: #F3E8FF;
}
.support .support-contact {
  background: #F9FAFB;
  padding: 0.64rem 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .support .support-contact {
    padding: 30px 0;
  }
}
.support .support-contact .title {
  font-size: clamp(16px, 0.3rem, 30px);
}
.support .support-contact .summary {
  font-size: clamp(12px, 0.18rem, 18px);
  color: #4B5563;
  margin-top: 24px;
}
.support .support-contact .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .support .support-contact .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-top: 24px;
  }
}
.support .support-contact .items .item {
  padding: 32px;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.support .support-contact .items .item .i-title {
  font-size: clamp(16px, 0.2rem, 20px);
}
.support .support-contact .items .item .i-summary {
  font-size: clamp(12px, 0.16rem, 16px);
  margin-top: 24px;
}
.support .support-contact .items .item .i-button {
  display: flex;
  justify-content: center;
  margin: 24px auto 0;
  width: 165px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 8px;
  border: 1px solid var(--dominant-color);
  background: #FFF;
  color: var(--dominant-color);
  transition: all 0.5s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.support .support-contact .items .item .i-button:hover {
  background: var(--dominant-color);
  color: #fff;
  transform: translateY(-10px);
}
/*产品中心*/
.product .top {
  gap: 0.9rem;
}
@media screen and (max-width: 768px) {
  .product .top {
    flex-direction: column;
  }
}
.product .top .left {
  flex-basis: 40%;
}
.product .top .left .img {
  border-radius: 8px;
  overflow: hidden;
}
.product .top .left .img img {
  width: 100%;
}
.product .top .right {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .product .top .right {
    width: 100%;
  }
}
.product .top .right .title {
  font-size: clamp(16px, 0.36rem, 36px);
}
.product .top .right .summary {
  margin-top: 0.2rem;
}
.product .top .right .summary ul {
  line-height: 1.7;
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.product .top .right .summary ul li {
  list-style: disc;
  color: #374151;
  font-size: clamp(14px, 0.14rem, 14px);
}
.product .top .right .button {
  margin-top: 28px;
  gap: 35px;
}
@media screen and (max-width: 768px) {
  .product .top .right .button {
    gap: 20px;
  }
}
.product .top .right .button .item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 55px;
  width: 1.75rem;
  min-width: 125px;
  color: #fff;
  transition: all 0.5s;
  font-size: clamp(14px, 0.16rem, 16px);
  border-radius: 8.329px;
  background: linear-gradient(90deg, #4A6CF7 0%, #667EEA 100%);
  box-shadow: 0px 5.206px 7.809px -1.562px rgba(0, 0, 0, 0.1), 0px 2.082px 3.124px -2.082px rgba(0, 0, 0, 0.1);
}
.product .top .right .button .item:hover {
  background: linear-gradient(var(--dominant-color), var(--dominant-color));
}
.product .top .right .button .item p {
  opacity: 0.9;
  font-size: clamp(12px, 0.12rem, 12px);
}
.product .bottom {
  margin-top: 50px;
}
.product .bottom .table-title {
  background: linear-gradient(90deg, #2559B5 0%, #1E4A9C 100%);
  font-size: clamp(14px, 0.24rem, 24px);
  padding: 24px 32px;
  color: #fff;
  border-radius: 16px 16px 0 0;
}
.product .bottom .table-box {
  overflow: auto;
}
.product .bottom .table-box table {
  width: 100%;
}
.product .bottom .table-box table tr:nth-child(odd) {
  border-top: 1px solid #E5E7EB;
  background: #F9FAFB;
}
.product .bottom .table-box table tr th {
  padding: 0 24px;
  height: 70px;
  font-size: clamp(12px, 0.12rem, 12px);
}
.product .bottom .table-box table tr th:first-child {
  text-align: left;
}
.product .bottom .table-box table tr td {
  height: 70px;
  padding: 0 24px;
  font-size: clamp(12px, 0.16rem, 16px);
  text-align: center;
}
.product .bottom .table-box table tr td:first-child {
  text-align: left;
  color: #2559B5;
}
.product .bottom .table-box table tr td:first-child a:hover {
  text-decoration: underline;
}
.product .bottom .table-box table tr td span {
  color: #4B5563;
  font-size: clamp(12px, 0.12rem, 12px);
}
.product .bottom .table-pager {
  padding: 0 24px;
  height: 70px;
  border-bottom: 1px solid #E5E7EB;
}
@media screen and (max-width: 768px) {
  .product .bottom .table-pager {
    flex-direction: column;
    height: auto;
    padding: 24px;
  }
}
.product .bottom .table-pager .left {
  color: #4B5563;
  font-size: clamp(12px, 0.12rem, 12px);
}
.product .bottom .table-pager .pager {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .product .bottom .table-pager .pager {
    margin-top: 20px;
  }
}
.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 {
  height: 100vh;
  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: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
  text-align: center;
}
.about .about1 .text .text1 {
  width: 5.98rem;
  max-width: 598px;
  margin: auto;
}
.about .about1 .text .text2 {
  width: 1.94rem;
  height: 1.94rem;
  max-width: 194px;
  max-height: 194px;
  margin: clamp(40px, 1.5rem, 150px) auto 0;
  cursor: pointer;
  position: relative;
  transform: translateY(-30px);
  transition: all 0.5s;
  opacity: 0;
}
.about .about1 .text .text2 .img1 svg {
  fill: transparent;
  stroke-width: 30px;
  stroke-dasharray: 300%;
  stroke-dashoffset: 300%;
  transform-origin: 50%;
  transition-property: stroke-dashoffset;
  transition-duration: 1.2s;
  transition-timing-function: cubic-bezier(1, -0.01, 0.75, 1.21);
  transform: rotate(90deg);
}
.about .about1 .text .text2 .img1 img {
  width: 100%;
}
.about .about1 .text .text2 .img2 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0.22rem;
  height: fit-content;
  max-width: 22px;
}
.about .about1 .text .text2.active {
  opacity: 1;
  transform: translateY(0);
}
.about .about1 .text .text2.active svg {
  stroke-dashoffset: 70%;
}
.about .about2 {
  position: relative;
  display: flex;
}
@media screen and (max-width: 768px) {
  .about .about2 {
    height: auto;
  }
}
.about .about2 .about2-box {
  width: 100%;
  align-items: center;
}
.about .about2 .about2-box .tip {
  position: absolute;
  left: 0;
  top: 0;
  width: 3.58rem;
}
.about .about2 .about2-box .left .about2-title {
  font-size: clamp(16px, 0.4rem, 40px);
  color: var(--dominant-color);
  padding-top: 1rem;
  margin-bottom: 1.8rem;
}
.about .about2 .about2-box .left .page-title {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .about .about2 .about2-box .left .page-title {
    width: 100%;
  }
}
.about .about2 .about2-box .left .page-title .title {
  margin-bottom: 0.4rem;
}
.about .about2 .about2-box .right {
  overflow: hidden;
  width: 8.5rem;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .about .about2 .about2-box .right {
    position: initial;
    width: 90%;
    margin: 30px auto;
  }
}
.about .about2 .about2-box .right img {
  width: 100%;
}
.about .about3 {
  height: 100vh;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .about .about3 {
    height: auto;
    padding: 50px 0;
  }
}
.about .about3 .about3-box {
  display: flex;
  height: 75vh;
}
@media screen and (max-width: 768px) {
  .about .about3 .about3-box {
    height: auto;
    flex-direction: column;
  }
}
.about .about3 .left {
  flex-basis: 50%;
  text-align: center;
}
.about .about3 .left .img {
  width: 4.87rem;
  max-width: 487px;
  margin: auto;
  position: relative;
  transform: translateX(-10%);
}
@media screen and (max-width: 768px) {
  .about .about3 .left .img {
    width: 50%;
    transform: translateX(0);
  }
}
.about .about3 .left .img .text {
  text-align: left;
  position: absolute;
  right: -40%;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  font-size: clamp(12px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .about .about3 .left .img .text {
    position: initial;
    margin-top: 10px;
    text-align: center;
    margin-bottom: 30px;
  }
}
.about .about3 .right {
  flex-basis: 50%;
  background: #fff;
  padding: clamp(20px, 1rem, 100px);
}
.about .about3 .right .summary {
  overflow: auto;
  max-height: 4.5rem;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .about .about3 .right .summary {
    max-height: initial;
  }
}
.about .about4 {
  overflow: hidden;
}
.about .about4 .about4-box {
  margin-top: clamp(20px, 0.4rem, 40px);
}
.about .about4 .about4-box .text-swiper {
  overflow: initial;
  margin: auto;
  height: 65vh;
  overflow: hidden;
}
.about .about4 .about4-box .text-swiper .swiper-slide .img {
  flex-basis: 100%;
  overflow: hidden;
}
.about .about4 .about4-box .text-swiper .swiper-slide .img .imgBox {
  padding-bottom: 43%;
}
.about .about4 .about4-box .text-swiper .swiper-slide .img img {
  width: 100%;
}
.about .about4 .about4-box .text-swiper .swiper-slide .text {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  padding: clamp(20px, 0.6rem, 60px) clamp(20px, 0.9rem, 90px);
  min-height: 3rem;
  width: clamp(350px, 7rem, 700px);
}
@media screen and (max-width: 768px) {
  .about .about4 .about4-box .text-swiper .swiper-slide .text {
    padding: 20px;
    position: initial;
  }
}
.about .about4 .about4-box .text-swiper .swiper-slide .text .year {
  font-family: HONORSans-Regular;
  color: var(--dominant-color);
  font-size: clamp(24px, 0.6rem, 60px);
}
.about .about4 .about4-box .text-swiper .swiper-slide .text .summary {
  color: var(--dominant-color);
  font-size: clamp(16px, 0.2rem, 20px);
}
.about .about4 .about4-box .time-swiper-box {
  position: relative;
  margin-top: clamp(20px, 0.4rem, 40px);
  gap: clamp(20px, 0.5rem, 50px);
}
.about .about4 .about4-box .time-swiper-box::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: calc(100% - 2rem);
  margin: auto;
  height: 1px;
  background: #E1E1E1;
}
.about .about4 .about4-box .time-swiper-box .swiper-button {
  gap: 20px;
  flex-basis: 1.5rem;
  max-width: 150px;
  font-size: clamp(12px, 0.16rem, 16px);
}
.about .about4 .about4-box .time-swiper-box .time-swiper {
  margin-right: 0;
  max-width: 10rem;
  flex: 1;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .about .about4 .about4-box .time-swiper-box .time-swiper {
    width: calc(100% - 90px);
  }
}
.about .about4 .about4-box .time-swiper-box .time-swiper .swiper-slide {
  padding-top: 40px;
  padding-bottom: 40px;
  cursor: pointer;
}
.about .about4 .about4-box .time-swiper-box .time-swiper .swiper-slide .point {
  width: clamp(24px, 0.32rem, 32px);
  height: clamp(24px, 0.32rem, 32px);
  border-radius: 50px;
  background: rgba(7, 55, 129, 0.4);
  margin: auto;
  position: relative;
  z-index: 2;
  opacity: 0;
}
.about .about4 .about4-box .time-swiper-box .time-swiper .swiper-slide .point::after {
  content: '';
  width: clamp(10px, 0.18rem, 18px);
  height: clamp(10px, 0.18rem, 18px);
  border-radius: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: var(--dominant-color);
}
.about .about4 .about4-box .time-swiper-box .time-swiper .swiper-slide .year {
  position: absolute;
  top: 0;
  font-size: clamp(14px, 0.2rem, 20px);
  color: #999999;
  text-align: center;
  transition: all 0.5s;
  left: 0;
  right: 0;
  margin: auto;
}
.about .about4 .about4-box .time-swiper-box .time-swiper .swiper-slide.swiper-slide-thumb-active .point {
  opacity: 1;
}
.about .about4 .about4-box .time-swiper-box .time-swiper .swiper-slide.swiper-slide-thumb-active .year {
  opacity: 1;
  color: var(--dominant-color);
}
.about .about4 .about4-box .swiper-button-prev,
.about .about4 .about4-box .swiper-button-next {
  position: initial;
  margin-top: auto;
  color: #3A3A3A;
  transition: all 0.5s;
  cursor: pointer;
  border: 1px solid #909090;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .about .about4 .about4-box .swiper-button-prev,
  .about .about4 .about4-box .swiper-button-next {
    width: 36px;
    height: 36px;
  }
}
.about .about4 .about4-box .swiper-button-prev::after,
.about .about4 .about4-box .swiper-button-next::after {
  display: none;
}
.about .about4 .about4-box .swiper-button-prev:hover,
.about .about4 .about4-box .swiper-button-next:hover {
  background: var(--dominant-color);
  color: #fff;
}
.about .about4 .about4-box .swiper-button-prev::after,
.about .about4 .about4-box .swiper-button-next::after {
  display: none;
}
.about .about5 {
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .about .about5 {
    height: auto;
    padding: 50px 0;
  }
}
.about .about5 .about5-box {
  margin-top: clamp(30px, 1.8rem, 180px);
}
.about .about5 .about5-box .item {
  display: none;
}
.about .about5 .about5-box .item .swiper {
  overflow: initial;
}
.about .about5 .about5-box .item .swiper .swiper-wrapper {
  align-items: flex-end;
}
.about .about5 .about5-box .item .swiper .swiper-button-prev,
.about .about5 .about5-box .item .swiper .swiper-button-next {
  border-color: #eee;
  opacity: 0;
}
.about .about5 .about5-box .item .swiper:hover .swiper-button-prev,
.about .about5 .about5-box .item .swiper:hover .swiper-button-next {
  opacity: 1;
}
.about .about5 .about5-box .item .swiper-slide {
  text-align: center;
}
.about .about5 .about5-box .item .swiper-slide .img {
  text-align: center;
}
.about .about5 .about5-box .item .swiper-slide .img img {
  max-width: 70%;
}
.about .about5 .about5-box .item .swiper-slide .text {
  height: 1.5rem;
  max-height: 150px;
  background: #fcfcfc;
  padding: clamp(20px, 0.4rem, 40px);
  font-size: clamp(14px, 0.24rem, 24px);
  color: var(--dominant-color);
  text-align: center;
}
.about .about5 .about5-box .item .swiper-slide:nth-child(even) .text {
  height: 2.3rem;
  max-height: 230px;
}
.about .about5 .about5-box .item.active {
  display: block;
}
.about .about6 {
  background: #fff;
}
.about .about6 .about6-box {
  margin-top: clamp(20px, 0.4rem, 40px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 0.5rem, 50px);
}
@media screen and (max-width: 768px) {
  .about .about6 .about6-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about .about6 .about6-box .item {
  position: relative;
  cursor: pointer;
}
.about .about6 .about6-box .item::after {
  transition: all 0.5s;
  opacity: 0;
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 55%, rgba(7, 55, 129));
}
@media screen and (max-width: 768px) {
  .about .about6 .about6-box .item::after {
    opacity: 0 !important;
  }
}
.about .about6 .about6-box .item .imgBox {
  padding-bottom: 112%;
}
.about .about6 .about6-box .item .text {
  z-index: 2;
  position: absolute;
  bottom: clamp(20px, 0.4rem, 40px);
  left: clamp(20px, 0.3rem, 30px);
  right: clamp(20px, 0.3rem, 30px);
  color: #fff;
}
.about .about6 .about6-box .item .text .title {
  font-size: clamp(16px, 0.3rem, 30px);
}
.about .about6 .about6-box .item .text .tip {
  font-size: clamp(14px, 0.2rem, 20px);
}
.about .about6 .about6-box .item .text .summary {
  position: relative;
  line-height: 1.6;
  transition: all 0.5s;
  font-size: clamp(12px, 0.16rem, 16px);
  max-height: 0;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .about .about6 .about6-box .item .text .summary {
    max-height: initial;
    opacity: 1 !important;
  }
}
.about .about6 .about6-box .item .text .summary .list {
  padding-top: clamp(20px, 0.24rem, 24px);
}
.about .about6 .about6-box .item:hover::after {
  opacity: 1;
}
.about .about6 .about6-box .item:hover .summary {
  opacity: 1;
  max-height: 200px;
}
@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;
  }
}
.technological .technological1 {
  background: #fff;
  margin-top: clamp(20px, 0.4rem, 40px);
  padding: clamp(20px, 0.7rem, 70px) clamp(20px, 0.9rem, 90px);
  gap: clamp(20px, 1rem, 100px);
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .technological .technological1 {
    flex-direction: column;
  }
}
.technological .technological1 .left {
  width: clamp(200px, 5.1rem, 510px);
}
.technological .technological1 .right {
  flex: 1;
}
.technological .technological1 .right .summary {
  font-size: clamp(14px, 0.24rem, 24px);
  color: var(--dominant-color);
  transition: all 0.5s;
}
.technological .technological1 .right .summary .hide {
  display: none;
}
.technological .technological1 .right .summary.active {
  -webkit-line-clamp: 9999;
}
.technological .technological1 .right .more {
  width: clamp(150px, 2.1rem, 210px);
  height: clamp(40px, 0.6rem, 60px);
  border-radius: 30px;
  border: 1px solid #eee;
  gap: 20px;
  margin-top: clamp(20px, 0.6rem, 60px);
  font-size: clamp(14px, 0.2rem, 20px);
  color: var(--dominant-color);
  transition: all 0.5s;
  cursor: pointer;
}
.technological .technological1 .right .more i {
  transition: all 0.5s;
}
.technological .technological1 .right .more .span2 {
  display: none;
}
.technological .technological1 .right .more.active .span1 {
  display: none;
}
.technological .technological1 .right .more.active .span2 {
  display: block;
}
.technological .technological1 .right .more.active i {
  transform: rotate(180deg);
}
.technological .technological1 .right .more:hover {
  background: var(--dominant-color);
  color: #fff;
  border-color: var(--dominant-color);
}
.technological .technological2 {
  margin-top: clamp(20px, 0.4rem, 40px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 0.5rem, 50px);
}
@media screen and (max-width: 768px) {
  .technological .technological2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.technological .technological2 .item {
  background: #fff;
}
.technological .technological2 .item .imgBox {
  cursor: pointer;
  padding-bottom: 122%;
}
.technological .technological2 .item .text {
  padding: clamp(20px, 0.4rem, 40px);
  color: var(--dominant-color);
}
.technological .technological2 .item .text .title {
  font-size: clamp(16px, 0.3rem, 30px);
}
.technological .technological2 .item .text .tip {
  font-size: clamp(14px, 0.2rem, 20px);
  margin-top: clamp(10px, 0.2rem, 20px);
}
.technological .technological2 .item .text .summary {
  display: none;
}
.technological .technological3 {
  margin-top: clamp(20px, 0.4rem, 40px);
  display: flex;
  gap: clamp(20px, 0.5rem, 50px);
  flex-wrap: wrap;
}
.technological .technological3 .item {
  position: relative;
  background: #fff;
  width: calc((100% - clamp(40px, 1rem, 100px)) / 3);
}
@media screen and (max-width: 768px) {
  .technological .technological3 .item {
    width: 100%;
  }
}
.technological .technological3 .item .swiper {
  width: 100%;
}
.technological .technological3 .item .swiper .swiper-pagination {
  bottom: clamp(10px, 0.2rem, 20px);
}
.technological .technological3 .item .swiper .swiper-pagination .swiper-pagination-bullet {
  width: clamp(10px, 0.1rem, 10px);
  height: clamp(10px, 0.1rem, 10px);
}
.technological .technological3 .item .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--dominant-color);
}
.technological .technological3 .item .imgBox {
  padding-bottom: 56%;
}
.technological .technological3 .item .text {
  padding: clamp(20px, 0.4rem, 40px);
}
.technological .technological3 .item .text .title {
  color: var(--dominant-color);
  font-size: clamp(16px, 0.3rem, 30px);
}
.technological .technological3 .item .text .summary {
  font-size: clamp(14px, 0.2rem, 20px);
  margin-top: clamp(10px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.8;
}
.technological .technological4 .box1 .box1-box {
  margin-top: clamp(20px, 0.4rem, 40px);
}
.technological .technological4 .box1 .box1-box .top {
  border: 1px dashed #d5d5d5;
  padding: clamp(20px, 0.3rem, 30px);
  border-radius: 200px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .technological .technological4 .box1 .box1-box .top {
    border: none;
    display: flex;
    gap: 30px;
    flex-direction: column;
  }
}
.technological .technological4 .box1 .box1-box .top .item {
  width: clamp(225px, 4.5rem, 450px);
  height: clamp(170px, 3.4rem, 340px);
  background: var(--dominant-color);
  border-radius: 170px;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 768px) {
  .technological .technological4 .box1 .box1-box .top .item {
    width: 80vw;
    height: 200px;
  }
}
.technological .technological4 .box1 .box1-box .top .item .icon {
  width: clamp(30px, 0.5rem, 50px);
  height: clamp(30px, 0.5rem, 50px);
}
.technological .technological4 .box1 .box1-box .top .item .icon img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.technological .technological4 .box1 .box1-box .top .item .text {
  margin-top: clamp(20px, 0.4rem, 40px);
  color: #fff;
  text-align: center;
}
.technological .technological4 .box1 .box1-box .top .item .text .title {
  font-size: clamp(16px, 0.3rem, 30px);
}
.technological .technological4 .box1 .box1-box .top .item .text .summary {
  margin-top: clamp(20px, 0.3rem, 30px);
  font-size: clamp(14px, 0.2rem, 20px);
}
.technological .technological4 .box1 .box1-box .top .item:nth-child(even) {
  background: #fff;
  border: 1px dashed var(--dominant-color);
}
.technological .technological4 .box1 .box1-box .top .item:nth-child(even) .text {
  color: var(--dominant-color);
}
.technological .technological4 .box1 .box1-box .top .item:nth-child(n+2) {
  position: absolute;
  top: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 768px) {
  .technological .technological4 .box1 .box1-box .top .item:nth-child(n+2) {
    position: initial;
  }
}
.technological .technological4 .box1 .box1-box .top .item:nth-child(2) {
  left: clamp(200px, 4rem, 400px);
}
.technological .technological4 .box1 .box1-box .top .item:nth-child(3) {
  right: clamp(200px, 4rem, 400px);
}
.technological .technological4 .box1 .box1-box .top .item:nth-child(4) {
  right: clamp(20px, 0.3rem, 30px);
}
.technological .technological4 .box1 .box1-box .top .item .tip {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
}
.technological .technological4 .box1 .box1-box .bottom {
  margin-top: clamp(20px, 0.4rem, 40px);
  text-align: center;
  font-size: clamp(14px, 0.2rem, 20px);
}
.technological .technological4 .box1 .box1-box .bottom span {
  font-size: clamp(16px, 0.4rem, 40px);
  color: var(--dominant-color);
}
.technological .technological4 .box2 {
  background: #fff;
}
.technological .technological4 .box2 .box2-box {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  position: relative;
  max-width: clamp(19.2rem, 19.2rem, 1920px);
}
@media screen and (max-width: 768px) {
  .technological .technological4 .box2 .box2-box {
    max-width: 100%;
    margin: auto;
    width: 90%;
  }
}
.technological .technological4 .box2 .box2-box .title {
  font-size: clamp(16px, 0.3rem, 30px);
  gap: clamp(20px, 1rem, 100px);
  color: var(--dominant-color);
}
.technological .technological4 .box2 .box2-box .box2-img {
  height: 7.1rem;
  position: relative;
  z-index: 2;
  max-height: 710px;
}
@media screen and (max-width: 768px) {
  .technological .technological4 .box2 .box2-box .box2-img {
    height: auto;
    max-height: max-content;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
  }
}
.technological .technological4 .box2 .box2-box .box2-img .item-fade {
  position: absolute;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  max-width: 200px;
  max-height: 200px;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .technological .technological4 .box2 .box2-box .box2-img .item-fade {
    position: initial;
    width: 40vw;
    height: 40vw;
  }
}
.technological .technological4 .box2 .box2-box .box2-img .item-fade:hover {
  transform: translateY(-10px);
}
.technological .technological4 .box2 .box2-box .box2-img .item-fade:nth-child(5) {
  width: 3.6rem;
  height: 3.6rem;
  max-width: 360px;
  max-height: 360px;
}
@media screen and (max-width: 768px) {
  .technological .technological4 .box2 .box2-box .box2-img .item-fade:nth-child(5) {
    position: initial;
    width: 100%;
    height: 40vw;
  }
}
.technological .technological4 .box2 .box2-box .box2-img .item-fade:nth-child(5) .text {
  font-size: clamp(14px, 0.3rem, 30px);
}
.technological .technological4 .box2 .box2-box .box2-img .item-fade:nth-child(1) {
  top: 29%;
  left: 4.5%;
}
.technological .technological4 .box2 .box2-box .box2-img .item-fade:nth-child(2) {
  bottom: 66%;
  left: 19%;
}
.technological .technological4 .box2 .box2-box .box2-img .item-fade:nth-child(3) {
  bottom: 1%;
  left: 12%;
}
.technological .technological4 .box2 .box2-box .box2-img .item-fade:nth-child(4) {
  bottom: 29%;
  left: 26%;
}
.technological .technological4 .box2 .box2-box .box2-img .item-fade:nth-child(5) {
  top: 17%;
  left: 40.5%;
}
.technological .technological4 .box2 .box2-box .box2-img .item-fade:nth-child(6) {
  bottom: 47%;
  right: 20%;
}
.technological .technological4 .box2 .box2-box .box2-img .item-fade:nth-child(7) {
  top: 0;
  right: 6%;
}
.technological .technological4 .box2 .box2-box .box2-img .item-fade:nth-child(8) {
  bottom: 8%;
  left: 62.7%;
}
.technological .technological4 .box2 .box2-box .box2-img .item-fade:nth-child(9) {
  bottom: 27%;
  right: 2%;
}
.technological .technological4 .box2 .box2-box .box2-img .item-fade .text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  font-size: clamp(14px, 0.2rem, 20px);
  color: #fff;
  text-align: center;
}
.technological .technological4 .box2 .box2-box .box2-img .item {
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  /* 提升性能 */
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.technological .technological4 .box2 .box2-box .box2-img .item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.technological .technological4 .box3 {
  gap: clamp(20px, 1rem, 100px);
}
@media screen and (max-width: 768px) {
  .technological .technological4 .box3 {
    flex-direction: column;
  }
}
.technological .technological4 .box3 .left {
  flex: 1;
  color: #b2b2b2;
  font-size: clamp(14px, 0.3rem, 30px);
}
.technological .technological4 .box3 .left span {
  color: var(--dominant-color);
}
@media screen and (max-width: 768px) {
  .technological .technological4 .box3 .left {
    width: 100%;
  }
}
.technological .technological4 .box3 .right {
  flex-basis: clamp(200px, 9.7rem, 970px);
}
.technological .technological5 {
  margin-top: clamp(20px, 0.4rem, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.technological .technological5 .item {
  background: #fff;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .technological .technological5 .item {
    flex-direction: column !important;
  }
}
.technological .technological5 .item .left {
  position: relative;
  width: clamp(300px, 10rem, 1000px);
}
@media screen and (max-width: 768px) {
  .technological .technological5 .item .left {
    width: 100%;
  }
}
.technological .technological5 .item .left .swiper .imgBox {
  padding-bottom: 75%;
}
.technological .technological5 .item .left .swiper .swiper-pagination {
  bottom: clamp(30px, 0.5rem, 50px);
}
.technological .technological5 .item .left .swiper .swiper-pagination .swiper-pagination-bullet {
  width: clamp(10px, 0.18rem, 18px);
  height: clamp(10px, 0.18rem, 18px);
}
.technological .technological5 .item .left .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--dominant-color);
}
.technological .technological5 .item .left .play {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
  z-index: 2;
  text-align: center;
}
.technological .technological5 .item .text {
  flex: 1;
  padding: clamp(20px, 0.9rem, 90px);
}
.technological .technological5 .item .text .title {
  color: var(--dominant-color);
  font-size: clamp(16px, 0.3rem, 30px);
}
.technological .technological5 .item .text .summary {
  font-size: clamp(14px, 0.2rem, 20px);
  margin-top: clamp(10px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.6);
}
.technological .technological5 .item:nth-child(even) {
  flex-direction: row-reverse;
}
.technological .technological6 {
  display: flex;
  margin-top: clamp(20px, 0.4rem, 40px);
  background: #fff;
}
@media screen and (max-width: 768px) {
  .technological .technological6 {
    flex-direction: column;
  }
}
.technological .technological6 .left {
  flex: 1;
  padding: clamp(20px, 0.7rem, 70px);
}
.technological .technological6 .left .item {
  cursor: pointer;
  margin-bottom: clamp(10px, 0.3rem, 30px);
  padding-bottom: 10px;
}
.technological .technological6 .left .item .title {
  position: relative;
  font-size: clamp(16px, 0.3rem, 30px);
  padding-bottom: 10px;
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.5s;
}
.technological .technological6 .left .item .title::before {
  content: '';
  background: #e5e5e5;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.technological .technological6 .left .item .title::after {
  content: '';
  background: var(--dominant-color);
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
}
.technological .technological6 .left .item .summary {
  display: none;
  font-size: clamp(14px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.6);
  margin-top: clamp(10px, 0.2rem, 20px);
}
.technological .technological6 .left .item.active .title,
.technological .technological6 .left .item:hover .title {
  color: var(--dominant-color);
}
.technological .technological6 .left .item.active .title::after,
.technological .technological6 .left .item:hover .title::after {
  width: 100%;
}
.technological .technological6 .right {
  width: clamp(500px, 10.2rem, 1020px);
  position: relative;
}
.technological .technological6 .right .item {
  opacity: 0;
  transition: all 0.5s;
}
.technological .technological6 .right .item .imgBox {
  padding-bottom: 73%;
}
.technological .technological6 .right .item:nth-child(n+2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.technological .technological6 .right .item.active {
  opacity: 1;
}
.technological-pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 20;
  display: none;
}
.technological-pop .mask {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.technological-pop .pop-box {
  position: absolute;
  height: 80vh;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .technological-pop .pop-box {
    overflow: auto;
    align-items: flex-start;
    padding: 30px 0;
  }
}
.technological-pop .pop-box .close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  font-size: clamp(16px, 0.3rem, 30px);
  opacity: 0.8;
  cursor: pointer;
}
.technological-pop .pop-box .box {
  display: flex;
}
@media screen and (max-width: 768px) {
  .technological-pop .pop-box .box {
    flex-direction: column;
  }
}
.technological-pop .pop-box .left {
  width: clamp(200px, 5rem, 500px);
}
@media screen and (max-width: 768px) {
  .technological-pop .pop-box .left {
    margin: auto;
  }
}
.technological-pop .pop-box .left .imgBox {
  padding-bottom: 122%;
}
.technological-pop .pop-box .right {
  flex: 1;
  padding-left: clamp(20px, 0.9rem, 90px);
  padding-right: clamp(20px, 0.6rem, 60px);
}
@media screen and (max-width: 768px) {
  .technological-pop .pop-box .right {
    margin-top: 10px;
  }
}
.technological-pop .pop-box .right .title {
  color: var(--dominant-color);
  font-size: clamp(16px, 0.3rem, 30px);
}
.technological-pop .pop-box .right .tip {
  color: var(--dominant-color);
  font-size: clamp(14px, 0.2rem, 20px);
  margin-top: 10px;
}
.technological-pop .pop-box .right .summary {
  line-height: 1.6;
  margin-top: 10px;
  font-size: clamp(14px, 0.2rem, 20px);
  color: rgba(0, 0, 0, 0.6);
  height: 44vh;
  padding-right: 20px;
  overflow: auto;
  white-space: pre-line;
}
@media screen and (max-width: 768px) {
  .technological-pop .pop-box .right .summary {
    overflow: hidden;
    height: 100%;
  }
}
/*搜索结果*/
.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;
}
.applications .page-title .title {
  font-size: clamp(18px, 0.28rem, 28px);
}
.applications .page-title .summary {
  font-size: clamp(12px, 0.14rem, 14px);
}
.applications .top {
  margin-top: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .applications .top {
    margin-top: 20px;
  }
}
.applications .top .swiper-slide {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.applications .top .swiper-slide .imgBox {
  padding-bottom: 71%;
}
.applications .top .swiper-slide .text {
  position: absolute;
  padding: 16px;
  left: 0;
  bottom: 0;
  font-size: clamp(12px, 0.16, 16px);
  color: #fff;
  z-index: 3;
}
.applications .top .swiper-slide::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}
.applications .top .swiper-button-prev,
.applications .top .swiper-button-next {
  width: 48px;
  height: 48px;
  border: none;
  background: #2559B5;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.applications .top .swiper-button-prev::after,
.applications .top .swiper-button-next::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .applications .top .swiper-button-prev,
  .applications .top .swiper-button-next {
    width: 36px;
    height: 36px;
  }
}
.applications .top .swiper-button-prev {
  left: -24px;
}
@media screen and (max-width: 768px) {
  .applications .top .swiper-button-prev {
    left: 10px;
  }
}
.applications .top .swiper-button-next {
  right: -24px;
}
@media screen and (max-width: 768px) {
  .applications .top .swiper-button-next {
    right: 10px;
  }
}
.applications .bottom {
  background: #F9FAFB;
}
.applications .bottom .b-box {
  display: none;
}
.applications .bottom .b-box.active {
  display: block;
}
.applications .bottom .b-title {
  gap: 50px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .applications .bottom .b-title {
    flex-direction: column;
    align-items: flex-start;
  }
}
.applications .bottom .b-title .left {
  flex-basis: 50%;
  color: #111827;
  font-size: clamp(16px, 0.26rem, 26px);
}
.applications .bottom .b-title .right {
  flex-basis: 50%;
  color: #111827;
  font-size: clamp(16px, 0.2rem, 26px);
}
@media screen and (max-width: 768px) {
  .applications .bottom .b-title .right {
    display: none;
  }
}
.applications .bottom .items {
  display: flex;
  gap: 30px;
  flex-direction: column;
}
.applications .bottom .items .item {
  gap: 50px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .applications .bottom .items .item {
    flex-direction: column;
    gap: 20px;
  }
}
.applications .bottom .items .item .left {
  border-radius: 8px;
  overflow: hidden;
  flex-basis: 50%;
}
.applications .bottom .items .item .left .title {
  border-radius: 10px 10px 0 0;
  background: #EEE;
  padding: 0 10px;
  font-size: clamp(14px, 0.24rem, 24px);
  height: 60px;
  line-height: 60px;
}
@media screen and (max-width: 768px) {
  .applications .bottom .items .item .left .title {
    height: 40px;
    line-height: 40px;
  }
}
.applications .bottom .items .item .left img {
  width: 100%;
}
.applications .bottom .items .item .right {
  flex-basis: 50%;
  border-radius: 8px;
  overflow: hidden;
  background: #F9FAFB;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .applications .bottom .items .item .right {
    width: 100%;
  }
}
.applications .bottom .items .item .right .title {
  background: #16A34A;
  color: #fff;
  padding: 0 10px;
  font-size: clamp(12px, 0.16rem, 16px);
  height: 60px;
  line-height: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .applications .bottom .items .item .right .title {
    height: 40px;
    line-height: 40px;
  }
}
.applications .bottom .items .item .right .r-box .r-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.applications .bottom .items .item .right .r-box .r-lists:first-child .r-list {
  background: rgba(187, 247, 208, 0.5);
  text-align: center;
}
.applications .bottom .items .item .right .r-box .r-lists:nth-child(2) .r-list {
  text-align: center;
  border-left: 2px solid #16A34A;
}
.applications .bottom .items .item .right .r-box .r-lists .r-list {
  color: #1F2937;
  padding: 12px 30px;
  font-size: clamp(12px, 0.12rem, 12px);
  border-left: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .applications .bottom .items .item .right .r-box .r-lists .r-list {
    padding: 12px;
  }
}
.applications .bottom .items .item .right .r-box .r-lists .r-list a {
  align-items: center;
  display: flex;
}
.applications .bottom .items .item .right .r-box .r-lists .r-list a:hover {
  color: var(--dominant-color);
}
.applications .bottom .items .item .right .r-box .r-lists .r-list img {
  width: 48px;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .applications .bottom .items .item .right .r-box .r-lists .r-list img {
    margin-left: 10px;
  }
}
.applications .bottom .items .item .right .r-box .r-lists .r-list:nth-child(2) {
  border-right: 1px solid #E5E7EB;
}
.design-tools .box1 .d-title {
  background: linear-gradient(92deg, #2559B5 0%, #4178D1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(16px, 0.4rem, 40px);
}
.design-tools .box1 .d-line {
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(93deg, #2559B5 0%, #4178D1 100%);
}
.design-tools .box2 {
  margin-top: 50px;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #2559B5;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  font-size: clamp(14px, 0.18rem, 18px);
}
@media screen and (max-width: 768px) {
  .design-tools .box2 {
    padding: 20px;
  }
}
.design-tools .box-top-line {
  height: 50px;
  top: 0;
  left: 0;
  right: 0;
  width: calc(100% - 40px);
  margin: auto;
  border-radius: 16px;
}
.design-tools .box3 {
  margin-top: 50px;
}
.design-tools .box3 .box-top-line {
  background: linear-gradient(90deg, #2559B5 0%, #4178D1 100%);
}
.design-tools .box3 .box3-box {
  margin-top: -46px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1), 0px 4px 10px 0px rgba(0, 0, 0, 0.05), 0px 1px 0px 1px rgba(255, 255, 255, 0.9) inset;
  backdrop-filter: blur(10px);
  padding: 36px;
}
@media screen and (max-width: 768px) {
  .design-tools .box3 .box3-box {
    padding: 20px;
  }
}
.design-tools .box3 .box3-box .box3-title {
  font-size: clamp(14px, 0.24rem, 24px);
  background: linear-gradient(92deg, #2559B5 0%, #4178D1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 2px solid #F3F4F6;
  padding-bottom: 20px;
  width: fit-content;
}
.design-tools .box3 .box3-box .box3-line {
  background: linear-gradient(92deg, #2559B5 0%, #4178D1 100%);
  width: 60px;
  height: 2px;
  margin-top: -2px;
}
.design-tools .box3 .box3-box .box3-1 {
  margin-top: 25px;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(37, 89, 181, 0.1);
  background: linear-gradient(95deg, rgba(37, 89, 181, 0.05) 0%, rgba(52, 198, 205, 0.05) 100%);
}
@media screen and (max-width: 768px) {
  .design-tools .box3 .box3-box .box3-1 {
    padding: 20px;
  }
}
.design-tools .box3 .box3-box .box3-1 .m-title {
  font-size: clamp(14px, 0.16rem, 16px);
}
.design-tools .box3 .box3-box .box3-1 .m-title span {
  color: red;
}
.design-tools .box3 .box3-box .box3-1 .select-box {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .design-tools .box3 .box3-box .box3-1 .select-box {
    gap: 10px;
  }
}
.design-tools .box3 .box3-box .box3-1 .select-box label {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  padding: 14px 22px;
  font-size: clamp(14px, 0.16rem, 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1F2937;
  gap: 8px;
  /* 选中状态样式 */
  /* 添加中心点指示选中状态 */
}
@media screen and (max-width: 768px) {
  .design-tools .box3 .box3-box .box3-1 .select-box label {
    padding: 10px 14px;
  }
}
.design-tools .box3 .box3-box .box3-1 .select-box label input {
  width: 18px;
  height: 18px;
  -webkit-appearance: none;
  border-radius: 50%;
  border: 2px solid #9CA3AF;
  position: relative;
}
.design-tools .box3 .box3-box .box3-1 .select-box label input[type="radio"]:checked {
  border-color: var(--dominant-color);
  background-color: var(--dominant-color);
  /* 自定义背景色 */
}
.design-tools .box3 .box3-box .box3-1 .select-box label input[type="radio"]:checked::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.design-tools .box3 .box3-box .box3-2 {
  margin-top: 30px;
}
.design-tools .box3 .box3-box .box3-2 .form span {
  font-size: clamp(14px, 0.16rem, 16px);
}
.design-tools .box3 .box3-box .box3-2 .form-box {
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  background: linear-gradient(96deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.8) 100%);
}
@media screen and (max-width: 768px) {
  .design-tools .box3 .box3-box .box3-2 .form-box {
    padding: 20px;
    margin-top: 10px;
  }
}
.design-tools .box3 .box3-box .box3-2 .form-box .form-box-span {
  font-size: clamp(14px, 0.14rem, 14px);
}
.design-tools .box3 .box3-box .box3-2 .form-box .form-box-list {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #6B7280;
}
@media screen and (max-width: 768px) {
  .design-tools .box3 .box3-box .box3-2 .form-box .form-box-list {
    flex-direction: column;
    width: 100%;
  }
}
.design-tools .box3 .box3-box .box3-2 .form-box .form-box-list label {
  width: 100%;
}
.design-tools .box3 .box3-box .box3-2 .form-box .form-box-list .unit {
  position: absolute;
  right: 20px;
  bottom: 16px;
  margin: auto;
  font-size: clamp(14px, 0.14rem, 14px);
  color: var(--dominant-color);
}
.design-tools .box3 .box3-box .box3-2 button {
  width: 180px;
  border-radius: 12px;
  background: linear-gradient(106deg, #2559B5 0%, #4178D1 100%);
  box-shadow: 0px 4px 15px 0px rgba(37, 89, 181, 0.3);
}
.design-tools .box3 .box3-box .box3-2 button img {
  filter: contrast(0) brightness(100);
}
.design-tools .box4 {
  margin-top: 50px;
}
.design-tools .box4 .box-top-line {
  background: linear-gradient(90deg, #34C6CD 0%, #2559B5 100%);
}
.design-tools .box4 .box3-box {
  margin-top: -46px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1), 0px 4px 10px 0px rgba(0, 0, 0, 0.05), 0px 1px 0px 1px rgba(255, 255, 255, 0.9) inset;
  backdrop-filter: blur(10px);
  padding: 36px;
}
.design-tools .box4 .box3-box .box3-title {
  font-size: clamp(14px, 0.24rem, 24px);
  background: linear-gradient(92deg, #34C6CD 0%, #2559B5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 2px solid #F3F4F6;
  padding-bottom: 20px;
  width: fit-content;
}
.design-tools .box4 .box3-box .box3-line {
  background: linear-gradient(92deg, #34C6CD 0%, #2559B5 100%);
  width: 60px;
  height: 2px;
  margin-top: -2px;
}
.design-tools .box4 .box3-box .box3-1 {
  margin-top: 25px;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(37, 89, 181, 0.1);
  background: linear-gradient(95deg, rgba(37, 89, 181, 0.05) 0%, rgba(52, 198, 205, 0.05) 100%);
}
.design-tools .box4 .box3-box .box3-1 .m-title {
  font-size: clamp(14px, 0.16rem, 16px);
}
.design-tools .box4 .box3-box .box3-1 .m-title span {
  color: red;
}
.design-tools .box4 .box3-box .box3-1 .select-box {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}
.design-tools .box4 .box3-box .box3-1 .select-box label {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  padding: 14px 22px;
  font-size: clamp(14px, 0.16rem, 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1F2937;
  gap: 8px;
  /* 选中状态样式 */
  /* 添加中心点指示选中状态 */
}
.design-tools .box4 .box3-box .box3-1 .select-box label input {
  width: 18px;
  height: 18px;
  -webkit-appearance: none;
  border-radius: 50%;
  border: 2px solid #9CA3AF;
  position: relative;
}
.design-tools .box4 .box3-box .box3-1 .select-box label input[type="radio"]:checked {
  border-color: var(--dominant-color);
  background-color: var(--dominant-color);
  /* 自定义背景色 */
}
.design-tools .box4 .box3-box .box3-1 .select-box label input[type="radio"]:checked::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.design-tools .box4 .box3-box .box3-2 {
  margin-top: 30px;
}
.design-tools .box4 .box3-box .box3-2 .form span {
  font-size: clamp(14px, 0.16rem, 16px);
}
.design-tools .box4 .box3-box .box3-2 .form-box {
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  background: linear-gradient(96deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.8) 100%);
}
.design-tools .box4 .box3-box .box3-2 .form-box .form-box-span {
  font-size: clamp(14px, 0.14rem, 14px);
}
.design-tools .box4 .box3-box .box3-2 .form-box .form-box-list {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #6B7280;
}
.design-tools .box4 .box3-box .box3-2 .form-box .form-box-list .unit {
  position: absolute;
  right: 20px;
  bottom: 16px;
  margin: auto;
  font-size: clamp(14px, 0.14rem, 14px);
  color: var(--dominant-color);
}
.design-tools .box4 .box3-box .box3-2 button {
  width: 180px;
  border-radius: 12px;
  background: linear-gradient(106deg, #2559B5 0%, #4178D1 100%);
  box-shadow: 0px 4px 15px 0px rgba(37, 89, 181, 0.3);
}
.design-tools .box4 .box3-box .box3-2 button img {
  filter: contrast(0) brightness(100);
}
.design-tools .box4 .box4-table {
  overflow: auto;
}
.design-tools .box4 table {
  width: 100%;
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
}
.design-tools .box4 table tr {
  border-bottom: 1px solid #F3F4F6;
  border-left: 1px solid #F3F4F6;
  border-right: 1px solid #F3F4F6;
  transition: all 0.5s;
  cursor: pointer;
}
.design-tools .box4 table tr th {
  min-width: 75px;
  color: #fff;
  height: 60px;
  background: linear-gradient(136deg, #2559B5 0%, #4178D1 100%);
  font-size: clamp(12px, 0.12rem, 12px);
}
.design-tools .box4 table tr th span {
  display: block;
  font-size: clamp(10px, 0.1rem, 10px);
  opacity: 0.9;
}
.design-tools .box4 table tr th i {
  display: block;
  font-size: clamp(12px, 0.12rem, 12px);
  opacity: 0.7;
  margin-top: 4px;
}
.design-tools .box4 table tr th:first-child {
  width: 60px;
  min-width: 60px;
}
.design-tools .box4 table tr th:last-child {
  width: 40px;
  min-width: 40px;
}
.design-tools .box4 table tr td {
  text-align: center;
  height: 50px;
  min-width: 75px;
  font-size: clamp(12px, 0.12rem, 12px);
}
.design-tools .box4 table tr td:first-child {
  width: 60px;
  min-width: 60px;
}
.design-tools .box4 table tr td:first-child img {
  width: 30px;
}
.design-tools .box4 table tr td:last-child {
  width: 40px;
  min-width: 40px;
}
.design-tools .box4 table tr td span {
  border-radius: 4px;
  background: #2E7D32;
  color: #fff;
  padding: 5px 10px;
}
.design-tools .box4 table tr td p {
  color: #9ca3af;
}
.design-tools .box4 table tr:hover {
  border-bottom: 1px solid rgba(37, 89, 181, 0.2);
  background: linear-gradient(92deg, rgba(37, 89, 181, 0.1) 0%, rgba(52, 198, 205, 0.1) 100%);
  box-shadow: 0px 4px 12px 0px rgba(37, 89, 181, 0.2);
}
.joins .items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.joins .items .item {
  box-shadow: 0px 1px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  cursor: pointer;
}
.joins .items .item .top {
  padding: 24px;
}
.joins .items .item .top .title {
  font-size: clamp(16px, 0.2rem, 20px);
}
.joins .items .item .top .tip {
  margin-top: 10px;
  font-size: clamp(12px, 0.16rem, 16px);
  gap: 10px;
}
.joins .items .item .top .tip .t-item {
  gap: 6px;
}
.joins .items .item .top i {
  transition: all 0.5s;
  color: var(--dominant-color);
}
.joins .items .item .top.active i {
  transform: rotate(180deg);
}
.joins .items .item .bottom {
  padding: 0 24px 24px;
  display: none;
}
.joins .items .item .bottom .bottom-box {
  padding-top: 24px;
  border-top: 1px solid #E5E7EB;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .joins .items .item .bottom .bottom-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
.joins .items .item .bottom .bottom-box .b-title {
  font-size: clamp(14px, 0.18rem, 18px);
  margin-bottom: 10px;
}
.joins .items .item .bottom .bottom-box ul li {
  line-height: 1.8;
  list-style: disc;
  color: #4B5563;
}
.joins .items .item .bottom .apply {
  border-radius: 6px;
  background: #2559B5;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  width: 217.73px;
  height: 50px;
  padding: 15px 24.67px 15px 25px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #fff;
  margin: 40px auto 0;
  transition: all 0.5s;
  border: 1px solid var(--dominant-color);
}
.joins .items .item .bottom .apply:hover {
  background: #fff;
  color: var(--dominant-color);
}
@keyframes ripple {
  0% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  70% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(2);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3);
  }
}
.center-circle {
  position: absolute;
  width: 4.4rem;
  height: 4.4rem;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  z-index: 1999;
}
.fp-watermark {
  display: none !important;
}
/* w11 */
.w11 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.w11-b2 {
  margin-top: clamp(20px, 0.9rem, 90px);
}
.w11-b1 {
  font-size: 2.08vw;
  color: #004A8A;
  padding-bottom: 5.21vw;
  text-align: left;
}
.w11-b4 {
  overflow: hidden;
  width: 17.92vw;
  height: 11.82vw;
  margin-right: 2.97vw;
}
.w11-b4 .img {
  width: 100%;
  height: 100%;
  display: none;
}
.w11-b4 .img.active {
  display: block;
}
.w11-b4 img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  display: block;
}
.w11-b3 {
  display: flex;
  align-items: flex-start;
}
.w11-b5 {
  width: 22.92vw;
}
.w11-b6 {
  font-size: clamp(16px, 0.2rem, 20px);
  color: var(--dominant-color);
  display: flex;
  align-items: center;
  line-height: 1;
  padding-bottom: 0.89vw;
  margin-bottom: 2.08vw;
  border-bottom: 1px solid rgba(0, 66, 139, 0.1);
}
.w11-b6 span {
  font-size: clamp(14px, 0.3rem, 30px);
  margin-right: 0.63vw;
}
.w11-b8 .swiper-container {
  height: 6.46vw;
}
.w11-b8 .swiper-wrapper {
  flex-direction: column;
}
.w11-b12 {
  cursor: pointer;
  font-size: 1.04vw;
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s;
}
.w11-b8 .swiper-slide-active .w11-b12 {
  color: #000000;
  transition: all 0.3s;
}
.w11-b8 .swiper-pagination-progressbar {
  width: 1px;
  position: absolute;
  top: 1.56vw;
  bottom: 0;
  right: 0;
  height: 100%;
  background: rgba(0, 74, 138, 0.2);
}
.w11-b8 .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #00428B;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  transform-origin: right top;
}
.w11-b8 {
  width: clamp(70px, 0.7rem, 70px);
  margin-right: clamp(30px, 0.3rem, 30px);
  position: relative;
}
.w11-b8::after {
  content: '';
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgba(7, 55, 129, 0.4);
  position: absolute;
}
.w11-b12 {
  font-size: clamp(14px, 0.2rem, 20px);
  position: relative;
}
.w11-b12.active {
  color: var(--dominant-color);
}
.w11-b12.active::after {
  top: 0;
  content: '';
  right: 0;
  width: 1px;
  height: 100%;
  background: #073781;
  position: absolute;
}
.w11-b7 {
  display: flex;
}
.w11-b9 {
  color: rgba(0, 0, 0, 0.6);
  flex: 1;
  font-size: clamp(14px, 0.2rem, 20px);
}
.w11-b10 li {
  padding-bottom: 1.3vw;
}
.w11-b10 li:last-child {
  padding-bottom: 0;
}
.w11-b10 {
  display: none;
}
.w11-b10.active {
  display: block;
}
.w11-b11 {
  display: none;
}
.w11-b11.active {
  display: block;
}
.w11-b13 {
  position: relative;
  margin-left: 8.33vw;
  overflow: hidden;
}
.w11-bjj {
  position: absolute;
  left: 1.3vw;
  right: 0;
  top: 50%;
  top: 63%;
  transform: translateY(-50%);
}
.w11-bjj img {
  width: 100%;
  max-width: 100%;
  display: block;
}
.w11-b15 {
  font-size: 1.25vw;
  color: rgba(0, 0, 0, 0.6);
}
.w11-b16 {
  width: 1.04vw;
  height: 1.04vw;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.w11-b17 {
  width: 0.42vw;
  height: 0.42vw;
  background: #AFAFAF;
  border-radius: 50%;
}
.w11-b14 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 3.13vw;
  height: 100%;
  justify-content: flex-end;
  transition: all 0.2s;
  cursor: pointer;
}
.w11-lunbotwo {
  height: 13.02vw;
  width: 11.35vw;
  margin: 0 auto 0 0 !important;
  margin: auto !important;
  overflow: initial !important;
}
.w11-lunbotwo .swiper-slide-active .w11-b15 {
  color: #00428B;
  transition: all 0.5s;
}
.w11-lunbotwo .swiper-slide-active .w11-b16 {
  width: 1.56vw;
  height: 1.56vw;
  border-color: #00428B;
  transition: all 0.5s;
}
.w11-lunbotwo .swiper-slide-active .w11-b17 {
  background: #00428B;
  transition: all 0.5s;
}
.w11-lunbotwo .swiper-slide-active .w11-b14 {
  transform: translateY(-1.82vw);
  transform: translateY(-2.7vw);
}
.w11-lunbotwo .on1 .w11-b14 {
  transform: translateY(-2.08vw);
  transform: translateY(-1.08vw);
}
.w11-lunbotwo .on2 .w11-b14 {
  transform: translateY(-1.46vw);
  transform: translateY(-6.06vw);
}
.w11-lunbotwo .on3 .w11-b14 {
  transform: translateY(-1.93vw);
  transform: translateY(-8.23vw);
}
.w11-lunbotwo .on4 .w11-b14 {
  transform: translateY(-3.49vw);
  transform: translateY(-8.79vw);
}
.w11-lunbotwo .on5 .w11-b14 {
  transform: translateY(-6.2vw);
  transform: translateY(-8.1vw);
}
.w11-lunbotwo .on6 .w11-b14 {
  transform: translateY(-8.96vw);
}
.w11-lunbotwo .on7 .w11-b14 {
  transform: translateY(-10.26vw);
}
.w11-lunbotwo .on8 .w11-b14 {
  transform: translateY(-10.16vw);
}
.w11-lunbotwo .on9 .w11-b14 {
  transform: translateY(-8.96vw);
}
@media screen and (max-width: 768px) {
  .w11-lunbotwo .w11-b14 {
    transform: translateY(0) !important;
  }
  .w11-b1 {
    font-size: 24px;
  }
  .w11-box {
    padding: 50px 0;
  }
  .w11-b4 {
    width: 100%;
    height: auto;
    height: 300px;
  }
  .w11-b3 {
    flex-direction: column;
    gap: 30px;
  }
  .w11-b5 {
    width: 100%;
  }
  .w11-b6 {
    font-size: 13px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    line-height: 1.3;
    align-items: flex-end;
  }
  .w11-b6 span {
    font-size: 20px;
    line-height: 1;
  }
  .w11-b8 .swiper-container {
    height: 100px;
  }
  .w11-b8 {
    width: 40px;
  }
  .w11-b12 {
    font-size: 13px;
  }
  .w11-b9 {
    padding-left: 15px;
  }
  .w11-b10 {
    font-size: 12px;
  }
  .w11-b10 li {
    padding-bottom: 10px;
  }
  .w11-b13 {
    padding-left: 10%;
  }
  .w11-lunbotwo {
    width: 60px;
  }
  .w11-b13 {
    margin-left: 7%;
    padding-left: 30px;
    margin-top: 30px;
  }
  .w11-box {
    position: relative;
  }
  .w11-box::after {
    content: '';
    position: absolute;
    bottom: 97px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
  }
  .w11-bjj {
    display: none;
  }
  .w11-b15 {
    font-size: 13px;
  }
  .w11-b16 {
    width: 10px !important;
    height: 10px !important;
  }
  .w11-b17 {
    width: 4px;
    height: 4px;
  }
}
/*网格布局*/
.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 */