/**
 * @Description: 网站页面主要样式
 * @Author: MaXueWei
 * @Date: 2023-06-27 09:55:20
 * @LastEditors: MaXueWei
 * @LastEditTime: 2023-10-13 16:07:12
 */
@font-face {
  font-family: 'manrope-bold-2';
  src: url('../fonts/manrope-bold-2.otf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MontserratRegular';
  src: url('../fonts/Montserrat-Regular.otf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SourceHanSansCN-Light';
  /* src: url('../fonts/SourceHanSansCN-Light.ttf'); */
  src: url('https://xjyd2023.oss-cn-shenzhen.aliyuncs.com/hxfonts/SourceHanSansCN-Light.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SourceHanSansCN-Medium';
  /* src: url('../fonts/SourceHanSansCN-Medium.ttf'); */
  src: url('https://xjyd2023.oss-cn-shenzhen.aliyuncs.com/hxfonts/SourceHanSansCN-Medium.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SourceHanSansCN-Regular';
  /* src: url('../fonts/SourceHanSansCN-Regular.ttf'); */
  src: url('https://xjyd2023.oss-cn-shenzhen.aliyuncs.com/hxfonts/SourceHanSansCN-Regular.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SourceHanSansCN-Medium';
  /* src: url('../fonts/SourceHanSansCN-Medium.ttf'); */
  src: url('https://xjyd2023.oss-cn-shenzhen.aliyuncs.com/hxfonts/SourceHanSansCN-Medium.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* ==================== 重置样式 Start ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "微软雅黑";
}
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: #008ed8;
}
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;
}
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) {
  body {
    margin-top: 50px;
  }
}
/* ==================== 重置样式 End ==================== */
/* ==================== 通用容器大小 Start ==================== */
.mxw-box {
  width: 100%;
  max-width: 75vw;
  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 ==================== */
.ny-banner img {
  width: 100%;
}
/* ==================== 内页通用样式 End ==================== */
/* ==================== layui 主题色统一修改 Start ==================== */
.layui-btn {
  background-color: #008ed8;
}
.layui-btn-primary {
  border-color: #d2d2d2;
  background: 0 0;
  color: #5f5f5f;
}
.layui-form-select {
  font-size: 14px;
}
.layui-form-checkbox[lay-skin=primary]:hover i {
  border-color: #008ed8;
}
.layui-form-checkbox[lay-skin=primary]:hover i {
  border-color: #008ed8;
}
.layui-form-checked[lay-skin=primary] i {
  border-color: #008ed8 !important;
  background-color: #008ed8;
}
.layui-form-select dl {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.layui-form-select dl dd {
  color: #000;
}
.layui-form-select dl dd.layui-this {
  background-color: #f8f8f8;
  color: #000;
}
.layui-layer-btn .layui-layer-btn0 {
  border-color: #008ed8 !important;
  background-color: #008ed8 !important;
}
/* ==================== layui 主题色统一修改 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 ==================== */
/* ==================== 头部导航样式 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: 13.02vw;
  height: 2.08vw;
  overflow: hidden;
  flex-shrink: 0;
}
header .pc-nav .logo img {
  transform: translateY(-50%);
}
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 .sub-navbar2-box,
header .pc-nav .navbar > li:hover .sub-navbar2-box {
  opacity: 1;
  visibility: visible;
}
header .pc-nav .navbar > li.active .sub-navbar2-box:after,
header .pc-nav .navbar > li:hover .sub-navbar2-box:after {
  opacity: 1;
  visibility: visible;
}
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;
  display: block;
  color: #54565b;
  text-decoration: none;
  transition: background-color 0.4s, color 0.4s;
  position: relative;
  font-family: "SourceHanSansCN-Regular";
}
header .pc-nav .sub-navbar {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  width: 100%;
  box-shadow: 0vw 1.04vw 1.04vw -1.04vw rgba(0, 0, 0, 0.1);
  border-top: 1px solid #ededed;
  z-index: 99;
}
header .pc-nav .sub-itembox {
  max-width: 62.5vw;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2.6vw;
  padding-bottom: 7.81vw;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
header .pc-nav .sub-itembox .item {
  width: 15.63vw;
  margin-right: 1.82vw;
}
header .pc-nav .sub-itembox .item:last-child {
  margin-right: 0;
}
header .pc-nav .sub-itembox .sub-nav-title {
  font-size: 1.04vw;
  color: #303233;
  line-height: 1.2;
  margin-bottom: 1.3vw;
  display: block;
  transition: transform 0.4s;
}
header .pc-nav .sub-itembox .sub-nav-title:hover {
  font-weight: bold;
  transform: translateX(0.26vw);
}
header .pc-nav .sub-itembox .sub-nav-image {
  display: block;
}
header .pc-nav .sub-itembox ul {
  padding-top: 0.78vw;
}
header .pc-nav .sub-itembox ul > li {
  margin-top: 0.78vw;
  transition: transform 0.4s;
}
header .pc-nav .sub-itembox ul > li:hover {
  font-weight: bold;
  transform: translateX(0.26vw);
}
header .pc-nav .sub-itembox ul > li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header .pc-nav .sub-itembox .icon {
  width: 1.77vw;
  flex-shrink: 0;
  margin-right: 0.78vw;
}
header .pc-nav .sub-itembox .name {
  font-size: 0.73vw;
  color: #303233;
  line-height: 1.2;
}
header .pc-nav .right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header .pc-nav .right .language {
  margin-left: 2.08vw;
  position: relative;
}
header .pc-nav .right .language:after {
  content: "";
  display: block;
  width: 1px;
  height: 0.83vw;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: -2.08vw;
  top: 50%;
  transform: translateY(-50%);
}
header .pc-nav .language {
  position: relative;
  cursor: pointer;
}
header .pc-nav .language .tool {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header .pc-nav .language .icon {
  display: block;
  width: 1.04vw;
  height: 1.04vw;
  overflow: hidden;
}
header .pc-nav .language .icon img {
  width: 100%;
  transform: translateY(0);
}
header .pc-nav .language .text {
  font-size: 0.83vw;
  font-family: "SourceHanSansCN-Regular";
  margin-left: 1.04vw;
  color: #333;
}
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;
}
header .pc-nav .sub-navbar2-box {
  position: relative;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s, visibility 0.4s;
}
header .pc-nav .sub-navbar2-box:after {
  content: "";
  display: block;
  width: 0.73vw;
  height: 0.73vw;
  background: #fff;
  position: absolute;
  top: 0.16vw;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  z-index: 79;
}
header .pc-nav .sub-navbar2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  z-index: 70;
  padding: 1vw 0;
  white-space: nowrap;
  margin-top: 0.52vw;
  text-align: center;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 10px -1px rgba(0, 0, 0, 0.2);
}
header .pc-nav .sub-navbar2 > li:hover a {
  color: #008ed8;
}
header .pc-nav .sub-navbar2 > li a {
  display: block;
  padding: 0.5vw 2.6vw;
  font-size: 0.83vw;
  color: #9fa3a6;
  font-family: "SourceHanSansCN-Regular";
}
header .pc-nav .account-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 2.08vw;
}
header .pc-nav .account-btn .btn-item {
  width: 5.94vw;
  height: 2.19vw;
  background-color: #008ed8;
  border-radius: 5.21vw;
  text-align: center;
  color: #fff;
  line-height: 0.79vw;
  font-size: 0.63vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .pc-nav .account-btn .btn-item:nth-child(2n) {
  margin-left: 0.73vw;
}
@media screen and (min-width: 1100px) {
  header {
    transition: transform 0.4s, background-color 0.4s;
    transform: translateY(-100%);
  }
  header .pc-nav {
    box-shadow: 0 0 8px -2px rgba(0, 0, 0, 0.2);
  }
  header.show,
  header.nobg {
    transform: translateY(0);
  }
  header.nobg .pc-nav {
    background-color: transparent;
    box-shadow: none;
  }
  header.nobg .pc-nav .logo img {
    transform: translateY(0);
  }
  header.nobg .pc-nav .navbar > li .head {
    color: #fff;
  }
  header.nobg .pc-nav .language .icon img {
    transform: translateY(-50%);
  }
  header.nobg .pc-nav .language:after {
    background-color: rgba(255, 255, 255, 0.2);
  }
  header.nobg .pc-nav .language .text {
    color: #fff;
  }
  header.nobg .pc-nav .account-btn .btn-item {
    background-color: #fff;
    color: #008ed8;
  }
  header.nofixed {
    transform: translateY(0);
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }
  header.nofixed .pc-nav {
    box-shadow: none;
  }
  header.bg .language .text {
    color: #333;
  }
  header.bg .account-btn .btn-item {
    background-color: #008ed8;
    color: #fff;
  }
}
@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: 50px;
    background-color: #fff;
    transition: background-color 0.4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    box-shadow: 0 6px 16px 0 rgba(25, 25, 25, 0.06);
  }
  header .logo {
    display: block;
    width: 184px;
    height: 30px;
    overflow: hidden;
    flex-shrink: 0;
  }
  header .logo img {
    transform: translateY(-50%);
  }
  header .tool {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  header .tool .search {
    width: 18px;
    height: 18px;
    overflow: hidden;
    font-size: 12px;
    margin-right: 14px;
  }
  header .tool .search img {
    vertical-align: middle;
  }
  header .tool .menu-btn {
    cursor: pointer;
  }
  header .tool .menu-btn > i {
    width: 20px;
    height: 1px;
    background-color: #333;
    display: block;
    margin-bottom: 6px;
  }
  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: 14px 20px;
    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: 15px;
  }
  header .popup-nav .close .icon {
    width: 20px;
    height: 20px;
    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: 1px;
    top: 50%;
    left: 0;
  }
  header .popup-nav .close .icon:after {
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
  }
  header .popup-nav .login {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 36px;
    padding-right: 20px;
    position: relative;
    cursor: pointer;
  }
  header .popup-nav .login:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #eee;
    position: absolute;
    bottom: -20px;
    left: 0;
  }
  header .popup-nav .login:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1px solid;
    border-right: 1px solid;
    position: absolute;
    top: 16px;
    transform: translateY(-50%) rotate(45deg);
    right: 4px;
    border-color: rgba(25, 25, 25, 0.6);
  }
  header .popup-nav .login .avatar {
    background-color: #d1d1d1;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    overflow: hidden;
  }
  header .popup-nav .login .name {
    font-size: 12px;
    color: #333;
    line-height: 1.2;
    margin-left: 10px;
  }
  header .popup-nav .nav-box {
    flex-grow: 1;
    overflow: auto;
    padding-right: 10px;
  }
  header .popup-nav .nav-list.other-list {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #eee;
  }
  header .popup-nav .nav-list.other-list .nav-item > .title {
    opacity: 0.8;
    font-size: 14px;
  }
  header .popup-nav .nav-list.other-list .subnav-list > li > .title {
    font-size: 12px;
  }
  header .popup-nav .nav-list .nav-item > .title {
    position: relative;
    display: block;
    padding: 10px 0;
    padding-right: 15px;
    font-size: 15px;
    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: 8px;
    height: 8px;
    border-top: 1px solid;
    border-right: 1px solid;
    border-color: #191919;
    transform: rotate(45deg);
    margin-top: -4px;
    margin-right: 4px;
  }
  header .popup-nav .nav-list .nav-item > .title .icon.more-icon {
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    border: 0;
    margin-top: 0;
    margin-right: 2px;
  }
  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: 1px;
    top: 50%;
    left: 0;
  }
  header .popup-nav .nav-list .nav-item > .title .icon.more-icon:after {
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
  }
  header .popup-nav .subnav-list {
    display: none;
    padding-left: 10px;
  }
  header .popup-nav .subnav-list > li > .title {
    display: block;
    font-size: 13px;
    color: #898989;
    padding: 8px 0;
  }
}
/* ==================== 头部导航样式 End ==================== */
/* ==================== 底部样式 Start ==================== */
footer {
  position: relative;
  z-index: 65;
  background: url(../images/img006.jpg) no-repeat center bottom #fbfbfb;
  background-size: 100%;
}
footer .foot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.78vw;
  border-bottom: 1px solid #f2f3f5;
  padding-top: 2.97vw;
}
footer .foot-top .logo {
  width: 16.35vw;
  height: 0.83rem;
  overflow: hidden;
}
footer .foot-top .logo img {
  transform: translateY(-50%);
}
footer .foot-share {
  display: flex;
  align-items: center;
}
footer .foot-share .share-item {
  position: relative;
  margin-right: 0.52vw;
}
footer .foot-share .share-item:nth-child(1) i {
  background-position-x: 0;
}
footer .foot-share .share-item:nth-child(2) i {
  background-position-x: -1.56vw;
}
footer .foot-share .share-item:nth-child(3) i {
  background-position-x: -3.13vw;
}
footer .foot-share .share-item:nth-child(4) i {
  background-position-x: -4.69vw;
}
footer .foot-share .share-item i {
  background: url(../images/img009.png) no-repeat;
  background-size: auto 100%;
  display: block;
  width: 1.56vw;
  height: 1.56vw;
}
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: 5.21vw;
  height: 5.21vw;
  z-index: 8;
  background: #fff;
  margin-bottom: 0.52vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
footer .foot-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 4.17vw 0 6.77vw;
}
footer .foot-bottom .head {
  font-size: 0.94vw;
  color: #5f6464;
  line-height: 1.2;
  margin-bottom: 1.56vw;
  display: block;
  font-family: "SourceHanSansCN-Medium";
}
footer .foot-nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 42.71vw;
  width: 100%;
}
footer .nav-item li {
  margin-bottom: 1.04vw;
}
footer .nav-item li:last-child {
  margin-bottom: 0;
}
footer .nav-item a {
  font-size: 0.73vw;
  color: #878a8a;
  line-height: 1.2;
  font-family: "SourceHanSansCN-Light";
}
footer .nav-item a:hover {
  text-decoration: underline;
  color: #008ed8;
}
footer .foot-address .text {
  font-size: 0.73vw;
  font-family: "SourceHanSansCN-Light";
  color: #909393;
  margin-bottom: 1.56vw;
}
footer .foot-address .text > a {
  margin-right: 0.52vw;
  color: inherit;
}
footer .foot-address .text > a:hover {
  color: #008ed8;
  text-decoration: underline;
}
footer .foot-address .qr {
  display: flex;
  align-items: flex-start;
}
footer .foot-address .qr .qr-item {
  flex-shrink: 0;
  width: 5.21vw;
  margin-right: 1.56vw;
}
footer .foot-address .qr .qr-item:last-child {
  margin-right: 0;
}
footer .foot-address .qr .image {
  border: 1px solid #eee;
  border-radius: 0.1vw;
  overflow: hidden;
}
footer .foot-address .qr .text {
  margin-top: 0.52vw;
  font-size: 0.73vw;
  color: #5f6464;
  line-height: 1.2;
  text-align: center;
  font-family: "SourceHanSansCN-Light";
}
footer .copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 3.13vw 0 3.91vw;
  color: #b4b6b6;
  font-size: 0.73vw;
  font-family: "SourceHanSansCN-Light";
  border-top: 1px solid #f2f3f5;
}
footer .copyright .text1 {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}
footer .copyright .support {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
footer .copyright .support a {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
footer a {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
@media screen and (max-width: 1100px) {
  footer {
    background-size: 300%;
  }
  footer .foot-top {
    padding: 30px 0;
    border-bottom: 0;
  }
  footer .foot-top .logo {
    width: 210px;
    height: 33px;
    margin-left: 0;
    margin-right: auto;
  }
  footer .foot-share {
    display: none;
  }
  footer .foot-nav {
    max-width: 100%;
    display: block;
  }
  footer .foot-nav .nav-item {
    margin-bottom: 30px;
  }
  footer .foot-nav .nav-item ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
  }
  footer .foot-nav .nav-item li {
    margin-bottom: 5px;
    width: 48%;
    margin: 0;
    margin-right: 4%;
  }
  footer .foot-nav .nav-item li:nth-child(2n) {
    margin-right: 0;
  }
  footer .foot-nav .nav-item li:nth-child(2) ~ li {
    margin-top: 10px;
  }
  footer .foot-nav .nav-item a {
    display: block;
    width: 100%;
    font-size: 13px;
  }
  footer .foot-bottom {
    padding-top: 0;
  }
  footer .foot-bottom .head {
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
  }
  footer .foot-address {
    width: 100%;
  }
  footer .foot-address .text {
    font-size: 12px;
    margin-bottom: 0;
  }
  footer .foot-address .text > a {
    margin-right: 20px;
  }
  footer .foot-address .qr {
    display: none;
  }
  footer .copyright {
    display: block;
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
    line-height: 1.8em;
  }
}
/* ==================== 底部样式 End ==================== */
/* ==================== 首页通用标题 Start ==================== */
.index-title {
  display: block;
  margin-bottom: 2.08vw;
  position: relative;
  z-index: 2;
}
.index-title .text1 {
  font-size: 2.4vw;
  line-height: 1.2;
  font-family: "SourceHanSansCN-Medium";
  margin-bottom: 0.4vw;
}
.index-title .text2 {
  font-size: 1.67vw;
  color: #ddd;
  line-height: 1.2;
  font-family: "SourceHanSansCN-Regular";
}
@media screen and (max-width: 1100px) {
  .index-title {
    margin-bottom: 30px;
  }
  .index-title .text1 {
    font-size: 22px;
    margin-right: 10px;
  }
  .index-title .text2 {
    font-size: 18px;
  }
}
/* ==================== 首页通用标题 End ==================== */
/* ==================== 首页通用更多按钮 Start ==================== */
.index-more-btn {
  margin-top: 3.13vw;
  width: 9.9vw;
  height: 3.02vw;
  line-height: 2.92vw;
  text-align: center;
  font-size: 0.83vw;
  color: #474747;
  border-radius: 5.21vw;
  border: 1px solid #e7e7e7;
  display: block;
  font-family: "SourceHanSansCN-Regular";
  transition: all 0.4s;
}
.index-more-btn:hover {
  background-color: #008ed8;
  color: #fff;
  border-color: #008ed8;
}
@media screen and (max-width: 1100px) {
  .index-more-btn {
    padding: 8px 10px;
    margin-top: 20px;
    width: 100%;
    height: auto;
    line-height: inherit;
    font-size: 12px;
    color: #008ed8;
  }
}
/* ==================== 首页通用更多按钮 End ==================== */
/* ==================== 内页 - 通用Banner Start ==================== */
.ny-banner {
  position: relative;
}
.ny-banner .water-title {
  position: absolute;
  left: 0;
  top: 0;
  width: 36vw;
  height: 100%;
}
.ny-banner .water-title .info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  color: #fff;
}
.ny-banner .water-title .info .text1 {
  font-size: 2.92vw;
  line-height: 1.1;
  margin-bottom: 0.78vw;
  font-family: "SourceHanSansCN-Medium";
}
.ny-banner .water-title .info .text2 {
  font-size: 1.46vw;
  line-height: 1.2;
  font-family: "SourceHanSansCN-Light";
}
.ny-banner .banner-bottom {
  padding-top: 1.56vw;
  padding-bottom: 1.56vw;
  border-bottom: 1px solid #e5e5e5;
}
.ny-banner .banner-bottom > .mxw-box {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding-left: 20.83vw;
}
.ny-banner .banner-bottom .title {
  font-size: 1.15vw;
  color: #008ed8;
  line-height: 1.2;
  font-family: "SourceHanSansCN-Regular";
}
.ny-banner .bread-crumbs {
  display: flex;
  align-items: center;
}
.ny-banner .bread-crumbs > a {
  font-size: 0.73vw;
  line-height: 1.2;
  color: #5f6464;
  font-family: "SourceHanSansCN-Regular";
}
.ny-banner .bread-crumbs > a:hover {
  color: #008ed8;
}
.ny-banner .bread-crumbs > a:last-child:after {
  display: none;
}
.ny-banner .bread-crumbs > a:after {
  content: ">";
  display: inline;
  margin-left: 0.26vw;
  margin-right: 0.26vw;
  color: #5f6464 !important;
}
.ny-banner .bread-crumbs:before {
  content: "";
  display: inline-block;
  width: 1.04vw;
  height: 1.04vw;
  flex-shrink: 0;
  margin-right: 0.26vw;
  background: url(../images/img038.png) no-repeat center;
  background-size: 100%;
}
.ny-banner #water {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1903px) {
  .ny-banner .bg-image {
    overflow: hidden;
  }
  .ny-banner .bg-image img {
    min-width: 1920px;
  }
}
@media screen and (min-width: 1100px) {
  .ny-banner .bg-image {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    height: 42.71vw;
  }
  .ny-banner .bg-image img {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .ny-banner .water-title {
    width: 50%;
    height: calc(100% - 40px);
  }
  .ny-banner .water-title .info {
    left: 20px;
    transform: translate(0, -50%);
  }
  .ny-banner .water-title .info .text1 {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .ny-banner .water-title .info .text2 {
    font-size: 15px;
  }
  .ny-banner .banner-bottom,
  .ny-banner .bread-crumbs {
    height: 40px;
    line-height: 40px;
  }
  .ny-banner .bread-crumbs:before {
    width: 18px;
    height: 18px;
  }
  .ny-banner .bread-crumbs > a {
    font-size: 12px;
  }
  .ny-banner .bread-crumbs > a:after {
    margin-left: 5px;
    margin-right: 5px;
  }
  .ny-banner .banner-bottom {
    padding: 0;
  }
  .ny-banner .banner-bottom > .mxw-box {
    padding-left: 20px;
    padding-right: 20px;
    height: 40px;
    display: block;
  }
  .ny-banner .banner-bottom .title {
    display: none;
  }
}
/* ==================== 内页 - 通用Banner End ==================== */
/* ==================== 通用分页 Start ==================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 5.21vw;
}
.pagination > a {
  width: 3.02vw;
  height: 3.02vw;
  border-radius: 100%;
  background-color: #fbfbfb;
  margin: 0.47vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 0.83vw;
  transition: background-color 0.4s, color 0.4s;
  font-family: "SourceHanSansCN-Regular";
}
.pagination > a:hover,
.pagination > a.active {
  background-color: #008ed8;
  color: #fff;
}
.pagination .page-prev,
.pagination .page-next {
  width: auto;
  height: auto;
  background-color: transparent;
  white-space: nowrap;
}
.pagination .page-prev:hover,
.pagination .page-next:hover {
  color: #008ed8;
  background-color: inherit!important;
}
.pagination .page-prev {
  margin-right: 2.08vw;
}
.pagination .page-next {
  margin-left: 2.08vw;
}
@media screen and (max-width: 1100px) {
  .pagination {
    margin-top: 30px;
  }
  .pagination > a {
    width: 30px;
    height: 30px;
    font-size: 12px;
    margin: 5px 2px;
  }
  .pagination .page-prev {
    margin-right: 15px;
  }
  .pagination .page-next {
    margin-left: 15px;
  }
}
/* ==================== 通用分页 End ==================== */
/* ==================== 通用背景小球 Start ==================== */
.common-bg-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f7fcff;
  z-index: 0;
}
.common-bg-icon .mxw-box {
  position: relative;
  height: 100%;
}
.common-bg-icon .bg-icon {
  background-color: #d7ecfc;
  border-radius: 100%;
  position: absolute;
}
.common-bg-icon .bg-icon1 {
  width: 2.08vw;
  height: 2.08vw;
  left: 3.39vw;
  bottom: 0;
}
.common-bg-icon .bg-icon2 {
  width: 1.2vw;
  height: 1.2vw;
  top: 16.15vw;
  left: 15.1vw;
}
.common-bg-icon .bg-icon3 {
  width: 1.2vw;
  height: 1.2vw;
  top: 2.08vw;
  right: 13.02vw;
}
.common-bg-icon .bg-icon4 {
  width: 2.71vw;
  height: 2.71vw;
  right: 0;
  top: 17.71vw;
}
@media screen and (max-width: 1100px) {
  .common-bg-icon {
    display: none;
  }
}
/* ==================== 通用背景小球 End ==================== */
/* ==================== 内页 - 通用间距样式 Start ==================== */
@media screen and (min-width: 1100px) {
  .ny-main .index-title {
    margin-bottom: 3.13vw;
  }
  .ny-main section {
    padding-top: 6.25vw;
    padding-bottom: 6.25vw;
  }
}
@media screen and (max-width: 1100px) {
  .ny-main section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
/* ==================== 内页 - 通用间距样式 End ==================== */
/* ==================== 通用面包屑2 Start ==================== */
.bread-crumbs2 {
  background-color: #f9f9f9;
}
.bread-crumbs2 > .mxw-box {
  padding-top: 1.04vw;
  padding-bottom: 1.04vw;
}
.bread-crumbs2 > .mxw-box:before {
  content: "";
  display: inline-block;
  width: 1.04vw;
  height: 1.04vw;
  flex-shrink: 0;
  margin-right: 0.26vw;
  background: url(../images/img038.png) no-repeat center;
  background-size: 100%;
  vertical-align: -0.26vw;
}
.bread-crumbs2 a {
  font-size: 0.73vw;
  line-height: 1.2;
  color: #5f6464;
  font-family: "SourceHanSansCN-Regular";
}
.bread-crumbs2 a:hover {
  color: #008ed8;
}
.bread-crumbs2 a:last-child:after {
  display: none;
}
.bread-crumbs2 a:after {
  content: ">";
  display: inline;
  margin-left: 0.26vw;
  margin-right: 0.26vw;
  color: #5f6464 !important;
}
@media screen and (max-width: 1100px) {
  .bread-crumbs2 > .mxw-box {
    padding: 15px;
  }
  .bread-crumbs2 > .mxw-box:before {
    width: 18px;
    height: 18px;
    vertical-align: -4px;
  }
  .bread-crumbs2 a {
    font-size: 12px;
  }
  .bread-crumbs2 a:after {
    margin-left: 5px;
    margin-right: 5px;
  }
}
/* ==================== 通用面包屑2 End ==================== */
/* ==================== 内页 - 通用选项卡 Start ==================== */
.ny-category {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.13vw;
}
.ny-category .cate-item {
  padding: 0.94vw 2.08vw;
  color: #666;
  background-color: #fff;
  font-family: "SourceHanSansCN-Regular";
  transition: all 0.4s;
  margin-right: 0.52vw;
  border-radius: 5.21vw;
  font-size: 1.04vw;
}
.ny-category .cate-item:last-child {
  margin-right: 0;
}
.ny-category .cate-item:hover {
  background-color: #f4f4f4;
}
.ny-category .cate-item.active {
  background-color: #008ed8;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .ny-category {
    margin-bottom: 30px;
  }
  .ny-category .cate-item {
    font-size: 14px;
    padding: 8px 10px;
    width: 32%;
    text-align: center;
  }
  .ny-category .cate-item:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
}
/* ==================== 内页 - 通用选项卡 End ==================== */
/* ==================== 通用 - 侧边悬浮菜单 Start ==================== */
.common-float-menu {
  position: fixed;
  right: 0.68vw;
  bottom: 10vh;
  z-index: 99;
}
.common-float-menu.active .menu-itembox {
  overflow: visible;
  width: 4vw;
}
.common-float-menu.active .arrow:after {
  transform: rotate(45deg);
  margin-left: -0.26vw;
  margin-right: 0;
}
.common-float-menu .menu-itembox {
  overflow: hidden;
  width: 0;
  transition: width 0.4s, opacity 0.4s;
}
.common-float-menu .menu-item {
  width: 4vw;
  height: 3.3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px rgba(204, 204, 204, 0.5);
  margin-bottom: -1px;
  background-color: #fff;
  transition: background-color 0.4s;
  position: relative;
  cursor: pointer;
  text-align: center;
}
.common-float-menu .menu-item:first-child {
  border-radius: 100px 100px 0 0;
}
.common-float-menu .menu-item:last-child {
  border-radius: 0 0 100px 100px;
}
.common-float-menu .menu-item:hover {
  background-color: #18a7e1;
}
.common-float-menu .menu-item:hover .text {
  color: #fff;
}
.common-float-menu .menu-item:hover .icon img {
  transform: translateY(0);
}
.common-float-menu .menu-item:hover .qr-group {
  visibility: visible;
  opacity: 1;
}
.common-float-menu .menu-item:hover .phone{
  visibility: visible;
  /* transform: translateX(-100%) translateY(-50%); */
  opacity: 1;
  pointer-events: inherit;
}
.common-float-menu .menu-item:last-child {
  margin-bottom: 0;
}
.common-float-menu .menu-item .icon {
  width: 2.08vw;
  height: 2.08vw;
  overflow: hidden;
}
.common-float-menu .menu-item .icon img {
  transform: translateY(-50%);
  box-shadow: 0 0 0.52vw -0.26vw rgba(0, 0, 0, 0.4);
}
.common-float-menu .menu-item .text {
  font-size: 0.6vw;
  color: #333;
}
.common-float-menu .qr-group {
  width: 14vw;
  padding-right: 1.04vw;
  position: absolute;
  left: -0.26vw;
  top: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  background-color: #fff;
  padding: 0.78vw;
  border-radius: 0.52vw;
  box-shadow: 0 0 1.04vw -0.52vw rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}
.common-float-menu .qr-group .qr-item {
  width: 32%;
}
.common-float-menu .qr-group .qr-item:nth-child(3n-1) {
  margin-left: 2%;
  margin-right: 2%;
}
.common-float-menu .qr-group .qr-item:nth-child(3) ~ .qr-item {
  margin-top: 4%;
}
.common-float-menu .qr-group .name {
  font-size: 0.78vw;
  font-family: "PingFangMedium";
  margin-top: 0.26vw;
}
.common-float-menu .menu-item .phone{
  pointer-events: none;
}
.common-float-menu .menu-item .phone{
  width: auto;
  height: 100%;
  position: absolute;
  left: -0.52vw;
  top: 50%;
  transform: translateX(-100%) translateY(-50%);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, transform 0.4s, visibility 0.4s;
  background: #fff;
  font-size: 0.83vw;
  padding: 0.52vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: "SourceHanSansCN-Regular";
  border-radius: 0.52vw;
  box-shadow: 0 0 0.52vw -0.26vw rgba(0,0,0,.2);
}
.common-float-menu .arrow {
  width: 1.6vw;
  height: 3vw;
  background-color: #fff;
  box-shadow: 0.1vw 1px 0.52vw 0vw rgba(51, 51, 51, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -1.6vw;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.common-float-menu .arrow:after {
  content: "";
  width: 0.73vw;
  height: 0.73vw;
  border-top: 0.1vw solid #ccc;
  border-right: 0.1vw solid #ccc;
  display: block;
  transform: rotate(-135deg);
  margin-left: 0;
  margin-right: -0.26vw;
}
@media screen and (max-width: 1100px) {
  .common-float-menu {
    right: 5px;
  }
  .common-float-menu.active .menu-itembox {
    width: 50px;
  }
  .common-float-menu .menu-item {
    width: 50px;
    height: 50px;
    padding: 0 8px;
  }
  .common-float-menu .menu-item .icon {
    width: 24px;
    height: 24px;
  }
  .common-float-menu .menu-item .text {
    font-size: 12px;
    line-height: 1.4;
  }
  .common-float-menu .arrow {
    width: 26px;
    height: 44px;
    left: -26px;
  }
  .common-float-menu .arrow:after {
    width: 8px;
    height: 8px;
  }
  .common-float-menu .qr-group {
    width: 53vw;
    padding: 2.78vw;
    padding: 10px;
  }
  .common-float-menu .menu-item .qr{
    width: 100px;
    height: 100px;
    padding-right: 10px;
  }
  .common-float-menu .menu-item .phone{
    padding: 10px;
    left: -10px;
    font-size: 12px;
  }
}
/* ==================== 通用 - 侧边悬浮菜单 End ==================== */
/* ==================== 通用视频弹窗 Start ==================== */
.common-popup-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10vh;
  transform: scale(0);
  transition: transform 0.4s;
}
.common-popup-video.active {
  transform: scale(1);
}
.common-popup-video .video-main {
  position: relative;
}
.common-popup-video .close {
  width: 3.75vw;
  height: 3.75vw;
  background: url(../images/img162.png) no-repeat center;
  background-size: 100%;
  display: block;
  position: absolute;
  top: -3.75vw;
  margin-top: -2.59vw;
  right: -3.75vw;
  cursor: pointer;
  transition: transform 0.4s;
}
.common-popup-video .close:hover {
  transform: rotate(180deg);
}
.common-popup-video video {
  height: 60vh;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .common-popup-video .video-main {
    text-align: center;
  }
  .common-popup-video video {
    height: auto;
    width: 90%;
  }
  .common-popup-video .close {
    width: 30px;
    height: 30px;
    top: -40px;
    right: 10px;
    margin-top: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100%;
  }
}
/* ==================== 通用视频弹窗 End ==================== */
@media screen and (max-width: 1100px) {
  html.noscroll {
    overflow: hidden;
  }
  main.active {
    z-index: 1112;
  }
}
.index-banner .swiper-slide {
  position: relative;
}
.index-banner .swiper-slide .info {
  position: absolute;
  top: 30.2%;
  left: 12.4%;
  max-width: 40%;
}
.index-banner .swiper-slide img {
  width: 100%;
}
.index-banner .swiper-slide video{
  width: 100%;
  display: block;
  object-fit: cover;
}
.index-banner .body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
}
.index-banner .body > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.index-banner .serach-btn{
  display: block;
  text-align: center;
  font-size: 1.04vw;
  background: #ff7500;
  color: #fff;
  width: 10.94vw;
  border-radius: 5.21vw;
  padding: 0.52vw 1.04vw;
  flex-shrink: 0;
  font-family: "SourceHanSansCN-Light";
  letter-spacing: 0.1vw;
  margin-top: 8vw;
}
.index-banner .search {
  flex-shrink: 0;
}
.index-banner .text1 {
  font-size: 2.63vw;
  color: #fff;
  line-height: 1.2;
  font-family: "SourceHanSansCN-Medium";
}
.index-banner .text2 {
  margin-top: 1.04vw;
  font-size: 1.15vw;
  color: #fff;
  font-family: "SourceHanSansCN-Light";
}
.index-banner form {
  display: flex;
  align-items: stretch;
  border-radius: 5.21vw;
  background-color: #fff;
  width: 23.96vw;
}
.index-banner form .icon {
  width: 1.15vw;
  flex-shrink: 0;
  margin-left: 1.56vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-banner form input {
  padding: 0 0.78vw;
  flex-grow: 1;
  font-size: 0.94vw;
  font-family: "SourceHanSansCN-Regular";
  color: #333;
}
.index-banner form input::-webkit-input-placeholder {
  color: #999;
}
.index-banner form input::-moz-placeholder {
  color: #999;
}
.index-banner form input:-moz-placeholder {
  color: #999;
}
.index-banner form input:-ms-input-placeholder {
  color: #999;
}
.index-banner form button {
  width: 3.65vw;
  height: 3.65vw;
  line-height: 3.65vw;
  font-size: 0.94vw;
  color: #fff;
  background-color: #ff7500;
  border-radius: 100%;
  font-family: "SourceHanSansCN-Regular";
  transition: background-color 0.4s;
  flex-shrink: 0;
}
.index-banner form button:hover {
  background-color: #f26243;
}
.index-banner .result {
  margin-left: 6.4vw;
  min-width: 0;
  flex-grow: 1;
  background-color: #fff;
  border-radius: 0.63vw;
  box-shadow: 0vw 0vw 1.67vw 0vw rgba(4, 0, 0, 0.08);
  padding: 0 1.04vw;
  position: relative;
  z-index: 9;
  height: 33.85vw;
}
.index-banner .result .order-swiper {
  width: 100%;
  flex-grow: 1;
}
.index-banner .result .result-body {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.index-banner .result .btn-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 6;
  padding: 1.04vw 0;
  width: 100%;
}
.index-banner .result .prev-btn {
  margin-right: 1.04vw;
}
.index-banner .result .prev-btn,
.index-banner .result .next-btn {
  padding: 0.42vw 1.04vw;
  border-radius: 5.21vw;
  text-align: center;
  font-size: 0.73vw;
  cursor: pointer;
  border: 1px solid #eee;
  color: #333;
  font-family: "SourceHanSansCN-Regular";
  user-select: none;
  transition: all 0.4s;
}
.index-banner .result .prev-btn.swiper-button-disabled,
.index-banner .result .next-btn.swiper-button-disabled {
  opacity: 0.5;
}
.index-banner .result .prev-btn.swiper-button-disabled:hover,
.index-banner .result .next-btn.swiper-button-disabled:hover {
  background-color: #fff;
  border-color: #eee;
  color: #333;
}
.index-banner .result .prev-btn:hover,
.index-banner .result .next-btn:hover {
  background-color: #008ed8;
  border-color: #008ed8;
  color: #fff;
}
.index-banner .result .close {
  width: 1.26vw;
  height: 1.26vw;
  margin-right: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  margin-top: 1vw;
  margin-bottom: 0.5vw;
  /* filter: brightness(0) invert(1); */
  cursor: pointer;
}
.index-banner .result .close img {
  width: 100%;
}
.index-banner .result .head {
  display: flex;
  align-items: center;
  padding-bottom: 1.3vw;
  border-bottom: 1px solid #e5e5e5;
}
.index-banner .result .head .item1 {
  display: flex;
  align-items: center;
  margin-right: 1.73vw;
}
.index-banner .result .head .item1 .icon {
  width: 3.02vw;
  flex-shrink: 0;
  margin-right: 0.52vw;
}
.index-banner .result .head .item1 .content {
  min-width: 0;
  flex-grow: 1;
}
.index-banner .result .head .item1 .text1 {
  font-size: 1.04vw;
  color: #008ed8;
  line-height: 1.2;
  margin-bottom: 0.52vw;
  font-family: "SourceHanSansCN-Medium";
}
.index-banner .result .head .item1 .text2 {
  font-size: 0.73vw;
  color: #666;
  font-family: "SourceHanSansCN-Regular";
}
.index-banner .result .head .item1 .text2 span {
  color: #008ed8;
  font-family: inherit;
}
.index-banner .result .head .item2 {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.index-banner .result .head ul {
  display: flex;
  flex-wrap: wrap;
}
.index-banner .result .head li {
  width: 48%;
  font-family: "SourceHanSansCN-Regular";
}
.index-banner .result .head li:nth-child(2n-1) {
  width: 44%;
}
.index-banner .result .head li:nth-child(2n) {
  width: 56%;
}
.index-banner .result .head li:nth-child(2) ~ li {
  margin-top: 0.52vw;
}
.index-banner .result .head li span {
  font-size: 0.73vw;
  color: #666;
  line-height: 1.2;
}
.index-banner .result .head li strong {
  color: #008ed8;
  font-weight: 400;
  font-size: 0.73vw;
}
.index-banner .result .logistics {
  width: 100%;
  flex-grow: 1;
  overflow: auto;
}
.index-banner .result .logistics::-webkit-scrollbar {
  width: 4px;
  background: #ececec;
}
.index-banner .result .logistics::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #008ed8;
}
.index-banner .result .logistics li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-bottom: 1.3vw;
  padding-left: 1.3vw;
  font-family: "SourceHanSansCN-Regular";
}
.index-banner .result .logistics li:first-child {
  margin-top: 1.3vw;
}
.index-banner .result .logistics li:last-child {
  padding-bottom: 0;
}
.index-banner .result .logistics li:last-child:after {
  display: none;
}
.index-banner .result .logistics li::before {
  content: "";
  display: block;
  width: 0.52vw;
  height: 0.52vw;
  border: 0.1vw solid #008ed8;
  background-color: #fff;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0.26vw;
}
.index-banner .result .logistics li:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #e5e5e5;
  position: absolute;
  left: 0.31vw;
  top: 1.04vw;
}
.index-banner .result .logistics .text {
  font-size: 0.73vw;
  color: #666;
  font-family: inherit;
}
.index-banner .result .logistics .date {
  font-family: inherit;
  color: #ff7500;
  font-style: italic;
  margin-left: 1.56vw;
  font-size: 0.73vw;
}
.index-banner .result-content {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}
@media screen and (min-width: 1100px) {
  .index-banner .info > .mxw-box {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .index-banner .result {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
  }
  .index-banner .result.active {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 1100px) {
  .index-banner {
    z-index: 99;
  }
  .index-banner .body {
    width: 100%;
    top: auto;
    bottom: 60px;
    height: auto;
  }
  .index-banner .swiper-slide .info {
    top: 11%;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .index-banner .text1 {
    font-size: 18px;
  }
  .index-banner .text2 {
    margin-top: 10px;
    font-size: 12px;
  }
  .index-banner .search {
    width: 100%;
    text-align: center;
  }
  .index-banner .serach-btn{
    font-size: 14px;
    width: 120px;
    padding: 6px 10px;
    margin-left: auto;
    margin-right: auto;
  }
  .index-banner form {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .index-banner form .icon {
    width: 16px;
    margin-left: 10px;
  }
  .index-banner form input {
    padding: 0 15px;
    font-size: 12px;
  }
  .index-banner form button {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
  }
  .index-banner .result {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 5px;
    position: relative;
    transition: all 0.4s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-left: 0;
    align-items: center;
    justify-content: center;
    display: none;
  }
  .index-banner .result.active .result-body {
    transform: scale(1);
    opacity: 1;
  }
  .index-banner .result .result-body {
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    position: relative;
    transform: scale(0);
    transition: all 0.4s;
    opacity: 0;
  }
  .index-banner .result .close {
    width: 25px;
    height: 25px;
    margin-bottom: -25px;
    position: relative;
    z-index: 99;
  }
  .index-banner .result .head {
    width: 100%;
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .index-banner .result .head li span,
  .index-banner .result .head li strong {
    font-size: 12px;
  }
  .index-banner .result .head .item1 {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .index-banner .result .head .item1 .content {
    padding-right: 30px;
  }
  .index-banner .result .head .item1 .icon {
    width: 40px;
    margin-right: 10px;
  }
  .index-banner .result .head .item1 .text1 {
    margin-bottom: 0;
    font-size: 13px;
  }
  .index-banner .result .head .item1 .text2 {
    margin-top: 3px;
    font-size: 13px;
  }
  .index-banner .result .logistics {
    width: 100%;
  }
  .index-banner .result .logistics ul {
    height: 50vh;
    padding-right: 20px;
  }
  .index-banner .result .logistics li {
    display: block;
    padding-left: 20px;
    padding-bottom: 20px;
  }
  .index-banner .result .logistics li:before {
    width: 8px;
    height: 8px;
    top: 4px;
    border-width: 1px;
  }
  .index-banner .result .logistics li:after {
    width: 1px;
    left: 5px;
    top: 14px;
  }
  .index-banner .result .logistics .text {
    font-size: 13px;
  }
  .index-banner .result .logistics .date {
    margin-left: 0;
    margin-top: 5px;
    font-size: 12px;
  }
  .index-banner .result .btn-group {
    width: 100%;
    margin-top: 20px;
    padding: 0;
  }
  .index-banner .result .btn-group .prev-btn,
  .index-banner .result .btn-group .next-btn {
    width: 48%;
    padding: 6px;
  }
  .index-banner .result .btn-group .prev-btn {
    margin-right: 4%;
  }
}
.index-waves {
  pointer-events: none;
}
.index-waves .waves {
  position: absolute;
  width: 100%;
  max-height: 300px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
}
.index-waves .waves .parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.index-waves .waves .parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
.index-section1 {
  overflow: hidden;
  position: relative;
}
.index-section1 .flag {
  text-align: right;
}
.index-section1 .flag img {
  width: 100%;
}
.index-section1 .plane {
  position: absolute;
  bottom: -5.83rem;
  right: -6rem;
  width: 20.75rem;
  height: 15.37rem;
  animation: plane-animate 2s ease-in-out infinite alternate;
}
.index-section1 .info {
  z-index: 9;
}
.index-section1 .info .text1 {
  font-size: 0.6rem;
  color: #f26243;
  line-height: 1;
  margin-bottom: 0.25rem;
  font-family: "SourceHanSansCN-Medium";
  text-transform: capitalize;
}
.index-section1 .info .text2 {
  font-size: 0.4rem;
  color: #999;
  line-height: 1.2;
  font-family: "SourceHanSansCN-Regular";
}
@keyframes plane-animate {
  0% {
    transform: translate3d(-0.33rem, -0.33rem, 0);
  }
  100% {
    transform: translate3d(0px, 0px, 0);
  }
}
@media screen and (min-width: 1100px) {
  .index-section1 .info {
    position: absolute;
    top: 3.17rem;
    right: 4.83rem;
    text-align: center;
  }
}
@media screen and (max-width: 1100px) {
  .index-section1 {
    padding: 30px 0 0;
  }
  .index-section1 .info {
    padding: 0 20px;
    text-align: center;
  }
  .index-section1 .info .text1 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .index-section1 .info .text2 {
    font-size: 12px;
  }
  .index-section1 .plane {
    position: absolute;
    bottom: -36%;
    right: -34%;
    width: 80%;
    height: auto;
    animation: plane-animate 2s ease-in-out infinite alternate;
  }
  @keyframes plane-animate {
    0% {
      transform: translate3d(-10px, -10px, 0);
    }
    100% {
      transform: translate3d(0px, 0px, 0);
    }
  }
}
.index-section2 {
  position: relative;
}
.index-section2 .content {
  background-color: #f7fcff;
  border-radius: 0vw 16.67vw 16.67vw 0vw;
  padding-top: 8.33vw;
  padding-bottom: 6.25vw;
  padding-right: 3.13vw;
}
.index-section2 .content .desc {
  font-size: 0.83vw;
  color: #6c6e6f;
  line-height: 1.8;
  /* text-align: justify; */
  font-family: "SourceHanSansCN-Regular";
}
.index-section2 .content .more-btn {
  margin-top: 4.17vw;
  display: block;
  background-color: #008ed8;
  line-height: 3.02vw;
  height: 3.02vw;
  text-align: center;
  font-size: 0.83vw;
  color: #fff;
  font-family: "SourceHanSansCN-Regular";
  width: 9.9vw;
  border-radius: 5.21vw;
}
.index-section2 .item {
  display: block;
  position: relative;
}
.index-section2 .item:hover .title {
  color: #008ed8;
}
.index-section2 .item .info {
  padding: 1.56vw;
  background-color: #fff;
  border-radius: 0vw 1.04vw 0vw 1.88vw;
}
.index-section2 .item .date {
  margin-bottom: 0.26vw;
  font-size: 0.63vw;
  color: #999;
  line-height: 1.2;
  font-family: "SourceHanSansCN-Regular";
}
.index-section2 .item .title {
  font-size: 0.83vw;
  color: #000;
  line-height: 1.6em;
  height: 3.2em;
  text-align: justify;
  font-family: "SourceHanSansCN-Regular";
}
@media screen and (min-width: 1100px) {
  .index-section2 {
    padding-top: 8.85vw;
    padding-bottom: 5.21vw;
    display: flex;
    align-items: center;
    overflow: visible;
    z-index: 10;
  }
  .index-section2 > .mxw-box {
    position: relative;
  }
  .index-section2 .content {
    position: relative;
  }
  .index-section2 .content:after {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background-color: inherit;
    position: absolute;
    left: -100vw;
    top: 0 ;
  }
  .index-section2 .content .content-box {
    width: 19.27vw;
    margin-left: auto;
    margin-right: 0;
  }
  .index-section2 .itembox {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 46.35vw;
    position: absolute;
    top: -8.33vw;
    left: 0;
    z-index: 9;
  }
  .index-section2 .item {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    width: 20.83vw;
    height: 23.49vw;
  }
  .index-section2 .item .image {
    width: 100%;
    border-radius: 1.88vw 1.88vw 1.88vw 2.19vw;
    overflow: hidden;
    box-shadow: 0vw 0vw 1.04vw 0vw rgba(0, 0, 0, 0.1);
    transition: all 0.6s;
  }
  .index-section2 .item:nth-child(2) {
    margin-top: 10.94vw;
  }
  .index-section2 .item:nth-child(3) {
    margin-top: -8.33vw;
  }
  .index-section2 .item .info {
    width: 18.23vw;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.6s;
  }
  @keyframes card-animate {
    0% {
      transform: translateX(-0.52vw);
    }
    50% {
      transform: translateX(-0.26vw);
    }
    100% {
      transform: translateX(0vw);
    }
  }
}
@media screen and (max-width: 1100px) {
  .index-section2 {
    overflow: hidden;
    padding: 30px 0;
  }
  .index-section2 .index-title {
    margin-bottom: 20px;
  }
  .index-section2 .content {
    padding: 30px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
  }
  .index-section2 .content .desc {
    font-size: 14px;
  }
  .index-section2 .content .more-btn {
    padding: 8px 20px;
    width: auto;
    height: auto;
    font-size: 12px;
    line-height: inherit;
    margin-top: 20px;
  }
  .index-section2 .item {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .index-section2 .item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
  }
  .index-section2 .item .image {
    width: 100px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
  }
  .index-section2 .item .info {
    padding: 0;
    margin-left: 20px;
  }
  .index-section2 .item .date {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .index-section2 .item .title {
    font-size: 13px;
  }
}
.index-section3 {
  position: relative;
}
.index-section3 > .mxw-box {
  position: relative;
  z-index: 30;
}
.index-section3 .index-title {
  margin-bottom: 0;
}
.index-section3 .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index-section3 .bg-image {
  width: 36.82vw;
  position: absolute;
  top: -2%;
  right: 0;
  background-repeat: no-repeat!important;
  background-position: right top!important;
  background-size: 36.82vw auto!important;
  z-index: 20;
  transition: all 0.4s;
}
.index-section3 .bg-image img {
  width: 100%;
}
.index-section3 .arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.index-section3 .arrow .swiper-button-prev,
.index-section3 .arrow .swiper-button-next {
  outline: none;
  width: 2.6vw;
  height: 2.6vw;
  position: relative;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 0vw 0.21vw 0.52vw 0vw rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #fff;
}
.index-section3 .arrow .swiper-button-prev:hover:after,
.index-section3 .arrow .swiper-button-next:hover:after {
  border-color: #008ed8;
}
.index-section3 .arrow .swiper-button-prev:after,
.index-section3 .arrow .swiper-button-next:after {
  content: "";
  display: block;
  width: 0.52vw;
  height: 0.52vw;
  border-top: 1px solid #d4d4d4;
  border-right: 1px solid #d4d4d4;
  transform: rotate(45deg);
  margin-left: -0.52vw;
  transition: border-color 0.4s;
}
.index-section3 .arrow .swiper-button-prev {
  transform: rotateY(-180deg);
}
.index-section3 .arrow .swiper-button-next {
  margin-left: 1.04vw;
}
.index-section3 .item {
  border: 1px solid #e2e2e2;
  text-align: center;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.index-section3 .item:after {
  content: "";
  display: block;
  width: 3.13vw;
  height: 0.21vw;
  background-color: #f26243;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4.17vw;
}
.index-section3 .item .item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/img022.jpg) no-repeat center;
  background-size: cover;
  opacity: 0;
  transition: all 0.4s;
}
.index-section3 .item .icon {
  width: 4.17vw;
  height: 4.17vw;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 1.2;
  margin-bottom: 2.08vw;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 9;
}
.index-section3 .item .info {
  position: relative;
  z-index: 9;
}
.index-section3 .item .info .text1 {
  font-size: 1.25vw;
  color: #222;
  line-height: 1.2;
  font-family: "SourceHanSansCN-Medium";
}
.index-section3 .item .info .text2 {
  font-size: 0.83vw;
  color: #fff;
  line-height: 1.8;
  text-align: center;
  margin-top: 1.3vw;
  max-width: 14.58vw;
  margin-left: auto;
  margin-right: auto;
  font-family: "SourceHanSansCN-Regular";
}
.index-section3 .item .info .more-btn {
  margin-top: 2.03vw;
  width: 8.85vw;
  height: 2.56vw;
  line-height: 2.56vw;
  text-align: center;
  font-size: 0.83vw;
  color: #fff;
  border-radius: 5.21vw;
  border: 1px solid ;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-family: "SourceHanSansCN-Regular";
  transition: all 0.4s;
}
.index-section3 .index-section3-swiper .swiper-wrapper {
  height: 26.04vw;
}
@media screen and (min-width: 1100px) {
  .index-section3 {
    padding-top: 10.42vw;
    padding-bottom: 5.21vw;
  }
  .index-section3 .itembox {
    height: 26.56vw;
  }
  .index-section3 .bg-image {
    background-attachment: fixed;
  }
  .index-section3 .item .more-btn {
    transition: all 0.4s;
  }
  .index-section3 .item .more-btn:hover {
    background-color: #fff;
    color: #008ed8;
    border-color: #fff;
  }
  .index-section3 .item {
    height: 20.31vw;
    padding: 4.17vw 0;
    transition: all 0.4s;
    cursor: pointer;
  }
  .index-section3 .item .info .text2 {
    opacity: 0;
    display: none;
  }
  .index-section3 .item .info .more-btn {
    opacity: 0;
    display: none;
  }
  .index-section3 .item.active,
  .index-section3 .item:hover {
    border-radius: 1.88vw;
    border: 0;
    z-index: 30;
    height: 26.04vw;
  }
  .index-section3 .item.active:after,
  .index-section3 .item:hover:after {
    display: none;
  }
  .index-section3 .item.active .icon img,
  .index-section3 .item:hover .icon img {
    transform: translateY(-50%);
  }
  .index-section3 .item.active .info .text1,
  .index-section3 .item:hover .info .text1 {
    color: #fff;
  }
  .index-section3 .item.active .info .text2,
  .index-section3 .item:hover .info .text2 {
    display: block;
    transition: opacity 0.2s;
    opacity: 1;
  }
  .index-section3 .item.active .info .more-btn,
  .index-section3 .item:hover .info .more-btn {
    display: block;
    opacity: 1;
  }
  .index-section3 .item.active .item-bg,
  .index-section3 .item:hover .item-bg {
    opacity: 1;
  }
  .index-section3 .body {
    overflow: hidden;
  }
  .index-section3 .index-section3-swiper {
    padding: 2.41vw 0;
    overflow: visible;
    border-radius: 0.63vw;
  }
  .index-section3 .index-section3-swiper .swiper-wrapper {
    align-items: center;
  }
}
@media screen and (max-width: 1100px) {
  .index-section3 {
    padding: 30px 0;
  }
  .index-section3 .top {
    margin-bottom: 20px;
  }
  .index-section3 .arrow .swiper-button-next {
    margin-left: 10px;
  }
  .index-section3 .arrow .swiper-button-prev,
  .index-section3 .arrow .swiper-button-next {
    width: 30px;
    height: 30px;
  }
  .index-section3 .arrow .swiper-button-prev:after,
  .index-section3 .arrow .swiper-button-next:after {
    width: 6px;
    height: 6px;
  }
  .index-section3 .bg-image {
    display: none;
  }
  .index-section3 .item {
    padding: 30px 10px;
  }
  .index-section3 .item:after {
    display: none;
    width: 30px;
    margin-top: 20px;
    height: 2px;
  }
  .index-section3 .item .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
  .index-section3 .item .info .text1 {
    font-size: 14px;
  }
  .index-section3 .item .info .text1:after {
    content: "";
    display: block;
    width: 30px;
    margin-top: 10px;
    height: 2px;
    background-color: #f26243;
    margin-left: auto;
    margin-right: auto;
  }
  .index-section3 .item .info .text2 {
    color: #000;
    max-width: 100%;
    margin-top: 14px;
    font-size: 12px;
  }
  .index-section3 .item .info .more-btn {
    padding: 4px 10px;
    margin-top: 20px;
    width: 80%;
    height: auto;
    line-height: inherit;
    font-size: 12px;
    color: #008ed8;
  }
  .index-section3 .index-section3-swiper .swiper-wrapper {
    padding-bottom: 2px;
    height: auto;
  }
}
.index-section4 .info .text1 {
  font-size: 1.25vw;
  color: #222;
  line-height: 1.2;
  margin-bottom: 1.04vw;
  font-family: "SourceHanSansCN-Regular";
}
.index-section4 .info .desc {
  font-size: 0.83vw;
  color: #333;
  opacity: 0.85;
  font-family: "SourceHanSansCN-Regular";
  line-height: 1.8;
}
.index-section4 .info .index-more-btn {
  margin-top: 3.13vw;
}
.index-section4 .swiper-min-img {
  margin-top: 3.65vw;
}
.index-section4 .swiper-min-img .swiper-slide {
  border-radius: 0.52vw;
  overflow: hidden;
  opacity: 0.35;
  cursor: pointer;
  transition: opacity 0.4s;
}
.index-section4 .swiper-min-img .swiper-slide.my-slide-thumb-active {
  opacity: 1;
}
@media screen and (min-width: 1100px) {
  .index-section4 {
    z-index: 20;
  }
  .index-section4 > .mxw-box {
    display: flex;
    align-items: flex-end;
  }
  .index-section4 .index-title {
    margin-bottom: 4.17vw;
  }
  .index-section4 .info {
    max-width: 100%;
  }
  .index-section4 .left {
    width: 37.5vw;
    flex-shrink: 0;
    margin-right: 6.25vw;
  }
  .index-section4 .swiper-big-img {
    height: 38.54vw;
    flex-grow: 1;
  }
  .index-section4 .swiper-big-img .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 5.21vw;
  }
  .index-section4 .swiper-big-img .swiper-slide img {
    height: 100%;
    max-width: inherit;
    width: auto;
    transform: translateX(-14.73vw);
  }
}
@media screen and (max-width: 1100px) {
  .index-section4 {
    padding: 30px 0;
  }
  .index-section4 .info .index-more-btn {
    margin-top: 20px;
  }
  .index-section4 .info .text1 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .index-section4 .info .desc {
    font-size: 14px;
  }
  .index-section4 .swiper-min-img {
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .index-section4 .swiper-min-img .swiper-slide {
    border-radius: 5px;
  }
  .index-section4 .swiper-big-img .swiper-slide {
    border-radius: 10px;
    overflow: hidden;
  }
  .index-section4 .swiper-big-img img {
    width: 100%;
  }
}
.index-section5 {
  position: relative;
}
.index-section5 .bg-image {
  position: absolute;
  left: 0;
  bottom: -30.6%;
  /* background: url(../images/img030.jpg) no-repeat left center;  */
  background-size: 50.05vw auto!important;
  background-repeat: no-repeat!important;
  background-position: left center!important;
  width: 50.05vw;
}
.index-section5 .bg-image img {
  width: 100%;
}
.index-section5 .desc {
  font-size: 0.83vw;
  color: #616161;
  line-height: 1.8em;
  /* text-align: justify; */
  font-family: "SourceHanSansCN-Regular";
}
.index-section5 .itembox {
  margin-top: 5.21vw;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.index-section5 .item:nth-child(3n-1) {
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}
.index-section5 .item .text1 {
  font-size: 0.83vw;
  color: #000;
  line-height: 1.2;
  margin-bottom: 0.52vw;
}
.index-section5 .item .text1 span,
.index-section5 .item .text1 em {
  font-size: 1.88vw;
  color: #008ed8;
  line-height: 1;
  font-style: inherit;
  font-family: "SourceHanSansCN-Medium";
  font-weight: bold;
}
.index-section5 .item .text1 span:last-child,
.index-section5 .item .text1 em:last-child {
  margin-right: 0.38vw;
}
.index-section5 .item .text2 {
  font-size: 14px;
  color: #333;
  font-family: "SourceHanSansCN-Regular";
  height: 3em;
  line-height: 1.5;
}
@media screen and (min-width: 1100px) {
  .index-section5 {
    height: 51.04vw;
  }
  .index-section5 > .mxw-box {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .index-section5 .item{
    padding-left: 0.5vw;
    padding-right: 0.5vw;
    text-align: center;
  }
  .index-section5 .bg-image {
    background-attachment: fixed;
  }
  .index-section5 .content {
    max-width: 31.25vw;
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 1100px) {
  .index-section5 {
    padding: 30px 0;
  }
  .index-section5 .index-title {
    margin-bottom: 20px;
  }
  .index-section5 .bg-image {
    display: none;
  }
  .index-section5 .desc {
    font-size: 14px;
  }
  .index-section5 .itembox {
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .index-section5 .item:nth-child(3n-1) {
    padding-left: 30px;
    padding-right: 30px;
  }
  .index-section5 .item .text1 span,
  .index-section5 .item .text1 em {
    font-size: 22px;
  }
  .index-section5 .item .text2 {
    font-size: 14px;
  }
}
.index-section6 {
  overflow: hidden;
}
.index-section6 .index-title {
  margin-bottom: 0;
}
.index-section6 .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 6.77vw;
}
.index-section6 .arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.index-section6 .arrow .swiper-button-prev,
.index-section6 .arrow .swiper-button-next {
  outline: none;
  width: 2.6vw;
  height: 2.6vw;
  position: relative;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 0vw 0.21vw 0.52vw 0vw rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #fff;
}
.index-section6 .arrow .swiper-button-prev:hover:after,
.index-section6 .arrow .swiper-button-next:hover:after {
  border-color: #008ed8;
}
.index-section6 .arrow .swiper-button-prev:after,
.index-section6 .arrow .swiper-button-next:after {
  content: "";
  display: block;
  width: 0.52vw;
  height: 0.52vw;
  border-top: 1px solid #d4d4d4;
  border-right: 1px solid #d4d4d4;
  transform: rotate(45deg);
  margin-left: -0.27vw;
  transition: border-color 0.4s;
}
.index-section6 .arrow .swiper-button-prev {
  transform: rotateY(-180deg);
}
.index-section6 .arrow .swiper-button-next {
  margin-left: 1.04vw;
}
.index-section6 .content {
  background-color: #f7fcff;
  padding-top: 5.21vw;
  padding-bottom: 7.81vw;
  border-radius: 0vw 16.67vw 16.67vw 15.94vw;
}
.index-section6 .content:after {
  content: "";
  display: block;
  width: 100vw;
  height: 50%;
  background-color: #f7fcff;
  position: absolute;
  left: -100vw;
  top: 0;
}
.index-section6 .item {
  display: block;
  border-radius: 0.63vw;
  overflow: hidden;
  box-shadow: 0vw 0vw 1.04vw 0vw rgba(0, 0, 0, 0.08);
  margin-bottom: 1.04vw;
  background-color: #fff;
}
.index-section6 .item:hover .text1 {
  color: #008ed8;
}
.index-section6 .item .info {
  padding: 1.56vw;
}
.index-section6 .item .text1 {
  font-size: 1.35vw;
  color: #333;
  line-height: 1.2;
  font-family: "SourceHanSansCN-Medium";
  transition: color 0.4s;
}
.index-section6 .item .text2 {
  margin-top: 0.52vw;
  font-size: 0.83vw;
  color: #333;
  font-family: "SourceHanSansCN-Regular";
  /* text-align: justify; */
}
.index-section6 .index-section6-swiper {
  position: relative;
  margin-right: -12vw;
}
.index-section6 .index-section6-swiper:after {
  content: "";
  display: block;
  height: 100%;
  width: 27.6vw;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0.7), transparent);
  pointer-events: none;
}
.index-section6 .index-section6-swiper .swiper-slide {
  transition: opacity 0.4s;
}
.index-section6 .index-section6-swiper .swiper-slide-next + .swiper-slide {
  opacity: 0.8;
}
@media screen and (min-width: 1100px) {
  .index-section6 {
    position: relative;
    z-index: 20;
  }
  .index-section6 .top {
    margin-bottom: 3.13vw;
  }
  .index-section6 .content {
    position: relative;
  }
}
@media screen and (max-width: 1100px) {
  .index-section6 {
    padding: 30px 0;
    background-color: #f7fcff;
  }
  .index-section6 .index-section6-swiper {
    margin-right: 0;
  }
  .index-section6 .content {
    padding: 0;
  }
  .index-section6 .arrow .swiper-button-next {
    margin-left: 10px;
  }
  .index-section6 .arrow .swiper-button-prev,
  .index-section6 .arrow .swiper-button-next {
    width: 30px;
    height: 30px;
  }
  .index-section6 .arrow .swiper-button-prev:after,
  .index-section6 .arrow .swiper-button-next:after {
    width: 6px;
    height: 6px;
  }
  .index-section6 .top {
    padding-right: 0;
    margin-bottom: 20px;
  }
  .index-section6 .item .info {
    padding: 15px;
  }
  .index-section6 .item .text1 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .index-section6 .item .text2 {
    font-size: 12px;
    line-height: 1.6;
  }
  .index-section6 .index-section6-swiper:after {
    display: none;
  }
}
/* ==================== 产品服务 - 板块一 Start ==================== */
@media screen and (min-width: 1100px) {
  .product-section1 .swiper-min-img {
    margin-top: 115px;
    margin-bottom: 50px;
  }
}
/* ==================== 产品服务 - 板块一 End ==================== */
/* ==================== 产品服务 - 板块二 Start ==================== */
.product-section2 {
  background-color: #f7fcff;
}
.product-section2 .itembox {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.product-section2 .item {
  width: 25%;
  padding: 2.6vw 2.6vw;
  background-color: #fff;
  border: 1px solid #e5f3fb;
  margin: -1px;
  overflow: hidden;
  transition: transform 0.4s;
}
.product-section2 .item:hover {
  background: url(../images/img066.jpg) no-repeat center;
  background-size: cover;
}
.product-section2 .item:hover .icon {
  filter: brightness(0) invert(1);
}
.product-section2 .item:hover .info .text1,
.product-section2 .item:hover .info .text2 {
  color: #fff;
}
.product-section2 .item .icon {
  width: 2.6vw;
  margin-bottom: 10.42vw;
}
.product-section2 .item .text1 {
  font-size: 1.25vw;
  color: #008ed8;
  line-height: 1.2;
  margin-bottom: 1.04vw;
  font-family: "SourceHanSansCN-Medium";
}
.product-section2 .item .text2 {
  font-size: 0.83vw;
  color: #666;
  line-height: 1.8;
  font-family: "SourceHanSansCN-Light";
}
@media screen and (min-width: 1100px) {
  .product-section2 .item:hover {
    transform: scale(1.1);
    z-index: 9;
    border-radius: 2.08vw;
  }
}
@media screen and (max-width: 1100px) {
  .product-section2 {
    padding: 40px 0;
  }
  .product-section2 .item {
    width: 50%;
    padding: 20px;
  }
  .product-section2 .item .icon {
    width: 25px;
    margin-bottom: 30px;
  }
  .product-section2 .item .text1 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .product-section2 .item .text2 {
    font-size: 12px;
  }
}
/* ==================== 产品服务 - 板块二 End ==================== */
/* ==================== 产品服务 - 板块三 Start ==================== */
.product-section3 .bg-image img {
  width: 100%;
}
.product-section3 .info {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3.13vw 2.6vw;
  text-align: center;
  color: #fff;
}
.product-section3 .info .text1 {
  font-size: 1.25vw;
  line-height: 1.1;
  padding-bottom: 1.3vw;
  font-family: "SourceHanSansCN-Medium";
  color: inherit;
  position: relative;
}
.product-section3 .info .text1:after {
  content: "";
  display: block;
  width: 3.13vw;
  height: 0.21vw;
  background-color: #ff7500;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  bottom: -0.52vw;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s;
}
.product-section3 .info .text2 {
  font-size: 0.83vw;
  line-height: 1.8;
  text-align: center;
  font-family: "SourceHanSansCN-Regular";
  color: inherit;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s;
  margin-top: 0.52vw;
}
@media screen and (min-width: 1100px) {
  .product-section3 .product-section3-swiper .swiper-slide {
    position: relative;
    border-radius: 0.63vw;
    overflow: hidden;
  }
  .product-section3 .product-section3-swiper .swiper-slide:hover:before {
    opacity: 0;
  }
  .product-section3 .product-section3-swiper .swiper-slide:hover:after {
    opacity: 1;
  }
  .product-section3 .product-section3-swiper .swiper-slide:hover .info .text2 {
    max-height: 10.42vw;
  }
  .product-section3 .product-section3-swiper .swiper-slide:hover .text1 {
    padding-bottom: 1.3vw;
  }
  .product-section3 .product-section3-swiper .swiper-slide:hover .text1:after {
    opacity: 0;
  }
  .product-section3 .product-section3-swiper .swiper-slide:before,
  .product-section3 .product-section3-swiper .swiper-slide:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s;
  }
  .product-section3 .product-section3-swiper .swiper-slide:before {
    opacity: 1;
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
  }
  .product-section3 .product-section3-swiper .swiper-slide:after {
    background-image: linear-gradient(to bottom, transparent, rgba(0, 142, 216, 0.8));
  }
}
@media screen and (max-width: 1100px) {
  .product-section3 .product-section3-swiper .swiper-wrapper {
    flex-wrap: wrap;
  }
  .product-section3 .product-section3-swiper .swiper-slide {
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .product-section3 .product-section3-swiper .swiper-slide:last-child {
    margin-bottom: 0;
  }
  .product-section3 .bg-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 8px 0 0;
  }
  .product-section3 .info {
    position: static;
    color: #333;
    padding: 25px 15px;
    background-color: #f7fcff;
    border-radius: 0 0 8px 8px;
  }
  .product-section3 .info .text1 {
    font-size: 15px;
    padding-bottom: 10px;
  }
  .product-section3 .info .text1:after {
    width: 40px;
    height: 2px;
  }
  .product-section3 .info .text2 {
    max-height: inherit;
    font-size: 13px;
    margin-top: 15px;
    text-align: center;
  }
}
/* ==================== 产品服务 - 板块三 End ==================== */
/* ==================== 产品服务 - 板块四 Start ==================== */
.product-section4 {
  background-color: #f7fcff;
}
.product-section4 .itembox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.product-section4 .itembox:after {
  content: "";
  display: block;
  background-color: #def1fb;
  bottom: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 1px;
  position: absolute;
}
.product-section4 .item {
  width: 9.38vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.product-section4 .item:before,
.product-section4 .item:after {
  content: "";
  display: block;
  width: 0.83vw;
  height: 0.83vw;
  transform: rotate(45deg) translateX(-50%);
  box-shadow: 0vw 0vw 0.63vw 0vw rgba(0, 0, 0, 0.08);
  position: absolute;
  bottom: -0.73vw;
  left: 50%;
  background-color: #fff;
}
.product-section4 .item:before {
  box-shadow: none;
  z-index: 4;
}
.product-section4 .item-content {
  background-color: #fff;
  border-radius: 0.63vw;
  position: relative;
  box-shadow: 0vw 0vw 0.63vw 0vw rgba(0, 0, 0, 0.08);
  width: 100%;
  height: 13.54vw;
  text-align: center;
  padding-top: 2.08vw;
  z-index: 3;
}
.product-section4 .item-content:after {
  content: "";
  display: block;
  width: 0.63vw;
  height: 0.63vw;
  border-radius: 100%;
  background-color: #008ed8;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2.66vw;
}
.product-section4 .item-content .info {
  position: relative;
}
.product-section4 .item-content .number {
  font-size: 4.17vw;
  color: #1897d9;
  transform: skew(-10deg);
  letter-spacing: -0.1vw;
  opacity: 0.05;
  font-family: "MontserratRegular";
  line-height: 1;
}
.product-section4 .item-content .icon {
  width: 2.6vw;
  position: absolute;
  bottom: 0.26vw;
  left: 50%;
  transform: translate(-50%, 0);
}
.product-section4 .item-content .text1 {
  font-family: "SourceHanSansCN-Regular";
  font-size: 1.04vw;
  color: #000;
  line-height: 1.4;
  margin-top: 1.04vw;
  padding: 0 0.86vw;
}
@media screen and (min-width: 1100px) {
  .product-section4 .mxw-box {
    position: relative;
  }
  .product-section4 .item:nth-child(2n) {
    margin-top: 18.23vw;
  }
  .product-section4 .item:nth-child(2n):before,
  .product-section4 .item:nth-child(2n):after {
    top: -0.1vw;
    bottom: auto;
  }
  .product-section4 .item:nth-child(2n) .item-content:after {
    top: -2.71vw;
    bottom: auto;
  }
}
@media screen and (max-width: 1100px) {
  .product-section4 .itembox {
    flex-wrap: wrap;
    align-items: stretch;
  }
  .product-section4 .itembox:after {
    display: none;
  }
  .product-section4 .item {
    width: 48%;
    margin-right: 4%;
  }
  .product-section4 .item:before,
  .product-section4 .item:after {
    display: none;
  }
  .product-section4 .item:nth-child(2n) {
    margin-right: 0;
  }
  .product-section4 .item:nth-child(2) ~ .item {
    margin-top: 4%;
  }
  .product-section4 .item-content {
    height: 100%;
    padding: 20px 0;
  }
  .product-section4 .item-content:after {
    display: none;
  }
  .product-section4 .item-content .icon {
    width: 34px;
  }
  .product-section4 .item-content .number {
    font-size: 44px;
  }
  .product-section4 .item-content .text1 {
    margin-top: 10px;
    font-size: 14px;
  }
  .product-section4 .bg-icon {
    display: none;
  }
}
/* ==================== 产品服务 - 板块四 End ==================== */
/* ==================== 常见问题 - 板块一 Start ==================== */
.product-section5 {
  background-color: #fff;
}
.product-section5 .item {
  border-bottom: 1px dashed #e5f3fb;
  padding: 1.35vw 2.08vw;
  font-family: "SourceHanSansCN-Regular";
  padding-right: 13.54vw;
  border-radius: 0.42vw;
  position: relative;
  transition: background-color 0.2s;
}
.product-section5 .item.active {
  background-color: #008ed8;
  border-bottom: 1px dashed transparent;
}
.product-section5 .item.active .title,
.product-section5 .item.active .details {
  color: #fff;
}
.product-section5 .item.active .arrow {
  background-color: #fff;
  transform: translateY(-50%) rotate(-90deg);
}
.product-section5 .item.active .arrow:after {
  border-color: #008ed8;
  margin-left: -5px;
}
.product-section5 .item .title {
  font-size: 0.94vw;
  color: #333;
  line-height: 1.2;
  cursor: pointer;
  font-family: inherit;
}
.product-section5 .item .details {
  font-family: inherit;
  display: none;
  margin-top: 0.78vw;
  font-size: 0.83vw;
  color: #8d8d8d;
  line-height: 1.8;
}
.product-section5 .item .arrow {
  width: 2.6vw;
  height: 2.6vw;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 2.08vw;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  cursor: pointer;
}
.product-section5 .item .arrow:after {
  content: "";
  display: block;
  width: 0.52vw;
  height: 0.52vw;
  border-top: 0.1vw solid #b2b2b2;
  border-right: 0.1vw solid #b2b2b2;
  transition: all 0.4s;
  transform: rotate(45deg);
}
@media screen and (min-width: 1100px) {
  .product-section5 {
    padding-top: 106px;
    padding-bottom: 166px;
  }
}
@media screen and (max-width: 1100px) {
  .product-section5 {
    padding: 30px 0;
  }
  .product-section5 .itembox .item {
    padding: 15px 0;
    border-radius: 5px;
  }
  .product-section5 .itembox .item .arrow:after {
    width: 5px;
    height: 5px;
  }
  .product-section5 .itembox .item.active {
    padding: 15px;
  }
  .product-section5 .itembox .item.active .arrow {
    width: 20px;
    height: 20px;
    top: 24px;
    right: 15px;
  }
  .product-section5 .itembox .item.active .arrow:after {
    width: 5px;
    height: 5px;
    border-top-width: 1px;
    border-right-width: 1px;
  }
  .product-section5 .itembox .item .title {
    font-size: 13px;
    line-height: 1.6;
  }
  .product-section5 .itembox .item .details {
    margin-top: 10px;
    font-size: 12px;
  }
}
/* ==================== 常见问题 - 板块一 End ==================== */
/* ==================== 产品服务2 - 板块一 Start ==================== */
.product2-section1 h1 {
  font-size: 1.25vw;
  color: #333;
  line-height: 1;
  margin-bottom: 1.04vw;
  font-weight: 400;
  font-family: "SourceHanSansCN-Medium";
}
.product2-section1 h2 {
  font-size: 0.83vw;
  color: #999;
  line-height: 1.8;
  text-align: justify;
  font-weight: 400;
  font-family: "SourceHanSansCN-Regular";
  margin-bottom: 3.13vw;
}
.product2-section1 .item:hover .icon {
  background-color: #008ed8;
}
.product2-section1 .item:hover .icon img {
  border-color: #fff;
}
.product2-section1 .item:hover .title {
  color: #008ed8;
}
.product2-section1 .item .icon {
  padding-top: 2.6vw;
  padding-bottom: 2.6vw;
  background-color: #fbfbfb;
  overflow: hidden;
  text-align: center;
  border-radius: 0.63vw;
  transition: background-color 0.4s;
}
.product2-section1 .item .icon img {
  width: 8.23vw;
  height: 8.23vw;
  border-radius: 100%;
  margin-left: auto;
  margin-right: auto;
  vertical-align: middle;
  border: 0.42vw solid transparent;
  transition: all 0.4s;
}
.product2-section1 .item .title {
  font-size: 0.83vw;
  color: #333;
  margin-top: 1.56vw;
  text-align: center;
  font-family: "SourceHanSansCN-Regular";
  transition: color 0.4s;
}
@media screen and (min-width: 1100px) {
  .product2-section1 {
    padding-top: 6.25vw;
    padding-bottom: 6.25vw;
  }
  .product2-section1 h2 {
    width: 44.27vw;
  }
}
@media screen and (max-width: 1100px) {
  .product2-section1 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .product2-section1 h1 {
    font-size: 16px;
    line-height: 1.4;
    word-break: break-all;
    margin-bottom: 10px;
  }
  .product2-section1 h2 {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .product2-section1 .item .icon {
    padding: 20px 0;
  }
  .product2-section1 .item .icon img {
    width: 70px;
    height: 70px;
    border-width: 4px;
  }
  .product2-section1 .item .title {
    margin-top: 10px;
    font-size: 14px;
  }
}
/* ==================== 产品服务2 - 板块一 End ==================== */
/* ==================== 产品服务2 - 板块二 Start ==================== */
.product2-section2 {
  background-color: #f7fcff;
  overflow: hidden;
}
.product2-section2 .content {
  position: relative;
  z-index: 2;
}
.product2-section2 .content:after {
  content: "";
  display: block;
  width: 100%;
  height: 18.23vw;
  border-radius: 0 15.63vw 15.63vw 0;
  border: 1px solid #e0f2fb;
  position: absolute;
  right: 0;
  top: 3.13vw;
  border-left: 0;
}
.product2-section2 .itembox {
  position: relative;
  z-index: 3;
}
.product2-section2 .item:nth-child(5) ~ .item {
  order: 6;
}
.product2-section2 .item:nth-child(6) ~ .item {
  order: 5;
}
.product2-section2 .item:nth-child(7) ~ .item {
  order: 4;
}
.product2-section2 .item:nth-child(8) ~ .item {
  order: 3;
}
.product2-section2 .item:nth-child(9) ~ .item {
  order: 2;
}
.product2-section2 .item .number {
  width: 5.73vw;
  height: 5.73vw;
  font-family: "manrope-bold-2";
  font-size: 1.98vw;
  color: #fff;
  background-color: #1897d9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-bottom: 1.04vw;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}
.product2-section2 .item .info {
  text-align: center;
}
.product2-section2 .item .info .text1 {
  font-size: 1.04vw;
  color: #000;
  margin-bottom: 0.78vw;
}
.product2-section2 .item .info .desc {
  font-family: "SourceHanSansCN-Light";
  font-size: 0.83vw;
  color: #666;
  line-height: 1.8em;
  max-width: 10.42vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1100px) {
  .product2-section2 {
    padding-top: 6.25vw;
    padding-bottom: 6.25vw;
  }
  .product2-section2 .index-title {
    margin-bottom: 4.17vw;
  }
  .product2-section2 .item:nth-child(5) ~ .item {
    margin-top: 3.49vw;
  }
  .product2-section2 .common-bg-icon {
    left: -2.08vw;
    top: 7.81vw;
  }
  .product2-section2 .common-bg-icon .bg-icon1 {
    bottom: 11.46vw;
  }
}
@media screen and (max-width: 1100px) {
  .product2-section2 {
    padding: 50px 0;
  }
  .product2-section2 .content:after {
    display: none;
  }
  .product2-section2 .itembox {
    display: block;
  }
  .product2-section2 .item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    padding-bottom: 30px;
    margin-top: 0!important;
  }
  .product2-section2 .item:after {
    content: "";
    display: block;
    width: 1px;
    background-color: rgba(0, 142, 216, 0.16);
    position: absolute;
    left: 14px;
    top: 0;
    height: 100%;
  }
  .product2-section2 .item:last-child {
    padding-bottom: 0;
  }
  .product2-section2 .item:last-child:after {
    display: none;
  }
  .product2-section2 .item:nth-child(2n) {
    margin-left: 0;
  }
  .product2-section2 .item .number {
    flex-shrink: 0;
    margin-right: 15px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .product2-section2 .item .info {
    text-align: left;
    min-width: 0;
    flex-grow: 1;
  }
  .product2-section2 .item .info .text1 {
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .product2-section2 .item .info .desc {
    font-size: 14px;
    max-width: 100%;
  }
}
/* ==================== 产品服务2 - 板块二 End ==================== */
/* ==================== 产品服务3 - 板块一 Start ==================== */
.product3-section1 {
  background-color: #f7fcff;
}
.product3-section1 .info{
  width: 44%;
}
.product3-section1 .desc {
  font-size: 0.83vw;
  color: #6c6e6f;
  line-height: 1.8;
  text-align: justify;
  font-family: "SourceHanSansCN-Regular";
}
.product3-section1 .image {
  overflow: hidden;
}
@media screen and (min-width: 1100px) {
  .product3-section1{
  }
  .product3-section1 .body {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .product3-section1 .image {
    width: 37.5vw;
    flex-shrink: 0;
    border-radius: 2.6vw;
  }
}
@media screen and (max-width: 1100px) {
  .product3-section1 .desc {
    width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .product3-section1 .info{
    width: 100%;
  }
  .product3-section1 .image {
    border-radius: 10px;
  }
}
/* ==================== 产品服务3 - 板块一 End ==================== */
/* ==================== 产品服务3 - 板块二 Start ==================== */
.product3-section2 .item {
  overflow: hidden;
  margin-bottom: 1.56vw;
}
.product3-section2 .item:last-child {
  margin-bottom: 0;
}
.product3-section2 .item.active {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.product3-section2 .item.active .head {
  background-color: #008ed8;
  color: #fff;
  border-color: #008ed8;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.product3-section2 .item.active .number {
  background-color: #fff;
  color: #008ed8;
}
.product3-section2 .item.active .text {
  color: #fff;
}
.product3-section2 .item .head {
  padding: 0.89vw 1.56vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.4s;
  overflow: hidden;
}
.product3-section2 .item .number {
  flex-shrink: 0;
  width: 1.98vw;
  height: 1.98vw;
  border-radius: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.94vw;
  color: #fff;
  font-family: "MontserratRegular";
  font-style: italic;
  margin-right: 1.04vw;
  background-color: #008ed8;
}
.product3-section2 .item .text {
  font-size: 0.94vw;
  color: #333;
  line-height: 1.2;
  font-family: "SourceHanSansCN-Regular";
}
.product3-section2 .item .body {
  display: none;
  max-height: 30.73vw;
  overflow: auto;
}
.product3-section2 .item .body::-webkit-scrollbar {
  width: 4px;
  background: #ececec;
}
.product3-section2 .item .body::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #008ed8;
}
.product3-section2 .item table {
  width: 100%;
  border-collapse: collapse;
}
.product3-section2 .item table tr.active{background-color: #d2f0ff!important;}
.product3-section2 .item table tr:first-child {
  position: sticky;
  top: 0;
  left: 0;
}
.product3-section2 .item table tr:first-child td {
  color: #0893db;
}
.product3-section2 .item table tr:nth-child(2n-1) {
  background-color: #f7fcff;
}
.product3-section2 .item table tr:nth-child(2n) {
  background-color: #fbfbfb;
}
.product3-section2 .item table td {
  padding: 1.56vw 4.48vw;
  font-family: "SourceHanSansCN-Regular;";
  font-size: 0.83vw;
}
.product3-section2 .item table td:nth-child(1) {
  color: #333;
}
.product3-section2 .item table td:nth-child(2) {
  color: #666;
  font-family: "SourceHanSansCN-Light";
}
@media screen and (max-width: 1100px) {
  .product3-section2 .item {
    margin-bottom: 15px;
  }
  .product3-section2 .item .body {
    max-height: 100.73vw;
  }
  .product3-section2 .item:last-child {
    margin-bottom: 0;
  }
  .product3-section2 .item .head {
    padding: 8px;
  }
  .product3-section2 .item .text {
    font-size: 13px;
  }
  .product3-section2 .item .number {
    width: 26px;
    height: 26px;
    font-size: 14px;
    margin-right: 10px;
  }
  .product3-section2 .item table td {
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.6;
  }
}
/* ==================== 产品服务3 - 板块二 End ==================== */
/* ==================== 产品服务3 - 板块三 Start ==================== */
/* ==================== 产品服务3 - 板块三 End ==================== */
/* ==================== 产品服务3 - 板块四 Start ==================== */
.product3-section4 .itembox {
  border-radius: 8px;
  overflow: hidden;
}
.product3-section4 .item {
  border: solid 1px #e2e2e2;
  margin: -1px 0;
  display: flex;
  align-items: stretch;
}
.product3-section4 .item:first-child {
  margin-top: 0;
}
.product3-section4 .item:last-child {
  margin-bottom: 0;
}
.product3-section4 .item .head {
  background-color: #0893db;
  color: #fff;
  width: 9vw;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84vw;
  font-weight: bold;
  padding: 1.56vw 0.7vw;
  text-align: center;
}
.product3-section4 .item .body {
  min-width: 0;
  flex-grow: 1;
  padding: 2.08vw 2.6vw;
  font-family: "SourceHanSansCN-Regular";
  font-size: 0.73vw;
  color: #666;
  line-height: 2;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (min-width: 1100px) {
  .product3-section4 .item .head {
  }
}
@media screen and (max-width: 1100px) {
  .product3-section4 .itembox {
    border-radius: 0;
  }
  .product3-section4 .item {
    border-radius: 5px;
    overflow: hidden;
    display: block;
    margin-bottom: 20px;
  }
  .product3-section4 .item:last-child {
    margin-bottom: 0;
  }
  .product3-section4 .item .head {
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
  }
  .product3-section4 .item .body {
    padding: 15px;
    font-size: 12px;
  }
}
/* ==================== 产品服务3 - 板块四 End ==================== */
/* ==================== 帮助中心 - 通用二级导航 Start ==================== */
.help-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.13vw;
  flex-wrap: wrap;
}
.help-tab .tab-item {
  background-color: #fff;
  font-family: "SourceHanSansCN-Regular";
  font-size: 1.04vw;
  color: #666;
  padding: 0.78vw 1.04vw;
  min-width: 9.38vw;
  text-align: center;
  transition: all 0.4s;
  border-radius: 5.21vw;
}
.help-tab .tab-item:hover {
  background-color: #f5f5f5;
  color: #008ed8;
}
.help-tab .tab-item.active {
  background-color: #008ed8;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .help-tab {
    margin-bottom: 40px;
  }
  .help-tab .tab-item {
    padding: 4px 15px;
    font-size: 14px;
  }
}
/* ==================== 帮助中心 - 通用二级导航 End ==================== */
/* ==================== 帮助中心-理赔流程 - 板块一 Start ==================== */
.help-section1 {
  background: url(../images/img080.jpg) no-repeat center;
  background-size: cover;
  overflow: hidden;
}
.help-section1 .body {
  display: flex;
  align-items: center;
}
.help-section1 .info {
  margin-right: 6.77vw;
  min-width: 0;
  flex-grow: 1;
}
.help-section1 .info .head {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: 2.6vw;
}
.help-section1 .info .head .text1 {
  font-size: 1.35vw;
  color: #008ed8;
  line-height: 1.2;
  margin-right: 0.52vw;
}
.help-section1 .info .head .text2 {
  font-size: 0.83vw;
  color: #999;
  line-height: 1.2;
}
.help-section1 ul {
  overflow: hidden;
  justify-content: space-between;
}
.help-section1 ul > li {
  font-size: 0.83vw;
  color: #727272;
  line-height: 1.8;
  padding-bottom: 1.82vw;
  text-align: justify;
  padding-left: 1.82vw;
  position: relative;
}
.help-section1 ul > li:first-child::after {
  top: 0.31vw;
}
.help-section1 ul > li:last-child {
  padding-bottom: 0;
}
.help-section1 ul > li:last-child:after {
  display: none;
}
.help-section1 ul > li:before {
  content: "";
  display: block;
  width: 0.31vw;
  height: 0.31vw;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 0 0 0 0.31vw #c2e4f5;
  margin: 0.31vw;
  position: absolute;
  top: 0.31vw;
  left: 0;
  background-color: #008ed8;
  z-index: 2;
}
.help-section1 ul > li:after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  border-left: 1px dashed #008ed8;
  position: absolute;
  left: 0.42vw;
  top: 0.52vw;
}
.help-section1 ul > li strong {
  color: #008ed8;
  font-weight: 400;
}
.help-section1 .image {
  width: 31.25vw;
  border-radius: 5.21vw;
  flex-shrink: 0;
}
.help-section1 .itembox {
  justify-content: center;
}
.help-section1 .itembox .item-image {
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .help-section1 .body {
    display: block;
  }
  .help-section1 .info .head {
    justify-content: center;
    margin-bottom: 20px;
  }
  .help-section1 .info .head .text1 {
    font-size: 16px;
  }
  .help-section1 .info .head .text2 {
    font-size: 12px;
  }
  .help-section1 ul > li {
    font-size: 14px;
    padding-left: 30px;
  }
  .help-section1 ul > li:first-child:after {
    top: 12px;
  }
  .help-section1 ul > li:before {
    width: 4px;
    height: 4px;
    box-shadow: 0 0 0 4px #c2e4f5;
    top: 8px;
    left: 4px;
  }
  .help-section1 ul > li:after {
    left: 6px;
    top: 12px;
  }
  .help-section1 .image {
    width: 100%;
    margin-top: 30px;
  }
}
/* ==================== 帮助中心-理赔流程 - 板块一 End ==================== */
/* ==================== 帮助中心-理赔流程 - 板块二 Start ==================== */
@media screen and (min-width: 1100px) {
  .help-section2 .image {
    order: -1;
  }
  .help-section2 .info {
    margin-right: 0;
    margin-left: 6.77vw;
  }
}
/* ==================== 帮助中心-理赔流程 - 板块二 End ==================== */
/* ==================== 帮助中心-资料下载 - 板块一 Start ==================== */
.help4-section1 {
  background: #fff;
}
.help4-section1 .item {
  padding: 2.6vw;
  border: 1px solid #e5e5e5;
  border-radius: 0.63vw;
  background-color: #fff;
}
.help4-section1 .item .head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 1.56vw;
  margin-bottom: 2.08vw;
}
.help4-section1 .item .info {
  min-width: 0;
  flex-grow: 1;
}
.help4-section1 .item .time {
  font-size: 0.73vw;
  color: #999;
  line-height: 1.2;
  margin-bottom: 0.52vw;
}
.help4-section1 .item .title {
  font-size: 1.25vw;
  color: #333;
  line-height: 1.2;
}
.help4-section1 .item .icon {
  flex-shrink: 0;
  width: 3.75vw;
  margin-left: 1.04vw;
}
.help4-section1 .item .download-btn {
  width: 7.29vw;
  height: 2.71vw;
  line-height: 2.6vw;
  border-radius: 5.21vw;
  background-color: #fbfbfb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.94vw;
  color: #666;
  cursor: pointer;
  transition: all 0.4s;
}
.help4-section1 .item .download-btn:hover {
  color: #fff;
  background-color: #008ed8;
}
.help4-section1 .item .download-btn:hover img {
  filter: brightness(0) invert(1);
}
.help4-section1 .item .download-btn img {
  width: 1.04vw;
  flex-shrink: 0;
  margin-left: 0.52vw;
}
@media screen and (min-width: 1100px) {
  .help4-section1 .image {
    order: -1;
  }
  .help4-section1 .itembox {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .help4-section1 .item {
    width: 49%;
    transition: all 0.4s;
  }
  .help4-section1 .item:hover {
    border-color: #fff;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.08);
  }
  .help4-section1 .item:nth-child(2n) {
    margin-left: 2%;
  }
  .help4-section1 .item:nth-child(2) ~ .item {
    margin-top: 2%;
  }
}
@media screen and (max-width: 1100px) {
  .help4-section1 .item {
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
  }
  .help4-section1 .item:last-child {
    margin-bottom: 0;
  }
  .help4-section1 .item .head {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .help4-section1 .item .time {
    margin-bottom: 5px;
    font-size: 12px;
  }
  .help4-section1 .item .title {
    font-size: 14px;
  }
  .help4-section1 .item .icon {
    width: 30px;
  }
  .help4-section1 .item .download-btn {
    padding: 8px 10px;
    width: auto;
    height: auto;
    line-height: inherit;
    font-size: 12px;
  }
  .help4-section1 .item .download-btn img {
    width: 15px;
    margin-left: 10px;
  }
}
/* ==================== 帮助中心-资料下载 - 板块一 End ==================== */
/* ==================== 帮助中心-亚马逊仓库分布图 - 板块一 Start ==================== */
.help5-section1 .tabs {
  margin-right: 0;
  margin-left: auto;
  padding-top: 1.04vw;
  padding-right: 4.17vw;
}
.help5-section1 .tabs .tab-item {
  border-left: 0.1vw solid #f0f0f0;
  padding-left: 1.04vw;
  font-size: 0.73vw;
  color: #999;
  line-height: 1.4;
  position: relative;
  padding-top: 0.26vw;
  padding-bottom: 0.26vw;
  transition: color 0.4s;
  cursor: pointer;
}
.help5-section1 .tabs .tab-item::before {
  content: "";
  display: block;
  width: 0.1vw;
  height: 0;
  position: absolute;
  left: -0.1vw;
  top: 50%;
  transform: translateY(-50%);
  background-color: #008ed8;
}
.help5-section1 .tabs .tab-item.active {
  color: #008ed8;
}
.help5-section1 .tabs .tab-item.active:before {
  height: 100%;
}
.help5-section1 .help5-section1-swiper {
  border-radius: 2.08vw 2.08vw 0 2.08vw;
}
.help5-section1 .help5-section1-swiper .image {
  width: 45.83vw;
}
.help5-section1 .right-body {
  border-radius: 0vw 0.63vw 0.63vw 0vw;
}
.help5-section1 .right-body .number {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.73vw;
  color: #008ed8;
  line-height: 1.2;
  margin-bottom: 1.56vw;
}
.help5-section1 .right-body .number::before {
  content: "";
  display: block;
  width: 2.71vw;
  height: 1px;
  background-color: #008ed8;
  margin-right: 0.52vw;
}
.help5-section1 .right-body .title {
  font-size: 1.25vw;
  color: #333;
  line-height: 1.2;
  margin-bottom: 1.04vw;
}
.help5-section1 .right-body .detail {
  font-size: 0.83vw;
  color: #999;
  line-height: 2em;
  text-align: justify;
  margin-bottom: 5.21vw;
  max-height: 6em;
}
.help5-section1 .min-swiper {
  padding: 2.6vw 3.13vw;
  padding-right: 4.17vw;
  background-color: #fff;
  box-shadow: 0vw 0vw 1.04vw 0vw rgba(0, 0, 0, 0.08);
}
.help5-section1 .min-swiper {
  width: 100%;
  border-radius: 0vw 0.63vw 0.63vw 0vw;
}
.help5-section1 .help5-section1-swiper2 {
  width: 100%;
  position: relative;
}
.help5-section1 .help5-section1-swiper2 .btn-group {
  position: absolute;
  left: 0;
  bottom: 0.52vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.help5-section1 .help5-section1-swiper2 .swiper-button-prev,
.help5-section1 .help5-section1-swiper2 .swiper-button-next {
  width: 2.76vw;
  height: 2.76vw;
  background-color: #fff;
  box-shadow: 0vw 0.21vw 0.52vw 0vw rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  cursor: pointer;
  z-index: 999;
}
.help5-section1 .help5-section1-swiper2 .swiper-button-prev:hover:after,
.help5-section1 .help5-section1-swiper2 .swiper-button-next:hover:after {
  border-color: #008ed8;
}
.help5-section1 .help5-section1-swiper2 .swiper-button-prev:after,
.help5-section1 .help5-section1-swiper2 .swiper-button-next:after {
  content: "";
  display: block;
  width: 0.73vw;
  height: 0.73vw;
  border-top: 0.1vw solid #ccc;
  border-left: 0.1vw solid #ccc;
  transform: rotate(-45deg);
  margin-left: 0.26vw;
  transition: all 0.4s;
}
.help5-section1 .help5-section1-swiper2 .swiper-button-prev {
  margin-right: 1.04vw;
}
.help5-section1 .help5-section1-swiper2 .swiper-button-next {
  transform: rotateY(180deg);
}
@media screen and (min-width: 1100px) {
  .help5-section1 > .mxw-box {
    display: flex;
    align-items: stretch;
  }
  .help5-section1 .left-body {
    width: 45.83vw;
  }
  .help5-section1 .right-body {
    min-width: 0;
    flex-grow: 1;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1100px) {
  .help5-section1 .help5-section1-swiper {
    border-radius: 10px 10px 0 0 ;
  }
  .help5-section1 .help5-section1-swiper .image {
    width: 100%;
  }
  .help5-section1 .min-swiper {
    border-radius: 0 0 10px 10px;
    padding: 15px;
  }
  .help5-section1 .right-body .number {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .help5-section1 .right-body .number:before {
    width: 30px;
    margin-right: 5px;
  }
  .help5-section1 .right-body .title {
    font-size: 14px;
  }
  .help5-section1 .right-body .detail {
    font-size: 12px;
    margin-bottom: 50px;
  }
  .help5-section1 .help5-section1-swiper2 .btn-group {
    bottom: 4px;
  }
  .help5-section1 .help5-section1-swiper2 .swiper-button-prev,
  .help5-section1 .help5-section1-swiper2 .swiper-button-next {
    width: 30px;
    height: 30px;
    box-shadow: 0vw 2px 4px 0px rgba(0, 0, 0, 0.08);
  }
  .help5-section1 .help5-section1-swiper2 .swiper-button-prev:after,
  .help5-section1 .help5-section1-swiper2 .swiper-button-next:after {
    width: 8px;
    height: 8px;
    border-width: 1px;
  }
}
/* ==================== 帮助中心-亚马逊仓库分布图 - 板块一 End ==================== */
/* ==================== 亚马逊FBA仓库地址 - 板块一 Start ==================== */
.help6-section1 .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 3.13vw;
}
.help6-section1 .info {
  min-width: 0;
  padding-right: 1rem;
  flex-grow: 1;
}
.help6-section1 .info .text1 {
  font-size: 1.25vw;
  color: #333;
  line-height: 1.2;
  margin-bottom: 1.04vw;
  font-family: "SourceHanSansCN-Medium";
}
.help6-section1 .info .text2 {
  font-size: 0.83vw;
  color: #999;
  line-height: 1.8;
  text-align: justify;
  font-family: "SourceHanSansCN-Regular";
}
.help6-section1 .tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.help6-section1 .tabs .tab-item {
  padding: 0.78vw 2.6vw;
  line-height: 1.2;
  background-color: #fff;
  font-size: 1.04vw;
  color: #666;
  text-align: center;
  border-radius: 5.21vw;
  cursor: pointer;
}
.help6-section1 .tabs .tab-item.active {
  background-color: #008ed8;
  color: #fff;
}
.help6-section1 .search {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 23.96vw;
  height: 3.33vw;
  border-radius: 5.21vw;
  border: solid 1px #e2e2e2;
  padding: 1.04vw;
  flex-shrink: 0;
}
.help6-section1 .search input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
}
.help6-section1 .search input {
  min-width: 0;
  flex-grow: 1;
  color: #333;
  font-size: 0.83vw;
  font-family: "SourceHanSansCN-Regular";
}
.help6-section1 .search input::-webkit-input-placeholder {
  color: #ccc;
}
.help6-section1 .search input::-moz-placeholder {
  color: #ccc;
}
.help6-section1 .search input:-moz-placeholder {
  color: #ccc;
}
.help6-section1 .search input:-ms-input-placeholder {
  color: #ccc;
}
.help6-section1 .search button {
  width: 1.15vw;
  height: 1.15vw;
  flex-shrink: 0;
  margin-left: 1.04vw;
}
.help6-section1 .search button:hover img {
  opacity: 1;
}
.help6-section1 .search button img {
  opacity: 0.3;
  transition: all 0.4s;
}
.help6-section1 .item table td {
  font-family: "SourceHanSansCN-Regular";
  font-size: 0.83vw;
  color: #666;
}
@media screen and (max-width: 1100px) {
  .help6-section1 .top {
    display: block;
    margin-bottom: 20px;
  }
  .help6-section1 .tabs {
    margin-bottom: 20px;
  }
  .help6-section1 .tabs .tab-item {
    width: 48%;
    padding: 8px 10px;
    font-size: 12px;
    margin-right: 4%;
    background-color: #fbfbfb;
  }
  .help6-section1 .tabs .tab-item:nth-child(2n) {
    margin-right: 0;
  }
  .help6-section1 .info {
    margin-bottom: 15px;
  }
  .help6-section1 .info .text1 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .help6-section1 .info .text2 {
    font-size: 12px;
  }
  .help6-section1 .search {
    width: 100%;
    height: auto;
    line-height: inherit;
    padding: 6px 15px;
  }
  .help6-section1 .search input {
    font-size: 13px;
  }
  .help6-section1 .search button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
  }
  .help6-section1 .item table td {
    font-size: 12px;
  }
}
/* ==================== 亚马逊FBA仓库地址 - 板块一 End ==================== */
/* ==================== 新闻中心 - 板块一 Start ==================== */
.news-section1 .item {
  display: block;
  position: relative;
}
.news-section1 .item:hover .title {
  color: #008ed8;
}
.news-section1 .item .info {
  padding: 1.56vw;
  background-color: #fff;
  border-radius: 0vw 1.04vw 0vw 1.88vw;
}
.news-section1 .item .date {
  margin-bottom: 0.26vw;
  font-size: 0.63vw;
  color: #999;
  line-height: 1.2;
  font-family: "SourceHanSansCN-Regular";
}
.news-section1 .item .title {
  font-size: 0.83vw;
  color: #000;
  line-height: 1.6em;
  height: 3.2em;
  text-align: justify;
  font-family: "SourceHanSansCN-Regular";
}
@media screen and (min-width: 1100px) {
  .news-section1 .item {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
  .news-section1 .item .image {
    width: 100%;
    border-radius: 1.88vw 1.88vw 1.88vw 2.19vw;
    overflow: hidden;
    box-shadow: 0vw 0vw 1.04vw 0vw rgba(0, 0, 0, 0.1);
    transition: all 0.6s;
  }
  .news-section1 .item .info {
    width: 21.35vw;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.6s;
  }
}
@media screen and (max-width: 1100px) {
  .news-section1 .item {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
    margin-left: 0!important;
  }
  .news-section1 .item:nth-child(2) ~ .item {
    margin-top: 0;
  }
  .news-section1 .item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
  }
  .news-section1 .item .image {
    width: 100px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
  }
  .news-section1 .item .info {
    padding: 0;
    margin-left: 20px;
  }
  .news-section1 .item .date {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .news-section1 .item .title {
    font-size: 13px;
  }
}
/* ==================== 新闻中心 - 板块一 End ==================== */
/* ==================== 新闻详情 Start ==================== */
.news-desc-section1 h1 {
  font-size: 1.67vw;
  color: #333;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 2.08vw;
}
.news-desc-section1 .tool {
  text-align: center;
  padding-bottom: 1.04vw;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  margin-bottom: 2.6vw;
}
.news-desc-section1 .tool span {
  font-size: 0.83vw;
  color: #999;
  line-height: 1.2;
  margin-right: 3.13vw;
}
.news-desc-section1 .tool span:last-child {
  margin-right: 0;
}
.news-desc-section1 .content {
  font-family: "SourceHanSansCN-Regular";
  font-size: 0.83vw;
  color: #666;
  line-height: 1.8;
}
.news-desc-section1 .content * {
  font-family: inherit;
}
.news-desc-section1 .page-swiper {
  margin-top: 2.6vw;
  border-top: 1px dashed #e5e5e5;
  padding-top: 2.6vw;
}
.news-desc-section1 .page-swiper .page-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 0.83vw;
  color: #999;
  margin-bottom: 1.04vw;
}
.news-desc-section1 .page-swiper .page-item:last-child {
  margin-bottom: 0;
}
.news-desc-section1 .page-swiper .page-item .text {
  color: #666;
  flex-shrink: 0;
}
.news-desc-section1 .page-swiper .page-item a {
  width: 100%;
  display: inline-block;
  color: inherit;
}
.news-desc-section1 .page-swiper .page-item a:hover {
  color: #008ed8;
  text-decoration: underline;
}
@media screen and (min-width: 1100px) {
  .news-desc-section1 {
    padding-top: 5.21vw;
    padding-bottom: 6.25vw;
  }
}
@media screen and (max-width: 1100px) {
  .news-desc-section1 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .news-desc-section1 h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .news-desc-section1 .tool {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .news-desc-section1 .tool span {
    width: 48%;
    margin-right: 4%;
    font-size: 12px;
  }
  .news-desc-section1 .tool span:nth-child(2n) {
    margin-right: 0;
  }
  .news-desc-section1 .tool span:nth-child(2) ~ span {
    margin-top: 10px;
  }
  .news-desc-section1 .content {
    font-size: 14px;
  }
  .news-desc-section1 .page-swiper {
    margin-top: 20px;
    padding-top: 20px;
  }
  .news-desc-section1 .page-swiper .page-item {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 5px;
  }
  .news-desc-section1 .page-swiper .page-item:last-child {
    margin-bottom: 0;
  }
}
/* ==================== 新闻详情 End ==================== */
/* ==================== 人才招聘 Start ==================== */
@media screen and (max-width: 1100px) {
  .job-main .ny-banner .water-title {
    height: 100%;
  }
}
/* ==================== 人才招聘 End ==================== */
/* ==================== 人才招聘 - 板块一 Start ==================== */
.job-section1 {
  background-color: #f7fcff;
}
.job-section1 .title {
  text-align: center;
  margin-bottom: 3.39vw;
}
.job-section1 .title h1 {
  font-size: 2.4vw;
  color: #000;
  line-height: 1.2;
  font-family: "SourceHanSansCN-Medium";
  margin-bottom: 1.04vw;
  font-weight: 400;
}
.job-section1 .title h4 {
  font-size: 0.83vw;
  color: #333;
  line-height: 1.2;
  font-weight: 400;
  font-family: "SourceHanSansCN-Regular";
}
.job-section1 .item {
  cursor: pointer;
}
.job-section1 .item:hover .icon {
  background-color: #008ed8;
}
.job-section1 .item:hover .icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.job-section1 .item .icon {
  width: 5.73vw;
  height: 5.73vw;
  border: 1px solid #008ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-bottom: 1.3vw;
  margin-left: auto;
  margin-right: auto;
  transition: background-color 0.4s;
}
.job-section1 .item .icon img {
  width: 2.08vw;
}
.job-section1 .item .text {
  font-size: 0.83vw;
  color: #333;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 1100px) {
  .job-section1 {
    padding-top: 6.25vw;
    padding-bottom: 6.25vw;
  }
  .job-section1 .item:nth-child(5) ~ .item {
    margin-top: 4.43vw;
  }
}
@media screen and (max-width: 1100px) {
  .job-section1 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .job-section1 .title {
    margin-bottom: 30px;
  }
  .job-section1 .title h1 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 5px;
  }
  .job-section1 .title h4 {
    font-size: 14px;
    line-height: 1.2;
  }
  .job-section1 .itembox {
    justify-content: center;
  }
  .job-section1 .item {
    width: 32%;
    margin: 0!important;
  }
  .job-section1 .item:nth-child(3n-1) {
    margin-left: 2%!important;
    margin-right: 2%!important;
  }
  .job-section1 .item:nth-child(3) ~ .item {
    margin-top: 20px!important;
  }
  .job-section1 .item .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  .job-section1 .item .icon img {
    width: 60%;
  }
  .job-section1 .item .text {
    font-size: 14px;
  }
}
/* ==================== 人才招聘 - 板块一 End ==================== */
/* ==================== 产品与解决方案 - 板块一 Start ==================== */
.job-section2 .item {
  border-radius: 0.42vw;
  overflow: hidden;
  margin-bottom: 2.08vw;
}
.job-section2 .item:last-child {
  margin-bottom: 0;
}
.job-section2 .item.active {
  box-shadow: 0vw 0vw 1.04vw 0vw rgba(0, 0, 0, 0.1);
}
.job-section2 .item.active .head {
  border-color: #008ed8;
  background-color: #008ed8;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.job-section2 .item.active .head .text1,
.job-section2 .item.active .head .text2,
.job-section2 .item.active .head .text3 {
  color: #fff;
}
.job-section2 .item.active .head .icon {
  transform: rotate(180deg);
  background-color: #fff;
}
.job-section2 .item.active .head .icon:after {
  border-top-color: #008ed8;
  border-left-color: #008ed8;
}
.job-section2 .head {
  border: 1px solid #e2e2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.56vw 2.08vw;
  border-radius: 0.42vw;
  cursor: pointer;
}
.job-section2 .head .info {
  min-width: 0;
  flex-grow: 1;
}
.job-section2 .head .text1 {
  font-size: 1.04vw;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.78vw;
  font-family: "SourceHanSansCN-Medium";
}
.job-section2 .head .text2 {
  font-size: 0.73vw;
  color: #666;
  line-height: 1.2;
  margin-bottom: 0.52vw;
  font-family: "SourceHanSansCN-Regular";
}
.job-section2 .head .text3 {
  font-size: 0.73vw;
  color: #999;
  line-height: 1.2;
  font-family: "SourceHanSansCN-Regular";
}
.job-section2 .head .icon {
  width: 2.76vw;
  height: 2.76vw;
  border: 1px solid #008ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  flex-shrink: 0;
}
.job-section2 .head .icon:after {
  content: "";
  display: block;
  width: 0.42vw;
  height: 0.42vw;
  margin-top: -0.21vw;
  border-top: 1px solid #008ed8;
  border-left: 1px solid #008ed8;
  transform: rotate(-135deg);
}
.job-section2 .body {
  display: none;
  background-color: #fff;
  padding: 2.08vw 2.6vw;
}
.job-section2 .body .content {
  font-size: 0.83vw;
  color: #333;
  font-family: "SourceHanSansCN-Regular";
  line-height: 2;
}
.job-section2 .body .content * {
  font-family: inherit;
}
.job-section2 .body .content strong,
.job-section2 .body .content b {
  font-family: "SourceHanSansCN-Medium";
  font-weight: 400;
}
.job-section2 .body .card {
  margin-top: 2.6vw;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.job-section2 .body .card-item {
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  padding: 1.04vw;
  padding-right: 3.13vw;
}
.job-section2 .body .card-item:nth-child(1) {
  margin-right: 1.56vw;
}
.job-section2 .body .card-item .icon {
  width: 2.6vw;
  height: 2.6vw;
  flex-shrink: 0;
  margin-right: 1.04vw;
}
.job-section2 .body .card-item .info {
  min-width: 0;
  flex-grow: 1;
}
.job-section2 .body .card-item .text1 {
  font-size: 0.73vw;
  color: #333;
  line-height: 1.2;
  font-family: "SourceHanSansCN-Medium";
}
.job-section2 .body .card-item .text1:after {
  content: "";
  display: block;
  width: 1.35vw;
  height: 0.1vw;
  background-color: #008ed8;
  margin-bottom: 0.52vw;
  margin-top: 0.52vw;
}
.job-section2 .body .card-item .text2 {
  font-size: 0.63vw;
  color: #666;
}
.job-section2 .body .card-item .text2 strong {
  color: #008ed8;
}
@media screen and (min-width: 1100px) {
  .job-section2 {
    padding-top: 6.25vw;
    padding-bottom: 6.25vw;
  }
}
@media screen and (max-width: 1100px) {
  .job-section2 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .job-section2 .head {
    padding: 15px;
    border-radius: 8px;
  }
  .job-section2 .head .text1 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .job-section2 .head .text2 {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .job-section2 .head .text3 {
    font-size: 12px;
  }
  .job-section2 .head .icon {
    width: 30px;
    height: 30px;
  }
  .job-section2 .head .icon:after {
    width: 6px;
    height: 6px;
    margin-top: -3px;
  }
  .job-section2 .body {
    padding: 15px;
  }
  .job-section2 .body .content {
    font-size: 13px;
  }
  .job-section2 .body .card {
    display: block;
    margin-right: 0;
    margin-top: 15px;
  }
  .job-section2 .body .card-item {
    padding: 15px;
    border-radius: 4px;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  .job-section2 .body .card-item:nth-child(2n) {
    margin-top: 10px;
  }
  .job-section2 .body .card-item:last-child {
    margin-bottom: 0;
  }
  .job-section2 .body .card-item .icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
  }
  .job-section2 .body .card-item .text1 {
    font-size: 14px;
  }
  .job-section2 .body .card-item .text1:after {
    width: 20px;
    height: 1px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .job-section2 .body .card-item .text2 {
    font-size: 12px;
  }
  .job-section2 .item {
    margin-bottom: 15px;
  }
  .job-section2 .item:last-child {
    margin-bottom: 0;
  }
}
/* ==================== 产品与解决方案 - 板块一 End ==================== */
/* ==================== 关于我们 - 板块一 Start ==================== */
.about-section1 .info h1 {
  font-size: 1.25vw;
  color: #008ed8;
  line-height: 1.2;
  font-family: "SourceHanSansCN-Medium";
  margin-bottom: 2.08vw;
}
.about-section1 .info .desc {
  font-size: 0.83vw;
  color: #616161;
  line-height: 1.8;
  font-family: "SourceHanSansCN-Regular";
}
.about-section1 .info .desc * {
  font-family: inherit;
}
@media screen and (min-width: 1100px) {
  .about-section1 {
    padding-top: 3.65vw;
    padding-bottom: 6.25vw;
  }
  .about-section1 > .mxw-box {
    display: flex;
    align-items: center;
  }
  .about-section1 .right-image {
    width: 32.29vw;
    flex-shrink: 0;
    margin-left: 4.17vw;
  }
}
@media screen and (max-width: 1100px) {
  .about-section1 .info h1 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .about-section1 .info .desc {
    font-size: 14px;
  }
  .about-section1 .right-image {
    width: 100%;
    margin-top: 30px;
  }
}
/* ==================== 关于我们 - 板块一 End ==================== */
/* ==================== 关于我们 - 板块二 Start ==================== */
.about-section2 {
  background-color: #f7fcff;
}
.about-section2 .item {
  cursor: pointer;
  background-color: #fff;
  border-radius: 1.88vw;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 20.83vw;
  background-repeat: no-repeat;
  background-position: 240% 140%;
}
.about-section2 .icon {
  width: 6.77vw;
  height: 6.77vw;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.6vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-section2 .icon .bg {
  width: 100%;
  height: 100%;
  background: url(../images/img116.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: icon-rotate 10s infinite linear;
}
.about-section2 .icon .min-icon {
  position: relative;
  z-index: 4;
  width: 2.6vw;
}
@keyframes icon-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.about-section2 .info {
  padding-left: 2.08vw;
  padding-right: 2.08vw;
}
.about-section2 .info .text1 {
  font-size: 1.25vw;
  color: #222;
  line-height: 1.2;
  font-family: "SourceHanSansCN-Medium";
}
.about-section2 .info .text1:after {
  content: "";
  display: block;
  width: 3.02vw;
  height: 0.21vw;
  background-color: #ff7500;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.82vw;
}
.about-section2 .info .desc {
  display: none;
  font-size: 0.83vw;
  color: #fff;
  font-family: "SourceHanSansCN-Regular";
  line-height: 1.8;
  text-align: center;
  margin-top: 2.08vw;
}
@media screen and (min-width: 1100px) {
  .about-section2 {
    padding-top: 6.25vw;
    padding-bottom: 6.25vw;
  }
  .about-section2 .item {
    transition: background-color 0.4s;
  }
  .about-section2 .item:hover {
    background-color: #008ed8;
  }
  .about-section2 .item:hover .icon {
    display: none;
  }
  .about-section2 .item:hover .info .text1 {
    color: #fff;
  }
  .about-section2 .item:hover .info .text1:after {
    background-color: #fff;
  }
  .about-section2 .item:hover .info .desc {
    display: block;
  }
}
@media screen and (max-width: 1100px) {
  .about-section2 .icon {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
  }
  .about-section2 .icon .min-icon {
    width: 30%;
  }
  .about-section2 .itembox {
    justify-content: center;
  }
  .about-section2 .item {
    width: 100%;
    margin: 0!important;
    flex-flow: row;
    padding: 20px 15px;
  }
  .about-section2 .item:first-child ~ .item {
    margin-top: 15px!important;
  }
  .about-section2 .icon {
    width: 80px;
    height: 80px;
    margin-bottom: 0;
    flex-shrink: 0;
    margin-right: 20px;
  }
  .about-section2 .info {
    padding: 0;
    min-width: 0;
    flex-grow: 1;
  }
  .about-section2 .info .text1 {
    padding: 0;
    font-size: 16px;
    text-align: left;
  }
  .about-section2 .info .text1:after {
    width: 30px;
    height: 2px;
    margin-left: 0;
    margin-top: 10px;
  }
  .about-section2 .info .desc {
    display: block;
    color: #333;
    line-height: 1.8;
    text-align: justify;
    padding: 0;
    font-size: 12px;
    margin-top: 10px;
  }
  .about-section2 .info .desc p {
    display: inline;
  }
}
/* ==================== 关于我们 - 板块二 End ==================== */
/* ==================== 关于我们 - 板块三 Start ==================== */
.about-section3 {
  overflow: hidden;
  position: relative;
}
.about-section3:after {
  content: "";
  display: block;
  background: url(../images/img161.png) no-repeat center bottom;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 22.81vw;
  width: 100%;
  pointer-events: none;
}
.about-section3 .body {
  position: relative;
}
.about-section3 .body .swiper-button-prev,
.about-section3 .body .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.76vw;
  height: 2.76vw;
  background-color: #ffffff;
  border-radius: 100%;
  box-shadow: 0vw 0.21vw 0.52vw 0vw rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.about-section3 .body .swiper-button-prev:hover:after,
.about-section3 .body .swiper-button-next:hover:after {
  border-color: #008ed8;
}
.about-section3 .body .swiper-button-prev:after,
.about-section3 .body .swiper-button-next:after {
  content: "";
  display: block;
  width: 0.73vw;
  height: 0.73vw;
  border-top: 1px solid #d4d4d4;
  border-left: 1px solid #d4d4d4;
  transform: rotate(-45deg);
  margin-left: 0.36vw;
  transition: border-color 0.4s;
}
.about-section3 .body .swiper-button-prev {
  left: -8.33vw;
}
.about-section3 .body .swiper-button-next {
  right: -8.33vw;
  transform: rotateY(180deg) translateY(-50%);
}
.about-section3 .about-section3-swiper .swiper-slide {
  position: relative;
  transition: padding 0.4s;
  cursor: pointer;
}
.about-section3 .about-section3-swiper .swiper-slide .item {
  position: relative;
  padding-left: 2.08vw;
  transition: all 0.4s;
}
.about-section3 .about-section3-swiper .swiper-slide .item:before,
.about-section3 .about-section3-swiper .swiper-slide .item:after {
  content: "";
  display: block;
  position: absolute;
}
.about-section3 .about-section3-swiper .swiper-slide .item:before {
  width: 0.63vw;
  height: 0.63vw;
  border-radius: 100%;
  background-color: #e2e2e2;
  border: 0.52vw solid #fff;
  top: 0;
  left: 0;
}
.about-section3 .about-section3-swiper .swiper-slide .item:after {
  width: 1px;
  height: 200%;
  background-color: #e3e3e3;
  position: absolute;
  left: 0.78vw;
  top: 1.04vw;
  z-index: 2;
}
.about-section3 .about-section3-swiper .swiper-slide .year {
  font-size: 1.46vw;
  color: #333;
  line-height: 1;
  font-family: "SourceHanSansCN-Medium";
  margin-bottom: 0.78vw;
}
.about-section3 .about-section3-swiper .swiper-slide .year span {
  font-size: 0.73vw;
  font-family: inherit;
}
.about-section3 .about-section3-swiper .swiper-slide .desc {
  font-size: 0.83vw;
  color: #b0b0b0;
  line-height: 1.8;
  width: 100%;
  padding-bottom: 7.81vw;
}
@media screen and (min-width: 1100px) {
  .about-section3 {
    min-height: 51.51vw;
  }
  .about-section3 .about-section3-swiper .swiper-slide {
    width: 25%;
  }
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(1) {
    padding-top: 11.06vw;
  }
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(9),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(13),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(17),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(21),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(25),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(29),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(33),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(37),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(5) {
    padding-top: 6.06vw;
  }
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(2),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(10),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(14),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(18),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(22),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(26),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(30),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(34),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(38),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(6) {
    padding-top: 7.81vw;
  }
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(3),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(11),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(15),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(19),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(23),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(27),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(31),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(35),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(39),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(7) {
    padding-top: 0;
  }
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(4),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(12),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(16),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(20),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(24),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(28),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(32),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(36),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(40),
  .about-section3 .about-section3-swiper .swiper-slide:nth-child(8) {
    padding-top: 3.13vw;
  }
  .about-section3 .about-section3-swiper .swiper-slide.swiper-slide-active .year {
    color: #008ed8;
  }
  .about-section3 .about-section3-swiper .swiper-slide.swiper-slide-active .item {
    padding-left: 2.6vw;
  }
  .about-section3 .about-section3-swiper .swiper-slide.swiper-slide-active .item:before {
    background-color: #008ed8;
    border-color: #fff;
    box-shadow: 0vw 0vw 0.42vw 0vw rgba(0, 0, 0, 0.08);
    z-index: 9;
  }
  .about-section3 .about-section3-swiper .swiper-slide.swiper-slide-active .item:after {
    background-color: #008ed8;
  }
  .about-section3 .about-section3-swiper .swiper-slide.swiper-slide-active .desc {
    color: #666;
  }
}
@media screen and (max-width: 1100px) {
  .about-section3 {
    padding-bottom: 100px!important;
  }
  .about-section3 .about-section3-swiper {
    display: block;
  }
  .about-section3 .about-section3-swiper .swiper-wrapper {
    display: block;
  }
  .about-section3 .about-section3-swiper .swiper-slide {
    width: 100%;
  }
  .about-section3 .about-section3-swiper .swiper-slide .year {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .about-section3 .about-section3-swiper .swiper-slide .year span {
    font-size: 14px;
  }
  .about-section3 .about-section3-swiper .swiper-slide .item {
    padding-left: 20px;
    padding-right: 0;
  }
  .about-section3 .about-section3-swiper .swiper-slide .item:before {
    width: 10px;
    height: 10px;
    border: 0;
    background-color: #008ed8;
    top: 5px;
  }
  .about-section3 .about-section3-swiper .swiper-slide .item:after {
    top: 10px;
    width: 1px;
    height: 100%;
    left: 4px;
    background-color: rgba(0, 142, 216, 0.16);
  }
  .about-section3 .about-section3-swiper .swiper-slide .desc {
    width: 100%;
    font-size: 14px;
    padding-bottom: 20px;
  }
}
/* ==================== 关于我们 - 板块三 End ==================== */
/* ==================== 关于我们 - 板块四 Start ==================== */
.about-section4 .item {
  position: relative;
  border-radius: 2.6vw;
  overflow: hidden;
  cursor: pointer;
}
.about-section4 .item:after {
  content: "";
  display: block;
  background-color: rgba(0, 142, 216, 0.8);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}
.about-section4 .item .info {
  position: absolute;
  top: calc(100% - 17.71vw);
  left: 0;
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  height: 100%;
  z-index: 9;
}
.about-section4 .item .info .text1 {
  font-size: 1.35vw;
  color: #fff;
  font-family: "SourceHanSansCN-Medium";
  line-height: 1.2;
}
.about-section4 .item .info .text1:after {
  content: "";
  display: block;
  width: 3.02vw;
  height: 0.21vw;
  background-color: #ff7500;
  margin-top: 1.56vw;
  margin-left: auto;
  margin-right: auto;
}
.about-section4 .item .info .text2 {
  font-size: 0.83vw;
  color: #fff;
  line-height: 1.8;
  font-family: "SourceHanSansCN-Regular";
  margin-top: 2.08vw;
  transition: all 0.4s;
  visibility: hidden;
  height: 5.4em;
  opacity: 0;
  padding: 0 2vw;
}
@media screen and (min-width: 1100px) {
  .about-section4 .item {
    transition: transform 0.4s;
  }
  .about-section4 .item:hover {
    transform: translateY(-1.04vw);
  }
  .about-section4 .item:hover:after {
    opacity: 1;
  }
  .about-section4 .item:hover .info {
    top: 0;
  }
  .about-section4 .item:hover .info .text2 {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 1100px) {
  .about-section4 .item {
    width: 100%;
    margin: 0!important;
    margin-bottom: 20px!important;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    border: 1px solid #eee;
  }
  .about-section4 .item:last-child {
    margin-bottom: 0!important;
  }
  .about-section4 .item .info {
    position: static;
    height: auto;
    padding: 20px 10px;
  }
  .about-section4 .item .info .text1 {
    color: #333;
    font-size: 18px;
  }
  .about-section4 .item .info .text1:after {
    width: 40px;
    height: 2px;
    margin-top: 10px;
  }
  .about-section4 .item .info .text2 {
    color: #333;
    font-size: 14px;
    margin-top: 15px;
    height: auto;
    opacity: 1;
    visibility: visible;
  }
  .about-section4 .item .image {
    order: -1;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/* ==================== 关于我们 - 板块四 End ==================== */
/* ==================== 产品与解决方案 - 板块一 Start ==================== */
.about2-section1 .itembox {
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.about2-section1 .item {
  border-radius: 0.63vw;
  position: relative;
  overflow: hidden;
  margin-bottom: 2%;
}
.about2-section1 .item:nth-child(1),
.about2-section1 .item:nth-child(4),
.about2-section1 .item:nth-child(5),
.about2-section1 .item:nth-child(8),
.about2-section1 .item:nth-child(9),
.about2-section1 .item:nth-child(12),
.about2-section1 .item:nth-child(13),
.about2-section1 .item:nth-child(16) {
  width: 66%;
}
.about2-section1 .item:nth-child(2),
.about2-section1 .item:nth-child(3),
.about2-section1 .item:nth-child(6),
.about2-section1 .item:nth-child(7),
.about2-section1 .item:nth-child(10),
.about2-section1 .item:nth-child(11),
.about2-section1 .item:nth-child(14),
.about2-section1 .item:nth-child(15) {
  width: 32%;
}
.about2-section1 .item:nth-child(1),
.about2-section1 .item:nth-child(5),
.about2-section1 .item:nth-child(9),
.about2-section1 .item:nth-child(13) {
  margin-right: 2%;
}
.about2-section1 .item:nth-child(4),
.about2-section1 .item:nth-child(8),
.about2-section1 .item:nth-child(12),
.about2-section1 .item:nth-child(16) {
  margin-left: 2%;
}
.about2-section1 .item .image {
  overflow: hidden;
}
.about2-section1 .item .image img {
  transition: all 1s;
}
.about2-section1 .item:hover:after {
  transform: translateY(0);
  opacity: 1;
}
.about2-section1 .item:hover .title {
  opacity: 1;
}
.about2-section1 .item:hover .image img {
  transform: scale(1.1);
}
.about2-section1 .item:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to bottom, transparent 60%, #008ed8);
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s;
}
.about2-section1 .item .title {
  font-size: 0.94vw;
  color: #fff;
  text-align: left;
  font-family: "SourceHanSansCN-Regular";
  padding: 1.56vw;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 9;
  opacity: 0;
  transition: all 0.4s;
}
.about2-section1 .item[video-url] {
  cursor: pointer;
  position: relative;
}
.about2-section1 .item[video-url]:hover:before {
  opacity: 1;
  visibility: visible;
}
.about2-section1 .item[video-url]:after {
  display: none;
}
.about2-section1 .item[video-url]:before {
  content: "";
  display: block;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/img163.png) no-repeat center rgba(0, 0, 0, 0.4);
  z-index: 8;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
}
@media screen and (min-width: 1100px) {
  .about2-section1 .item {
    width: 32%;
    height: 26.04vw;
  }
  .about2-section1 .item .image {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about2-section1 .item .image img {
    min-width: 100%;
    min-height: 100%;
    max-width: inherit;
  }
}
@media screen and (max-width: 1100px) {
  .about2-section1 .itembox {
    justify-content: space-between;
  }
  .about2-section1 .item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
  }
  .about2-section1 .item:after {
    display: none;
  }
  .about2-section1 .item .title {
    position: static;
    font-size: 12px;
    color: #333;
    opacity: 1;
    visibility: visible;
    text-align: center;
  }
}
/* ==================== 产品与解决方案 - 板块一 End ==================== */
/* ==================== 资质荣誉 - 板块一 Start ==================== */
.about3-section1 .item .image {
  border-radius: 0.63vw;
  overflow: hidden;
}
.about3-section1 .item .title {
  font-family: "SourceHanSansCN-Regular";
  font-size: 0.83vw;
  color: #333;
  line-height: 1.2;
  margin-top: 1.3vw;
  text-align: center;
}
@media screen and (min-width: 1100px) {
  .about3-section1 .item:nth-child(3) ~ .item {
    margin-top: 3.13vw;
  }
}
@media screen and (max-width: 1100px) {
  .about3-section1 .item .image {
    border-radius: 10px;
  }
  .about3-section1 .item .title {
    font-size: 12px;
    margin-top: 10px;
    line-height: 1.8;
    max-height: 3.6em;
  }
  .about3-section1 .item:nth-child(2) ~ .item {
    margin-top: 20px;
  }
}
/* ==================== 资质荣誉 - 板块一 End ==================== */
/* ==================== 联系我们 - 板块一 Start ==================== */
.contact-section1 .body {
  position: relative;
}
.contact-section1 .map img{
  width: 100%;
}
.contact-section1 .card {
  position: absolute;
  width: 27.08vw;
  left: 50%;
  top: 7vw;
  margin-left: -13.54vw;
  padding: 2.08vw;
  background-color: #fff;
  border-radius: 0.31vw;
  box-shadow: 0 0 0.52vw -0.16vw rgba(0, 0, 0, 0.2);
  animation: jump 1s infinite ease-in-out alternate;
}
.contact-section1 .card:before {
  content: "";
  display: block;
  background: url(../images/img155.png) no-repeat center;
  background-size: 100%;
  width: 1.56vw;
  height: 1.56vw;
  position: absolute;
  bottom: -3.13vw;
  left: 50%;
  transform: translateX(-50%);
}
.contact-section1 .card:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 0.73vw solid #fff;
  border-left: 0.52vw solid transparent;
  border-right: 0.52vw solid transparent;
  position: absolute;
  bottom: -0.73vw;
  left: 50%;
  transform: translateX(-50%);
}
.contact-section1 .card .title {
  font-size: 1.15vw;
  color: #333;
  line-height: 1.2;
  padding-bottom: 1.04vw;
  border-bottom: 0.1vw solid #e5e5e5;
  position: relative;
  margin-bottom: 1.04vw;
  font-family: "SourceHanSansCN-Medium";
}
.contact-section1 .card .title:after {
  content: "";
  display: block;
  width: 6.77vw;
  height: 0.1vw;
  position: absolute;
  bottom: -0.1vw;
  left: 0;
  background-color: #008ed8;
}
.contact-section1 .card .info {
  display: flex;
  align-items: stretch;
}
.contact-section1 .card .info-item {
  flex-shrink: 0;
  margin-right: 2.6vw;
  font-family: "SourceHanSansCN-Regular";
}
.contact-section1 .card .info-item:last-child {
  margin-right: 0;
}
.contact-section1 .card .info-item .head {
  font-size: 0.73vw;
  color: #000;
  line-height: 1.2;
  margin-bottom: 0.52vw;
  font-family: inherit;
}
.contact-section1 .card .info-item .qr-box {
  display: flex;
  align-items: flex-start;
}
.contact-section1 .card .info-item .qr {
  margin-right: 0.52vw;
  width: 3.65vw;
  flex-shrink: 0;
}
.contact-section1 .card .info-item .qr:last-child {
  margin-right: 0;
}
.contact-section1 .card .info-item .qr .image {
  width: 100%;
  margin-bottom: 0.52vw;
}
.contact-section1 .card .info-item .qr .text {
  font-family: inherit;
  font-size: 0.73vw;
  color: #666;
  line-height: 1.2;
  text-align: center;
}
.contact-section1 .card .info-item2 {
  min-width: 0;
  flex-grow: 1;
  font-family: inherit;
}
.contact-section1 .card .info-item2 p {
  font-size: 0.73vw;
  color: #666;
  line-height: 1.8;
  font-family: inherit;
  margin-bottom: 0.52vw;
}
.contact-section1 .card .info-item2 p:last-child {
  margin-bottom: 0;
}
.contact-section1 .card .info-item2 p strong {
  display: block;
  margin-bottom: 0.26vw;
  line-height: 1;
  color: #000;
  font-family: inherit;
  font-weight: 400;
}
@keyframes jump {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
@media screen and (max-width: 1100px) {
  .contact-section1 .card {
    position: static;
    width: 100%;
    transform: translate(0);
    padding: 15px;
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid #eee;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 0;
  }
  .contact-section1 .card .title {
    font-size: 16px;
    line-height: 1.2;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
  }
  .contact-section1 .card .title:after {
    width: 40px;
    height: 1px;
    bottom: -1px;
  }
  .contact-section1 .card .info {
    width: 100%;
    display: block;
  }
  .contact-section1 .card .info-item .head {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .contact-section1 .card .info-item .qr-box {
    width: 100%;
  }
  .contact-section1 .card .info-item .qr {
    width: 48%;
  }
  .contact-section1 .card .info-item .qr img {
    width: 100%;
  }
  .contact-section1 .card .info-item .qr:nth-child(2n) {
    margin-left: 4%;
  }
  .contact-section1 .card .info-item .qr .text {
    margin-top: 10px;
    font-size: 14px;
  }
  .contact-section1 .card .info-item2 {
    margin-top: 20px;
  }
  .contact-section1 .card .info-item2 p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .contact-section1 .card .info-item2 p strong {
    margin-bottom: 0;
  }
}
/* ==================== 联系我们 - 板块一 End ==================== */
/* ==================== 联系我们 - 板块二 Start ==================== */
.contact-section2 {
  background-color: #f7fcff;
}
.contact-section2 .itembox {
  align-items: stretch;
}
.contact-section2 .item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: column;
  border-radius: 0.63vw;
  overflow: hidden;
}
.contact-section2 .item .image{
  width: 100%;
}
.contact-section2 .item .info {
  width: 100%;
  padding: 1.56vw;
  background-color: #fff;
  min-width: 0;
  flex-grow: 1;
}
.contact-section2 .item .text1 {
  font-size: 1.35vw;
  color: #333;
  line-height: 1.2;
  margin-bottom: 1.3vw;
  font-family: "SourceHanSansCN-Medium;";
}
.contact-section2 .item .desc {
  font-size: 0.83vw;
  line-height: 1.8;
  text-align: justify;
  font-family: "SourceHanSansCN-Regular";
  color: #666666;
}
.contact-section2 .item .image img{
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .contact-section2 .item {
    width: 100%;
    border-radius: 8px;
    margin: 0!important;
  }
  .contact-section2 .item:nth-child(1) ~ .item {
    margin-top: 15px!important;
  }
  .contact-section2 .item .info {
    padding: 15px;
  }
  .contact-section2 .item .text1 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .contact-section2 .item .desc {
    font-size: 12px;
  }
}
/* ==================== 联系我们 - 板块二 End ==================== */
/* ==================== 联系我们 - 板块三 Start ==================== */
.contact-section3 {
  background: url(../images/img156.jpg) no-repeat center bottom #fff;
}
.contact-section3 .layui-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.contact-section3 .item {
  background-color: #fff;
  width: 48.5%;
}
.contact-section3 .item input {
  border-radius: 0.42vw;
  height: 3.23vw;
  line-height: 3.13vw;
  padding-left: 1.04vw;
  padding-right: 1.04vw;
  font-size: 0.73vw;
  color: #333;
}
.contact-section3 .item input::-webkit-input-placeholder {
  color: #999;
}
.contact-section3 .item input::-moz-placeholder {
  color: #999;
}
.contact-section3 .item input:-moz-placeholder {
  color: #999;
}
.contact-section3 .item input:-ms-input-placeholder {
  color: #999;
}
.contact-section3 .item:nth-child(2n) {
  margin-left: 3%;
}
.contact-section3 .item:nth-child(2) ~ .item {
  margin-top: 1.56vw;
}
.contact-section3 textarea {
  border-radius: 0.42vw;
  resize: none;
  height: 9.38vw;
  line-height: 1.8;
  font-family: "SourceHanSansCN-Regular";
  font-size: 0.73vw;
  color: #333;
  padding: 1.04vw;
  display: block;
  width: 100%;
  margin-top: 1.56vw;
}
.contact-section3 textarea::-webkit-input-placeholder {
  color: #999;
}
.contact-section3 textarea::-moz-placeholder {
  color: #999;
}
.contact-section3 textarea:-moz-placeholder {
  color: #999;
}
.contact-section3 textarea:-ms-input-placeholder {
  color: #999;
}
.contact-section3 button {
  width: 11.46vw;
  height: 3.23vw;
  line-height: 3.23vw;
  border-radius: 0.42vw;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #fff;
  font-family: "SourceHanSansCN-Regular";
  font-size: 0.94vw;
  margin-top: 3.13vw;
}
@media screen and (max-width: 1100px) {
  .contact-section3 .item {
    width: 100%;
    margin: 0!important;
    margin-bottom: 10px!important;
  }
  .contact-section3 .item input {
    height: 40px;
    line-height: 40px;
    border-radius: 8px;
    padding: 0 10px;
    font-size: 13px;
  }
  .contact-section3 textarea {
    border-radius: 8px;
    padding: 10px;
    font-size: 13px;
    height: 150px;
    margin-top: 0;
  }
  .contact-section3 button {
    width: 100%;
    height: auto;
    line-height: inherit;
    padding: 8px 10px;
    font-size: 14px;
    border-radius: 5px;
  }
}
/* ==================== 联系我们 - 板块三 End ==================== */
/* ==================== 会员注册 - 板块一 Start ==================== */
.other-section1 {
  background: url(../images/img159.jpg) no-repeat center;
  background-size: cover;
}
.other-section1 .layui-row input,
.other-section1 .layui-row2 input {
  border-radius: 0.42vw;
  height: 2.23vw;
  line-height: 2.13vw;
  padding-left: 1.04vw;
  padding-right: 1.04vw;
  font-size: 0.73vw;
  color: #333;
}
.other-section1 .layui-row input::-webkit-input-placeholder,
.other-section1 .layui-row2 input::-webkit-input-placeholder {
  color: #999;
}
.other-section1 .layui-row input::-moz-placeholder,
.other-section1 .layui-row2 input::-moz-placeholder {
  color: #999;
}
.other-section1 .layui-row input:-moz-placeholder,
.other-section1 .layui-row2 input:-moz-placeholder {
  color: #999;
}
.other-section1 .layui-row input:-ms-input-placeholder,
.other-section1 .layui-row2 input:-ms-input-placeholder {
  color: #999;
}
.other-section1 .layui-row2 {
  display: flex;
  align-items: stretch;
  margin-top: 1.56vw;
  margin-bottom: 1.56vw;
}
.other-section1 .layui-row2 .left {
  width: 48.5%;
  margin-right: 3%;
}
.other-section1 .layui-row2 .left .item {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 1.56vw;
}
.other-section1 .layui-row2 .left .item input {
  width: 48.5%;
}
.other-section1 .layui-row2 .left > input:last-child {
  margin-top: 1.56vw;
}
.other-section1 .layui-row2 .upload {
  width: 48.5%;
  display: flex;
  align-items: stretch;
}
.other-section1 .layui-row2 .upload-btn {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 0.42vw;
  padding: 1.04vw 0.94vw;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-width: 0;
  flex-grow: 1;
  font-size: 0.73vw;
  font-family: "SourceHanSansCN-Regular";
  color: #999;
  cursor: pointer;
  user-select: none;
}
.other-section1 .layui-row2 .upload-btn .icon {
  width: 1.04vw;
}
.other-section1 .layui-row2 .image {
  margin-left: 1.04vw;
  width: 9.79vw;
  height: 9.79vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 0.42vw;
  padding: 0.42vw 0.52vw;
}
.other-section1 .layui-form-select dl {
  top: 3.75vw;
}
.other-section1 .layui-form-select input {
  padding-right: 1.56vw !important;
}
.other-section1 .layui-form-select .layui-edge {
  right: 20px;
  border: 0;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-top: 1px solid #b2b2b2;
  border-left: 1px solid #b2b2b2;
  transform: rotate(-135deg);
}
.other-section1 button {
  width: 11.46vw;
  height: 3.23vw;
  line-height: 3.23vw;
  border-radius: 0.42vw;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #fff;
  font-family: "SourceHanSansCN-Regular";
  font-size: 0.94vw;
  margin-top: 3.13vw;
}
@media screen and (min-width: 1100px) {
  .other-section1 {
    padding-top: 2.25vw !important;
  }
  .other-section1 .layui-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .other-section1 .layui-row .item {
    background-color: #fff;
    width: 48.5%;
  }
  .other-section1 .layui-row .item:nth-child(2n) {
    margin-left: 3%;
  }
  .other-section1 .layui-row .item:nth-child(2) ~ .item {
    margin-top: 1.56vw;
  }
}
@media screen and (max-width: 1100px) {
  .other-section1 .layui-row .item {
    width: 100%;
  }
  .other-section1 .layui-row2 {
    margin: 10px 0;
    display: block;
  }
  .other-section1 .layui-row2 .left {
    width: 100%;
    margin-right: 0;
  }
  .other-section1 .layui-row2 .left .item {
    margin-top: 10px;
  }
  .other-section1 .layui-row2 .upload {
    width: 100%;
    display: block;
    margin-top: 10px;
  }
  .other-section1 .layui-row2 .upload-btn {
    height: 100px;
    padding: 10px;
    border-width: 1px;
    font-size: 12px;
    position: relative;
  }
  .other-section1 .layui-row2 .upload-btn .icon {
    width: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .other-section1 .layui-row2 .image {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
    height: auto;
    border-radius: 5px;
    padding: 10px;
  }
  .other-section1 .layui-row,
  .other-section1 .layui-row2 {
    width: 100%;
  }
  .other-section1 .layui-row .item,
  .other-section1 .layui-row2 .item {
    margin-bottom: 10px;
  }
  .other-section1 .layui-row input,
  .other-section1 .layui-row2 input {
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    padding: 0 10px;
    font-size: 12px;
  }
  .other-section1 .layui-form-select dl {
    top: 50px;
  }
  .other-section1 button {
    width: 100%;
    height: auto;
    line-height: inherit;
    padding: 8px 10px;
    font-size: 14px;
    margin-top: 0;
    border-radius: 5px;
  }
}
/* ==================== 会员注册 - 板块一 End ==================== */
/* ==================== 美国专线小包 Start ==================== */
.product3-4-main .about-section2,
.product3-4-main .product-section5 {
  padding-top: 0;
}
/* ==================== 美国专线小包 End ==================== */
/* ==================== 美国尾端 Start ==================== */
.product-1-main .product-section2 {
  padding-top: 0;
}
/* ==================== 美国尾端 End ==================== */
