@charset "UTF-8";
* {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

@font-face {
  font-family: "YouSheBiaoTiHei-Regular";
  src: url("../fonts/YouSheBiaoTiHei-Regular.ttf");
}
@font-face {
  font-family: "PingFang SC-Bold";
  src: url("../fonts/PingFang_Bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PingFang SC-Medium";
  src: url("../fonts/PingFang_Medium.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  margin: 0;
  font-size: 16px;
  color: #192147;
  line-height: 1.5;
  font-family: "PingFang SC-Medium", "sans-serif";
}

.container {
  margin: 0 auto;
  max-width: 1260px;
  width: 100%;
}

.img {
  font-size: 0;
}
.img img {
  max-width: 100%;
}

.header-wrap {
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  padding: 25px 0;
  z-index: 100;
}
.header-wrap.active {
  padding: 20px 0;
  background-color: #fff;
  box-shadow: 0 0 15px 0 rgba(31, 43, 136, 0.21);
}
.header-wrap.active .logo {
  width: 50px;
  height: 50px;
}
.header-wrap .container {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-wrap .logo {
  display: block;
  width: 62px;
  height: 62px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.header-wrap .logo img {
  display: block;
  width: 100%;
  height: 100%;
}
.header-wrap .nav {
  margin-left: 80px;
  width: 60%;
  font-size: 18px;
  font-family: PingFang SC-Bold;
}
.header-wrap .nav .icon, .header-wrap .nav .dropdown {
  display: none;
}
.header-wrap .nav .nav-list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-wrap .contact {
  margin-left: auto;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
}
.header-wrap .contact img {
  display: block;
  margin-right: 6px;
  width: 32px;
}

.global-bg {
  background-repeat: no-repeat;
  background-position: center;
  -o-background-size: cover;
     background-size: cover;
}

.global-hd {
  text-align: center;
}
.global-hd h3 {
  font-size: 42px;
  font-family: "PingFang SC-Bold";
}
.global-hd .desc {
  font-size: 20px;
  color: #777777;
}

.global-hd2 {
  font-family: "PingFang SC-Bold";
  line-height: 1;
}
.global-hd2 p {
  font-size: 64px;
  color: #E4DBFF;
}
.global-hd2 h3 {
  -webkit-transform: translateY(-30%);
     -moz-transform: translateY(-30%);
      -ms-transform: translateY(-30%);
       -o-transform: translateY(-30%);
          transform: translateY(-30%);
  font-size: 32px;
  color: #1A1E3F;
}
.global-hd2.large p {
  font-size: 88px;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px rgba(112, 42, 175, 0.2);
  font-style: normal;
  text-transform: none;
}
.global-hd2.large h3 {
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 42px;
}

.global-button {
  margin: auto;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  width: 225px;
  height: 56px;
  background: -webkit-linear-gradient(left, #6478E8 0%, #671FED 50%, #6478E8 100%);
  background: -moz-linear-gradient(left, #6478E8 0%, #671FED 50%, #6478E8 100%);
  background: -o-linear-gradient(left, #6478E8 0%, #671FED 50%, #6478E8 100%);
  background: linear-gradient(to right, #6478E8 0%, #671FED 50%, #6478E8 100%);
  -o-background-size: 180% auto;
     background-size: 180% auto;
  border-radius: 54px;
  font-size: 18px;
  color: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.global-button:hover {
  background-position: right center;
}
.global-button:hover span {
  -webkit-transform: translateX(-10px);
     -moz-transform: translateX(-10px);
      -ms-transform: translateX(-10px);
       -o-transform: translateX(-10px);
          transform: translateX(-10px);
}
.global-button span {
  display: block;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  text-align: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.global-button i {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: url("../images/icon_arrow.png") no-repeat center;
  -o-background-size: 22px;
     background-size: 22px;
  background-color: #fff;
}

.global-case-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 20px 10px;
}
.global-case-list li {
  padding: 8px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(31, 43, 136, 0.21);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.global-case-list li:hover {
  -webkit-transform: translateY(-5px);
     -moz-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
       -o-transform: translateY(-5px);
          transform: translateY(-5px);
}
.global-case-list a {
  position: relative;
  display: block;
  width: 100%;
  height: 185px;
  border-radius: 15px;
  overflow: hidden;
}
.global-case-list a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.global-case-list a p {
  position: absolute;
  left: 0;
  bottom: 0;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 15px;
  background: -webkit-linear-gradient(top, rgba(5, 8, 46, 0) 0%, #05082E 100%);
  background: -moz-linear-gradient(top, rgba(5, 8, 46, 0) 0%, #05082E 100%);
  background: -o-linear-gradient(top, rgba(5, 8, 46, 0) 0%, #05082E 100%);
  background: linear-gradient(180deg, rgba(5, 8, 46, 0) 0%, #05082E 100%);
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-family: "PingFang SC-Bold";
  text-align: center;
  color: #fff;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.global-youshi-section {
  padding: 75px 0 65px;
  color: #fff;
}
.global-youshi-section .hd {
  margin-bottom: 65px;
}
.global-youshi-section .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 24px;
}
.global-youshi-section .list li {
  padding: 30px 20px;
  padding-left: 60px;
  background: url("../images/border_bg.png") no-repeat center;
  -o-background-size: 100% 100%;
     background-size: 100% 100%;
}
.global-youshi-section .list .title {
  position: relative;
  font-size: 20px;
  font-family: "PingFang SC-Bold";
}
.global-youshi-section .list .title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -40px;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url(../images/icon_arrow2.png) no-repeat;
  -o-background-size: cover;
     background-size: cover;
}
.global-youshi-section .list .desc {
  margin-top: 12px;
}

.banner {
  padding-top: 4.17vw;
  width: 100%;
  height: 680px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.banner .text-color {
  font-weight: 400;
  line-height: 1;
  /*font-family: "YouSheBiaoTiHei-Regular";*/
  font-family: '黑体';
  background: -webkit-linear-gradient(left, #173EF5 0%, #000EBF 100%);
  background: -moz-linear-gradient(left, #173EF5 0%, #000EBF 100%);
  background: -o-linear-gradient(left, #173EF5 0%, #000EBF 100%);
  background: linear-gradient(90deg, #173EF5 0%, #000EBF 100%);
  -webkit-background-clip: text; /* Chrome, Safari */
  background-clip: text;
  -webkit-text-fill-color: transparent; /* Chrome, Safari */
  color: transparent; /* 其他浏览器 */
  -webkit-font-smoothing: antialiased; /* 抗锯齿文本 */
  -moz-osx-font-smoothing: grayscale; /* 对于Firefox */
  text-rendering: optimizeLegibility; /* 文本渲染优化 */
  text-shadow: 0px 4px 19px rgba(31, 43, 136, 0.51);
}
.banner .title {
  font-size: 66px;
  font-weight: bold;
}
.home-banner .title {
  font-weight: 400!important;
}
.banner .sub-title {
  margin-top: 60px;
  font-size: 46px;
}
.banner .desc {
  margin: 0 auto;
  padding: 60px 0;
  color: #1121CB;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

.solution2-banner .desc {
  padding: 30px 0 60px;
}

.solution3-banner .desc {
  padding: 60px 0 120px;
}

.solution1-banner .desc {
  padding-bottom: 85px;
}

.news-banner .desc {
  padding-bottom: 120px;
}

.page-banner .desc {
  font-size: 32px;
}

.flow-section {
  background: url("../images/home_bg3.jpg") no-repeat center;
  -o-background-size: cover;
     background-size: cover;
}
.flow-section .hd {
  padding: 90px 0 0;
}
.flow-section ul {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 64px 50px;
}
.flow-section ul::before {
  content: "";
  display: block;
  position: absolute;
  left: -3px;
  top: 14.5%;
  width: 100%;
  height: 280px;
  border-radius: 0 100px 100px 0;
  border: 3px dashed #FFFFFF;
}
.flow-section ul::after {
  content: "";
  position: absolute;
  top: 13.6%;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
}
.flow-section li {
  position: relative;
  z-index: 2;
  width: 265px;
}
.flow-section li:nth-child(4) {
  -webkit-order: 5;
     -moz-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}
.flow-section li:nth-child(5) {
  -webkit-order: 4;
     -moz-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
.flow-section li:nth-child(6) {
  -webkit-order: 3;
     -moz-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.flow-section li:nth-child(7) {
  -webkit-order: 2;
     -moz-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.flow-section li:nth-child(8) {
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.flow-section .number {
  margin: 0 auto;
  margin-bottom: 20px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 62px;
  height: 62px;
  background: url("../images/flow_num_bg.png") no-repeat;
  -o-background-size: cover;
     background-size: cover;
  font-size: 24px;
  color: #fff;
}
.flow-section .content {
  padding-top: 10px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 135px;
  background: url("../images/flow_content_bg.png") no-repeat;
  -o-background-size: 100% 100%;
     background-size: 100% 100%;
}
.flow-section .content .title {
  margin-bottom: 10px;
  font-family: "PingFang SC-Bold";
  font-size: 24px;
  color: #251B3F;
}
.flow-section .content .desc {
  color: #5F596A;
  font-size: 18px;
}

.footer-wrap {
  background-color: #141318;
  color: #fff;
}
.footer-wrap .go-top {
  display: none;
  border-bottom: 1px solid #2C2B30;
}
.footer-wrap .go-top a {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
}
.footer-wrap .go-top svg {
  margin-left: 10px;
  width: 16px;
  height: 16px;
}
.footer-wrap .links {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 90px;
  border-bottom: 1px solid #2C2B30;
}
.footer-wrap .links .label {
  margin-right: 15px;
  font-size: 20px;
}
.footer-wrap .links .links-list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px;
}
.footer-wrap .footer-nav {
  padding: 45px 0 60px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-wrap .footer-nav .footer-nav-box {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-wrap .footer-nav .footer-nav-item .title {
  margin-bottom: 25px;
  font-size: 20px;
}
.footer-wrap .footer-nav .footer-nav-item .title i {
  display: none;
}
.footer-wrap .footer-nav .footer-nav-item .content li {
  margin-bottom: 18px;
}
.footer-wrap .footer-nav .footer-nav-item .content .item {
  margin-bottom: 20px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-wrap .footer-nav .footer-nav-item .content .item:last-child {
  margin-bottom: 0;
}
.footer-wrap .footer-nav .footer-nav-item .content .item .img {
  margin-right: 8px;
  width: 36px;
}
.footer-wrap .footer-nav .qr-box {
  margin-left: 90px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}
.footer-wrap .footer-nav .qr-box .img {
  width: 158px;
}
.footer-wrap .footer-nav .qr-box p {
  margin-top: 10px;
  text-align: center;
  font-size: 18px;
}
.footer-wrap .copy-right {
  padding: 25px 0;
  border-top: 1px solid #2C2B30;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}
.footer-wrap .copy-right p {
  margin-bottom: 10px;
}
.footer-wrap .copy-right p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1480px) {
  body {
    font-size: 14px;
  }
  .container {
    margin: 0 auto;
    max-width: 90%;
  }
  .global-hd h3 {
    font-size: 32px;
  }
  .global-hd2 p {
    font-size: 48px;
  }
  .global-hd2 h3 {
    font-size: 28px;
  }
  .global-hd2.large p {
    font-size: 48px;
  }
  .global-hd2.large h3 {
    font-size: 28px;
  }
  .header-wrap .contact {
    font-size: 20px;
  }
  .header-wrap .contact img {
    width: 26px;
  }
  .banner {
    height: 600px;
  }
  .banner .title {
    font-size: 68px;
  }
  .global-case-list a p {
    font-size: 16px;
  }
  .flow-section .content .title {
    font-size: 20px;
  }
  .flow-section .content .desc {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) {
  .banner {
    height: 540px;
  }
  .banner .title {
    font-size: 56px;
  }
  .banner .desc {
    padding: 45px 0;
    font-size: 16px;
  }
  .solution2-banner .sub-title {
    margin-top: 30px;
  }
  .solution2-banner .desc {
    padding: 30px 0 40px;
  }
  .global-button {
    width: 185px;
    height: 48px;
    font-size: 16px;
  }
  .global-button i {
    width: 38px;
    height: 38px;
  }
  .global-hd h3 {
    font-size: 28px;
  }
  .global-hd .desc {
    font-size: 16px;
  }
  .global-hd2 p {
    font-size: 38px;
  }
  .global-hd2 h3 {
    font-size: 24px;
  }
  .global-hd2.large p {
    font-size: 38px;
  }
  .global-hd2.large h3 {
    font-size: 24px;
  }
  .flow-section .hd {
    padding: 50px 0 0;
  }
  .flow-section ul {
    padding: 50px 0;
  }
  .flow-section ul::before {
    top: 14.5%;
    height: 240px;
  }
  .flow-section ul::after {
    top: 13%;
  }
  .flow-section li {
    width: 215px;
  }
  .flow-section .number {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .flow-section .content {
    height: 110px;
  }
  .flow-section .content .title {
    font-size: 16px;
  }
  .flow-section .content .desc {
    font-size: 14px;
  }
  .footer-wrap .links {
    height: 75px;
  }
  .footer-wrap .links .label {
    font-size: 16px;
  }
  .footer-wrap .footer-nav {
    padding: 30px 0;
  }
  .footer-wrap .footer-nav .footer-nav-item .title {
    font-size: 16px;
  }
  .footer-wrap .footer-nav .qr-box .img {
    width: 130px;
  }
  .footer-wrap .footer-nav .qr-box p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .global-hd h3 {
    font-size: 24px;
  }
  .global-hd2 p {
    font-size: 26px;
  }
  .global-hd2 h3 {
    font-size: 18px;
  }
  .header-wrap {
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(31, 43, 136, 0.21);
  }
  .header-wrap.active {
    padding: 15px 0;
  }
  .header-wrap .logo {
    width: 40px;
    height: 40px;
  }
  .header-wrap .contact {
    display: none;
  }
  .header-wrap .nav {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header-wrap .nav.show {
    opacity: 1;
    visibility: visible;
  }
  .header-wrap .nav.show .nav-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  .header-wrap .nav .nav-list {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 20px;
    width: 70%;
    height: 100%;
    background-color: #fff;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-transform: translate3d(-100%, 0, 0);
       -moz-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }
  .header-wrap .nav .nav-link {
    padding: 10px 20px;
    display: block;
  }
  .banner {
    padding: 0 5%;
    padding-top: 80px;
    height: 550px;
  }
  .banner .title {
    font-size: 30px;
    text-align: center;
  }
  .banner .sub-title {
    font-size: 20px;
    text-align: center;
  }
  .banner .desc {
    padding: 30px 0;
    font-size: 14px;
  }
  .page-banner {
    height: 400px;
  }
  .global-case-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .global-case-list a {
    height: 130px;
  }
  .global-case-list a p {
    font-size: 12px;
  }
  .flow-section {
    padding: 40px 0;
  }
  .flow-section .hd {
    padding: 0;
    margin-bottom: 40px;
  }
  .flow-section ul {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .flow-section ul::before, .flow-section ul::after {
    display: none;
  }
  .flow-section ul li {
    width: 100%;
    -webkit-order: 0 !important;
       -moz-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .flow-section .number {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  .flow-section .content {
    padding: 25px 0 15px;
    height: auto;
  }
  .flow-section .content .title {
    font-size: 16px;
  }
  .footer-wrap .go-top {
    display: block;
  }
  .footer-wrap .container {
    max-width: 100%;
  }
  .footer-wrap .links {
    display: none;
  }
  .footer-wrap .qr-box {
    display: none;
  }
  .footer-wrap .footer-nav {
    display: block;
  }
  .footer-wrap .footer-nav .footer-nav-box {
    display: block;
  }
  .footer-wrap .footer-nav .footer-nav-item:last-child .title i {
    display: none;
  }
  .footer-wrap .footer-nav .footer-nav-item:last-child .content {
    display: block;
  }
  .footer-wrap .footer-nav .footer-nav-item .title {
    margin-bottom: 0;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
    height: 40px;
  }
  .footer-wrap .footer-nav .footer-nav-item .title a {
    padding-left: 20px;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    line-height: 40px;
  }
  .footer-wrap .footer-nav .footer-nav-item .title i {
    display: block;
    width: 40px;
    height: 40px;
    background: url(../images/arrow-right.png) no-repeat center;
    -o-background-size: 20px;
       background-size: 20px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  .footer-wrap .footer-nav .footer-nav-item .title i.show {
    -webkit-transform: rotate(90deg);
       -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .footer-wrap .footer-nav .footer-nav-item .content {
    display: none;
    padding: 10px 0;
  }
  .footer-wrap .footer-nav .footer-nav-item .content a {
    padding: 0 30px;
    line-height: 1.8;
  }
  .footer-wrap .footer-nav .footer-nav-item .content .item {
    padding: 0 20px;
  }
  .global-youshi-section .list .title {
    font-size: 16px;
  }
  .global-youshi-section .list .title::before {
    left: -27px;
    width: 20px;
    height: 20px;
  }
  .global-youshi-section .list li {
    padding: 20px;
    padding-left: 40px;
  }
}

.solution5-why {
	padding: 70px 0 120px;
}
.solution5-why .text{
	margin: 0 auto;
	padding: 75px 50px;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 326px;
    -o-background-size: 100%;
    background-size: 100%;
    background-image: url(../images/solution5_why_bg.png);
	font-size: 18px;
	color: #5F596A;
	line-height: 26px;
	text-align: center;	
}


.section5-service .home-section1{
	padding: 50px 0 60px;
}
.section5-service .desc{
	margin-top: 16px;
	font-weight: 500;
	font-size: 21px;
	color: #777777;
	letter-spacing: 1px;
	text-align: center;
	font-style: normal;
	text-transform: none;
}
.section5-service .home-section1 ul li{
	width: 31%;
	height: auto;
	margin: 15px auto;
	background-image: linear-gradient(to bottom, #738ce6, #5416ad)!important;
}
.section5-service .home-section1 ul li .title{
	font-weight: 100;
	font-size: 24px;
	color: #FFFFFF;
	text-align: left;
	font-style: normal;
	text-transform: none;
}
.section5-service .home-section1 ul li .tags{
	margin-top: 10px;
}
.section5-service .home-section1 ul li .tags span{
	/*font-weight: 800;*/
	font-size: 16px;
	color: #FFFFFF;
	text-align: center;
	font-style: normal;
}
.section5-service .home-section1 ul li .pic{
	margin: 25px auto;
}
.section5-service .home-section1 ul li .pic img{
	width: 100%;
	border-radius: 15px;
}

.section5-equipment{
	padding: 50px 0 60px!important;
}
.section5-equipment .home-section1{
	padding-top: 40px;
}
.section5-equipment .home-section1 ul li{
	height: auto;
	margin: 15px auto 0;
}
.section5-equipment .home-section1 ul li .title{
	font-weight: 100;
	font-size: 28px;
	color: #FFFFFF;
	text-align: left;
	font-style: normal;
}
.section5-equipment .home-section1 ul li .desc{
	/*font-weight: 500;*/
	font-size: 16px;
	color: #FFFFFF;
	line-height: 23px;
	text-align: left;
	font-style: normal;
}
.section5-equipment .home-section1 ul li .pic{
	margin: 25px auto;
}
.section5-equipment .home-section1 ul li .pic img{
	width: 100%;
}

.section5-advantage .home-section1 ul .content .title{
	font-weight: bold;
	font-size: 21px;
	color: #333333;
	text-align: left;
	font-style: normal;
	text-transform: none;
}
.section5-advantage .home-section1 ul .content .desc{
	font-weight: 500;
	font-size: 16px;
	color: #5F596A;
	text-align: left;
	font-style: normal;
	text-transform: none;
}

.solution-industry{
	padding-bottom: 220px!important;
}
.solution-industry::before{
	content: "";
    position: absolute;
    top: -40%!important;
    left: 0;
    width: 100%;
    background: url(../images/solution_line.png) no-repeat!important;
    -o-background-size: cover!important;
    background-size: cover!important;
}
.solution-industry .global-case-list a p{	
	width: 100%;
	flex-wrap: wrap;
	align-items: flex-end;
	line-height: 36px;
	white-space: wrap;
}
.solution-industry .global-case-list a p span{	
	display: block;
	margin: 0;
	padding: 0 15px;
	width: 100%;
	height: auto;
	line-height: 30px;
	/*font-weight: 500;*/
	font-size: 16px;
	color: #FFFFFF;
	text-align: center;
	font-style: normal;
	text-transform: none;
}
.solution-industry .global-case-list a p span.title{	
	font-weight: 100;
	font-size: 21px;
	color: #FFFFFF;
	text-align: center;
	font-style: normal;
}
.solution5-flow-section{
	padding: 50px 0 100px;
	background-image: url(../images/solution5_flow_bg.png)!important; 
	background-size: cover;
}
.solution5-flow-section .hd{
	padding-top: 0;
}
.solution5-flow-section li{
	width: 21%!important;
}
.solution5-flow-section .content{
	height: 133px!important;
    background: url(../images/flow_content_bg3.png) no-repeat!important;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
}
.solution5-flow-section .content .title{
	font-weight: 400;
	font-size: 24px;
	color: #251B3F;
	text-align: center;
	font-style:italic;	
}
.solution5-flow-section .content .desc{
	padding: 0 10px!important;
	font-size: 16px;
}
.solution5-flow-section .text-title{
	margin: auto;
	font-size: 36px;
    font-weight: bold;
	line-height: 1;
    font-family: '黑体';
    background: -webkit-linear-gradient(left, #173EF5 0%, #000EBF 100%);
    background: -moz-linear-gradient(left, #173EF5 0%, #000EBF 100%);
    background: -o-linear-gradient(left, #173EF5 0%, #000EBF 100%);
    background: linear-gradient(90deg, #173EF5 0%, #000EBF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: 0px 4px 19px rgba(31, 43, 136, 0.51);
	text-align: center;
}

.solution-case{
	padding: 50px 0;
}
.solution-case ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 50px auto;
}
.solution-case ul li{
	position: relative;
	width: 24%;
}
.solution-case ul li img{
	width: 100%;
	height: 100%;
}
.solution-case ul li .content{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 10px 10px;
	text-align: center;
	color: #fff;
}
.solution-case ul li .content .title{
	font-weight: 100;
	font-size: 24px;
	color: #FCFCFE;
	text-align: center;
	font-style: normal;
	text-transform: none;
}
.solution-case ul li .content .desc{
	margin: 10px 0 15px;
	font-weight: 500;
	font-size: 16px;
	color: #FFFFFF;
	text-align: center;
	font-style: normal;
	text-transform: none;
}

.solution5-adv{
	padding: 50px 0 0;
}
.solution5-adv .pic{
	margin: auto;
	text-align: center;
}
.solution5-adv .pic img{
	margin: auto;
}
.solution5-adv .bd .desc{
	font-weight: 500;
	font-size: 32px;
	color: #FFFFFF;
	text-shadow: inset -1px 1px 3px rgba(255,255,255,0.36);
	text-align: center;
	font-style: normal;
	text-transform: none;
}
.solution5-flow-section .wap{
	display: none;
}
.solution5-flow-section .pc{
	display: blcok;
}
@media screen and (max-width: 768px) {
	.wap-banner .global-button{
		display: none;
	}
	.solution5-why{
		display: none;
		padding: 30px 0;
	}
	.solution5-why .text{
		height: auto;
		line-height: 30px;
		padding: 10px;
		background-image:none;
		font-size: 14px;
		text-align: left;
	}
	.section5-service .home-section1{
		padding: 50px 0 0;
	}
	.section5-service .desc{
		font-size: 14px;
		text-align: left;
	}
	.section5-service .home-section1 ul li{
		width: 100%;
	}
	.home-section1 ul li .tags span{
		display: block;
		width: 48.5%;
		margin: 0;
	}
	.section5-service .home-section1 ul li .title{
		font-size: 16px;
	}
	.section5-service .home-section1 ul li .tags span{
		font-size: 14px;
	}
	.section5-service .home-section1 ul li .pic{
		margin-bottom: 0;
	}
	
	.section5-equipment{
		padding: 0!important;
	}
	.section5-equipment .home-section1 ul li .title{
		font-size: 16px;
	}
	
	.solution-industry{
		padding-top: 0!important;
		padding-bottom: 30px!important;
	}
	.solution-industry::before{
		display: none;
	}
	.solution-industry .global-case-list{
		grid-template-columns: repeat(1, 1fr)!important;
	}
	.solution-industry .global-case-list li a{
		height: auto;
	}
	.solution5-flow-section li{
		width: 100%!important;
	}
	.solution-case ul{
		margin-bottom: 0;
	}
	.solution-case ul li{
		width: 100%;
		margin-bottom: 15px;
	}
	.solution5-flow-section{
		padding-bottom: 50px;
	}
	.solution5-flow-section ul{
		gap: 0 10px!important;
	}
	.solution5-flow-section .content{
		padding: 45px 0 15px;
		height: 100px!important;
		background-size: contain!important;
	}
	.solution5-flow-section .number{
		margin-bottom: 10px!important;
	}
	.solution5-flow-section .content .title{
		margin-top: -40px;
		margin-bottom: 0;
		font-size: 14px;
	}
	.news-section5 .content .desc{
		font-size: 12px;
	}
	.solution5-flow-section .text-title{
		font-size: 16px;
	}
	.solution5-flow-section .wap{
		display: block;
	}
	.solution5-flow-section .pc{
		display: none;
	}
}
.home-banner{
	position: relative;
	padding-top: 0;
	height: 100vh;
}
.home-banner h1{
	font-size: 80px!important;
}
.home-banner .desc{
	font-size: 38px!important;
}
.outter-text{
	position:absolute;
	z-index: 10;
}
.btn-box{
	display: flex;
	justify-content: space-between;
}
.btn-box a{
	display: flex;
	justify-content: space-between;
	margin: 75px auto;
	padding: 10px 30px;
	font-size: 16px;
	border-radius: 30px;
	border: 2px solid #cce2f5;
	color: #fff;
}
.btn-box a:hover{	
	border: 2px solid #173ef5;
	background: #173ef5;
	color: #fff;
}
.arrow-down{
	position: absolute;
	bottom: 30px;
	left: 0;	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	font-size: 30px;
	color: #fff;
	cursor: pointer;
	z-index: 10;
	animation: moveUpDown 1s infinite alternate; 
}
.arrow-down span.ico{
	width: 66px;
	height: 100px;
	background: url(/templates/metv75/static/images/scroll_down.png) bottom 10px center no-repeat;
	background-size: 40%;
}
.arrow-down span.text{
	font-size: 16px;
}
@keyframes moveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); 
  }
}

.new-core-container{
	background: rgba(235, 238, 245, 0.5);
}
.new-core-container2{
	background: rgba(235, 238, 245, 0.5);
}
.new-core-container .container{
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
	padding: 25px 0;
}

.new-core-container .item{
	width: 23.5%;
	border-radius: 30px;
	background: #fff;
	cursor: pointer;
	/*box-shadow: 0 0 6px 0 rgba(31, 43, 136, 0.21);*/
	overflow: hidden;
}
.new-core-container .item .img-box{
	position: relative;
	width: 100%;
	height: 230px;
}
.new-core-container .item .img-box .bg{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	z-index: 10;
}
.new-core-container .item .img-box .no{
	position: absolute;
	top: 15px;
	left: 15px;
	color: #fff;
	font-size: 22px;
	z-index: 30;
}
.new-core-container .item .img-box .ico{
	position: absolute;
	top: 15px;
	right: 15px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
}
.new-core-container .item .text{
	padding: 22px;
	overflow: hidden;
}
.new-core-container .item .text .title{
	font-weight: bold;
	font-size: 26px;
	color: #000;
}
.new-core-container .item .text .title2{
	color: #8fa2b9;
}
.new-core-container .item .text .desc{
	margin: 25px auto;
	line-height: 36px;
	font-size: 18px;
	color: #5b697e;
}
.new-core-container .item .text .desc2{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 15px;
	font-size: 18px;
	color: #000;
	border-top: 1px solid #f3f6fa;
}
.new-core-container .item .text .desc2{
	display: flex;
	justify-content: flex-start;
	padding-top: 30px;
	font-size: 18px;
	color: #000;
	border-top: 1px solid #f3f6fa;
}
.new-core-container .item .text .desc2 .dot{
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #5527D3;
}
.new-core-container .item .text .desc2 .t{
	padding-left: 10px;
}
.new-core-container .item .text .btn{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin: 35px 0 10px;
	padding: 10px 15px;
	border: 1px solid #e3e9f1;
	border-radius: 30px;
	color: #0f182c;
}
.new-core-container .item .text .btn:hover{
	background: #5527D3;
	color: #fff;
}
.new-core-container .myswiper{
	height: auto;
}
@media screen and (max-width: 768px) {
	.btn-box{
		flex-direction: column;
	}
	.btn-box a{
		margin: 75px auto 5px!important;
	}
	.btn-box a:nth-child(2){
		margin-top: 15px!important;
	}
	.new-core-container .container{
		max-width: 96%;
		margin-bottom: 0;
	}
	.new-core-container .item{
		width: 100%;
	}
	.new-core-container .item .img-box{
		width: 100%;
		height: 200px;
	}
	.new-core-container .item .text .title{
		font-size: 24px;
	}
}

