/**
 * @Description: 网站页面主要样式
 * @Author: MaXueWei
 * @Date: 2023-06-21 11:05:57
 * @LastEditors: MaXueWei
 * @LastEditTime: 2023-11-21 15:22:26
 */
@font-face {
  font-family: "Outfit-Black";
  src: url('font/Outfit-Black.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit-Bold";
  src: url('font/Outfit-Bold.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit-ExtraBold";
  src: url('font/Outfit-ExtraBold.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit-ExtraLight";
  src: url('font/Outfit-ExtraLight.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit-Light";
  src: url('font/Outfit-Light.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit-Medium";
  src: url('font/Outfit-Medium.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit-Regular";
  src: url('font/Outfit-Regular.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit-SemiBold";
  src: url('font/Outfit-SemiBold.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit-Thin";
  src: url('font/Outfit-Thin.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit-VariableFont_wght";
  src: url('font/Outfit-VariableFont_wght.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OPPOSans-R";
  src: url('font/OPPOSans-R.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* ==================== 重置样式 Start ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  outline: none;
}
html {
  font-size: 60px;
}
body::-webkit-scrollbar {
  width: 4px;
  background: #ececec;
}
body::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #b35942;
  cursor: pointer;
}
img {
  vertical-align: middle;
  max-width: 100%;
}
ul,
li {
  list-style: none;
}
input,
button {
  outline: 0 none;
  border: none;
  background-color: transparent;
}
button {
  cursor: pointer;
}
/* 图片统一动画 */
.mxw-image {
  overflow: hidden;
}
.mxw-image img {
  transition: transform 0.8s;
  width: 100%;
}
.mxw-image:hover img {
  transform: scale(1.1);
}
main,
header,
footer,
.mxw-box,
section {
  font-size: 16px;
}
main {
  position: relative;
  z-index: 10;
  background-color: #000;
}
section {
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 1800px) {
  html {
    font-size: 53px;
  }
}
@media screen and (max-width: 1680px) {
  html {
    font-size: 45px;
  }
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 44px;
  }
}
@media screen and (max-width: 1400px) {
  html {
    font-size: 43px;
  }
}
@media screen and (max-width: 1366px) {
  html {
    font-size: 42px;
  }
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 39px;
  }
}
@media screen and (max-width: 1152px) {
  html {
    font-size: 35px;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 60px;
  }
  body {
    margin-top: 50px;
  }
}
/* ==================== 重置样式 End ==================== */
/* ==================== 通用容器大小 Start ==================== */
.mxw-box {
  width: 100%;
  max-width: 79.7vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1100px) {
  .mxw-box {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* ==================== 通用容器大小 End ==================== */
/* ==================== 通用断点隐藏 Start ==================== */
@media screen and (max-width: 1100px) {
  .m-hide {
    display: none!important;
  }
}
@media screen and (min-width: 1100px) {
  .pc-hide {
    display: none!important;
  }
}
/* ==================== 通用断点隐藏 End ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 1100px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 > .u-col {
    width: 48%;
  }
  .u-row-2 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-2 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
  .u-row-3 > .u-col {
    width: 32%;
  }
  .u-row-3 > .u-col:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .u-row-3 > .u-col:nth-child(3) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-4 > .u-col {
    width: 23.5%;
    margin-right: 2%;
  }
  .u-row-4 > .u-col:nth-child(4n) {
    margin-right: 0%;
  }
  .u-row-4 > .u-col:nth-child(4) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-5 > .u-col {
    width: 18%;
    margin-right: 2%;
  }
  .u-row-5 > .u-col:nth-child(5n) {
    margin-right: 0%;
  }
  .u-row-5 > .u-col:nth-child(5) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-6 > .u-col {
    width: 15%;
    margin-right: 2%;
  }
  .u-row-6 > .u-col:nth-child(6n) {
    margin-right: 0%;
  }
  .u-row-6 > .u-col:nth-child(6) ~ .u-col {
    margin-top: 2%;
  }
}
@media screen and (max-width: 1100px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 .u-col {
    width: 100%;
  }
  .u-row-2 .u-col:nth-child(1) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-3 > .u-col,
  .u-row-4 > .u-col,
  .u-row-5 > .u-col,
  .u-row-6 > .u-col {
    width: 48%;
  }
  .u-row-3 > .u-col:nth-child(2n),
  .u-row-4 > .u-col:nth-child(2n),
  .u-row-5 > .u-col:nth-child(2n),
  .u-row-6 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-3 > .u-col:nth-child(2) ~ .u-col,
  .u-row-4 > .u-col:nth-child(2) ~ .u-col,
  .u-row-5 > .u-col:nth-child(2) ~ .u-col,
  .u-row-6 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 通用文本行数限制 start ==================== */
.u-line-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.u-line-2 {
  -webkit-line-clamp: 2;
}
.u-line-3 {
  -webkit-line-clamp: 3;
}
.u-line-4 {
  -webkit-line-clamp: 4;
}
.u-line-5 {
  -webkit-line-clamp: 5;
}
.u-line-6 {
  -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
/* ==================== 通用文本行数限制 end ==================== */
/* ==================== 图片放大插件 Start ==================== */
.viewer-list > li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.viewer-list > li img {
  width: 100%!important;
  height: auto!important;
  transform: translate(0, 0) !important;
}
/* ==================== 图片放大插件 End ==================== */
.iconfont {
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.iconfont:before {
  content: "";
  display: inline-block;
  font-size: inherit;
  font-family: initial;
  width: 1em;
  height: 1em;
  background-size: 100%!important;
  background-position: center!important;
  background-repeat: no-repeat !important;
}
.icon-download-1-copy:before {
  background-image: url("../images/icon/icon-download-1-copy.png");
}
.icon-in:before {
  background-image: url("../images/icon/icon-in.png");
}
.icon-skype-fill:before {
  background-image: url("../images/icon/icon-skype-fill.png");
}
.icon-facebook-fill:before {
  background-image: url("../images/icon/icon-facebook-fill.png");
}
.icon-instagram-fill:before {
  background-image: url("../images/icon/icon-instagram-fill.png");
}
.icon-liulanliang:before {
  background-image: url("../images/icon/icon-liulanliang.png");
}
.icon-shalou3:before {
  background-image: url("../images/icon/icon-shalou3.png");
}
.icon-youxiang:before {
  background-image: url("../images/icon/icon-youxiang.png");
}
.icon-zuoji:before {
  background-image: url("../images/icon/icon-zuoji.png");
}
.icon-tuite:before {
  background-image: url("../images/icon/icon-tuite.png");
}
.icon-sousuo:before {
  background-image: url("../images/icon/icon-sousuo.png");
}
.icon-dingwei:before {
  background-image: url("../images/icon/icon-dingwei.png");
}
.icon-yuyan:before {
  background-image: url("../images/icon/icon-yuyan.png");
}
.icon-youtube:before {
  background-image: url("../images/icon/icon-youtube.png");
}
.icon-shejiaotubiao-14:before {
  background-image: url("../images/icon/icon-shejiaotubiao-14.png");
}
.icon-jiantou:before {
  background-image: url("../images/icon/icon-jiantou.png");
}
.icon-facebook:before {
  background-image: url("../images/icon/icon-facebook.png");
}
/* ==================== 头部导航样式 Start ==================== */
header {
  width: 100%;
  z-index: 50;
  position: fixed;
  top: 0;
  left: 0;
}
header .pc-nav {
  position: relative;
  background-color: #fff;
  transition: transform 0.4s, background-color 0.4s;
}
header .pc-nav > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .pc-nav .left {
  display: flex;
  align-items: center;
}
header .pc-nav .logo {
  display: block;
  width: 9.11vw;
  height: 2.03vw;
  overflow: hidden;
  flex-shrink: 0;
}
header .pc-nav .logo img {
  width: 100%;
  transform: translateY(0);
}
header .pc-nav .navbar {
  display: flex;
  align-items: center;
  margin-right: 2.08vw;
}
header .pc-nav .navbar > li {
  margin-right: 1.56vw;
}
header .pc-nav .navbar > li.active > a,
header .pc-nav .navbar > li:hover > a {
  color: #b35942;
}
header .pc-nav .navbar > li:last-child {
  margin-right: 0;
}
header .pc-nav .navbar > li > a {
  display: block;
  position: relative;
}
header .pc-nav .navbar > li .head {
  font-size: 0.83vw;
  padding: 1.82vw 0.8vw;
  display: block;
  color: #54565b;
  text-decoration: none;
  transition: background-color 0.4s, color 0.4s;
  position: relative;
  font-family: "OPPOSans-R";
  letter-spacing: 0.1vw;
}
header .pc-nav .sub-navbar3 {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: 0.05vw solid #eee;
  padding: 2vw 0;
  display: none;
}
header .pc-nav .sub-navbar3 > .mxw-box {
  display: flex;
  align-items: stretch;
  position: relative;
}
header .pc-nav .sub-navbar3 .nav-item3 {
  display: block;
  text-align: center;
  position: relative;
}
header .pc-nav .sub-navbar3 .nav-item3:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  border-right: 1px dashed #ccc;
  position: absolute;
  top: 0;
  right: -3%;
}
header .pc-nav .sub-navbar3 .nav-item3:hover .title {
  color: #b35942;
}
header .pc-nav .sub-navbar3 .nav-item3 .image {
  width: 14vw;
  height: 8vw;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
header .pc-nav .sub-navbar3 .nav-item3 .title {
  font-size: 1.15vw;
  color: #54565b;
  font-family: "Outfit-Bold";
  margin-top: 2.04vw;
  transition: all 0.4s;
}
header .pc-nav .sub-navbar3 .swiper-button-prev.swiper-button-disabled,
header .pc-nav .sub-navbar3 .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
header .pc-nav .sub-navbar3 .swiper-button-prev:after,
header .pc-nav .sub-navbar3 .swiper-button-next:after {
  font-size: 1.56vw;
  color: #b35942;
}
header .pc-nav .sub-navbar3 .swiper-button-prev {
  left: -1.56vw;
}
header .pc-nav .sub-navbar3 .swiper-button-next {
  right: -1.56vw;
}
header .pc-nav .tool {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header .pc-nav .search {
  margin-right: 1.35vw;
}
header .pc-nav .search .search-form.active {
  opacity: 1;
  visibility: visible;
}
header .pc-nav .search > .icon {
  font-size: 1.04vw;
  color: #676767;
  cursor: pointer;
}
header .pc-nav .search .search-form {
  width: 100%;
  position: absolute;
  top: 100%;
  background-color: #fff;
  left: 0;
  padding: 1.04vw;
  border-bottom: 0.05vw solid #eee;
  border-top: 0.05vw solid #eee;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
header .pc-nav .search form {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
header .pc-nav .search input {
  border: 0.05vw solid #eee;
  border-radius: 0.31vw 0 0 0.31vw;
  min-width: 0;
  flex-grow: 1;
  padding: 0 0.78vw;
  height: 2.08vw;
  line-height: 2.08vw;
  font-family: "OPPOSans-R";
  font-size: 0.83vw;
  border-right: 0;
}
header .pc-nav .search button {
  width: 2.08vw;
  height: 2.08vw;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b35942;
  border-radius: 0 0.31vw 0.31vw 0;
}
header .pc-nav .search button .icon {
  font-size: 1.04vw;
  color: #fff;
}
header .pc-nav .language {
  position: relative;
  cursor: pointer;
}
header .pc-nav .language .tool {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #999999;
  font-size: 0.83vw;
}
header .pc-nav .language .icon1 {
  display: block;
  font-size: inherit;
}
header .pc-nav .language .icon2 {
  display: block;
  transform: rotate(90deg);
  margin-left: 0.52vw;
  font-size: 0.63vw;
  margin-bottom: 0.21vw;
}
header .pc-nav .language .text {
  margin-left: 0.31vw;
}
header .pc-nav .language:hover ul {
  visibility: visible;
  opacity: 1;
}
header .pc-nav .language:hover ul:hover {
  visibility: visible;
  opacity: 1;
}
header .pc-nav .language ul {
  position: absolute;
  top: 100%;
  right: 50%;
  z-index: 99;
  background-color: #fff;
  border: 1px solid #ebebeb;
  transform: translate(50%, 0.78vw);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  border-radius: 0.31vw;
  overflow: hidden;
}
header .pc-nav .language li {
  color: #cdcccc;
}
header .pc-nav .language li:hover a,
header .pc-nav .language li.active a {
  color: #000;
}
header .pc-nav .language li:hover {
  background-color: #f7f7f7;
}
header .pc-nav .language li:last-child {
  margin-bottom: 0;
}
header .pc-nav .language li a {
  min-width: 4.17vw;
  display: block;
  line-height: 1;
  white-space: nowrap;
  padding: 0.63vw 0.52vw;
  text-decoration: none;
  font-size: 0.63vw;
  color: #666;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  header {
    position: relative;
    z-index: 1111;
  }
  header .head {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 13.33vw;
    background-color: #fff;
    transition: background-color 0.4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4.27vw;
    box-shadow: 0 1.6vw 4.27vw 0 rgba(25, 25, 25, 0.06);
  }
  header .search {
    margin-right: 4vw;
  }
  header .search .iconfont {
    font-size: 5.33vw;
  }
  header .search-form {
    position: fixed;
    top: -4px;
    left: 0;
    background: #fff;
    width: 100%;
    padding: 2.67vw 5.33vw;
    box-shadow: 0 1.33vw 2.67vw -1.33vw rgba(0, 0, 0, 0.1);
    border-top: 0.27vw solid #eee;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
  }
  header .search-form.active {
    opacity: 1;
    visibility: visible;
  }
  header .search-form form {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
  }
  header .search-form form input {
    min-width: 0;
    flex-grow: 1;
    border: 0.27vw solid #eee;
    padding: 2.13vw 2.67vw;
    font-size: 3.2vw;
  }
  header .search-form form button {
    flex-shrink: 0;
    width: 8vw;
    background: #b35942;
    padding: 0.53vw;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .search-form form button i {
    filter: brightness(0) invert(1);
  }
  header .logo {
    display: block;
    width: 32vw;
    height: 7.2vw;
    overflow: hidden;
    flex-shrink: 0;
  }
  header .logo img {
    width: 100%;
  }
  header .tool {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  header .tool .menu-btn {
    cursor: pointer;
  }
  header .tool .menu-btn > i {
    width: 5.33vw;
    height: 0.27vw;
    background-color: #333;
    display: block;
    margin-bottom: 1.6vw;
  }
  header .tool .menu-btn > i:last-child {
    margin-bottom: 0;
  }
  header .popup-nav {
    position: fixed;
    background-color: rgba(25, 25, 25, 0);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 101;
    transition: background-color 0.4s, opacity 0.4s, visibility 0.4s;
    visibility: hidden;
    pointer-events: none;
  }
  header .popup-nav.active {
    background-color: #191919;
    visibility: visible;
    pointer-events: inherit;
  }
  header .popup-nav.active .popup-box {
    transform: translateX(0);
  }
  header .popup-nav .popup-box {
    background-color: #fff;
    padding: 3.73vw 5.33vw;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: stretch;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.4s;
  }
  header .popup-nav .close {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 4vw;
  }
  header .popup-nav .close .icon {
    width: 5.33vw;
    height: 5.33vw;
    position: relative;
    transform: rotate(45deg);
  }
  header .popup-nav .close .icon:before,
  header .popup-nav .close .icon:after {
    content: "";
    display: block;
    background-color: #333;
    position: absolute;
  }
  header .popup-nav .close .icon:before {
    width: 100%;
    height: 0.27vw;
    top: 50%;
    left: 0;
  }
  header .popup-nav .close .icon:after {
    width: 0.27vw;
    height: 100%;
    left: 50%;
    top: 0;
  }
  header .popup-nav .login {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 9.6vw;
    padding-right: 5.33vw;
    position: relative;
    cursor: pointer;
  }
  header .popup-nav .login:before {
    content: "";
    display: block;
    width: 100%;
    height: 0.27vw;
    background-color: #eee;
    position: absolute;
    bottom: -5.33vw;
    left: 0;
  }
  header .popup-nav .login:after {
    content: "";
    display: block;
    width: 1.6vw;
    height: 1.6vw;
    border-top: 0.27vw solid;
    border-right: 0.27vw solid;
    position: absolute;
    top: 4.27vw;
    transform: translateY(-50%) rotate(45deg);
    right: 1.07vw;
    border-color: rgba(25, 25, 25, 0.6);
  }
  header .popup-nav .login .avatar {
    background-color: #d1d1d1;
    width: 8.53vw;
    height: 8.53vw;
    border-radius: 2.67vw;
    overflow: hidden;
  }
  header .popup-nav .login .name {
    font-size: 3.2vw;
    color: #333;
    line-height: 1.2;
    margin-left: 2.67vw;
  }
  header .popup-nav .nav-box {
    flex-grow: 1;
    overflow: auto;
    padding-right: 2.67vw;
  }
  header .popup-nav .nav-list.other-list {
    padding-top: 4vw;
    margin-top: 4vw;
    border-top: 0.27vw solid #eee;
  }
  header .popup-nav .nav-list.other-list .nav-item > .title {
    opacity: 0.8;
    font-size: 3.73vw;
  }
  header .popup-nav .nav-list.other-list .subnav-list > li > .title {
    font-size: 3.2vw;
  }
  header .popup-nav .nav-list .nav-item > .title {
    position: relative;
    display: block;
    padding: 2.67vw 0;
    padding-right: 4vw;
    font-size: 4vw;
    color: #191919;
    line-height: 1.2;
  }
  header .popup-nav .nav-list .nav-item > .title .icon {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    opacity: 0.8;
    width: 2.13vw;
    height: 2.13vw;
    border-top: 0.27vw solid;
    border-right: 0.27vw solid;
    border-color: #191919;
    transform: rotate(45deg);
    margin-top: -1.07vw;
    margin-right: 1.07vw;
  }
  header .popup-nav .nav-list .nav-item > .title .icon.more-icon {
    width: 3.2vw;
    height: 3.2vw;
    transform: translateY(-50%);
    border: 0;
    margin-top: 0;
    margin-right: 0.53vw;
  }
  header .popup-nav .nav-list .nav-item > .title .icon.more-icon:before,
  header .popup-nav .nav-list .nav-item > .title .icon.more-icon:after {
    content: "";
    display: block;
    background-color: #333;
    position: absolute;
  }
  header .popup-nav .nav-list .nav-item > .title .icon.more-icon:before {
    width: 100%;
    height: 0.27vw;
    top: 50%;
    left: 0;
  }
  header .popup-nav .nav-list .nav-item > .title .icon.more-icon:after {
    width: 0.27vw;
    height: 100%;
    left: 50%;
    top: 0;
  }
  header .popup-nav .subnav-list {
    display: none;
    padding-left: 2.67vw;
  }
  header .popup-nav .subnav-list > li {
    border-bottom: 0.27vw dashed #eee;
  }
  header .popup-nav .subnav-list > li > .title {
    display: block;
    font-size: 3.47vw;
    color: #898989;
    padding: 2.13vw 0;
  }
}
/* ==================== 头部导航样式 End ==================== */
/* ==================== 底部样式 Start ==================== */
footer {
  background-color: #2a2a2a;
}
footer .foot-top > .mxw-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .foot-logo {
  display: block;
  width: 9.11vw;
  height: 2.03vw;
  overflow: hidden;
  margin-bottom: 2.08vw;
}
footer .foot-contact .contact-item {
  font-size: 0.73vw;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Outfit-Light";
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 1.3vw;
}
footer .foot-contact .contact-item p {
  font-family: inherit;
  color: inherit;
}
footer .foot-contact .contact-item .icon {
  display: block;
  font-size: 0.83vw;
  color: #fff;
  margin-right: 0.78vw;
  line-height: 1;
  margin-top: 0.21vw;
}
footer .foot-contact .contact-item:last-child {
  margin-bottom: 0;
}
footer .foot-share {
  display: flex;
  align-items: center;
  margin-top: 2.08vw;
  margin-left: 1.56vw;
}
footer .foot-share .share-item {
  position: relative;
  margin-right: 1.04vw;
}
footer .foot-share .share-item:hover .icon {
  transition: all 0.4s;
}
footer .foot-share .share-item .icon {
  font-size: 1.04vw;
  color: #959595;
  transition: color 0.4s;
}
footer .foot-share .share-item:last-child {
  margin-right: 0;
}
footer .foot-share .share-item:hover .qr {
  opacity: 1;
  visibility: visible;
}
footer .foot-share .share-item .qr {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 6.95vw;
  height: 6.95vw;
  z-index: 8;
  background: #fff;
  margin-bottom: 0.69vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
footer .foot-navbar {
  display: flex;
  align-items: flex-start;
}
footer .foot-navbar .head {
  font-size: 0.83vw;
  color: #fff;
  font-family: "Outfit-Bold";
  display: block;
  margin-bottom: 1.56vw;
}
footer .foot-navbar .foot-item {
  margin-right: 6.77vw;
}
footer .foot-navbar .foot-item:last-child {
  margin-right: 0;
}
footer .foot-navbar li {
  font-family: "Outfit-Light";
  font-size: 0.63vw;
  line-height: 1.8;
  color: #b6b6b6;
  margin-bottom: 0.78vw;
  transform-origin: left center;
  transition: all 0.2s;
}
footer .foot-navbar li:hover {
  color: #fff;
}
footer .foot-navbar li:last-child {
  margin-bottom: 0;
}
footer .foot-navbar li a {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
footer .foot-bottom > .mxw-box {
  margin-top: 3.13vw;
  border-top: 1px solid #3b3b3b;
  padding-top: 2.6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .foot-bottom .left-body {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
footer .foot-bottom .foot-link,
footer .foot-bottom .foot-copyright,
footer .foot-bottom .support {
  font-size: 0.68vw;
  font-family: "Outfit-Light";
  color: rgba(255, 255, 255, 0.3);
  line-height: 2;
}
footer .foot-bottom .foot-link a,
footer .foot-bottom .foot-copyright a,
footer .foot-bottom .support a {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}
footer .foot-bottom .foot-link a:hover,
footer .foot-bottom .foot-copyright a:hover,
footer .foot-bottom .support a:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}
footer .foot-bottom .foot-copyright {
  margin-right: 3.65vw;
  display: block;
  flex-shrink: 0;
}
footer .foot-bottom .support {
  margin-right: 3.65vw;
  flex-shrink: 0;
}
footer .foot-bottom .foot-link a:last-child:after {
  display: none;
}
footer .foot-bottom .foot-link a:after {
  content: "、";
}
footer .language {
  position: relative;
}
footer .language:hover .head {
  background-color: rgba(255, 255, 255, 0.05);
}
footer .language .head {
  width: 6.77vw;
  height: 1.35vw;
  line-height: 1.46vw;
  border: 1px solid #8b8b8b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.69vw;
  cursor: pointer;
  font-family: "Outfit-Light";
  font-size: 0.63vw;
}
footer .language .head.active:after {
  transform: rotate(-45deg);
  margin-top: 0.21vw;
}
footer .language .head .text {
  color: #666;
  line-height: 1.2;
  font-family: "Outfit-Light";
}
footer .language .head:after {
  content: "";
  display: block;
  width: 0.41vw;
  height: 0.41vw;
  border-top: 1.44px solid;
  border-right: 1.44px solid;
  border-color: #666;
  transform: rotate(135deg);
  margin-top: -0.21vw;
}
footer .language ul {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
}
footer .language ul li {
  padding: 0 0.56vw;
  font-size: 0.54vw;
  line-height: 1.58vw;
  color: #888;
  text-align: center;
  border-bottom: 1.44px solid #eee;
  font-family: "Outfit-Light";
  transition: background-color 0.4s;
}
footer .language ul li:hover {
  background-color: #eee;
}
footer .language ul li a {
  display: block;
  width: 100%;
  color: inherit;
  font-family: inherit;
}
@media screen and (min-width: 1100px) {
  footer {
    padding-top: 6.25vw;
    padding-bottom: 6vw;
  }
  footer .foot-navbar li:hover {
    transform: scale(1.2);
  }
  footer .foot-contact {
    width: 16vw;
  }
}
@media screen and (max-width: 1100px) {
  footer {
    padding: 8vw 0;
  }
  footer .foot-top > .mxw-box {
    display: block;
  }
  footer .foot-top .foot-logo {
    width: 32vw;
    height: 7.2vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5.33vw;
  }
  footer .foot-contact .contact-item {
    font-size: 3.73vw;
    margin-bottom: 4vw;
    line-height: 1.6;
  }
  footer .foot-contact .contact-item .icon {
    font-size: 5.33vw;
    height: 5.33vw;
    line-height: 5.33vw;
    margin-top: 0;
    margin-right: 4vw;
  }
  footer .foot-share {
    margin-top: 5.33vw;
    margin-left: auto;
    display: none;
  }
  footer .foot-navbar {
    margin-top: 8vw;
    display: block;
  }
  footer .foot-navbar .foot-item {
    margin-right: 0;
    margin-bottom: 5.33vw;
    padding-bottom: 5.33vw;
    border-bottom: 0.27vw dashed rgba(255, 255, 255, 0.1);
  }
  footer .foot-navbar .foot-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  footer .foot-navbar .head {
    font-size: 4.27vw;
    margin-bottom: 2.67vw;
  }
  footer .foot-navbar ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  footer .foot-navbar li {
    width: 48%;
    font-size: 3.73vw;
    margin-bottom: 1.33vw;
  }
  footer .foot-navbar li a {
    display: block;
    width: 100%;
  }
  footer .foot-bottom > .mxw-box {
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 8vw;
  }
  footer .foot-bottom .left-body {
    width: 100%;
    flex-flow: column;
    text-align: center;
  }
  footer .foot-bottom .foot-copyright,
  footer .foot-bottom .support,
  footer .foot-bottom .foot-link {
    font-size: 3.2vw;
  }
  footer .foot-bottom .foot-copyright,
  footer .foot-bottom .support {
    margin-right: 0;
  }
  footer .foot-bottom .foot-link {
    order: -1;
  }
  footer .language {
    width: 100%;
    margin-left: 0;
    height: auto;
    line-height: inherit;
    order: -1;
    margin-bottom: 2.67vw;
  }
  footer .language .head {
    height: auto;
    width: 100%;
    line-height: inherit;
    text-align: center;
    padding: 1.33vw 5.33vw;
    font-size: 3.73vw;
  }
  footer .language .head.active:after {
    margin-top: 1.33vw;
  }
  footer .language .head:after {
    width: 2.13vw;
    height: 2.13vw;
    margin-top: -1.07vw;
  }
  footer .language .head .text {
    width: 100%;
  }
  footer .language ul {
    bottom: 100%;
    top: auto;
  }
  footer .language ul li {
    padding: 2.13vw 0;
    height: auto;
    line-height: inherit;
    font-size: 3.73vw;
  }
}
/* ==================== 底部样式 End ==================== */
.index-banner {
  padding-top: 0!important;
  padding-bottom: 0!important;
  overflow: hidden;
}
.index-banner video{width: 100%;object-fit: cover;}
.index-banner .swiper-slide img {
  width: 100%;
}
.index-banner .swiper-btn-prev,
.index-banner .swiper-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #fff;
  z-index: 9;
  cursor: pointer;
  outline: none;
}
.index-banner .swiper-btn-prev.swiper-button-disabled,
.index-banner .swiper-btn-next.swiper-button-disabled{
  opacity: 0;
}
.index-banner .swiper-btn-prev {
  left: 60px;
  transform: rotateY(180deg) translateY(-50%);
}
.index-banner .swiper-btn-next {
  right: 60px;
}
@media screen and (max-width: 1100px) {
  .index-banner {
    z-index: 99;
  }
  .index-banner .swiper-btn-prev,
  .index-banner .swiper-btn-next {
    font-size: 26px;
  }
  .index-banner .swiper-btn-prev {
    left: 20px;
  }
  .index-banner .swiper-btn-next {
    right: 20px;
  }
}
/* ==================== 滤镜白色 Start ==================== */
.filter-white,
header .pc-nav .search button .icon:before,
footer .foot-logo img,
footer .foot-share .share-item:hover .icon,
.news-desc-section1 .tool ul li .iconfont:hover,
.download-section2 td .iconfont:hover:before {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
/* ==================== 滤镜白色 End ==================== */
/* ==================== 在1920下图片保持最小1920p Start ==================== */
.mxw-full-img {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 1903px) {
  .mxw-full-img img {
    width: 100%;
    min-width: 1920px;
  }
}
@media screen and (max-width: 1100px) {
  .mxw-full-img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mxw-full-img img {
    height: 300px;
    width: auto;
    max-width: inherit;
  }
}
/* ==================== 在1920下图片保持最小1920p End ==================== */
/* ==================== 通用加载等待动画 Start ==================== */
.common-loading {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 55;
  width: 100%;
  height: 100%;
}
.common-loading .load-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.common-loading .loading {
  display: inline-block;
  position: relative;
}
.common-loading .loading::before {
  content: "Loading";
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  display: inline-block;
  animation: floating 1s ease-out infinite alternate;
}
.common-loading .poster {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.common-loading .progress {
  width: 150px;
}
.common-loading .progress-bar {
  background-color: #fff;
  border-radius: 4px;
  max-width: 100%;
  height: 3px;
  width: 0;
  margin-top: 5px;
  animation: loading-animation 1s ease-out infinite alternate;
}
.common-loading .progress-text {
  font-size: 12px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  margin-top: 5px;
  opacity: 0.8;
}
@keyframes floating {
  0% {
    opacity: 0.4;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(-25px);
  }
}
@keyframes loading-animation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
/* ==================== 通用加载等待动画 End ==================== */
/* ==================== 通用查看更多按钮 Start ==================== */
.mxw-jump-btn {
  border-radius: 5.21vw;
  margin-top: 3.39vw;
  width: 7.98vw;
  padding: 0.83vw 0.52vw;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.63vw;
  font-family: "Outfit-Light";
  border: 1px solid #444247;
  background-color: #1b1b1f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.4s;
}
.mxw-jump-btn:hover {
  color: #fff;
  background-color: #b35942;
  border-color: #b35942;
}
@media screen and (max-width: 1100px) {
  .mxw-jump-btn {
    margin-top: 9.33vw;
    width: 35.73vw;
    padding: 2.67vw 2.67vw;
    font-size: 3.2vw;
  }
}
/* ==================== 通用查看更多按钮 End ==================== */
/* ==================== 通用内页banner Start ==================== */
.mxw-ny-banner {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.mxw-ny-banner .info {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}
.mxw-ny-banner .info .text1 {
  line-height: 1;
  font-family: "Outfit-Bold";
  font-size: 3.33vw;
}
.mxw-ny-banner .info .text2 {
  font-family: "Outfit-Regular";
  font-size: 1.67vw;
  line-height: 1.4;
  text-align: justify;
  margin-top: 2.08vw;
}
@media screen and (max-width: 1100px) {
  .mxw-ny-banner .bg-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mxw-ny-banner .bg-image img {
    height: 53.33vw;
    width: auto;
    max-width: inherit;
  }
  .mxw-ny-banner .info .text1 {
    font-size: 5.87vw;
  }
  .mxw-ny-banner .info .text2 {
    font-size: 3.2vw;
    margin-top: 2.67vw;
  }
  .mxw-ny-banner .info .text2 p {
    display: inline;
  }
}
/* ==================== 通用内页banner End ==================== */
/* ==================== 通用分页 Start ==================== */
.mxw-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 5.21vw;
}
.mxw-pagination > a {
  width: 2.08vw;
  height: 2.08vw;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.14);
  margin: 0.26vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 0.78vw;
  font-family: "Outfit-Light";
  transition: background-color 0.4s, color 0.4s;
  color: #fff;
}
.mxw-pagination > a:hover,
.mxw-pagination > a.active {
  background-color: #b35942;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .mxw-pagination {
    margin-top: 8vw;
  }
  .mxw-pagination > a {
    width: 8vw;
    height: 8vw;
    font-size: 3.2vw;
    margin: 0.53vw 0.53vw;
  }
}
/* ==================== 通用分页 End ==================== */
/* ==================== 首页 - 通用样式 Start ==================== */
.index-section-title {
  font-size: 2.44vw;
  color: #fff;
  font-family: "Outfit-Bold";
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 1100px) {
  .index-section-title {
    margin-bottom: 4.17vw;
  }
}
@media screen and (max-width: 1100px) {
  .index-main section {
    padding-top: 10.67vw;
    padding-bottom: 10.67vw;
  }
  .index-section-title {
    margin-bottom: 7vw;
    font-size: 6.4vw;
  }
}
/* ==================== 首页 - 通用样式 End ==================== */
/* ==================== 首页 - 板块一 Start ==================== */
.index-section1 .left-item {
  background-image: linear-gradient(109deg, #262023, #1c212a);
  margin-right: 1.56vw;
  border-radius: 0.52vw;
}
.index-section1 .left-item .info {
  text-align: center;
  color: #fff;
}
.index-section1 .left-item .text1 {
  font-size: 2.19vw;
  line-height: 1.1;
  font-family: "Outfit-Bold";
  margin-bottom: 1.04vw;
}
.index-section1 .left-item .text2 {
  font-family: "Outfit-Regular";
  font-size: 1.46vw;
  margin-bottom: 1.3vw;
}
.index-section1 .left-item .text3 {
  font-family: "Outfit-Light";
  font-size: 0.94vw;
}
.index-section1 .left-item .image {
  margin-top: 4.17vw;
  width: 28.65vw;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}
.index-section1 .right-item {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.index-section1 .right-item .item {
  display: block;
  width: 100%;
  border-radius: 0.52vw;
  background: rgba(255, 255, 255, 0.1);
  transition: background-color 0.4s;
}
.index-section1 .right-item .item:hover {
  background: rgba(255, 255, 255, 0.14);
}
.index-section1 .right-item .item .image {
  margin-left: auto;
  margin-right: auto;
}
.index-section1 .right-item .item .image img {
  width: 100%;
}
.index-section1 .right-item .item:nth-child(1) {
  width: 48%;
  margin-right: 4%;
}
.index-section1 .right-item .item:nth-child(2) {
  width: 48%;
}
.index-section1 .right-item .item:nth-child(3) {
  margin-top: 4%;
  margin-bottom: 4%;
}
.index-section1 .right-item .image {
  overflow: visible;
}
.index-section1 .right-item .info {
  text-align: center;
  margin-top: 2.08vw;
  width: 100%;
}
.index-section1 .right-item .text1 {
  font-size: 1.35vw;
  color: #fff;
  line-height: 1.1;
  font-family: "Outfit-Bold";
  margin-bottom: 0.78vw;
}
.index-section1 .right-item .text2 {
  font-family: "Outfit-Light";
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.2;
  font-size: 0.73vw;
}
@media screen and (min-width: 1100px) {
  .index-section1 {
    padding: 5.21vw 0 7.03vw;
  }
  .index-section1 .body {
    display: flex;
    align-items: stretch;
  }
  .index-section1 .left-item,
  .index-section1 .right-item {
    width: 49%;
  }
  .index-section1 .left-item {
    margin-right: 2%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  .index-section1 .right-item .item {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }
  .index-section1 .right-item .item:nth-child(1) {
    height: 17.19vw;
  }
  .index-section1 .right-item .item:nth-child(1) .image {
    width: 8.85vw;
  }
  .index-section1 .right-item .item:nth-child(2) {
    height: 17.19vw;
  }
  .index-section1 .right-item .item:nth-child(2) .image {
    width: 8.85vw;
  }
  .index-section1 .right-item .item:nth-child(3) {
    height: 23.44vw;
  }
  .index-section1 .right-item .item:nth-child(3) .image {
    width: 26.56vw;
  }
  .index-section1 .right-item .item:nth-child(3) .info {
    margin-top: 50px;
  }
  .index-section1 .right-item .item:nth-child(4) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row;
    padding: 1.56vw 4.17vw;
    padding-right: 5.21vw;
  }
  .index-section1 .right-item .item:nth-child(4) .info {
    order: -1;
    text-align: left;
    min-width: 0;
    flex-grow: 1;
    margin-top: 0;
  }
  .index-section1 .right-item .item:nth-child(4) .info .text1 {
    margin-bottom: 1.3vw;
  }
  .index-section1 .right-item .item:nth-child(4) .image {
    width: 9.9vw;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 1100px) {
  .index-section1 .left-item {
    margin-right: 0;
    padding: 8vw 4vw;
  }
  .index-section1 .left-item .image {
    width: 100%;
    margin-top: 8vw;
  }
  .index-section1 .left-item .text1 {
    font-size: 6vw;
    margin-bottom: 5vw;
  }
  .index-section1 .left-item .text2 {
    font-size: 4.4vw;
    line-height: 1.4;
    margin-bottom: 2.67vw;
  }
  .index-section1 .left-item .text3 {
    font-size: 3.73vw;
  }
  .index-section1 .right-item {
    margin-top: 5.33vw;
  }
  .index-section1 .right-item .item {
    width: 100%;
    padding: 5.33vw 4vw;
  }
  .index-section1 .right-item .item:nth-child(1) .image,
  .index-section1 .right-item .item:nth-child(2) .image {
    height: 32vw;
  }
  .index-section1 .right-item .item:nth-child(4) .image {
    width: 50%;
  }
  .index-section1 .right-item .info {
    margin-top: 5.33vw;
    width: 100%;
  }
  .index-section1 .right-item .text1 {
    font-size: 5.33vw;
    margin-bottom: 2.67vw;
  }
  .index-section1 .right-item .text2 {
    font-size: 3.73vw;
  }
}
/* ==================== 首页 - 板块一 End ==================== */
/* ==================== 首页 - 板块二 Start ==================== */
.index-section2 .item {
  position: relative;
  border-radius: 0.52vw;
}
.index-section2 .item .image,
.index-section2 .item img{
  border-radius: 0.52vw;
}
.index-section2 .item .info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.3));
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.index-section2 .item .content {
  width: 100%;
  padding: 1.56vw;
}
.index-section2 .item .title {
  font-size: 1.25vw;
  color: #fff;
  line-height: 1.2;
  font-family: "Outfit-Bold";
  margin-bottom: 0.78vw;
}
.index-section2 .item .desc {
  font-size: 0.83vw;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  font-family: "Outfit-Thin";
}
.index-section2 .item .jump-btn {
  font-family: "Outfit-Light";
  font-size: 0.63vw;
  color: #b35942;
  margin-top: 1.56vw;
  display: block;
}
.index-section2 .item .jump-btn:hover {
  text-decoration: underline;
}
@media screen and (min-width: 1100px) {
  .index-section2 {
    padding-bottom: 4.17vw;
  }
  .index-section2 .item {
    transition: all 0.4s;
  }
  .index-section2 .item:nth-child(3) ~ .item {
    margin-top: 3.13vw;
  }
  .index-section2 .item:hover {
    transform: translateY(-1.56vw);
  }
  .index-section2 .item:hover .content {
    transform: translateY(0);
  }
  .index-section2 .item .content {
    transition: all 0.4s;
    transform: translateY(3.13vw);
  }
}
@media screen and (max-width: 1100px) {
  .index-section2 .item {
    width: 100%;
    border-radius: 1.6vw;
  }
  .index-section2 .item:nth-child(2n) {
    margin-left: 0;
  }
  .index-section2 .item:nth-child(1) ~ .item {
    margin-top: 5.33vw;
  }
  .index-section2 .item .content {
    padding: 4vw;
  }
  .index-section2 .item .title {
    font-size: 5.33vw;
  }
  .index-section2 .item .desc {
    font-size: 3.47vw;
  }
  .index-section2 .item .jump-btn {
    margin-top: 4vw;
    font-size: 3.2vw;
  }
}
/* ==================== 首页 - 板块二 End ==================== */
/* ==================== 首页 - 板块三 Start ==================== */
.index-section3 {
  overflow: hidden;
}
.index-section3 .category {
  margin-bottom: 2.6vw;
}
.index-section3 .category .mxw-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.index-section3 .category .cate-item {
  padding: 0.52vw 0.78vw;
  font-size: 0.83vw;
  color: #959595;
  border-radius: 5.21vw;
  overflow: hidden;
  font-family: "Outfit-Light";
  cursor: pointer;
  transition: all 0.4s;
  margin-right: 1.56vw;
}
.index-section3 .category .cate-item:hover {
  background-color: #b35942;
  color: #fff;
}
.index-section3 .category .cate-item:last-child {
  margin-right: 0;
}
.index-section3 .body {
  position: relative;
}
.index-section3 .body:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, #000000, rgba(0, 0, 0, 0.4) 30%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.index-section3 .index-section3-bg .image img {
  width: 100%;
}
.index-section3 .index-section3-text {
  position: absolute;
  z-index: 3;
  bottom: 6.25vw;
  left: 50%;
  transform: translateX(-50%);
  width: 31.25vw;
  height: 7.29vw;
  overflow: hidden;
}
.index-section3 .index-section3-text .text1 {
  padding: 0.42vw 0.78vw;
  font-size: 0.73vw;
  color: #fff;
  font-family: "Outfit-Regular";
  background-color: #b35942;
  border-radius: 5.21vw;
  display: table;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.6vw;
}
.index-section3 .index-section3-text .text2 {
  font-size: 2.19vw;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  font-family: "Outfit-Regular";
  padding-left: 1.56vw;
  padding-right: 1.56vw;
}
.index-section3 .index-section3-text .swiper-button-prev,
.index-section3 .index-section3-text .swiper-button-next {
  position: absolute;
  bottom: 0.73vw;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  cursor: pointer;
  outline: none;
}
.index-section3 .index-section3-text .swiper-button-prev:after,
.index-section3 .index-section3-text .swiper-button-next:after {
  display: none;
}
.index-section3 .index-section3-text .swiper-button-prev i,
.index-section3 .index-section3-text .swiper-button-next i {
  font-size: 1.56vw;
}
.index-section3 .index-section3-text .swiper-button-prev {
  left: 0;
}
.index-section3 .index-section3-text .swiper-button-prev i {
  display: block;
  transform: rotateY(180deg);
}
.index-section3 .index-section3-text .swiper-button-next {
  right: 0;
}
@media screen and (min-width: 1100px) {
  .index-section3 {
    padding-top: 4.17vw;
  }
}
@media screen and (max-width: 1100px) {
  .index-section3 .category {
    margin-bottom: 8vw;
  }
  .index-section3 .category .cate-item {
    width: 48%;
    margin-right: 0;
    font-size: 3.2vw;
    text-align: center;
    padding: 2.13vw 1.33vw;
    border-radius: 53.33vw;
  }
  .index-section3 .category .cate-item:nth-child(2n) {
    margin-left: 4%;
  }
  .index-section3 .category .cate-item:nth-child(2) ~ .cate-item {
    margin-top: 4%;
  }
  .index-section3 .index-section3-text {
    bottom: 5.33vw;
    width: 90%;
    left: 5%;
    transform: translateX(0);
    height: 21.33vw;
  }
  .index-section3 .index-section3-text .text1 {
    font-size: 3.2vw;
    margin-bottom: 4vw;
    padding: 1.6vw 3.2vw;
  }
  .index-section3 .index-section3-text .text2 {
    font-size: 5.33vw;
  }
  .index-section3 .index-section3-text .swiper-button-next,
  .index-section3 .index-section3-text .swiper-button-prev {
    bottom: 2.67vw;
  }
  .index-section3 .index-section3-text .swiper-button-next i,
  .index-section3 .index-section3-text .swiper-button-prev i {
    font-size: 4.27vw;
  }
}
/* ==================== 首页 - 板块三 End ==================== */
/* ==================== 首页 - 板块四 Start ==================== */
.index-section4 {
  background-repeat: no-repeat;
  background-position: right top;
  background-color: #000;
  background-size: 33.02vw auto;
}
.index-section4 .image img {
  width: 100%;
}
.index-section4 .mxw-jump-btn {
  margin-left: 0;
}
.index-section4 .info .index-section-title {
  text-align: left;
  margin-bottom: 3.13vw;
}
.index-section4 .info .desc {
  font-size: 1.15vw;
  font-family: "Outfit-Light";
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}
.index-section4 .info .desc p {
  font-family: inherit;
}
.index-section4 .itembox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.index-section4 .item .text1 {
  font-family: "Outfit-Black";
  font-size: 3.44vw;
  color: #fff;
  line-height: 1;
  margin-bottom: 1.46vw;
}
.index-section4 .item .text1 span {
  font-family: inherit;
}
.index-section4 .item .text2 {
  font-size: 0.94vw;
  font-family: "Outfit-Light";
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}
.index-section4 .item .text2 * {
  font-family: inherit;
}
@media screen and (min-width: 1100px) {
  .index-section4 {
    padding-top: 15.63vw;
    padding-bottom: 12.5vw;
  }
  .index-section4 .body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13.54vw;
  }
  .index-section4 .info {
    width: 33.33vw;
  }
  .index-section4 .image {
    width: 37.29vw;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 1100px) {
  .index-section4 {
    background-size: 40%;
  }
  .index-section4 .info .index-section-title {
    margin-bottom: 8vw;
  }
  .index-section4 .info .desc {
    font-size: 3.73vw;
  }
  .index-section4 .image {
    width: 100%;
    margin-top: 13.33vw;
  }
  .index-section4 .itembox {
    flex-wrap: wrap;
    margin-top: 10.67vw;
  }
  .index-section4 .item {
    width: 46%;
  }
  .index-section4 .item:nth-child(2n) {
    margin-left: 8%;
  }
  .index-section4 .item:nth-child(2) ~ .item {
    margin-top: 8%;
  }
  .index-section4 .item .text1 {
    font-size: 8.53vw;
    margin-bottom: 2.67vw;
  }
  .index-section4 .item .text2 {
    font-size: 3.2vw;
    word-wrap: break-word;
  }
}
/* ==================== 首页 - 板块四 End ==================== */
/* ==================== 首页 - 板块五 Start ==================== */
.index-section5 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.index-section5:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(204, 3, 179, 0.3), transparent, rgba(0, 167, 209, 0.3), rgba(0, 167, 209, 0.3), transparent, rgba(204, 3, 179, 0.3));
  position: absolute;
  top: 0;
  left: 0;
  background-position-y: 0;
  background-size: 100% 400%;
  animation: example1 5s linear infinite;
}
@keyframes example1 {
  0% {
    background-position-y: -35%;
  }
  100% {
    background-position-y: 100%;
  }
}
.index-section5 > .mxw-box {
  position: relative;
  z-index: 2;
}
.index-section5 h4 {
  font-size: 0.94vw;
  color: #fff;
  font-family: "Outfit-Light";
  margin-top: 0.78vw;
  line-height: 1;
  text-align: center;
}
.index-section5 .jump-btn {
  background-color: #b35942;
  width: 8.96vw;
  height: 2.5vw;
  line-height: 2.5vw;
  text-align: center;
  color: #fff;
  font-family: "Outfit-Regular";
  font-size: 0.73vw;
  border-radius: 5.21vw;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 3.39vw;
  transition: all 0.4s;
}
.index-section5 .jump-btn:hover {
  transform: translateY(-0.52vw);
}
@media screen and (min-width: 1100px) {
  .index-section5 {
    padding-top: 5.21vw;
    padding-bottom: 5.21vw;
  }
  .index-section5 .index-section-title {
    margin-bottom: 1.56vw;
  }
}
@media screen and (max-width: 1100px) {
  .index-section5 {
    padding-top: 10.67vw;
    padding-bottom: 10.67vw;
    background-position-x: left;
  }
  .index-section5 .index-section-title {
    margin-bottom: 3.73vw;
  }
  .index-section5 h4 {
    font-size: 3.2vw;
  }
  .index-section5 .jump-btn {
    width: 40vw;
    height: auto;
    line-height: inherit;
    padding: 2.13vw 0;
    font-size: 3.2vw;
    margin-top: 8vw;
  }
  .index-section5 .jump-btn:hover {
    box-shadow: 0 0 2.67vw -0.53vw rgba(255, 255, 255, 0.8);
  }
}
/* ==================== 首页 - 板块五 End ==================== */
/* ==================== 产品专题1 - 通用样式 Start ==================== */
.product1-main section {
  position: relative;
  overflow: hidden;
}
.product1-title {
  font-family: "Outfit-Bold";
  font-size: 2vw;
  color: #fff;
  line-height: 1;
  margin-bottom: 1.6vw;
  font-weight: 400;
  text-align: center;
}
.product1-desc {
  font-family: "Outfit-Light";
  font-size: 1vw;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-left: auto;
  margin-right: auto;
  display: block;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .product1-title {
    font-size: 5.87vw;
    line-height: 1.2;
    margin-bottom: 5.33vw;
  }
  .product1-desc {
    font-size: 3.2vw;
  }
  .product1-desc p {
    display: inline;
  }
}
/* ==================== 产品专题1 - 通用样式 End ==================== */
/* ==================== 产品专题1 - 版块一 Start ==================== */
/* ==================== 产品专题1 - 版块一 End ==================== */
/* ==================== 产品专题1 - 版块二 Start ==================== */
.product1-section2 {
  position: relative;
  padding-bottom: 100vh;
}
.product1-section2 .info {
  position: absolute;
  bottom: 20vw;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 13;
}
.product1-section2 .content {
  padding-bottom: 200vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product1-section2 .mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(to top, #000000, rgba(0, 0, 0, 0));
  z-index: 12;
}
@media screen and (min-width: 1100px) {
}
@media screen and (max-width: 1100px) {
  .product1-section2 .content {
    padding-bottom: 0;
  }
  .product1-section2 .bg-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product1-section2 .bg-image img {
    width: auto;
    max-width: inherit;
    height: 106.67vw;
  }
  .product1-section2 .info {
    top: 58%;
    bottom: auto;
    padding: 0 8vw;
  }
}
/* ==================== 产品专题1 - 版块二 End ==================== */
/* ==================== 产品专题1 - 版块三 Start ==================== */
/* .product1-section3{
  padding-bottom: calc(5.21vw + 100vh);
} */
/* .product1-section3 .mxw-box {
  height: 200vh;
} */
.product1-section3 .body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product1-section3 .product1-title,
.product1-section3 .product1-desc {
  text-align: left;
}
.product1-section3 .image {
  border-radius: 0.52vw;
  border: solid 1px rgba(204, 204, 204, 0.2);
  background-color: #101010;
}
@media screen and (min-width: 1100px) {
  .product1-section3 {
    padding-top: 8.33vw;
  }
  .product1-section3 .info {
    padding-left: 6.77vw;
  }
  .product1-section3 .image {
    margin-left: 10.42vw;
    width: 29.69vw;
    height: 44.27vw;
    flex-shrink: 0;
  }
  .product1-section3 .image canvas {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .product1-section3 {
    padding: 8vw 0;
    /* padding-bottom: calc(5.21vw + 100vh); */
  }
  .product1-section3 .body {
    display: block;
  }
  .product1-section3 .image {
    width: 53.33vw;
    margin-left: auto;
    margin-right: auto;
    border-radius: 2.67vw;
    margin-top: 8vw;
  }
}
/* ==================== 产品专题1 - 版块三 End ==================== */
/* ==================== 产品专题1 - 版块四 Start ==================== */
.product1-section4 {
  position: relative;
  overflow: hidden;
}
.product1-section4 canvas {
  width: 100%;
  height: 100vh;
}
@media screen and (min-width: 1100px) {
  .product1-section4 {
    padding-bottom: 100vh;
  }
  .product1-section4 .mxw-box {
    height: 200vh;
  }
}
@media screen and (max-width: 1100px) {
  .product1-section4 video {
    width: 100%;
    height: auto;
  }
}
/* ==================== 产品专题1 - 版块四 End ==================== */
/* ==================== 产品专题1 - 版块五 Start ==================== */
.product1-section5 .body {
  margin-top: 6.25vw;
}
.product1-section5 .title {
  font-family: "Outfit-Light";
  font-size: 1.15vw;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
.product1-section5 .bg-color {
  background-image: linear-gradient(130deg, #190c0b, #040f1a);
}
.product1-section5 .left-body {
  border-radius: 0.52vw;
  border: 1px solid #292929;
  padding: 5.21vw 3.39vw 4.17vw;
}
.product1-section5 .left-body .image {
  width: 22.76vw;
}
.product1-section5 .left-body .image img {
  width: 100%;
}
.product1-section5 .right-body {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.product1-section5 .right-body .item {
  border-radius: 0.52vw;
  border: 1px solid #292929;
}
.product1-section5 .right-body .item:nth-child(3),
.product1-section5 .right-body .item:nth-child(4),
.product1-section5 .right-body .item:nth-child(5) {
  width: 32%;
  position: relative;
  background-image: linear-gradient(135deg, #d8797f, #3096f9, #d8797f, #3096f9, #d8797f, #3096f9, #d8797f);
  background-size: 200% auto;
  animation-name: example2;
  animation-timing-function: linear;
  animation-duration: 15s;
  animation-iteration-count: infinite;
}
.product1-section5 .right-body .item:nth-child(3) .title,
.product1-section5 .right-body .item:nth-child(4) .title,
.product1-section5 .right-body .item:nth-child(5) .title {
  position: absolute;
  bottom: 3.13vw;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .product1-section5 {
    padding-top: 200px;
    padding-bottom: 10.42vw;
  }
  .product1-section5 .product1-desc {
    max-width: 53.13vw;
  }
  .product1-section5 .body {
    width: 100%;
    display: flex;
    align-items: stretch;
  }
  .product1-section5 .left-body {
    margin-right: 2.08vw;
    flex-shrink: 0;
    width: 29.69vw;
  }
  .product1-section5 .left-body .title {
    margin-top: 6.77vw;
  }
  .product1-section5 .right-body {
    min-width: 0;
    flex-grow: 1;
  }
  .product1-section5 .right-body .item .image {
    margin-left: auto;
    margin-right: auto;
    pointer-events: none;
  }
  .product1-section5 .right-body .item .image img {
    width: 100%;
  }
  .product1-section5 .right-body .item:nth-child(1) {
    width: 48%;
    margin-right: 4%;
    padding: 3.13vw 1.04vw;
    margin-bottom: 2.08vw;
  }
  .product1-section5 .right-body .item:nth-child(1) .image {
    width: 15.1vw;
    height: 9.9vw;
  }
  .product1-section5 .right-body .item:nth-child(1) .title {
    margin-top: 2.08vw;
  }
  .product1-section5 .right-body .item:nth-child(2) {
    width: 48%;
    padding: 3.13vw 1.04vw;
    margin-bottom: 2.08vw;
  }
  .product1-section5 .right-body .item:nth-child(2) .image {
    width: 14.06vw;
    height: 9.9vw;
  }
  .product1-section5 .right-body .item:nth-child(2) .title {
    margin-top: 2.08vw;
  }
  .product1-section5 .right-body .item:nth-child(4) {
    margin-left: 2%;
    margin-right: 2%;
  }
}
@keyframes example2 {
  0% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: 600%;
  }
}
@media screen and (max-width: 1100px) {
  .product1-section5 {
    padding: 10.67vw 0;
    padding-top: 16vw;
  }
  .product1-section5 .body {
    margin-top: 8vw;
  }
  .product1-section5 .title {
    font-size: 4.27vw;
    margin-top: 8vw;
  }
  .product1-section5 .left-body {
    padding: 10.67vw 8vw;
    margin-bottom: 5.33vw;
  }
  .product1-section5 .left-body .image {
    width: 100%;
  }
  .product1-section5 .right-body .item {
    padding: 8vw 0;
    margin-bottom: 5.33vw;
  }
  .product1-section5 .right-body .item:nth-child(1) .image,
  .product1-section5 .right-body .item:nth-child(2) .image {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  .product1-section5 .right-body .item:nth-child(3),
  .product1-section5 .right-body .item:nth-child(4),
  .product1-section5 .right-body .item:nth-child(5) {
    padding: 0;
    margin-bottom: 0;
  }
  .product1-section5 .right-body .item:nth-child(3) .title,
  .product1-section5 .right-body .item:nth-child(4) .title,
  .product1-section5 .right-body .item:nth-child(5) .title {
    bottom: 4vw;
    font-size: 3.2vw;
  }
  .product1-section5 .right-body .item:nth-child(4) {
    margin-left: 2%;
    margin-right: 2%;
  }
}
/* ==================== 产品专题1 - 版块五 End ==================== */
/* ==================== 产品专题1 - 版块六 Start ==================== */
.product1-section6 {
  overflow: hidden;
}
.product1-section6 .body {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 3;
}
.product1-section6 .bg-image {
  animation: Breathing 2s ease infinite alternate-reverse;
}
.product1-section6 .bg-image img {
  width: 100%;
}
@keyframes Breathing {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  100% {
    opacity: 0.4;
    transform: scale(1.02);
  }
}
@media screen and (max-width: 1100px) {
  .product1-section6 .body {
    padding: 8vw 5.33vw;
    position: static;
    transform: translateY(0);
  }
  .product1-section6 .bg-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -26.67vw;
  }
  .product1-section6 .bg-image img {
    width: auto;
    max-width: inherit;
    height: 80vw;
  }
}
/* ==================== 产品专题1 - 版块六 End ==================== */
/* ==================== 产品专题1 - 版块七 Start ==================== */
.product1-section7 {
  position: relative;
  user-select: none;
}
.product1-section7 img {
  width: 100%;
}
.product1-section7 .body {
  position: relative;
  width: 59.9vw;
  margin-left: auto;
  margin-right: auto;
}
.product1-section7 .image-box {
  position: relative;
}
.product1-section7 .drag-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.product1-section7 .drag-mask .mask-content {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.product1-section7 .drag-mask img {
  clip-path: inset(0 0 0 0% round 0);
}
.product1-section7 .drag-mask .mask {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, transparent 90%, rgba(255, 255, 255, 0.2));
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  margin-left: -100%;
}
.product1-section7 .drag-btn {
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
  width: 2.6vw;
  height: 2.6vw;
  right: 0;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: move;
  z-index: 10;
}
.product1-section7 .drag-btn i {
  font-size: 0.73vw;
  color: #fff;
}
.product1-section7 .drag-btn i:nth-child(1) {
  transform: rotateY(180deg);
}
.product1-section7 .image-bottom {
  font-size: 12px;
}
@media screen and (min-width: 1100px) {
  .product1-section7 {
    padding-top: 4.69vw;
    padding-bottom: 9.38vw;
  }
}
@media screen and (max-width: 1100px) {
  .product1-section7 {
    padding: 0 8vw 10.67vw;
  }
  .product1-section7 .body {
    width: 100%;
  }
  .product1-section7 .drag-btn {
    width: 8vw;
    height: 8vw;
  }
  .product1-section7 .drag-btn i {
    font-size: 3.2vw;
  }
}
/* ==================== 产品专题1 - 版块七 End ==================== */
/* ==================== 产品专题1 - 版块八 Start ==================== */
.product1-section8 {
  position: relative;
}
.product1-section8 .info {
  position: absolute;
  top: 8.85vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.product1-section8 .bg-image {
  transform-origin: center bottom;
}
.product1-section8 .mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
}
@media screen and (max-width: 1100px) {
  .product1-section8 .bg-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product1-section8 .bg-image img {
    height: 98.67vw;
    width: auto;
    max-width: inherit;
    opacity: 0.6;
  }
  .product1-section8 .info {
    top: 8vw;
    width: 100%;
    padding: 0 5.33vw;
  }
}
/* ==================== 产品专题1 - 版块八 End ==================== */
/* ==================== 产品专题1 - 版块九 Start ==================== */
.product1-section9 {
  position: relative;
}
.product1-section9:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, #000000);
  z-index: 10;
  pointer-events: none;
}
.product1-section9 .person {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  width: 7.71vw;
  margin-left: auto;
  margin-right: auto;
}
.product1-section9 .person img {
  width: 100%;
}
.product1-section9 .product1-section9-swiper img {
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .product1-section9 {
    padding-top: 9.9vw;
    padding-bottom: 12.5vw;
  }
  .product1-section9 .product1-section9-swiper {
    overflow: visible;
    width: 47.92vw;
    margin-top: 5.21vw;
    margin-left: auto;
    margin-right: auto;
  }
  .product1-section9 .product1-section9-swiper .swiper-slide {
    transition: all 1s;
    cursor: pointer;
  }
  .product1-section9 .product1-section9-swiper .swiper-slide-prev,
  .product1-section9 .product1-section9-swiper .swiper-slide-next {
    opacity: 0.6;
  }
  .product1-section9 .product1-section9-swiper .swiper-slide-prev {
    transform: perspective(156.25vw) rotateY(40deg) translateX(20%);
  }
  .product1-section9 .product1-section9-swiper .swiper-slide-next {
    transform: perspective(156.25vw) rotateY(-40deg) translateX(-20%);
  }
  .product1-section9 .product1-section9-swiper .swiper-slide-active {
    transform: scale(0.87);
  }
}
@media screen and (max-width: 1100px) {
  .product1-section9 {
    padding: 10.67vw 5.33vw;
    padding-top: 16vw;
  }
  .product1-section9:after {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, #000000);
  }
  .product1-section9 .product1-section9-swiper {
    margin-top: 8vw;
    overflow: hidden;
    width: 100%;
  }
  .product1-section9 .info {
    padding: 0 5.33vw;
  }
  .product1-section9 .person {
    width: 13.33vw;
    margin-bottom: -13.33vw;
  }
}
/* ==================== 产品专题1 - 版块九 End ==================== */
/* ==================== 产品专题1 - 版块十 Start ==================== */
.product1-section10 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.product1-section10 .info {
  margin-bottom: 7.81vw;
}
.product1-section10 .body {
  width: 58.85vw;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.product1-section10 .image2 {
  width: 30.21vw;
  margin-left: 30.73vw;
  position: relative;
  margin-top: -19.27vw;
}
.product1-section10 .image2 .img1,
.product1-section10 .image2 .img3 {
  position: absolute;
  bottom: 0;
}
.product1-section10 .image2 .img1 {
  width: 11.46vw;
  z-index: 3;
  left: -9.58vw;
  top: 9.9vw;
}
.product1-section10 .image2 .img2 {
  width: 100%;
}
.product1-section10 .image2 .img3 {
  right: -1.56vw;
  bottom: -5.47vw;
  width: 14.06vw;
  z-index: 3;
}
@media screen and (min-width: 1100px) {
  .product1-section10 {
    margin-top: 7.81vw;
    padding-top: 9.9vw;
    padding-bottom: 5.21vw;
    background-attachment: fixed;
  }
}
@media screen and (max-width: 1100px) {
  .product1-section10 {
    padding: 16vw 5.33vw 2.67vw;
  }
  .product1-section10 .info {
    margin-bottom: 8vw;
  }
  .product1-section10 .body {
    width: 100%;
  }
  .product1-section10 .image2 {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5.33vw;
  }
  .product1-section10 .image2 .img1 {
    top: auto;
    width: 24vw;
    left: -21.33vw;
    bottom: -10.67vw;
  }
  .product1-section10 .image2 .img3 {
    right: -8vw;
    bottom: -4vw;
    width: 24vw;
  }
}
/* ==================== 产品专题1 - 版块十 End ==================== */
/* ==================== 产品专题1 - 版块十一 Start ==================== */
.product1-section11 {
  background-color: #000;
}
.product1-section11 .body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.product1-section11 .item {
  position: relative;
  border-radius: 0.31vw;
  overflow: hidden;
}
.product1-section11 .item img {
  width: 100%;
}
.product1-section11 .item .title {
  width: 100%;
  font-family: "Outfit-Bold";
  font-size: 1.4vw;
  color: #fff;
  padding: 2.13vw 1.5vw;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1100px) {
  .product1-section11 {
    padding-top: 10.94vw;
    padding-bottom: 11.46vw;
  }
  .product1-section11 .product1-title {
    margin-bottom: 4.17vw;
  }
  .product1-section11 .itembox .item:nth-child(1) {
    margin-bottom: 0.78vw;
  }
  .product1-section11 .item {
    width: 26.25vw;
  }
}
@media screen and (max-width: 1100px) {
  .product1-section11 {
    padding-top: 16vw;
    padding-bottom: 10.67vw;
  }
  .product1-section11 .body > .item {
    order: -1;
  }
  .product1-section11 .body .itembox {
    margin-top: 4vw;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
  .product1-section11 .item {
    width: 48%;
  }
  .product1-section11 .item .title {
    padding: 2.67vw 4vw;
    font-size: 3.73vw;
    text-align: center;
  }
}
/* ==================== 产品专题1 - 版块十一 End ==================== */
/* ==================== 产品列表 - 版块一 Start ==================== */
.product-section1 {
  overflow: hidden;
}
.product-section1 .item {
  background-color: #1b1b1f;
  border-radius: 0.52vw;
  margin-bottom: 1.56vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4.69vw 7.81vw;
}
.product-section1 .item .image {
  overflow: visible;
}
.product-section1 .item:last-child {
  margin-bottom: 0;
}
.product-section1 .item .info .text1 {
  font-family: "Outfit-Bold";
  font-size: 2.4vw;
  color: #fff;
}
.product-section1 .item .info .text2 {
  font-family: "Outfit-Regular";
  font-size: 1.25vw;
  color: #ffffff;
  margin-top: 1.04vw;
}
.product-section1 .item .info .text3 {
  font-family: "Outfit-Light";
  font-size: 0.94vw;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1.04vw;
}
@media screen and (min-width: 1100px) {
  .product-section1 {
    padding-top: 6.25vw;
    padding-bottom: 6.25vw;
  }
  .product-section1 .mxw-jump-btn {
    margin-left: 0;
    margin-top: 2.08vw;
  }
  .product-section1 .item:nth-child(1) .image{
    width: 28.13vw;
  }
  .product-section1 .item:nth-child(1) .image img{
    width: 100%;
  }
  .product-section1 .item:nth-child(1),
  .product-section1 .item:nth-child(2) {
    min-height: 35.94vw;
  }
  .product-section1 .item:nth-child(1) .info {
    width: 27.08vw;
    margin-left: 8.33vw;
    flex-shrink: 0;
  }
  .product-section1 .item:nth-child(2) .info {
    width: 21.35vw;
    margin-right: 5.21vw;
    flex-shrink: 0;
  }
  .product-section1 .item:nth-child(2) .image {
    order: 2;
    width: 40.1vw;
  }
  .product-section1 .item:nth-child(3) .image,
  .product-section1 .item:nth-child(4) .image {
    width: 21.2vw;
  }
  .product-section1 .u-row-2 > .u-col {
    width: 49% !important;
  }
  .product-section1 .u-row-2 > .u-col:nth-child(2n) {
    margin-left: 2% !important;
  }
  .product-section1 .u-row-2 > .u-col:nth-child(2)~.u-col {
    margin-top: 2% !important;
  }
  .product-section1 .u-row-2 .item {
    padding: 7.55vw 2.6vw;
    display: block;
  }
  .product-section1 .u-row-2 .item .image {
    height: 18.23vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4.17vw;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-section1 .u-row-2 .item .image img {
    width: auto;
    max-height: 100%;
  }
  .product-section1 .u-row-2 .item .info {
    text-align: center;
    width: 100%;
    margin: 0 !important;
  }
  .product-section1 .u-row-2 .item .mxw-jump-btn {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1100px) {
  .product-section1 {
    padding: 10.67vw 0;
  }
  .product-section1 .item {
    display: block;
    padding: 8vw 8vw;
    margin-bottom: 5.33vw;
  }
  .product-section1 .item:last-child {
    margin-bottom: 0;
  }
  .product-section1 .item .info {
    margin-top: 8vw;
    text-align: center;
  }
  .product-section1 .item .info .text1 {
    font-size: 4.8vw;
  }
  .product-section1 .item .info .text2 {
    font-size: 3.73vw;
    margin-top: 2.67vw;
  }
  .product-section1 .item .info .text3 {
    font-size: 3.2vw;
    margin-top: 2.67vw;
  }
  .product-section1 .u-row-2 > .u-col:nth-child(1) ~ .u-col {
    margin-top: 5.33vw !important;
  }
}
/* ==================== 产品列表 - 版块一 End ==================== */
/* ==================== 解决方案 - 版块一 Start ==================== */
.solution-main {
  background-color: #000;
}
.solution-section1 {
  padding: 7.81vw 0;
}
@media screen and (max-width: 1100px) {
  .solution-section1 {
    padding: 13.33vw 0;
  }
}
/* ==================== 解决方案 - 版块一 End ==================== */
/* ==================== 解决方案2 - 通用样式 Start ==================== */
.solution2-title {
  font-family: "Outfit-Bold";
  font-size: 2.33vw;
  line-height: 1;
  color: #fff;
  margin-bottom: 2.08vw;
  text-align: center;
}
.solution2-desc {
  font-family: "Outfit-Regular";
  font-size: 1.17vw;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .solution2-title {
    font-size: 5.87vw;
    margin-bottom: 5.33vw;
  }
  .solution2-desc {
    font-size: 3.73vw;
  }
  .solution2-desc p {
    display: inline;
  }
}
/* ==================== 解决方案2 - 通用样式 End ==================== */
/* ==================== 解决方案2 - 板块一 Start ==================== */
.solution2-section1 {
  position: relative;
  overflow: hidden;
}
.solution2-section1 .info {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
}
.solution2-section1 .info .text1 {
  font-family: "Outfit-Bold";
  font-size: 2.8vw;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.3vw;
}
.solution2-section1 .info .text2 {
  font-family: "Outfit-Regular";
  font-size: 1.67vw;
  color: #fff;
  line-height: 1.6;
}
@media screen and (min-width: 1100px) {
  .solution2-section1 .info{
    left: 10%;
    transform: translateX(0);
    width: 80%;
  }
  .solution2-section1 .info .text2{
    font-size: 1.07vw;
  }
}
@media screen and (max-width: 1100px) {
  .solution2-section1 .info .text1 {
    font-size: 5.87vw;
    margin-bottom: 2.67vw;
  }
  .solution2-section1 .info .text2 {
    font-size: 3.2vw;
  }
  .solution2-section1 .info .text2 p {
    display: inline;
  }
}
/* ==================== 解决方案2 - 板块一 End ==================== */
/* ==================== 解决方案2 - 板块二 Start ==================== */
.solution2-section2 .info {
  margin-bottom: 6.77vw;
}
.solution2-section2 .body {
  width: 100%;
  max-width: 1340px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.solution2-section2 .solution2-section2-swiper .swiper-slide {
  position: relative;
  width: 640px;
}
.solution2-section2 .solution2-section2-swiper .swiper-slide:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  visibility: visible;
  transition: all 0.4s;
}
.solution2-section2 .solution2-section2-swiper .swiper-slide:after {
  content: "";
  display: block;
  width: 100%;
  height: 1.04vw;
  background: url(../images/img026.png) no-repeat center;
  background-size: 100%;
}
.solution2-section2 .solution2-section2-swiper .swiper-slide.swiper-slide-active:before {
  visibility: hidden;
  opacity: 0;
}
@media screen and (min-width: 1100px) {
  .solution2-section2 {
    padding-top: 6.25vw;
    padding-bottom: 8.33vw;
  }
}
@media screen and (max-width: 1100px) {
  .solution2-section2 {
    padding: 13.33vw 0;
  }
  .solution2-section2 .info {
    margin-bottom: 8vw;
  }
  .solution2-section2 .body {
    max-width: 100%;
  }
  .solution2-section2 .solution2-section2-swiper .swiper-slide {
    width: 80%;
  }
  .solution2-section2 .solution2-section2-swiper .swiper-slide:after {
    height: 5.33vw;
    background-size: auto 100%;
  }
}
/* ==================== 解决方案2 - 板块二 End ==================== */
/* ==================== 解决方案2 - 板块三 Start ==================== */
.solution2-section3 {
  overflow: hidden;
  background-color: #1b1b1f;
}
.solution2-section3 .item {
  /* padding: 2.6vw;
  background-color: #05070b; */
}
.solution2-section3 .item .image img {
  width: 100%;
}
.solution2-section3 .item .title {
  text-align: center;
  font-family: "Outfit-Regular";
  font-size: 1.17vw;
  line-height: 1.2;
  color: #fff;
  margin-top: 1.56vw;
}
@media screen and (min-width: 1100px) {
  .solution2-section3 {
    padding-top: 8.33vw;
    padding-bottom: 8.33vw;
  }
  .solution2-section3 .solution2-title {
    margin-bottom: 4.17vw;
  }
  .solution2-section3 .itembox {
    display: block;
    /* display: flex;
    flex-wrap: wrap;
    justify-content: center; */
  }
  .solution2-section3 .item {
    width: 1000px;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.56vw;
    margin-bottom: 1.56vw;
  }
  /* .solution2-section3 .item:nth-child(2n){
    margin-left: 4%;
  } */
}
@media screen and (max-width: 1100px) {
  .solution2-section3 {
    padding: 13.33vw 0;
  }
  .solution2-section3 .item {
    /* padding: 5.33vw; */
  }
  .solution2-section3 .item:nth-child(1)~.item{
    margin-top: 7vw;
  }
  .solution2-section3 .item .title {
    font-size: 3.73vw;
    margin-top: 5.33vw;
  }
}
/* ==================== 解决方案2 - 板块三 End ==================== */
/* ==================== 解决方案2 - 板块四 Start ==================== */
.solution2-section4 .min-body {
  position: relative;
  padding-left: 3.65vw;
  padding-right: 3.65vw;
  margin-top: 1.04vw;
}
.solution2-section4 .min-body .swiper-button-prev,
.solution2-section4 .min-body .swiper-button-next {
  width: 2.19vw;
  height: 100%;
  background-color: #1b1b1f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0;
  top: 0;
  bottom: auto;
}
.solution2-section4 .min-body .swiper-button-prev:after,
.solution2-section4 .min-body .swiper-button-next:after {
  font-size: 0.94vw;
}
.solution2-section4 .min-body .swiper-slide {
  position: relative;
  cursor: pointer;
  opacity: 0.2;
}
.solution2-section4 .min-body .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.solution2-section4 .min-body .swiper-slide.swiper-slide-thumb-active .image {
  border-color: #b35942;
}
.solution2-section4 .min-body .swiper-slide .image {
  border: solid 2px transparent;
  transition: all 0.4s;
}
.solution2-section4 .min-body .swiper-slide .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.52vw;
  font-family: "Outfit-Light";
  font-size: 0.83vw;
  line-height: 1.4;
  color: #fff;
}
@media screen and (min-width: 1100px) {
  .solution2-section4 {
    padding-top: 8.33vw;
    padding-bottom: 4.17vw;
  }
  .solution2-section4 .solution2-title {
    margin-bottom: 3.65vw;
  }
  .solution2-section4 .solution2-section4-big .swiper-slide img {
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .solution2-section4 {
    padding: 13.33vw 0;
  }
  .solution2-section4 .min-body {
    padding-left: 10vw;
    padding-right: 10vw;
    margin-top: 4vw;
  }
  .solution2-section4 .min-body .swiper-button-prev {
    left: 0;
  }
  .solution2-section4 .min-body .swiper-button-next {
    right: 0;
  }
  .solution2-section4 .min-body .swiper-button-prev,
  .solution2-section4 .min-body .swiper-button-next {
    width: 8vw;
    height: 100%;
  }
  .solution2-section4 .min-body .swiper-button-prev:after,
  .solution2-section4 .min-body .swiper-button-next:after {
    font-size: 3.2vw;
  }
  .solution2-section4 .min-body .swiper-slide .image {
    border-width: 0.27vw;
  }
  .solution2-section4 .min-body .swiper-slide .title {
    position: static;
    font-size: 3.2vw;
    line-height: 1.2;
    text-align: center;
    margin-top: 1.33vw;
  }
}
/* ==================== 解决方案2 - 板块四 End ==================== */
/* ==================== 解决方案2 - 板块五 Start ==================== */
.solution2-section5 {
  overflow: hidden;
}
.solution2-section5 .item .image {
  display: block;
}
.solution2-section5 .item .info {
  background-color: #1b1b1f;
  padding: 2.6vw 2.08vw;
}
.solution2-section5 .item .text1 {
  font-family: "Outfit-Regular";
  font-size: 1.35vw;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.04vw;
}
.solution2-section5 .item .text2 {
  font-family: "Outfit-Light";
  font-size: 0.73vw;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.5);
}
.solution2-section5 .item .more-btn {
  display: block;
  margin-top: 2.6vw;
  font-family: "Outfit-Light";
  font-size: 0.63vw;
  line-height: 1.2;
  color: #b35942;
}
.solution2-section5 .item .more-btn:hover {
  text-decoration: underline;
}
@media screen and (min-width: 1100px) {
  .solution2-section5 {
    padding-top: 4.17vw;
    padding-bottom: 8.33vw;
  }
  .solution2-section5 .solution2-title {
    margin-bottom: 4.17vw;
  }
}
@media screen and (max-width: 1100px) {
  .solution2-section5 {
    padding: 13.33vw 0;
  }
  .solution2-section5 .item {
    width: 100%;
    margin: 0 !important;
  }
  .solution2-section5 .item:first-child ~ .item {
    margin-top: 5.33vw !important;
  }
  .solution2-section5 .item .info {
    padding: 5.33vw 4vw;
  }
  .solution2-section5 .item .info .text1 {
    font-size: 4.27vw;
    margin-bottom: 2.67vw;
  }
  .solution2-section5 .item .info .text2 {
    font-size: 3.47vw;
  }
  .solution2-section5 .item .info .more-btn {
    font-size: 3.2vw;
    margin-top: 2.67vw;
  }
}
/* ==================== 解决方案2 - 板块五 End ==================== */
/* ==================== 案例 - 通用样式 Start ==================== */
.case-main {
  background-color: #000;
}
/* ==================== 案例 - 通用样式 end ==================== */
/* ==================== 案例 - 板块一 Start ==================== */
.case-section1 {
  position: relative;
}
.case-section1 .info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
}
.case-section1 .text1 {
  padding: 0.52vw;
  color: #fff;
  font-size: 0.73vw;
  border-radius: 5.21vw;
  font-family: "Outfit-Regular";
  line-height: 1.1;
  background-color: #b35942;
  display: table;
  margin-bottom: 1.04vw;
}
.case-section1 .text2 {
  font-family: "Outfit-Bold";
  font-size: 2.33vw;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.56vw;
}
.case-section1 .text3 {
  font-family: "Outfit-Light";
  font-size: 0.95vw;
  line-height: 1.6;
  color: #fff;
  max-width: 36.98vw;
}
.case-section1 .more-btn {
  display: block;
  font-size: 0.63vw;
  margin-top: 2.6vw;
  font-family: "Outfit-Light";
  color: #b35942;
  line-height: 1.1;
}
.case-section1 .more-btn:hover {
  text-decoration: underline;
}
.case-section1 .case-section1-big .swiper-slide {
  position: relative;
}
.case-section1 .case-section1-min .swiper-wrapper {
  justify-content: space-between;
}
.case-section1 .case-section1-min .swiper-slide {
  width: auto;
}
.case-section1 .case-section1-min .swiper-slide-thumb-active .item {
  background-color: #b35942;
}
.case-section1 .case-section1-min .item {
  padding: 0.52vw 0.78vw;
  font-size: 0.83vw;
  color: #fff;
  border-radius: 5.21vw;
  overflow: hidden;
  font-family: "Outfit-Light";
  cursor: pointer;
}
.case-section1 .swiper-button-prev,
.case-section1 .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  cursor: pointer;
  outline: none;
  z-index: 9;
}
.case-section1 .swiper-button-prev:after,
.case-section1 .swiper-button-next:after {
  color: #fff;
  font-size: 1.09vw;
}
.case-section1 .swiper-button-prev {
  left: 5.21vw;
}
.case-section1 .swiper-button-next {
  right: 5.21vw;
}
@media screen and (max-width: 1100px) {
  .case-section1 .case-section1-big .info {
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
  }
  .case-section1 .case-section1-big .bg-image {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .case-section1 .case-section1-big .bg-image img {
    width: auto;
    max-width: inherit;
    height: 80vw;
  }
  .case-section1 .case-section1-min .item {
    padding: 1.07vw 2.67vw;
    text-align: center;
    font-size: 3.2vw;
  }
  .case-section1 .text1 {
    padding: 1.07vw 2.67vw;
    font-size: 3.2vw;
    margin-bottom: 2.67vw;
  }
  .case-section1 .text2 {
    font-size: 4.27vw;
    margin-bottom: 2.67vw;
  }
  .case-section1 .text3 {
    font-size: 3.2vw;
    max-width: 100%;
  }
  .case-section1 .more-btn {
    font-size: 3.2vw;
    margin-top: 2.67vw;
  }
  .case-section1 .swiper-button-prev:after,
  .case-section1 .swiper-button-next:after {
    font-size: 14px;
  }
}
/* ==================== 案例 - 板块一 End ==================== */
/* ==================== 案例 - 板块二 Start ==================== */
.case-section2 .category {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.case-section2 .category .cate-item {
  padding: 0.52vw 0.78vw;
  font-size: 0.83vw;
  color: #fff;
  border-radius: 5.21vw;
  overflow: hidden;
  font-family: "Outfit-Light";
  margin-right: 1.56vw;
  margin-top: 0.5vw;
  margin-bottom: 0.5vw;
  cursor: pointer;
  transition: background-color 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-section2 .category .cate-item:last-child {
  margin-right: 0;
}
.case-section2 .category .cate-item:hover,
.case-section2 .category .cate-item.active {
  background-color: #b35942;
}
@media screen and (min-width: 1100px) {
  .case-section2 {
    padding-bottom: 6.51vw;
  }
  .case-section2 .category {
    margin-bottom: 11.77vw;
  }
}
@media screen and (max-width: 1100px) {
  .case-section2 {
    padding-top: 20px;
  }
  .case-section2 .category {
    margin-bottom: 30px;
    justify-content: flex-start;
  }
  .case-section2 .category .cate-item {
    width: 48%;
    padding: 2vw 1vw;
    text-align: center;
    font-size: 3.2vw;
    margin-right: 0;
    margin-top: 1vw;
    margin-bottom: 1vw;
  }
  .case-section2 .category .cate-item:nth-child(2n) {
    margin-left: 4%;
  }
}
/* ==================== 案例 - 板块二 End ==================== */
/* ==================== 案例1 - 板块一 Start ==================== */
.case2-section1 .info .text2 {
  font-family: "Outfit-Light";
}
.case2-section1 .info .arrow {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 7.29vw;
  animation: jump 1s infinite ease-in-out alternate;
}
.case2-section1 .info .arrow:before,
.case2-section1 .info .arrow:after {
  content: "";
  display: block;
  width: 0.52vw;
  height: 0.52vw;
  border-width: 4px;
  border-color: #868483;
  border-bottom-style: solid;
  border-right-style: solid;
  transform: rotate(45deg);
}
.case2-section1 .info .arrow:after {
  margin-top: -2px;
}
@keyframes jump {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0.52vw);
  }
}
@media screen and (max-width: 1100px) {
  .case2-section1 .info {
    padding: 0 5.33vw;
  }
  .case2-section1 .info .arrow:before,
  .case2-section1 .info .arrow:after {
    width: 2.13vw;
    height: 2.13vw;
    border-width: 0.53vw;
  }
}
/* ==================== 案例1 - 板块一 End =================== */
/* ==================== 案例2 - 板块二 Starr ==================== */
.case2-section2 {
  overflow: hidden;
}
.case2-section2 .content {
  font-family: "Outfit-Light";
  font-size: 1.15vw;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
.case2-section2 .item {
  width: 100%;
}
.case2-section2 .item .info {
  font-family: "Outfit-Light";
  font-size: 1.15vw;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 1100px) {
  .case2-section2 {
    padding-top: 8.85vw;
    padding-bottom: 9.9vw;
  }
  .case2-section2 .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .case2-section2 .item:first-child ~ .item {
    margin-top: 5.73vw;
  }
  .case2-section2 .item .image {
    width: 36.98vw;
    flex-shrink: 0;
  }
  .case2-section2 .item:nth-child(2n-1) .image {
    margin-left: 7.08vw;
    order: 2;
  }
  .case2-section2 .item:nth-child(2n) .image {
    margin-right: 7.08vw;
  }
}
@media screen and (max-width: 1100px) {
  .case2-section2 {
    padding: 10.67vw 0;
  }
  .case2-section2 .item:first-child ~ .item {
    margin-top: 10vw;
  }
  .case2-section2 .item .info {
    font-size: 3.73vw;
    margin-top: 5.33vw;
  }
}
/* ==================== 案例2 - 板块二 End ==================== */
/* ==================== 可持续性 - 通用样式 Start ==================== */
.sustainability-title {
  font-family: "Outfit-Bold";
  font-size: 44px;
  line-height: 1.2;
  color: #fff;
  display: block;
  text-align: center;
}
.sustainability-desc {
  display: block;
  text-align: center;
  font-family: "Outfit-Regular";
  font-size: 22px;
  line-height: 1.6;
  color: #fff;
  margin-top: 40px;
}
@media screen and (max-width: 1100px) {
  .sustainability-title {
    font-size: 6.93vw;
  }
  .sustainability-desc {
    font-size: 3.73vw;
    margin-top: 5.33vw;
  }
  .sustainability-desc p {
    display: inline;
  }
}
/* ==================== 可持续性 - 通用样式 End ==================== */
/* ==================== 可持续性 - 板块一 Start ==================== */
.sustainability-section1 {
  position: relative;
  overflow: hidden;
}
.sustainability-section1 .info {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
}
.sustainability-section1 .text1 {
  font-family: "Outfit-Bold";
  font-size: 3vw;
  line-height: 1.2;
  color: #fff;
  display: block;
  text-align: center;
}
.sustainability-section1 .text2 {
  display: block;
  text-align: center;
  font-family: "Outfit-Regular";
  font-size: 1.35vw;
  line-height: 1.6;
  color: #fff;
  margin-top: 1.56vw;
}
@media screen and (min-width: 1100px) {
  .sustainability-section1 .info{
    width: 80%;
    left: 10%;
    transform: translateX(0);
  }
}
@media screen and (max-width: 1100px) {
  .sustainability-section1 .info {
    padding: 0 5.33vw;
  }
  .sustainability-section1 .text1 {
    font-size: 6.4vw;
  }
  .sustainability-section1 .bg-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .sustainability-section1 .bg-image img {
    width: auto;
    max-width: inherit;
    height: 80vw;
  }
  .sustainability-section1 .text2 {
    font-size: 3.2vw;
    margin-top: 2.67vw;
  }
  .sustainability-section1 .text2 p {
    display: inline;
  }
}
/* ==================== 可持续性 - 板块一 End ==================== */
/* ==================== 可持续性 - 板块二 Start ==================== */
.sustainability-section2 {
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #000;
  background-size: contain;
}
.sustainability-section2 .image {
  margin-top: 5.73vw;
  width: 40.63vw;
  margin-left: auto;
  margin-right: auto;
}
.sustainability-section2 .image img {
  border: 1px solid #494949;
}
.sustainability-section2 .image:after {
  content: "";
  display: block;
  width: 100%;
  height: 1.67vw;
  background: url(../images/img026.png) no-repeat center;
  background-size: 100%;
}
@media screen and (min-width: 1100px) {
  .sustainability-section2 {
    padding-top: 8.85vw;
    padding-bottom: 9.38vw;
    background-attachment: fixed;
  }
}
@media screen and (max-width: 1100px) {
  .sustainability-section2 {
    padding: 13.33vw 0;
    background-size: 100%;
  }
  .sustainability-section2 .image {
    width: 100%;
    margin-top: 10.67vw;
  }
  .sustainability-section2 .image:after {
    height: 8vw;
    background-size: auto 100%;
  }
}
/* ==================== 可持续性 - 板块二 End ==================== */
/* ==================== 可持续性 - 板块三 Start ==================== */
.sustainability-section3 {
  background-color: #1b1b1f;
}
.sustainability-section3 .image {
  border-radius: 0.52vw;
  border: 0.68vw solid #25252b;
}
.sustainability-section3 .sustainability-title,
.sustainability-section3 .sustainability-desc {
  text-align: left;
}
@media screen and (min-width: 1100px) {
  .sustainability-section3 {
    padding-top: 8.85vw;
    padding-bottom: 8.85vw;
  }
  .sustainability-section3 > .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sustainability-section3 .image {
    width: 39.58vw;
    flex-shrink: 0;
    margin-left: 5.73vw;
  }
  .sustainability-section3 .info {
    min-width: 0;
    flex-grow: 1;
  }
}
@media screen and (max-width: 1100px) {
  .sustainability-section3 {
    padding: 13.33vw 0;
  }
  .sustainability-section3 .image {
    margin-top: 10.67vw;
    border-width: 1.33vw;
    border-radius: 2.67vw;
  }
}
/* ==================== 可持续性 - 板块三 End ==================== */
/* ==================== 可持续性 - 板块四 Start ==================== */
.sustainability-section4 .itembox {
  margin-top: 4.17vw;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sustainability-section4 .item {
  position: relative;
  border-radius: 0.52vw;
  overflow: hidden;
  display: block;
}
.sustainability-section4 .item .title {
  font-size: 0.83vw;
  font-family: "Outfit-Regular";
  line-height: 1.6;
  color: #fff;
  text-align: left;
  padding: 1.56vw;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .sustainability-section4 {
    padding-top: 6.77vw;
    padding-bottom: 8.33vw;
  }
  .sustainability-section4 .item:nth-child(1) {
    width: 100%;
    margin-bottom: 1.82vw;
  }
  .sustainability-section4 .item:nth-child(2) {
    width: 42.71vw;
  }
  .sustainability-section4 .item:nth-child(3) {
    width: 34.84vw;
  }
}
@media screen and (max-width: 1100px) {
  .sustainability-section4 {
    padding: 13.33vw 0;
  }
  .sustainability-section4 .item {
    border-radius: 2.13vw;
    margin-top: 2.67vw;
  }
  .sustainability-section4 .item:first-child ~ .item {
    margin-top: 8vw;
  }
  .sustainability-section4 .item .title {
    font-size: 3.47vw;
    line-height: 1.4;
    position: static;
    padding: 0;
  }
}
/* ==================== 可持续性 - 板块四 End ==================== */
/* ==================== 可持续性 - 板块五 Start ==================== */
.sustainability-section5 {
  overflow: hidden;
  background-color: #1b1b1f;
}
.sustainability-section5 .itembox {
  margin-top: 4.17vw;
}
.sustainability-section5 .item {
  display: block;
}
.sustainability-section5 .item .image {
  border-radius: 0.52vw;
  overflow: hidden;
}
.sustainability-section5 .item .title {
  margin-top: 1.56vw;
  line-height: 1.8;
  text-align: center;
  font-family: "Outfit-Regular";
  font-size: 0.83vw;
  color: #fff;
}
@media screen and (min-width: 1100px) {
  .sustainability-section5 {
    padding-top: 6.25vw;
    padding-bottom: 7.29vw;
  }
}
@media screen and (max-width: 1100px) {
  .sustainability-section5 {
    padding: 13.33vw 0;
  }
  .sustainability-section5 .itembox {
    margin-top: 8vw;
  }
  .sustainability-section5 .item {
    width: 100%;
    margin: 0 !important;
  }
  .sustainability-section5 .item .image {
    border-radius: 2.13vw;
    overflow: hidden;
  }
  .sustainability-section5 .item:nth-child(1) ~ .item {
    margin-top: 8vw !important;
  }
  .sustainability-section5 .item .title {
    margin-top: 3.73vw;
    font-size: 3.2vw;
  }
}
/* ==================== 可持续性 - 板块五 End ==================== */
/* ==================== 关于我们 - 板块一 Start ==================== */
.about-section1 {
  position: relative;
  overflow: hidden;
}
.about-section1 .info {
  position: absolute;
  top: 19.06vw;
  left: 0;
  width: 100%;
}
.about-section1 .text1 {
  font-family: "Outfit-Bold";
  font-size: 2.4vw;
  line-height: 1.4;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .about-section1 .text1 {
    font-size: 4.8vw;
  }
  .about-section1 .info {
    top: 0;
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
  }
  .about-section1 .bg-image {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-section1 .bg-image img {
    width: auto;
    max-width: inherit;
    height: 80vw;
  }
}
/* ==================== 关于我们 - 板块一 End ==================== */
/* ==================== 关于我们 - 板块二 Start ==================== */
.about-section2 .item .text1 {
  font-family: "Outfit-Bold";
  font-size: 1.88vw;
  line-height: 1.2;
  color: #fff;
}
.about-section2 .item .text2 {
  margin-top: 2.6vw;
  font-family: "Outfit-Regular";
  font-size: 0.94vw;
  line-height: 1.8;
  color: #fff;
  /* word-break: break-all; */
}
@media screen and (min-width: 1100px) {
  .about-section2 {
    padding-top: 7.29vw;
    padding-bottom: 7.81vw;
  }
  .about-section2 .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .about-section2 .itembox {
    width: 30.21vw;
    flex-shrink: 0;
  }
  .about-section2 .item:first-child ~ .item {
    margin-top: 6.25vw;
  }
  .about-section2 .image {
    width: 36.46vw;
    flex-shrink: 0;
    border-radius: 0.52vw;
    overflow: hidden;
  }
}
@media screen and (max-width: 1100px) {
  .about-section2 {
    padding: 0 0 5.33vw;
  }
  .about-section2 .item {
    margin-bottom: 8vw;
  }
  .about-section2 .item .text1 {
    font-size: 5.87vw;
  }
  .about-section2 .item .text2 {
    margin-top: 5.33vw;
    font-size: 3.2vw;
  }
  .about-section2 .image {
    border-radius: 2.13vw;
  }
}
/* ==================== 关于我们 - 板块二 End ==================== */
/* ==================== 关于我们 - 板块三 Start ==================== */
.about-section3 .left-body {
  background: url(../images/img077.jpg) no-repeat center;
  background-size: cover;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.about-section3 .left-body .icon {
  width: 9.58vw;
  flex-shrink: 0;
  margin-bottom: 3.65vw;
}
.about-section3 .left-body .text1 {
  line-height: 1;
  font-family: "Outfit-Black";
  font-size: 4.48vw;
  background-image: linear-gradient(-70deg, #f97367 30%, #2897ff 60%);
  background-image: -webkit-linear-gradient(-70deg, #f97367 30%, #2897ff 60%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.about-section3 .left-body .text2 {
  font-family: "Outfit-Light";
  font-size: 0.94vw;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.2;
  margin-top: 0.78vw;
}
.about-section3 .right-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-section3 .item {
  padding: 3.65vw 2.6vw;
  border-radius: 0.52vw;
  overflow: hidden;
}
.about-section3 .item:nth-child(1),
.about-section3 .item:nth-child(2) {
  width: 48%;
  background-image: linear-gradient(140deg, #261f23 30%, #1c212a);
}
.about-section3 .item:nth-child(3) {
  width: 100%;
  background: url(../images/img087.jpg) no-repeat center;
  background-size: 100%;
  margin-top: 1.56vw;
}
.about-section3 .item .text1 {
  font-size: 2.19vw;
  line-height: 1.2;
  font-family: "Outfit-Regular";
  background-image: linear-gradient(to bottom, #2897ff 50%, #f97367 90%);
  background-image: -webkit-linear-gradient(to bottom, #2897ff 50%, #f97367 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.about-section3 .item .text1 span {
  vertical-align: -0.36vw;
  display: inline-block;
  line-height: 1;
  font-family: "Outfit-Black";
  font-size: 4.48vw;
  background-image: linear-gradient(-70deg, #f97367 30%, #2897ff 60%);
  background-image: -webkit-linear-gradient(-70deg, #f97367 30%, #2897ff 60%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.about-section3 .item .text2 {
  margin-top: 0.52vw;
  font-size: 0.94vw;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Outfit-Light";
}
.about-section3 .item .text3 {
  font-family: "Outfit-Regular";
  font-size: 2.19vw;
  line-height: 1;
  color: #fff;
}
.about-section3 .item .text3 + .text2 {
  margin-top: 1.04vw;
}
@media screen and (min-width: 1100px) {
  .about-section3 {
    padding-bottom: 7.81vw;
  }
  .about-section3 > .mxw-box {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
  .about-section3 .left-body {
    width: 39.06vw;
    flex-shrink: 0;
    border-radius: 0.52vw;
    overflow: hidden;
  }
  .about-section3 .right-body {
    width: 39.06vw;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 1100px) {
  .about-section3 .left-body {
    flex-flow: row;
    padding: 8vw 0;
    background-position: center bottom;
    border-radius: 8px;
  }
  .about-section3 .left-body .icon {
    margin-bottom: 0;
    margin-right: 5.33vw;
    width: 10.67vw;
  }
  .about-section3 .left-body .text1 {
    font-size: 8vw;
    background-image: linear-gradient(-70deg, #f97367 10%, #2897ff 60%);
    background-image: -webkit-linear-gradient(-70deg, #f97367 10%, #2897ff 60%);
  }
  .about-section3 .left-body .text2 {
    font-size: 3.47vw;
  }
  .about-section3 .right-body {
    align-items: stretch;
    margin-top: 2.67vw;
  }
  .about-section3 .item {
    border-radius: 8px;
    text-align: center;
  }
  .about-section3 .item:last-child {
    margin-top: 2.67vw;
  }
  .about-section3 .item .text1 {
    font-size: 5.87vw;
  }
  .about-section3 .item .text1 span {
    font-size: 8vw;
    margin-right: 1.33vw;
  }
  .about-section3 .item .text2 {
    font-size: 3.47vw;
    margin-top: 2.67vw;
  }
  .about-section3 .item .text3 {
    margin-top: 2.67vw;
    font-size: 3.73vw;
  }
}
/* ==================== 关于我们 - 板块三 End ==================== */
/* ==================== 关于我们 - 板块四 Start ==================== */
.about-section4 {
  position: relative;
  overflow: hidden;
}
.about-section4 .text1 {
  font-family: "Outfit-Bold";
  font-size: 3.44vw;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 2.6vw;
}
.about-section4 .itembox {
  position: relative;
  background: url(../images/img080.jpg) no-repeat center;
  background-size: cover;
  border-radius: 0.52vw;
  overflow: hidden;
}
.about-section4 .image {
  border-radius: 10px;
  overflow: hidden;
}
.about-section4 .image img {
  width: 100%;
}
.about-section4 .item {
  padding-left: 1.04vw;
  position: relative;
}
.about-section4 .item:before {
  content: "";
  display: block;
  width: 0.52vw;
  height: 0.52vw;
  border-radius: 100%;
  background-color: #b35942;
  position: absolute;
  left: 0;
  top: 0;
}
.about-section4 .item:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0.21vw;
  background-color: #b35942;
}
.about-section4 .item .year {
  font-size: 0.83vw;
  color: #b35942;
  line-height: 1.2;
  font-family: "Outfit-Medium";
  margin-bottom: 0.52vw;
}
.about-section4 .item .content {
  font-family: "Outfit-ExtraLight";
  font-size: 0.63vw;
  line-height: 1.6;
  color: #bab8bb;
}
@media screen and (min-width: 1100px) {
  .about-section4 .itembox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    height: 45.83vw;
  }
  .about-section4 .itembox:after {
    content: "";
    display: block;
    background: url(../images/img082.png) no-repeat center;
    background-size: 100%;
    width: 72.92vw;
    height: 31.35vw;
    position: absolute;
    top: 2.6vw;
    left: 1.56vw;
    z-index: 3;
    pointer-events: none;
  }
  .about-section4 .item {
    position: absolute;
    z-index: 2;
    width: 13.02vw;
  }
  .about-section4 .item .year {
    margin-top: -0.21vw;
  }
  .about-section4 .item:nth-child(2n):after,
  .about-section4 .item:nth-child(9):after {
    height: 3.65vw;
    transform: translateY(-100%);
  }
  .about-section4 .item:nth-child(1) {
    left: 2.08vw;
    top: 15.63vw;
    width: 14.06vw;
    min-height: 17.71vw;
  }
  .about-section4 .item:nth-child(2) {
    left: 4.17vw;
    bottom: 0.14vw;
    width: 14.06vw;
    min-height: 10.42vw;
  }
  .about-section4 .item:nth-child(2):after {
    height: 2.08vw;
  }
  .about-section4 .item:nth-child(3) {
    left: 18.23vw;
    top: 14.06vw;
    width: 13.54vw;
    height: 17.19vw;
  }
  .about-section4 .item:nth-child(4) {
    left: 21.35vw;
    bottom: 2.85vw;
    min-height: 10.42vw;
  }
  .about-section4 .item:nth-child(4):after {
    height: 2.08vw;
  }
  .about-section4 .item:nth-child(5) {
    left: 34.38vw;
    top: 9.9vw;
    width: 14.06vw;
    min-height: 17.19vw;
  }
  .about-section4 .item:nth-child(6) {
    right: 29.69vw;
    bottom: 4.39vw;
    min-height: 13.02vw;
  }
  .about-section4 .item:nth-child(6):after {
    height: 2.08vw;
  }
  .about-section4 .item:nth-child(7) {
    right: 15.1vw;
    top: 2.6vw;
    width: 14.06vw;
    min-height: 17.71vw;
  }
  .about-section4 .item:nth-child(8) {
    right: 14.06vw;
    bottom: 7.65vw;
    min-height: 15.63vw;
  }
  .about-section4 .item:nth-child(9) {
    right: 1.04vw;
    top: 11.98vw;
    width: 10.42vw;
    min-height: 18.23vw;
  }
}
@media screen and (max-width: 1850px) {
  .about-section4 .item .content {
    zoom: 0.9;
  }
}
@media screen and (max-width: 1660px) {
  .about-section4 .item .content {
    zoom: 0.8;
  }
}
@media screen and (max-width: 1480px) {
  .about-section4 .item .content {
    zoom: 0.7;
  }
}
@media screen and (max-width: 1300px) {
  .about-section4 .item .content {
    zoom: 0.6;
  }
}
@media screen and (max-width: 1100px) {
  .about-section4 {
    padding-top: 13.33vw;
    padding-bottom: 13.33vw;
    background: url(../images/img184.jpg) no-repeat center;
    background-size: cover;
  }
  .about-section4 .itembox {
    background: none;
  }
  .about-section4 .item {
    padding-left: 5.33vw;
    padding-bottom: 10.67vw;
  }
  .about-section4 .item:before {
    width: 2.67vw;
    height: 2.67vw;
    top: 1.6vw;
  }
  .about-section4 .item:after {
    width: 0.27vw;
    left: 1.07vw;
    top: 1.6vw;
  }
  .about-section4 .item .content {
    zoom: 1;
    font-size: 3.47vw;
    line-height: 1.6;
  }
  .about-section4 .item .year {
    font-size: 4.8vw;
    margin-bottom: 2.67vw;
  }
  .about-section4 .text1 {
    font-size: 5.87vw;
    text-align: center;
    margin-bottom: 5.33vw;
  }
}
/* ==================== 关于我们 - 板块四 End ==================== */
/* ==================== 关于我们 - 板块五 Start ==================== */
.about-section5 h1 {
  font-size: 3.44vw;
  color: #fff;
  font-family: "Outfit-Bold";
  margin-bottom: 4.17vw;
  line-height: 1;
}
.about-section5 > .mxw-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-section5 .tabs .tab-item {
  font-size: 0.94vw;
  color: #fff;
  line-height: 1;
  transition: color 0.4s;
  margin-bottom: 1.04vw;
  cursor: pointer;
  position: relative;
}
.about-section5 .tabs .tab-item:last-child {
  margin-bottom: 0;
}
.about-section5 .tabs .tab-item.active {
  color: #b35942;
}
.about-section5 .tabs .tab-item.active:before {
  width: 1.04vw;
}
.about-section5 .tabs .tab-item:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 2px;
  background-color: #b35942;
  vertical-align: 0.26vw;
  margin-right: 0.52vw;
  transition: all 0.4s;
}
.about-section5 .swiper-text-box {
  overflow: hidden;
  height: 4.17vw;
}
.about-section5 .about-section5-text {
  height: 2.08vw;
  overflow: visible;
  user-select: none;
}
.about-section5 .about-section5-text .swiper-slide {
  height: 1.56vw;
  font-size: 0.94vw;
  color: #fff;
  line-height: 1;
  transition: color 0.4s;
  cursor: pointer;
  position: relative;
  font-family: "Outfit-Light";
}
.about-section5 .about-section5-text .swiper-slide:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 2px;
  background-color: #b35942;
  vertical-align: 0.26vw;
  margin-right: 0;
  transition: all 0.4s;
}
.about-section5 .about-section5-text .my-slide-thumb-active {
  color: #b35942;
}
.about-section5 .about-section5-text .my-slide-thumb-active:before {
  width: 1.04vw;
  margin-right: 0.52vw;
}
.about-section5 .about-section5-swiper {
  width: 58vw;
  flex-shrink: 0;
  margin: 0;
}
.about-section5 .about-section5-swiper .swiper-slide {
  width: 13.54vw;
}
.about-section5 .about-section5-swiper .swiper-slide-active .item {
  border-color: #b35942;
}
.about-section5 .about-section5-swiper .item {
  border: solid 2px transparent;
}
.about-section5 .about-section5-swiper .item img {
  width: 100%;
}
.about-section5 .btn-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 4.69vw;
}
.about-section5 .btn-group .swiper-btn-prev,
.about-section5 .btn-group .swiper-btn-next {
  width: 2.08vw;
  height: 2.08vw;
  border-radius: 100%;
  border: solid 1px #c9c9c9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.4s;
}
.about-section5 .btn-group .swiper-btn-prev:hover,
.about-section5 .btn-group .swiper-btn-next:hover {
  background-color: #b35942;
}
.about-section5 .btn-group .swiper-btn-prev:hover:after,
.about-section5 .btn-group .swiper-btn-next:hover:after {
  border-color: #fff;
}
.about-section5 .btn-group .swiper-btn-prev:after,
.about-section5 .btn-group .swiper-btn-next:after {
  content: "";
  display: block;
  width: 0.52vw;
  height: 0.52vw;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg);
  margin-left: 0.26vw;
  transition: border-color 0.4s;
}
.about-section5 .btn-group .swiper-btn-prev {
  margin-right: 1.04vw;
}
.about-section5 .btn-group .swiper-btn-next {
  transform: rotateY(180deg);
}
@media screen and (min-width: 1100px) {
  .about-section5 {
    padding-top: 6.25vw;
    padding-bottom: 6.25vw;
  }
}
@media screen and (max-width: 1100px) {
  .about-section5 {
    padding: 8vw 0;
  }
  .about-section5 > .mxw-box {
    display: block;
  }
  .about-section5 h1 {
    font-size: 5.33vw;
    margin-bottom: 5.33vw;
  }
  .about-section5 .tabs {
    display: flex;
    align-items: center;
    margin-bottom: 5.33vw;
  }
  .about-section5 .tabs .tab-item {
    width: 32%;
    font-size: 4vw;
    text-align: center;
    margin-bottom: 0;
    padding: 2.67vw 0;
    position: relative;
  }
  .about-section5 .tabs .tab-item.active {
    font-weight: bold;
  }
  .about-section5 .tabs .tab-item.active:before {
    width: 100%;
  }
  .about-section5 .tabs .tab-item:before {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .about-section5 .tabs .tab-item:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .about-section5 .about-section5-swiper {
    width: 100%;
  }
  .about-section5 .about-section5-swiper .swiper-slide {
    width: 44vw;
  }
  .about-section5 .swiper-text-box {
    height: auto;
  }
  .about-section5 .about-section5-text {
    margin-bottom: 5.33vw;
    height: auto;
    width: 50%;
    margin-left: 0;
    margin-right: auto;
  }
  .about-section5 .about-section5-text .swiper-slide {
    width: 32%;
    font-size: 4vw;
    text-align: center;
    margin-bottom: 0;
    padding: 2.67vw 0;
    position: relative;
    height: auto;
  }
  .about-section5 .about-section5-text .swiper-slide:before {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .about-section5 .about-section5-text .swiper-slide-active {
    font-weight: bold;
  }
  .about-section5 .about-section5-text .swiper-slide-active:before {
    width: 100%;
  }
  .about-section5 .btn-group {
    justify-content: center;
  }
  .about-section5 .btn-group .swiper-btn-prev {
    margin-right: 2.67vw;
  }
  .about-section5 .btn-group .swiper-btn-prev,
  .about-section5 .btn-group .swiper-btn-next {
    width: 8vw;
    height: 8vw;
  }
  .about-section5 .btn-group .swiper-btn-prev:after,
  .about-section5 .btn-group .swiper-btn-next:after {
    width: 1.6vw;
    height: 1.6vw;
  }
}
/* ==================== 关于我们 - 板块五 End ==================== */
/* ==================== 新闻详情 - banner Start ==================== */
@media screen and (min-width: 1100px) {
  .news-desc-ny-banner .info {
    height: auto;
    top: 10.42vw;
  }
}
/* ==================== 新闻详情 - banner End ==================== */
/* ==================== 新闻详情 - 板块一 Start ==================== */
.news-desc-section1 {
  overflow: hidden;
}
.news-desc-section1 > .mxw-box {
  background-color: #1b1b1f;
  border-radius: 0.52vw;
  overflow: hidden;
}
.news-desc-section1 h1 {
  font-size: 1.98vw;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.82vw;
  text-align: center;
  font-family: "Outfit-Bold";
}
.news-desc-section1 .tool {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.65vw;
}
.news-desc-section1 .tool .item {
  margin-right: 1.3vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.news-desc-section1 .tool .item:last-child {
  margin-right: 0;
}
.news-desc-section1 .tool .item i {
  font-size: 0.73vw;
  color: #616164;
  margin-right: 0.31vw;
}
.news-desc-section1 .tool .item .text {
  font-size: 0.73vw;
  color: #fff;
  font-family: "Outfit-Light";
}
.news-desc-section1 .tool ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-desc-section1 .tool ul li {
  margin-right: 0.42vw;
}
.news-desc-section1 .tool ul li:last-child {
  margin-right: 0;
}
.news-desc-section1 .tool ul li .iconfont {
  color: #606063;
  font-size: 1.04vw;
  transition: color 0.4s;
}
.news-desc-section1 article {
  font-family: "Outfit-Light";
  font-size: 0.83vw;
  line-height: 1.6;
  color: #dddddd;
}
.news-desc-section1 article img {
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .news-desc-section1 {
    margin-bottom: 4.69vw;
    margin-top: -11.98vw;
  }
  .news-desc-section1 > .mxw-box {
    padding: 5.73vw 3.13vw 6.77vw;
  }
}
@media screen and (max-width: 1100px) {
  .news-desc-section1 {
    padding: 0 5.33vw;
  }
  .news-desc-section1 > .mxw-box {
    padding: 8vw 5.33vw;
  }
  .news-desc-section1 h1 {
    font-size: 6.4vw;
    margin-bottom: 5.33vw;
  }
  .news-desc-section1 .tool {
    margin-bottom: 8vw;
  }
  .news-desc-section1 .tool .item {
    margin-right: 4vw;
  }
  .news-desc-section1 .tool .item:last-child {
    margin-right: 0;
  }
  .news-desc-section1 .tool .item i {
    font-size: 3.73vw;
    margin-right: 2.67vw;
  }
  .news-desc-section1 .tool .item .text {
    font-size: 3.73vw;
  }
  .news-desc-section1 article {
    font-size: 3.73vw;
  }
}
/* ==================== 新闻详情 - 板块一 End ==================== */
/* ==================== 新闻详情 - 板块二 Start ==================== */
.news-desc-section2 {
  overflow: hidden;
}
.news-desc-section2 h1 {
  font-family: "Outfit-Light";
  font-size: 2.19vw;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 2.08vw;
}
.news-desc-section2 .item:hover .title {
  color: #b35942;
}
.news-desc-section2 .item .image {
  border-radius: 0.52vw 0.52vw 0 0;
}
.news-desc-section2 .item .info {
  margin-top: 2.08vw;
}
.news-desc-section2 .item .title {
  font-size: 0.94vw;
  color: #fff;
  font-family: "Outfit-Regular";
  line-height: 1.2;
  margin-bottom: 1.04vw;
  transition: color 0.4s;
}
.news-desc-section2 .item .tool {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.news-desc-section2 .item .tool-item {
  margin-right: 1.04vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.news-desc-section2 .item .tool-item:last-child {
  margin-right: 0;
}
.news-desc-section2 .item .iconfont {
  font-size: 0.73vw;
  color: #fff;
  margin-right: 0.31vw;
}
.news-desc-section2 .item .text {
  font-size: 0.73vw;
  color: #999;
  font-family: "Outfit-Light";
}
.news-desc-section2 .item .desc {
  margin-top: 1.04vw;
  font-family: "Outfit-Light";
  font-size: 0.73vw;
  line-height: 1.4;
  color: #626262;
}
@media screen and (min-width: 1100px) {
  .news-desc-section2 {
    padding-bottom: 6.25vw;
  }
  .news-desc-section2 .item:nth-child(3) ~ .item {
    margin-top: 3.13vw;
  }
}
@media screen and (max-width: 1100px) {
  .news-desc-section2 {
    padding: 10.67vw 0;
  }
  .news-desc-section2 h1 {
    font-size: 6.4vw;
    margin-bottom: 5.33vw;
  }
  .news-desc-section2 .item {
    width: 100%;
    margin: 0 !important;
  }
  .news-desc-section2 .item:first-child ~ .item {
    margin-top: 8vw !important;
  }
  .news-desc-section2 .item .image {
    border-radius: 2.13vw 2.13vw 0 0;
    margin-bottom: 5.33vw;
    overflow: hidden;
  }
  .news-desc-section2 .item .title {
    font-size: 4.8vw;
    margin-bottom: 2.67vw;
  }
  .news-desc-section2 .item .tool-item {
    margin-right: 5.33vw;
  }
  .news-desc-section2 .item .tool-item:last-child {
    margin-right: 0;
  }
  .news-desc-section2 .item .iconfont {
    font-size: 3.2vw;
    margin-right: 2.67vw;
  }
  .news-desc-section2 .item .text {
    font-size: 3.2vw;
  }
  .news-desc-section2 .item .desc {
    margin-top: 2.67vw;
    font-size: 3.47vw;
  }
}
/* ==================== 新闻详情 - 板块二 End ==================== */
/* ==================== 联系我们 - 板块一 Start ==================== */
.contact-section1 {
  overflow: hidden;
  background-color: #000;
}
.contact-section1 h1 {
  font-size: 2.81vw;
  color: #fff;
  font-family: "Outfit-Bold";
  line-height: 1;
  margin-bottom: 0.78vw;
}
.contact-section1 h2 {
  font-family: "Outfit-Light";
  line-height: 1.4;
  color: #fff;
  font-size: 0.94vw;
}
.contact-section1 .left-body .item {
  max-width: 22.4vw;
  margin-bottom: 3.13vw;
}
.contact-section1 .left-body .item:last-child {
  margin-bottom: 0;
}
.contact-section1 .left-body .item li {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.04vw;
}
.contact-section1 .left-body .item li:last-child {
  margin-bottom: 0;
}
.contact-section1 .left-body .item .icon {
  width: 1.04vw;
  flex-shrink: 0;
  margin-right: 0.52vw;
}
.contact-section1 .left-body .item .text {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact-section1 .left-body .item .text strong {
  font-size: 0.94vw;
  font-weight: 400;
  font-family: "Outfit-Light";
  color: #fff;
}
.contact-section1 .left-body .item .text span {
  color: #fff;
  font-family: "Outfit-Light";
  font-size: 0.83vw;
  line-height: 1.4;
}
.contact-section1 .left-body .item .text span.style1 {
  color: #666;
  max-width: 17.19vw;
  margin-left: 0.52vw;
}
.contact-section1 .left-body .item .text1 {
  width: 100%;
  font-family: "Outfit-Regular";
  font-size: 1.15vw;
  margin-bottom: 1.04vw;
  line-height: 1.1;
  color: #fefefe;
}
.contact-section1 .right-body {
  background-color: #000000;
}
.contact-section1 form {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  margin-top: 3.13vw;
}
.contact-section1 form input {
  height: 2.81vw;
}
.contact-section1 form textarea {
  height: 6.25vw;
  padding: 0.78vw 1.04vw;
}
.contact-section1 form input,
.contact-section1 form textarea {
  width: 100%;
  display: block;
  background-color: #161619;
  font-size: 0.73vw;
  font-family: "Outfit-Regular";
  border: 1px solid #333333;
  color: #fff;
  border-radius: 2px;
  overflow: hidden;
  outline: none;
}
.contact-section1 form input:hover,
.contact-section1 form textarea:hover,
.contact-section1 form input:focus,
.contact-section1 form textarea:focus,
.contact-section1 form input:focus-visible,
.contact-section1 form textarea:focus-visible {
  border-color: #4e4b4b !important;
}
.contact-section1 form input::-webkit-input-placeholder,
.contact-section1 form textarea::-webkit-input-placeholder {
  color: #ccc;
}
.contact-section1 form input::-moz-placeholder,
.contact-section1 form textarea::-moz-placeholder {
  color: #ccc;
}
.contact-section1 form input:-moz-placeholder,
.contact-section1 form textarea:-moz-placeholder {
  color: #ccc;
}
.contact-section1 form input:-ms-input-placeholder,
.contact-section1 form textarea:-ms-input-placeholder {
  color: #ccc;
}
.contact-section1 form button {
  width: 11.77vw;
  height: 2.71vw;
  background-color: #b35942;
  font-size: 0.73vw;
  color: #fff;
  font-family: "Outfit-Regular";
  margin-top: 1.04vw;
  border-radius: 4px;
}
.contact-section1 form textarea {
  height: 5.21vw;
  resize: none;
  margin-top: 2.5%;
}
@media screen and (min-width: 1100px) {
  .contact-section1 > .mxw-box {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
  .contact-section1 .contact-itembox {
    width: 22.4vw;
  }
  .contact-section1 .left-body {
    flex-shrink: 0;
    padding-top: 9.64vw;
    padding-bottom: 11.98vw;
    padding-right: 5.21vw;
  }
  .contact-section1 .left-body .head {
    margin-bottom: 4vw;
  }
  .contact-section1 .left-body .item:nth-child(2) {
    margin-bottom: 40px;
  }
  .contact-section1 .right-body {
    min-width: 0;
    flex-grow: 1;
    padding-top: 9.64vw;
    padding-left: 9.38vw;
    padding-right: 9.9vw;
    margin-right: -9.9vw;
  }
  .contact-section1 form input {
    width: 48.75%;
    padding: 0 1vw;
  }
  .contact-section1 form input:nth-child(2n) {
    margin-left: 2.5%;
  }
  .contact-section1 form input:nth-child(2) ~ input {
    margin-top: 2.5%;
  }
}
@media screen and (max-width: 1100px) {
  .contact-section1 {
    padding: 13.33vw 0;
  }
  .contact-section1 .head {
    text-align: center;
    margin-bottom: 8vw;
  }
  .contact-section1 h1 {
    font-size: 5.87vw;
    margin-bottom: 2.67vw;
  }
  .contact-section1 h2 {
    font-size: 3.73vw;
  }
  .contact-section1 .left-body .item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10.67vw;
  }
  .contact-section1 .left-body .item li {
    margin-bottom: 2.67vw;
  }
  .contact-section1 .left-body .item .icon {
    width: 4.8vw;
    margin-right: 2.13vw;
    margin-top: 0;
  }
  .contact-section1 .left-body .item .text span,
  .contact-section1 .left-body .item .text strong {
    font-size: 4.27vw;
  }
  .contact-section1 .left-body .item .text span {
    margin-left: 2.67vw;
  }
  .contact-section1 .left-body .item .text span.style1 {
    max-width: 79%;
    margin-left: 2.67vw;
  }
  .contact-section1 .left-body .item .text1 {
    font-size: 4.8vw;
    margin-bottom: 5.33vw;
  }
  .contact-section1 .right-body {
    padding: 8vw 4vw;
    margin-top: 8vw;
  }
  .contact-section1 .right-body h1,
  .contact-section1 .right-body h2 {
    text-align: center;
  }
  .contact-section1 form {
    width: 100%;
  }
  .contact-section1 form .layui-form-select .layui-edge {
    width: 2.13vw;
    height: 2.13vw;
    margin-top: -2.13vw;
  }
  .contact-section1 form .layui-row {
    margin-bottom: 0;
    margin-top: 0;
  }
  .contact-section1 form .layui-col-md4,
  .contact-section1 form .layui-col-md8 {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 2.67vw;
  }
  .contact-section1 form textarea {
    margin-top: 0;
    height: 32vw;
    padding: 2.67vw 2.67vw;
  }
  .contact-section1 form input {
    margin-bottom: 2.5%;
    padding: 0 2.67vw;
  }
  .contact-section1 form input,
  .contact-section1 form textarea {
    font-size: 3.2vw;
    height: 10.67vw;
  }
  .contact-section1 form button {
    width: 100%;
    font-size: 3.73vw;
    height: auto;
    line-height: inherit;
    padding: 2.13vw 2.67vw;
    margin-top: 2.67vw;
  }
}
/* ==================== 联系我们 - 板块一 End ==================== */
/* ==================== 下载页面 - 板块一 Start ==================== */
.download-section1 .text1 {
  font-size: 2.19vw;
  font-family: "Outfit-Bold";
  color: #fff;
  line-height: 1.4;
  margin-bottom: 3.13vw;
}
.download-section1 .text2 {
  background-color: #161619;
  padding: 2.08vw;
  line-height: 1.6;
  position: relative;
}
.download-section1 .text2 p {
  font-family: "Outfit-Light";
  font-size: 0.94vw;
  color: #cdcdcd;
  padding-left: 1.3vw;
  position: relative;
}
.download-section1 .text2 p:before {
  content: "";
  display: block;
  width: 0.42vw;
  height: 0.42vw;
  border-radius: 100%;
  background-color: #b35942;
  position: absolute;
  top: 0.52vw;
  left: 0;
}
@media screen and (min-width: 1100px) {
  .download-section1 {
    padding-top: 6.25vw;
    padding-bottom: 6.77vw;
  }
}
@media screen and (max-width: 1100px) {
  .download-section1 {
    padding: 10.67vw 0;
  }
  .download-section1 .text1 {
    font-size: 4.8vw;
    margin-bottom: 8vw;
  }
  .download-section1 .text1 p {
    display: inline;
  }
  .download-section1 .text2 {
    padding: 8vw 4vw;
    font-size: 3.73vw;
    line-height: 1.8;
  }
  .download-section1 .text2 p {
    padding-left: 5.33vw;
    font-size: inherit;
  }
  .download-section1 .text2 p:before {
    width: 1.6vw;
    height: 1.6vw;
    left: 0;
    top: 2.13vw;
  }
}
/* ==================== 下载页面 - 板块一 End ==================== */
/* ==================== 下载页面 - 板块二 Start ==================== */
.download-section2 h1 {
  font-size: 2.81vw;
  font-family: "Outfit-Bold";
  color: #fff;
  line-height: 1.1;
  margin-bottom: 3.13vw;
  font-weight: 400;
}
.download-section2 .body {
  background-color: #161619;
  padding: 3.65vw;
}
.download-section2 table {
  width: 100%;
}
.download-section2 tr {
  border-bottom: 1px solid #2e2e30;
}
.download-section2 td {
  font-size: 0.94vw;
  font-family: "Outfit-Light";
  color: #cdcdcd;
  padding: 1.3vw 0;
}
.download-section2 td a {
  color: inherit;
}
.download-section2 td a:hover {
  color: #b35942;
}
.download-section2 td:nth-child(2) {
  color: #606061;
  padding-left: 6.25vw;
  position: relative;
}
.download-section2 td:nth-child(2):after {
  content: "";
  background-color: #606061;
  height: 0.63vw;
  width: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.download-section2 td:nth-child(3) {
  width: 1.88vw;
  flex-grow: inherit;
}
.download-section2 td .iconfont {
  width: 1.88vw;
  height: 1.88vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78vw;
  color: #707070;
  transition: all 0.4s;
  border-radius: 100%;
  flex-shrink: 0;
}
.download-section2 td .iconfont:before {
  transition: all 0.4s;
}
.download-section2 td .iconfont:hover {
  background-color: #b35942;
}
@media screen and (min-width: 1100px) {
  .download-section2 {
    padding-bottom: 6.25vw;
  }
}
@media screen and (max-width: 1100px) {
  .download-section2 {
    padding-bottom: 10.67vw;
  }
  .download-section2 h1 {
    font-size: 4.8vw;
    margin-bottom: 5.33vw;
  }
  .download-section2 .body {
    padding: 5.33vw 4vw;
  }
  .download-section2 td {
    font-size: 3.2vw;
    padding: 3.2vw 0;
  }
  .download-section2 td:nth-child(2) {
    padding-left: 8vw;
  }
  .download-section2 td:nth-child(2):after {
    height: 2.67vw;
    width: 0.27vw;
  }
  .download-section2 td:nth-child(3) {
    margin-left: 5.33vw;
  }
  .download-section2 td .iconfont {
    width: 8vw;
    height: 8vw;
    font-size: 3.73vw;
  }
}
/* ==================== 下载页面 - 板块二 End ==================== */
/* ==================== 下载页面 - 板块三 Start ==================== */
/* ==================== 下载页面 - 板块三 End ==================== */
/* ==================== 其他专题1 - 通用样式 Start ==================== */
.other1-title {
  font-size: 2.5vw;
  color: #fff;
  font-family: "Outfit-Bold";
  line-height: 1;
  text-align: center;
}
.other1-desc {
  font-size: 1.15vw;
  color: #d5d5d7;
  line-height: 1.6;
  text-align: center;
  margin-top: 1.8vw;
  font-family: "Outfit-Light";
}
@media screen and (max-width: 1100px) {
  .other1-title {
    font-size: 5.33vw;
    line-height: 1.2;
  }
  .other1-desc {
    font-size: 3.47vw;
    line-height: 1.6;
  }
  .other1-desc p {
    display: inline;
  }
}
/* ==================== 其他专题1 - 通用样式 End ==================== */
/* ==================== 其他专题1 - 板块一 Start ==================== */
.other1-section1 {
  overflow: hidden;
  position: relative;
}
.other1-section1 .bg-image {
  overflow: hidden;
}
.other1-section1 .info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding-bottom: 9.38vw;
}
.other1-section1 .text1 {
  font-family: "Outfit-Bold";
  font-size: 3vw;
  line-height: 1;
  color: #fff;
}
.other1-section1 .text2 {
  margin-top: 1.56vw;
  font-size: 1.35vw;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Outfit-Bold";
}
@media screen and (max-width: 1100px) {
  .other1-section1 .bg-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .other1-section1 .bg-image img {
    height: 80vw;
    width: auto;
    max-width: inherit;
  }
  .other1-section1 .info {
    padding-bottom: 8vw;
  }
  .other1-section1 .text1 {
    font-size: 5.33vw;
    line-height: 1.2;
  }
  .other1-section1 .text2 {
    font-size: 3.73vw;
    margin-top: 2.67vw;
  }
}
/* ==================== 其他专题1 - 板块一 End ==================== */
/* ==================== 其他专题1 - 板块二 Start ==================== */
.other1-section2 {
  overflow: hidden;
  background: url(../images/img117.jpg) no-repeat center;
  background-size: contain;
}
.other1-section2 .itembox {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 5.73vw;
}
.other1-section2 .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 3.13vw 2.6vw;
  border: 1px solid #3a3d53;
  border-radius: 0.52vw;
  margin-right: 1.04vw;
  flex-grow: 1;
}
.other1-section2 .item:last-child {
  margin-right: 0;
}
.other1-section2 .item .icon {
  width: 4.17vw;
  flex-shrink: 0;
  margin-right: 1.56vw;
}
.other1-section2 .item .icon img {
  width: 100%;
}
.other1-section2 .item .desc {
  min-width: 0;
  flex-grow: 1;
}
.other1-section2 .item .text1 {
  font-size: 2.19vw;
  font-family: "Outfit-Bold";
  line-height: 1.1;
  color: #3f93ee;
  background-image: linear-gradient(-60deg, #f97367 10%, #2897ff 40%);
  background-image: -webkit-linear-gradient(-60deg, #f97367 10%, #2897ff 40%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.other1-section2 .item .text2 {
  font-family: "Outfit-Light";
  font-size: 1.15vw;
  color: #fff;
  margin-top: 0.52vw;
}
@media screen and (min-width: 1100px) {
  .other1-section2 {
    padding-top: 8.33vw;
    padding-bottom: 10.94vw;
  }
}
@media screen and (max-width: 1100px) {
  .other1-section2 {
    padding: 13.33vw 0;
  }
  .other1-section2 .itembox {
    flex-wrap: wrap;
  }
  .other1-section2 .item {
    width: 48%;
    margin-right: 4%;
    padding: 2.67vw 2.67vw;
    display: block;
    border-radius: 1.33vw;
  }
  .other1-section2 .item .icon {
    width: 10.67vw;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 2.67vw;
  }
  .other1-section2 .item .desc {
    text-align: center;
  }
  .other1-section2 .item:nth-child(2n) {
    margin-right: 0;
  }
  .other1-section2 .item:nth-child(2) ~ .item {
    margin-top: 2.67vw;
  }
  .other1-section2 .item .text1 {
    font-size: 5.87vw;
    display: table;
    margin-left: auto;
    margin-right: auto;
    background-image: linear-gradient(-60deg, #f97367 30%, #2897ff 80%);
    background-image: -webkit-linear-gradient(-60deg, #f97367 30%, #2897ff 80%);
  }
  .other1-section2 .item .text2 {
    font-size: 3.2vw;
    margin-top: 1.33vw;
  }
}
/* ==================== 其他专题1 - 板块二 End ==================== */
/* ==================== 其他专题1 - 板块三 Start ==================== */
.other1-section3 {
  overflow: hidden;
}
.other1-section3 .info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 6.25vw;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .other1-section3 .info {
    padding-top: 8vw;
  }
  .other1-section3 .bg-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .other1-section3 .bg-image img {
    height: 80vw;
    width: auto;
    max-width: inherit;
  }
}
/* ==================== 其他专题1 - 板块三 End ==================== */
/* ==================== 其他专题1 - 板块四 Start ==================== */
.other1-section4 .image {
  margin-top: 3.13vw;
  width: 52.45vw;
  margin-left: auto;
  margin-right: auto;
}
.other1-section4 .image img {
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .other1-section4 {
    padding-top: 6.25vw;
    padding-bottom: 6.25vw;
  }
}
@media screen and (max-width: 1100px) {
  .other1-section4 {
    padding-top: 10.67vw;
    padding-bottom: 10.67vw;
  }
  .other1-section4 .image {
    width: 100%;
    margin-top: 8vw;
  }
}
/* ==================== 其他专题1 - 板块四 End ==================== */
/* ==================== 其他专题1 - 板块五 Start ==================== */
.other1-section5 {
  background: url(../images/img112.jpg) no-repeat center bottom #000;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #000;
  background-size: contain;
}
.other1-section5 .image-group {
  width: 52.45vw;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: 3.44vw;
}
.other1-section5 .image-group img {
  width: 100%;
}
.other1-section5 .image1 {
  width: 52.45vw;
}
.other1-section5 .image2,
.other1-section5 .image3,
.other1-section5 .image4 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.other1-section5 .image2 {
  z-index: 2;
  width: 46.35vw;
}
.other1-section5 .image3 {
  z-index: 3;
  width: 39.27vw;
}
.other1-section5 .image4 {
  z-index: 4;
  width: 32.08vw;
}
@media screen and (min-width: 1100px) {
  .other1-section5 {
    padding-top: 6.25vw;
    padding-bottom: 6.25vw;
    background-attachment: fixed;
  }
}
@media screen and (max-width: 1100px) {
  .other1-section5 {
    padding-top: 10.67vw;
    padding-bottom: 10.67vw;
  }
  .other1-section5 .image-group {
    margin-top: 10.67vw;
    width: 100%;
  }
  .other1-section5 .image1 {
    width: 100%;
  }
  .other1-section5 .image2 {
    width: 80%;
  }
  .other1-section5 .image3 {
    width: 60%;
  }
  .other1-section5 .image4 {
    width: 40%;
  }
}
/* ==================== 其他专题1 - 板块五 End ==================== */
/* ==================== 其他专题2 - 板块一 Start ==================== */
.other2-section1 .text2 {
  opacity: 0.8;
}
@media screen and (min-width: 1100px) {
  .other2-section1 .info {
    padding-bottom: 15.1vw;
  }
}
@media screen and (max-width: 1100px) {
  .other2-section1 .info {
    padding-bottom: 20vw;
  }
}
/* ==================== 其他专题2 - 板块一 End ==================== */
/* ==================== 其他专题2 - 板块二 Start ==================== */
.other2-section2 {
  overflow: hidden;
}
.other2-section2 .item {
  border: 1px solid #2a2b2d;
  border-radius: 0.52vw;
  text-align: center;
}
.other2-section2 .item img {
  width: 100%;
}
.other2-section2 .item .text {
  font-family: "Outfit-Light";
  font-size: 1.15vw;
  line-height: 1.2;
  color: #fff;
}
.other2-section2 .itembox .item {
  padding: 2.6vw 3.13vw;
}
.other2-section2 .itembox2 {
  margin-top: 1.56vw;
}
@media screen and (min-width: 1100px) {
  .other2-section2 {
    padding-top: 8.33vw;
  }
  .other2-section2 .info .other1-title {
    margin-bottom: 3.13vw;
  }
  .other2-section2 .itembox {
    margin-top: 6.09vw;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
  .other2-section2 .itembox .item .image {
    margin-bottom: 3.13vw;
    margin-left: auto;
    margin-right: auto;
  }
  .other2-section2 .itembox .item:nth-child(1) {
    width: 29.69vw;
    flex-shrink: 0;
  }
  .other2-section2 .itembox .item:nth-child(1) .image {
    width: 22.76vw;
  }
  .other2-section2 .itembox .item:nth-child(2) {
    width: 48.28vw;
    flex-shrink: 0;
  }
  .other2-section2 .itembox .item:nth-child(2) .image {
    width: 33.96vw;
  }
  .other2-section2 .itembox2 {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
  .other2-section2 .left-body {
    width: 48.96vw;
    position: relative;
  }
  .other2-section2 .left-body .item-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .other2-section2 .left-body .image {
    margin-bottom: 1.56vw;
  }
  .other2-section2 .right-body {
    width: 29.69vw;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
  }
  .other2-section2 .right-body .item .image {
    margin-bottom: 1.04vw;
    margin-left: auto;
    margin-right: auto;
  }
  .other2-section2 .right-body .item:nth-child(1) {
    width: 100%;
    padding: 3.13vw 2.08vw;
    margin-bottom: 1.56vw;
  }
  .other2-section2 .right-body .item:nth-child(1) .image {
    width: 100%;
  }
  .other2-section2 .right-body .item:nth-child(2),
  .other2-section2 .right-body .item:nth-child(3) {
    width: 48%;
    border-style: dashed;
    padding: 3.13vw 1.04vw;
  }
  .other2-section2 .right-body .item:nth-child(2) .image,
  .other2-section2 .right-body .item:nth-child(3) .image {
    width: 5.21vw;
  }
  .other2-section2 .right-body .item:nth-child(3) {
    margin-left: 4%;
  }
}
@media screen and (max-width: 1100px) {
  .other2-section2 {
    padding: 10.67vw 0;
  }
  .other2-section2 .itembox {
    margin-top: 10.67vw;
  }
  .other2-section2 .itembox .item {
    padding: 5.33vw 4vw;
    border-radius: 2.13vw;
  }
  .other2-section2 .itembox .item:nth-child(2) {
    margin-top: 5.33vw;
  }
  .other2-section2 .itembox .item .text {
    font-size: 4vw;
    margin-top: 5.33vw;
  }
  .other2-section2 .itembox2 .item {
    margin-top: 5.33vw;
    position: relative;
  }
  .other2-section2 .itembox2 .item .image {
    width: 16vw;
    margin-left: auto;
    margin-right: auto;
  }
  .other2-section2 .left-body .item-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
  }
  .other2-section2 .left-body .text {
    margin-top: 4vw;
    font-size: 3.73vw;
  }
  .other2-section2 .right-body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .other2-section2 .right-body .item {
    padding: 4vw;
  }
  .other2-section2 .right-body .item .image {
    margin-bottom: 5.33vw;
  }
  .other2-section2 .right-body .item:nth-child(1) {
    width: 100%;
  }
  .other2-section2 .right-body .item:nth-child(1) .image {
    width: 100%;
  }
  .other2-section2 .right-body .item:nth-child(2),
  .other2-section2 .right-body .item:nth-child(3) {
    width: 48%;
  }
  .other2-section2 .right-body .item:nth-child(2) .image,
  .other2-section2 .right-body .item:nth-child(3) .image {
    width: 13.33vw;
  }
  .other2-section2 .right-body .item .text {
    font-size: 3.73vw;
  }
}
/* ==================== 其他专题2 - 板块二 End ==================== */
/* ==================== 其他专题2 - 板块三 Start ==================== */
.other2-section3 .body {
  margin-top: 4.69vw;
}
.other2-section3 .body img {
  width: 100%;
}
.other2-section3 .desc {
  margin-top: 2.6vw;
  font-family: "Outfit-Light";
  font-size: 1.15vw;
  line-height: 1.6;
  text-align: center;
  color: #747474;
}
@media screen and (min-width: 1100px) {
  .other2-section3 {
    padding-top: 11.46vw;
    padding-bottom: 8.33vw;
  }
}
@media screen and (max-width: 1100px) {
  .other2-section3 {
    padding: 10.67vw 0;
  }
  .other2-section3 .desc {
    margin-top: 5.33vw;
    font-size: 3.73vw;
  }
  .other2-section3 .desc p {
    display: inline;
  }
}
/* ==================== 其他专题2 - 板块三 End ==================== */
/* ==================== 其他专题2 - 板块四 Start ==================== */
.other2-section4 {
  position: relative;
  overflow: hidden;
}
.other2-section4 .other1-desc {
  margin-top: 1.3vw;
}
.other2-section4 .info {
  position: absolute;
  padding-top: 6.77vw;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .other2-section4 .bg-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .other2-section4 .bg-image img {
    width: auto;
    max-width: inherit;
    height: 80vw;
  }
  .other2-section4 .info {
    padding-top: 8vw;
  }
  .other2-section4 .other1-desc {
    margin-top: 4vw;
  }
}
/* ==================== 其他专题2 - 板块四 End ==================== */
/* ==================== 其他专题2 - 板块五 Start ==================== */
.other2-section5 {
  overflow: hidden;
  position: relative;
}
.other2-section5 .info {
  position: absolute;
  padding-top: 8.85vw;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .other2-section5 .info {
    padding-top: 8vw;
  }
  .other2-section5 .bg-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .other2-section5 .bg-image img {
    width: auto;
    max-width: inherit;
    height: 80vw;
  }
}
/* ==================== 其他专题2 - 板块五 End ==================== */
/* ==================== 其他专题2 - 板块六 Start ==================== */
.other2-section6 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.other2-section6 .body {
  margin-top: 8.33vw;
  display: flex;
  align-items: flex-start;
}
.other2-section6 .body .image {
  width: 50%;
}
.other2-section6 .body .image img {
  width: 100%;
}
.other2-section6 .mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 20%, transparent 40%);
  pointer-events: none;
}
@media screen and (min-width: 1100px) {
  .other2-section6 {
    padding: 8.33vw 0;
  }
}
@media screen and (max-width: 1100px) {
  .other2-section6 {
    padding: 13.33vw 0;
  }
}
/* ==================== 其他专题2 - 板块六 End ==================== */
/* ==================== 其他专题2 - 板块七 Start ==================== */
.other2-section7 {
  overflow: hidden;
  background-color: #021535;
}
.other2-section7 .image-group {
  position: relative;
  margin-top: 5.73vw;
  padding-bottom: 4.69vw;
}
.other2-section7 .image-group img {
  width: 100%;
}
.other2-section7 .image1 {
  width: 73.96vw;
  margin-left: 2.86vw;
}
.other2-section7 .image2,
.other2-section7 .image3,
.other2-section7 .image4 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.other2-section7 .image2 {
  z-index: 2;
  width: 68.75vw;
  margin-left: 2.08vw;
  bottom: 3.13vw;
}
.other2-section7 .image3 {
  z-index: 3;
  width: 62.29vw;
  margin-left: 1.04vw;
  bottom: 1.56vw;
}
.other2-section7 .image4 {
  z-index: 4;
  width: 55.31vw;
}
@media screen and (min-width: 1100px) {
  .other2-section7 {
    padding-top: 6.77vw;
    padding-bottom: 8.85vw;
  }
}
@media screen and (max-width: 1100px) {
  .other2-section7 {
    padding-top: 13.33vw;
    padding-bottom: 13.33vw;
  }
  .other2-section7 .image-group {
    margin-top: 8vw;
    padding-bottom: 8vw;
  }
  .other2-section7 .image1 {
    width: 100%;
    margin-left: 4%;
  }
  .other2-section7 .image2,
  .other2-section7 .image3,
  .other2-section7 .image4 {
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .other2-section7 .image2 {
    width: 90%;
    margin-left: 3%;
    bottom: 5.33vw;
  }
  .other2-section7 .image3 {
    width: 80%;
    margin-left: 2%;
    bottom: 2.67vw;
  }
  .other2-section7 .image4 {
    width: 70%;
  }
}
/* ==================== 其他专题2 - 板块七 End ==================== */
/* ==================== 其他专题2 - 板块八 Start ==================== */
.other2-section8 .solution2-section4-big {
  margin-top: 4.17vw;
}
@media screen and (min-width: 1100px) {
  .other2-section8 {
    padding-top: 7.81vw;
    padding-bottom: 9.38vw;
  }
}
/* ==================== 其他专题2 - 板块八 End ==================== */
/* ==================== 其他专题3 - 板块一 Start ==================== */
.other3-section1 .info {
  padding-bottom: 100px;
}
/* ==================== 其他专题3 - 板块一 End ==================== */
/* ==================== 其他专题3 - 板块二 Start ==================== */
.other3-section2 .itembox {
  margin-top: 6.25vw;
  margin-bottom: 5.73vw;
}
.other3-section2 .itembox .item {
  padding: 3.65vw 3.13vw;
  border: 1px solid #2a2a2b;
  border-radius: 0.52vw;
}
.other3-section2 .itembox .item .image img {
  width: 100%;
}
.other3-section2 .itembox .item .title {
  font-family: "Outfit-Light";
  font-size: 1.15vw;
  color: #fff;
  text-align: center;
  margin-top: 5.73vw;
}
.other3-section2 .itembox2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.other3-section2 .itembox2 .item {
  width: 33.333%;
  text-align: center;
  padding-top: 3.13vw;
  padding-bottom: 3.13vw;
  border: 1px dashed #272d32;
  border-radius: 10.42vw;
  flex-shrink: 0;
}
.other3-section2 .itembox2 .item .icon {
  margin-left: auto;
  margin-right: auto;
  width: 5.21vw;
  margin-bottom: 2.08vw;
}
.other3-section2 .itembox2 .item .icon img {
  width: 100%;
}
.other3-section2 .itembox2 .item .text {
  font-family: "Outfit-Light";
  font-size: 1.15vw;
  line-height: 1.2;
  color: #fff;
}
@media screen and (min-width: 1100px) {
  .other3-section2 {
    padding-top: 8.33vw;
    padding-bottom: 2.08vw;
  }
  .other3-section2 .itembox {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
  .other3-section2 .itembox .item .image {
    height: 20.31vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .other3-section2 .itembox .item:nth-child(1) {
    width: 29.69vw;
  }
  .other3-section2 .itembox .item:nth-child(1) .image {
    width: 22.76vw;
  }
  .other3-section2 .itembox .item:nth-child(2) {
    width: 23.18vw;
  }
  .other3-section2 .itembox .item:nth-child(2) .image {
    width: 14.06vw;
  }
  .other3-section2 .itembox .item:nth-child(3) {
    width: 23.18vw;
  }
  .other3-section2 .itembox .item:nth-child(3) .image {
    width: 14.06vw;
  }
  .other3-section2 .itembox2 {
    margin-left: -3.65vw;
    margin-right: -3.65vw;
  }
  .other3-section2 .itembox2 .item:nth-child(1) {
    transform: translateX(3.65vw);
  }
  .other3-section2 .itembox2 .item:nth-child(3) {
    transform: translateX(-3.65vw);
  }
}
@media screen and (max-width: 1100px) {
  .other3-section2 {
    padding: 50px 0;
  }
  .other3-section2 .itembox {
    margin-bottom: 0;
  }
  .other3-section2 .itembox .item {
    padding: 20px 15px;
    margin-bottom: 30px;
  }
  .other3-section2 .itembox .item:last-child {
    margin-bottom: 0;
  }
  .other3-section2 .itembox .item .title {
    font-size: 14px;
    margin-top: 20px;
  }
  .other3-section2 .itembox2 {
    margin-top: 15px;
  }
  .other3-section2 .itembox2 .item {
    width: 32%;
    margin-bottom: 0;
    border-radius: 10px;
  }
  .other3-section2 .itembox2 .item:nth-child(3n-1) {
    margin-left: 2.5%;
    margin-right: 2.5%;
  }
  .other3-section2 .itembox2 .item .icon {
    width: 40px;
    margin-bottom: 10px;
    margin-right: auto;
    margin-left: auto;
  }
  .other3-section2 .itembox2 .item .text {
    font-size: 13px;
  }
}
/* ==================== 其他专题3 - 板块二 End ==================== */
/* ==================== 其他专题3 - 板块三 Start ==================== */
/* ==================== 其他专题3 - 板块三 End ==================== */
/* ==================== 其他专题3 - 板块四 Start ==================== */
/* ==================== 其他专题3 - 板块四 End ==================== */
/* ==================== 其他专题3 - 板块五 Start ==================== */
.other3-section5 {
  background: #0d171f;
}
.other3-section5 .image-group {
  margin-top: 4.69vw;
  position: relative;
}
.other3-section5 .image-group img {
  width: 100%;
}
.other3-section5 .image2,
.other3-section5 .image3,
.other3-section5 .image4 {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1100px) {
  .other3-section5 {
    padding-top: 6.77vw;
    padding-bottom: 7.81vw;
  }
  .other3-section5 .image-group {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 53.96vw;
    padding-bottom: 6.25vw;
  }
  .other3-section5 .image1 {
    width: 53.96vw;
  }
  .other3-section5 .image2 {
    width: 46.88vw;
    left: -2.08vw;
    bottom: 4.17vw;
  }
  .other3-section5 .image3 {
    width: 41.15vw;
    left: -4.17vw;
    bottom: 2.08vw;
  }
  .other3-section5 .image4 {
    width: 35.94vw;
    left: -6.25vw;
    bottom: 0;
  }
}
@media screen and (max-width: 1100px) {
  .other3-section5 {
    padding: 50px 0;
  }
  .other3-section5 .image-group {
    margin-top: 30px;
  }
  .other3-section5 .image1 {
    width: 100%;
    padding-left: 30px;
    padding-bottom: 30px;
  }
  .other3-section5 .image2 {
    width: 90%;
    padding-left: 20px;
    bottom: 20px;
  }
  .other3-section5 .image3 {
    width: 80%;
    padding-left: 10px;
    bottom: 10px;
  }
  .other3-section5 .image4 {
    width: 70%;
    bottom: 0;
  }
}
/* ==================== 其他专题3 - 板块五 End ==================== */
/* ==================== 其他专题3 - 板块六 Start ==================== */
.other3-section6 {
  overflow: hidden;
}
.other3-section6 .info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 8.85vw;
}
@media screen and (max-width: 1100px) {
  .other3-section6 .info {
    padding-top: 50px;
  }
  .other3-section6 .bg-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .other3-section6 .bg-image img {
    width: auto;
    max-width: inherit;
    height: 300px;
  }
}
/* ==================== 其他专题3 - 板块六 End ==================== */
/* ==================== 其他专题3 - 板块七 Start ==================== */
.other3-section7 {
  overflow: hidden;
  position: relative;
}
.other3-section7:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
  pointer-events: none;
}
.other3-section7 .other3-section7-swiper {
  margin-top: 5.99vw;
  width: 65.36vw;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
  position: relative;
}
.other3-section7 .other3-section7-swiper .swiper-slide {
  transition: all 0.4s;
  opacity: 0.2;
  transform-origin: left top;
  transform: scale(0.9);
}
.other3-section7 .other3-section7-swiper .swiper-slide img {
  width: 100%;
}
.other3-section7 .other3-section7-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
@media screen and (min-width: 1100px) {
  .other3-section7{
    padding-top: 8vw;
  }
}
@media screen and (max-width: 1100px) {
  .other3-section7 {
    padding: 50px 0;
  }
  .other3-section7 .other3-section7-swiper {
    overflow: hidden;
    width: 80%;
    margin-top: 30px;
  }
}
/* ==================== 其他专题3 - 板块七 End ==================== */
/* ==================== 其他专题3 - 板块八 Start ==================== */
.other3-section8 {
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #000;
  background-size: contain;
}
.other3-section8 .body {
  margin-top: 6.77vw;
  position: relative;
}
.other3-section8 .title {
  font-family: "Outfit-Regular";
  font-size: 1.7vw;
  line-height: 1.2;
  margin-top: 1.04vw;
  text-align: center;
  color: #fff;
}
.other3-section8 .swiper-button-prev,
.other3-section8 .swiper-button-next {
  outline: none;
}
.other3-section8 .swiper-button-prev:after,
.other3-section8 .swiper-button-next:after {
  color: #fff;
  font-size: 1.56vw;
}
.other3-section8 .swiper-button-prev {
  left: -6.25vw;
}
.other3-section8 .swiper-button-next {
  right: -6.25vw;
}
@media screen and (min-width: 1100px) {
  .other3-section8 {
    padding-top: 20.83vw;
    padding-bottom: 14.06vw;
  }
  .other3-section8 .body {
    width: 44.79vw;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1100px) {
  .other3-section8 {
    padding: 50px 0;
  }
  .other3-section8 .body {
    padding: 0 40px;
  }
  .other3-section8 .title {
    font-size: 18px;
    margin-top: 15px;
  }
  .other3-section8 .swiper-button-prev:after,
  .other3-section8 .swiper-button-next:after {
    font-size: 14px;
  }
  .other3-section8 .swiper-button-prev {
    left: 0;
  }
  .other3-section8 .swiper-button-next {
    right: 0;
  }
}
/* ==================== 其他专题3 - 板块八 End ==================== */
/* ==================== 其他专题3 - 板块九 Start ==================== */
.other3-section9 {
  overflow: hidden;
  position: relative;
}
.other3-section9 .info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 8.33vw;
}
.other3-section9 .info .other1-title,
.other3-section9 .info .other1-desc {
  color: #2a2e33;
}
.other3-section9 .info .other1-desc {
  opacity: 0.75;
}
@media screen and (max-width: 1100px) {
  .other3-section9 .bg-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .other3-section9 .bg-image img {
    width: auto;
    max-width: inherit;
    height: 300px;
  }
}
/* ==================== 其他专题3 - 板块九 End ==================== */
/* ==================== 其他专题3 - 板块十 Start ==================== */
.other3-section10 {
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: #000;
  background-size: contain;
}
.other3-section10 .itembox {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 4.17vw;
}
.other3-section10 .image {
  height: 100%;
}
.other3-section10 .item {
  position: relative;
  border: 1px solid #393939;
  border-radius: 0.52vw;
  overflow: hidden;
}
.other3-section10 .item img {
  height: 100%;
}
.other3-section10 .item .title {
  font-family: "Outfit-Bold";
  font-size: 1.58vw;
  color: #fff;
  line-height: 1.2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.6vw 1.56vw 2.08vw;
}
@media screen and (min-width: 1100px) {
  .other3-section10 {
    padding-top: 7.81vw;
    padding-bottom: 8.85vw;
  }
  .other3-section10 .item:nth-child(1),
  .other3-section10 .item:nth-child(4) {
    width: 52.08vw;
  }
  .other3-section10 .item:nth-child(2),
  .other3-section10 .item:nth-child(3) {
    width: 26.04vw;
  }
  .other3-section10 .item:nth-child(1),
  .other3-section10 .item:nth-child(3) {
    margin-right: 1.56vw;
  }
  .other3-section10 .item:nth-child(3),
  .other3-section10 .item:nth-child(4) {
    margin-top: 1.3vw;
  }
  .other3-section10 .item:nth-child(2),
  .other3-section10 .item:nth-child(3),
  .other3-section10 .item:nth-child(4) {
    text-align: center;
  }
}
@media screen and (max-width: 1100px) {
  .other3-section10 {
    padding: 50px 0;
  }
  .other3-section10 .image {
    height: auto;
    border: 1px solid #474747;
    border-radius: 10px;
    overflow: hidden;
  }
  .other3-section10 .item {
    border: 0;
    margin-bottom: 30px;
  }
  .other3-section10 .item:nth-child(2),
  .other3-section10 .item:nth-child(3) {
    width: 48%;
  }
  .other3-section10 .item:nth-child(2) {
    margin-right: 4%;
  }
  .other3-section10 .item:last-child {
    margin-bottom: 0;
  }
  .other3-section10 .item .title {
    position: static;
    text-align: center;
    font-size: 13px;
    padding: 0;
    margin-top: 15px;
  }
  .other3-section10 .item .image img {
    height: auto;
  }
}
/* ==================== 其他专题3 - 板块十 End ==================== */
/* ==================== 其他专题页4 - 板块一 Start ==================== */
.other4-section1 .info {
  padding-bottom: 15.1vw;
}
/* ==================== 其他专题页4 - 板块一 End ==================== */
/* ==================== 其他专题页4 - 板块二 Start ==================== */
.other4-section2 {
  overflow: hidden;
}
.other4-section2 .itembox {
  margin-top: 5.73vw;
}
.other4-section2 .item {
  border: 0.05vw solid #2a2b2d;
  position: relative;
  border-radius: 0.52vw;
  overflow: hidden;
}
.other4-section2 .item .title {
  font-family: "Outfit-Light";
  font-size: 1.15vw;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  position: absolute;
  bottom: 3.13vw;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .other4-section2 {
    padding-top: 8.33vw;
    padding-bottom: 7.29vw;
  }
  .other4-section2 .item .image img {
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .other4-section2 .item {
    width: 100%;
    margin: 0 !important;
    border-radius: 2.67vw;
  }
  .other4-section2 .item:nth-child(1) ~ .item {
    margin-top: 5.33vw !important;
  }
  .other4-section2 .item .title {
    font-size: 3.73vw;
    position: absolute;
    bottom: 10.67vw;
  }
}
/* ==================== 其他专题页4 - 板块二 End ==================== */
/* ==================== 其他专题页4 - 板块三 Start ==================== */
.other4-section3 {
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}
.other4-section3 .itembox {
  margin-top: 8.85vw;
}
.other4-section3 .item {
  border-radius: 0.52vw;
  border: 0.05vw solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 4.17vw 1.04vw;
}
.other4-section3 .item .text1 {
  font-family: "Outfit-Bold";
  font-size: 5vw;
  line-height: 1;
  background-image: linear-gradient(-70deg, #f97367 30%, #2897ff 60%);
  background-image: -webkit-linear-gradient(-70deg, #f97367 30%, #2897ff 60%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.other4-section3 .item .text2 {
  margin-top: 0.52vw;
  font-family: "Outfit-Regular";
  font-size: 1.35vw;
  color: #fff;
}
@media screen and (min-width: 1100px) {
  .other4-section3 {
    padding-bottom: 11.46vw;
    padding-top: 9.38vw;
    background-attachment: fixed;
  }
}
@media screen and (max-width: 1100px) {
  .other4-section3 {
    padding: 13.33vw 0;
  }
  .other4-section3 .item {
    border-radius: 2.67vw;
    width: 100%;
    margin: 0 !important;
  }
  .other4-section3 .item:nth-child(1) ~ .item {
    margin-top: 4vw !important;
  }
  .other4-section3 .item .text1 {
    display: table;
    margin-left: auto;
    margin-right: auto;
    font-size: 8vw;
  }
  .other4-section3 .item .text2 {
    margin-top: 2.67vw;
    font-size: 3.73vw;
  }
}
/* ==================== 其他专题页4 - 板块三 End ==================== */
/* ==================== 其他专题页4 - 板块四 Start ==================== */
.other4-section4 {
  background-color: #141414;
}
.other4-section4 .body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.other4-section4 .info {
  margin-right: 8.33vw;
}
.other4-section4 .info .other1-title,
.other4-section4 .info .other1-desc {
  text-align: left;
}
.other4-section4 .image {
  width: 43.75vw;
  flex-shrink: 0;
}
@media screen and (min-width: 1100px) {
  .other4-section4 {
    padding-top: 10.94vw;
    padding-bottom: 10.42vw;
  }
}
@media screen and (max-width: 1100px) {
  .other4-section4 {
    padding: 13.33vw 0;
  }
  .other4-section4 .body {
    display: block;
  }
  .other4-section4 .body .info {
    margin-right: 0;
  }
  .other4-section4 .image {
    width: 100%;
    margin-top: 8vw;
  }
}
/* ==================== 其他专题页4 - 板块四 End ==================== */
/* ==================== 其他专题页4 - 板块五 Start ==================== */
.other4-section5 .image {
  margin-top: 4.69vw;
  width: 66.04vw;
  margin-left: auto;
  margin-right: auto;
}
.other4-section5 .image img {
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .other4-section5 {
    padding-bottom: 8.65vw;
    padding-top: 8.33vw;
  }
}
@media screen and (max-width: 1100px) {
  .other4-section5 {
    padding: 50px 0;
  }
  .other4-section5 .image {
    width: 100%;
  }
}
/* ==================== 其他专题页4 - 板块五 End ==================== */
/* ==================== 其他专题页4 - 板块六 Start ==================== */
.other4-section6 {
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #101010;
  background-size: contain;
}
.other4-section6 .itembox {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 4.17vw;
}
@media screen and (min-width: 1100px) {
  .other4-section6 {
    padding-top: 6.77vw;
    padding-bottom: 7.81vw;
  }
  .other4-section6 .item {
    margin: 0 -0.16vw;
    width: 13.44vw;
  }
  .other4-section6 .item img {
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .other4-section6 {
    padding: 13.33vw 0;
  }
  .other4-section6 .itembox {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8vw;
  }
}
/* ==================== 其他专题页4 - 板块六 End ==================== */
/* ==================== 其他专题页4 - 板块七 Start ==================== */
.other4-section7 .itembox {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 5.21vw;
}
@media screen and (min-width: 1100px) {
  .other4-section7 {
    padding-top: 6.51vw;
    padding-bottom: 10.94vw;
  }
  .other4-section7 .item:nth-child(3n-1) {
    margin-left: 11.98vw;
    margin-right: 11.98vw;
  }
  .other4-section7 .item img {
    width: 8.18vw;
  }
}
@media screen and (max-width: 1100px) {
  .other4-section7 {
    padding: 13.33vw 0;
  }
  .other4-section7 .item {
    margin: 5.33vw;
  }
}
/* ==================== 其他专题页4 - 板块七 End ==================== */
/* ==================== 其他专题页4 - 板块八 Start ==================== */
.other4-section8 {
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}
.other4-section8 .image {
  margin-top: 4.69vw;
  margin-left: auto;
  margin-right: auto;
  width: 56.09vw;
}
@media screen and (min-width: 1100px) {
  .other4-section8 {
    padding-top: 6.51vw;
    padding-bottom: 9.38vw;
  }
  .other4-section8 .image img {
    width: 56.41vw;
  }
}
@media screen and (max-width: 1100px) {
  .other4-section8 {
    padding: 10.67vw 0;
  }
  .other4-section8 .image {
    width: 100%;
    margin-top: 8vw;
  }
}
/* ==================== 其他专题页4 - 板块八 End ==================== */
/* ==================== 其他专题页4 - 板块九 Start ==================== */
.other4-section9 .solution2-section4-big {
  margin-top: 4.17vw;
}
@media screen and (min-width: 1100px) {
  .other4-section9 {
    padding-top: 3.13vw;
    padding-bottom: 9.38vw;
  }
}
/* ==================== 其他专题页4 - 板块九 End ==================== */
/* ==================== 搜索页面 - 通用样式 Start ==================== */
.search-title {
  font-size: 1.3vw;
  line-height: 1.8;
  border-bottom: 0.05vw solid #e6e6e6;
  padding: 0.52vw 0;
  margin-bottom: 1.56vw;
  color: #fff;
  font-family: "Outfit-Bold";
}
.search-tip {
  text-align: center;
  padding: 2.6vw 0;
  font-size: 1.3vw;
  color: #fff;
  font-family: "Outfit-Bold";
  line-height: 1.8;
}
@media screen and (max-width: 1100px) {
  .search-tip {
    font-size: 16px;
  }
  .search-title {
    font-size: 18px;
    padding: 6px 0;
    margin-bottom: 20px;
  }
}
/* ==================== 搜索页面 - 通用样式 End ==================== */
/* ==================== 搜索页面 - 板块一 Start ==================== */
.search-section1 {
  background-color: #000;
  padding-top: 2.6vw;
}
.search-section1 form {
  max-width: 50%;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 5.21vw;
  padding: 0.7vw 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: stretch;
}
.search-section1 input {
  min-width: 0;
  flex-grow: 1;
  padding-left: 1.08vw;
  font-family: "Outfit-Regular";
  font-size: 0.83vw;
}
.search-section1 input::-webkit-input-placeholder {
  color: #ccc;
}
.search-section1 input::-moz-placeholder {
  color: #ccc;
}
.search-section1 input:-moz-placeholder {
  color: #ccc;
}
.search-section1 input:-ms-input-placeholder {
  color: #ccc;
}
.search-section1 button {
  width: 4.17vw;
  flex-shrink: 0;
  padding-left: 1.04vw;
  padding-right: 1.04vw;
}
@media screen and (max-width: 1100px) {
  .search-section1 {
    padding-top: 30px;
  }
  .search-section1 form {
    max-width: 100%;
    padding: 5px 0;
  }
  .search-section1 input {
    padding: 0 15px;
    font-size: 14px;
  }
  .search-section1 button {
    width: 40px;
    padding-left: 0;
    padding-right: 15px;
  }
}
/* ==================== 搜索页面 - 板块一 End ==================== */
/* ==================== 搜索页面 - 板块二 Start ==================== */
.search-section2 {
  background-color: #000000;
}
@media screen and (max-width: 1100px) {
  .search-section2 {
    padding: 30px 0 60px;
  }
}
/* ==================== 搜索页面 - 板块二 End ==================== */
/* ==================== 搜索页面 - 板块三 Start ==================== */
.search-section3 {
  background-color: #000000;
}
.search-section3 .body {
  padding-left: 0;
  padding-right: 0;
}
.search-section3 .itembox {
  flex-wrap: wrap;
}
@media screen and (max-width: 1100px) {
  .search-section3 {
    padding-bottom: 40px;
  }
}
/* ==================== 搜索页面 - 板块三 End ==================== */
