body,
html {
  scroll-behavior: smooth;
}

body {
  background-color: #F0F1F5;
  min-width: 1400px;
}

.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255,255,255,0);
    transition: background .3s ease;
}
.hero__inner {
  max-width: 1400px;
  width: 1400px;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.hero__inner .top-nav {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__inner .top-nav .top-nav__brand {
  flex-shrink: 0;
  width: 199px;
}
.hero__inner .top-nav .top-nav__brand img {
  width: 100%;
  object-fit: contain;
  transition: opacity .3s ease;
}
.hero__inner .top-nav .top-nav__brand img.active{
    display: none;
    opacity: 0;

}
.hero__inner .top-nav .top-nav__links {
    flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero__inner .top-nav .top-nav__links>li>a {
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
    display: block;
    line-height: 90px;
}
.hero__inner .top-nav .top-nav__actions {
    flex-shrink: 0;
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 23px;
}
.hero__inner .top-nav .top-nav__actions a {
  color: #fff;
}
.hero__inner .top-nav .top-nav__actions span {
  color: #6B6E6E;
}
.hero.active{
    background: rgba(255,255,255,1);
}
.hero.active .hero__inner .top-nav .top-nav__links li a{
    color: #000;
}
.hero.active .hero__inner .top-nav .top-nav__actions a{
    color: #000;
}
.hero.active .hero__inner .top-nav .top-nav__brand img{
    display: none;
    opacity: 0;
}
.hero.active .hero__inner .top-nav .top-nav__brand img.active{
    display: block;
    opacity: 1;
}

.hero.activeShow{
    background: rgba(255,255,255,1);
}
.hero.activeShow .hero__inner .top-nav .top-nav__links li a{
    color: #000;
}
.hero.activeShow .hero__inner .top-nav .top-nav__actions a{
    color: #000;
}
.hero.activeShow .hero__inner .top-nav .top-nav__brand img{
    display: none;
    opacity: 0;
}
.hero.activeShow .hero__inner .top-nav .top-nav__brand img.active{
    display: block;
    opacity: 1;
}

.hero:hover{
    background: rgba(255,255,255,1);
}
.hero:hover .hero__inner .top-nav .top-nav__links li a{
    color: #000;
}
.hero:hover .hero__inner .top-nav .top-nav__actions a{
    color: #000;
}
.hero:hover .hero__inner .top-nav .top-nav__brand img{
    display: none;
    opacity: 0;
}
.hero:hover .hero__inner .top-nav .top-nav__brand img.active{
    display: block;
    opacity: 1;
}

.hero__inner .top-nav .top-nav__links li{
    position: relative;
}

.hero__inner .top-nav .top-nav__links li .top-nav__submenu{
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    background: #fff;
    padding: 22px 26px;
    border-radius: 6px;
    box-shadow: 0px 0px 15px 0px #0000000F;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 11px;
    transition: opacity .3s ease;

}

.hero__inner .top-nav .top-nav__links li .top-nav__submenu li a{
    font-weight: 400;
    font-size: 15px;
    color: #000000;
    line-height: 1.4;
}


.hero__inner .top-nav .top-nav__links li:hover .top-nav__submenu{
    opacity: 1;
    visibility: visible;
}

.banner{
    position: relative;
    width: 100%;
}
.banner img{
    width: 100%;
    height: 900px;
    object-fit: cover;
}
.banner .banner__container{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 900px;
    /*margin: 0 auto;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner .banner__container .hero__content {
  /*margin-top: 193px;*/
  /*  padding-top: 193px;*/
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #FFFFFF;
  width: 580px;
}
.banner .banner__container .hero__content h1 {
  font-size: 56px;
    font-weight: 500;
}
.banner .banner__container .hero__content p {
  font-size: 23px;
  margin-top: 10px;
  /*color: #8F9294;*/
    color: rgba(255,255,255,.4);
}
.banner .banner__container .hero__content p.hero__sub {
  line-height: 200%;
  margin-top: 32px;
    font-size: 18px;
  color: #FFFFFF;
}
.banner .banner__container .hero__content .btn {
  margin-top: 43px;
  width: 172px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  border-radius: 46px;
  border: 1px solid #fff;
  color: #FFFFFF;
    transition: all .3s ease;
}
.banner .banner__container .hero__content .btn:hover{
    background-color: #fff;
    color: #333;
}
.banner .hero__quick-links {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    margin-top: auto;
  display: flex;
  justify-content: center;
    z-index: 99;
}
.banner .hero__quick-links ul {
  display: flex;
  justify-content: center;
  align-self: flex-end;
  gap: 100px;
}
.banner .hero__quick-links ul li {
    flex-shrink: 0;
  padding: 40px 0;
}
.banner .hero__quick-links ul li a {
  color: #fff;
  font-size: 16px;
    white-space: nowrap;
}
.banner .index_banner_pagination{
  bottom: 40px !important;
}
.banner .index_banner_pagination .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  opacity: 1;
  background: inherit;
}
.banner .index_banner_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
  border-radius: 7px;
  background: #FFF;
  width: 30px;
  height: 10px;
}
.section {
  width: 1125px;
  margin: 80px auto;
}
.section .feature-grid {
  display: flex;
    justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.section .feature-grid a{
    display: block;
    width: 30%;
}
.section .feature-grid .feature-card {
  width: 100%;
  height: 330px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.section .feature-grid .feature-card::after{
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
    opacity: 1;
    transition: opacity .3s ease;
}
.section .feature-grid .feature-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section .feature-grid .feature-card svg{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    fill: white;
}
.section .feature-grid .feature-card .card-container{
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
}
.section .feature-grid .feature-card .card-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  width: 80%;
  text-align: center;
  height: 240px;
  transition: clip-path .3s ease;
  clip-path: inset(0 0 0 0);
}
.section .feature-grid .feature-card .card-content > * {
    flex-shrink: 0;
}
.section .feature-grid .feature-card .card-content .feature-card__icon {
  padding-top: 40px;
    transition: transform .3s ease;
}
.section .feature-grid .feature-card .card-content .feature-card__icon img{
    width: 40px;
    height: 40px;
}
.section .feature-grid .feature-card .card-content h3 {
  font-size: 18px;
  margin: 16px 0 18px;
  color: #0036AA;
    transition: transform .3s ease,opacity .3s ease;
}
.section .feature-grid .feature-card .card-content p {
  color: #808080;
  font-size: 14px;
  line-height: 150%;
  opacity: 1;
  transition: opacity .3s ease, transform 0.3s ease;
}
.section .feature-grid .feature-card .card-more{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #fff;
    text-align: center;
    transform: translateY(100%);
    transition: transform .3s ease;
}
.section .feature-grid .feature-card .card-more p{
    color: #808080;
    font-size: 14px;
    line-height: 40px;
}
.solutions {
  height: 520px;
  overflow: hidden;
  background-image: url("../img/solutions-bg.jpg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.solutions .solutions-content {
  width: 1125px;
  margin: 0 auto;
  color: #fff;
}
.solutions .solutions-content h2 {
  margin-top: 197px;
  margin-bottom: 24px;
  font-size: 35px;
  font-weight: 700;
}
.solutions .solutions-content p {
  font-size: 18px;
  line-height: 150%;
}
.service {
  position: relative;
  background-color: #fff;
  padding: 80px 0;
}
.service .service-swiper {
  width: 1125px;
  margin: 0 auto;
  padding-bottom: 28px;
  overflow: hidden;
  position: relative;
}
.service .service-swiper .swiper{
    padding-bottom: 20px;
}
.service .service-swiper .service-swiper__pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.service .service-swiper .service-swiper__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background-color: #D9D9D9;
}
.service .service-swiper .service-swiper__pagination .swiper-pagination-bullet-active {
  background-color: #274090;
}
.service .service-swiper .service-item {
  background-color: #fff;
  box-shadow: 0px 0px 14px 0px #0000000F;
}
.service .service-swiper .service-item img {
  width: 100%;
  height: 300px;
}
.service .service-swiper .service-item .text {
  padding: 32px 25px;
}
.service .service-swiper .service-item .text span {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
.service .service-swiper .service-item .text p {
  color: #676767;
  font-size: 14px;
  line-height: 150%;
}
.service .service-swiper__prev,
.service .service-swiper__next {
  position: absolute;
  top: 264px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.service .service-swiper__prev img,
.service .service-swiper__next img {
  width: 100%;
  height: auto;
  display: block;
}
.service .service-swiper__prev {
  left: calc(50% - 562.5px - 36px - 48px);
}
.service .service-swiper__next {
  right: calc(50% - 562.5px - 36px - 48px);
}
.courses {
  padding: 80px 0;
}
.courses .courses-content {
  width: 1125px;
  margin: 0 auto;
  position: relative;
}
.courses .courses-content .courses-content-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
.courses .courses-content .courses-content-title span {
  display: flex;
  align-items: center;
  font-size: 27px;
  gap: 5px;
}
.courses .courses-content .courses-content-title span:first-of-type {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 5px;
}
.courses .courses-content .courses-content-title span i {
  font-style: normal;
  color: #000000;
  text-transform: uppercase;
}
.courses .courses-content .courses-content-title span i:first-of-type {
  color: #274090;
}
.courses .courses-content .courses-swiper {
  width: 1125px;
  margin: 0 auto;
  padding-bottom: 48px;
  overflow: hidden;
  position: relative;
}
.courses .courses-content .courses-swiper .courses-swiper__pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.courses .courses-content .courses-swiper .courses-swiper__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background-color: #D9D9D9;
}
.courses .courses-content .courses-swiper .courses-swiper__pagination .swiper-pagination-bullet-active {
  background-color: #274090;
}
.courses .courses-content .courses-swiper .courses-item {
  background-color: #fff;
  box-shadow: 0 0 0 #000;
}
.courses .courses-content .courses-swiper .courses-item .free {
  position: absolute;
  top: 16px;
  left: 21px;
  padding: 3px 10px;
  font-size: 12px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
}
.courses .courses-content .courses-swiper .courses-item img {
  width: 100%;
  height: 215px;
}
.courses .courses-content .courses-swiper .courses-item .text {
  padding: 22px 25px 14px;
  display: flex;
  flex-direction: column;
}
.courses .courses-content .courses-swiper .courses-item .text .text-title {
  padding-bottom: 22px;
  border-bottom: 1px solid #EBEBEB;
}
.courses .courses-content .courses-swiper .courses-item .text .text-title p {
  color: #000;
  font-size: 18px;
  line-height: 120%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.courses .courses-content .courses-swiper .courses-item .text span {
  margin: 14px 0;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 400;
  color: #737373;
  background: url("../img/video-icon.png") no-repeat center left;
}
.courses .courses-content .courses-swiper__prev,
.courses .courses-content .courses-swiper__next {
  position: absolute;
  top: 265px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.courses .courses-content .courses-swiper__prev img,
.courses .courses-content .courses-swiper__next img {
  width: 100%;
  height: auto;
  display: block;
}
.courses .courses-content .courses-swiper__prev {
  left: calc(50% - 562.5px - 45px - 45px);
}
.courses .courses-content .courses-swiper__next {
  right: calc(50% - 562.5px - 45px - 45px);
}

.cta {
    display: flex;
    justify-content: center;
    align-items: center;
  height: 322px;
  background: linear-gradient(rgba(39, 64, 144, 0.6), rgba(39, 64, 144, 0.6)), url("../images/ai_bg.jpg") no-repeat center/cover;

}
.cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  /*padding-top: 98px;*/
}
.cta .container h2 {
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
}
.cta .container .btn {
  padding: 11px 55px;
  font-size: 18px;
  color: #274090;
  border-radius: 46px;
  background-color: #fff;
}

.floating-contact {
  position: fixed;
  top: 30vh;
  right: 18px;
    z-index: 9999;
}
.floating-contact .floating-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.floating-contact .floating-content .floating-contact__item {
  box-shadow: 0px 0px 10px 0px #00000014;
  border: 1px solid #FFFFFF;
  width: 102px;
  height: 78px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-sizing: border-box;
}
.floating-contact .floating-content .floating-contact__item:first-of-type img {
  width: 40px;
  object-fit: contain;
}
.floating-contact .floating-content .floating-contact__item img {
  width: 34px;
  height: 34px;
}
.floating-contact .floating-content .floating-contact__item span {
  margin-top: 3px;
  color: #222;
  font-size: 12px;
}

.site-footer {
  background-color: #1F252F;
  color: #B8BEC9;
  padding-top: 85px;
}
.site-footer .site-footer-content {
  width: 1125px;
  margin: 0 auto;
}
.site-footer .site-footer-content .site-footer__inner {
  display: flex;
  justify-content: space-between;
}
.site-footer .site-footer-content .site-footer__inner + .site-footer__inner {
  margin-top: 73px;
  gap: 0 100px;
}
.site-footer .site-footer-content .site-footer__inner .site-footer__brand {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-footer .site-footer-content .site-footer__inner .site-footer__brand img {
  width: 150px;
  height: auto;
  object-fit: contain;
}
.site-footer .site-footer-content .site-footer__inner .site-footer__brand p {
  margin: 0;
  font-size: 15px;
  line-height: 160%;
  color: #fff;
}
.site-footer .site-footer-content .site-footer__inner .site-footer__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 36px;
}
.site-footer .site-footer-content .site-footer__inner .site-footer__aside .site-footer__social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
}
.site-footer .site-footer-content .site-footer__inner .site-footer__aside .site-footer__social li {
  margin: 0;
}
.site-footer .site-footer-content .site-footer__inner .site-footer__aside .site-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.site-footer .site-footer-content .site-footer__inner .site-footer__aside .site-footer__social a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.site-footer .site-footer-content .site-footer__inner .site-footer__aside .site-footer__social a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-footer .site-footer-content .site-footer__inner .site-footer__nav {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.site-footer .site-footer-content .site-footer__inner .site-footer__nav .site-footer__col h4 {
  margin-bottom: 23px;
  font-size: 16px;
  color: #FFFFFF;
}
.site-footer .site-footer-content .site-footer__inner .site-footer__nav .site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer .site-footer-content .site-footer__inner .site-footer__nav .site-footer__col ul a {
  color: #B8BEC9;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer .site-footer-content .site-footer__inner .site-footer__nav .site-footer__col ul a:hover {
  color: #FFFFFF;
}
.site-footer .site-footer-content .site-footer__inner .site-footer__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  flex-direction: column;
  color: #fff;
  gap: 2px;
}
.site-footer .site-footer-content .site-footer__inner .site-footer__contact span {
  font-size: 21px;
}
.site-footer .site-footer-content .site-footer__inner .site-footer__contact strong {
  font-size: 36px;
  font-weight: 700;
}
.site-footer .site-footer-content .site-footer__inner .site-footer__contact p {
  font-size: 14px;
}
.site-footer .site-footer__bottom {
  margin: 68px auto 0;
  padding: 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #8C939F;
}
.site-footer .site-footer__bottom .site-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer .site-footer__bottom a {
  color: inherit;
  text-decoration: none;
}
.site-footer .site-footer__bottom a:hover {
  color: #FFFFFF;
}

section.section{
    scroll-margin-top: 170px;
}

section.solutions{
    scroll-margin-top: 90px;
}


.section .feature-grid .feature-card:hover::after{
    opacity: 0;
}

.section .feature-grid .feature-card:hover .card-content{
    clip-path: inset(0 0 170px 0);
}

.section .feature-grid .feature-card:hover .card-content .feature-card__icon{
    transform: translateY(-25px);
}

.section .feature-grid .feature-card:hover .card-content h3{
    transform: translateY(-25px);
    opacity: 0;
}

.section .feature-grid .feature-card:hover .card-content p{
    transform: translateY(-43px);
    opacity: 0;
}

.section .feature-grid .feature-card:hover .card-more{
    transform: translateY(0);
}

.swiper-button-disabled{
    opacity: .2;
}


.site-footer__social li{
    position: relative;
}

.site-footer__social li .qrcode_img{
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translate(-50%,-100%);
    width: 100px;
    height: 100px;
}

.site-footer__social li .qrcode_img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-footer__social li .qrcode_img{
    display: none;
}

.site-footer__social li:first-child:hover .qrcode_img{
    display: block;
}

/*关于我们*/
:root {
    --theme-color: #0036AA;
}

.commonContainer{
    width: 1400px;
    margin: 0 auto;
}

.listContainer{
    width: 1120px;
    margin: 0 auto;
}

.listBanner {
    position: relative;
    text-align: center;
    margin-top: 90px;
}

.listBanner > img{
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}
.listBanner.aboutUsBanner > img {
    height: 330px;
}
.listBanner > .commonContainer{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: left;
    z-index: 5;
}

.listBanner > .commonContainer h1{
    color: #fff;
    font-family: PingFang SC;
    font-weight: 500;
    font-size: 56px;
}
.indusBanner.listBanner::after{
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%);
  position: absolute;
  left: 0;
  top: 0;
}


.slogan .wrapper{
    background-color: #F0F1F5;
    padding-left: calc((100% - 1120px) / 2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.slogan .wrapper .content h1{
    font-weight: 600;
    font-size: 27px;
    color: #000000;
    margin-bottom: 35px;
}

.slogan .wrapper .content p{
    font-weight: 400;
    font-size: 18px;
    line-height: 33px;
    color: #000;
}

.slogan .wrapper .pic img{
    width: 960px;
    height: 520px;
    object-fit: cover;
}

.career{
    background-color: #fff;
    padding: 80px 0;
}

.career .listContainer >.title{
    margin-bottom: 40px;
    text-align: center;
}

.career .listContainer >.title p{
    color: #000;
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
}

.career .listContainer >.title p span{
    color: var(--theme-color);
}

.career .listContainer >.title h1{
    color: #000;
    font-size: 27px;
    font-weight: 600;
    line-height: normal;
}

.career .listContainer .list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(2,auto);
    gap: 41px 24px ;
}

.career .listContainer .list .item{
    border-bottom: 1px solid #C9C9C9;
}

.career .listContainer .list .item >.title{
    position: relative;
    margin-bottom: 20px;
}

.career .listContainer .list .item > .title h2{
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
}

.career .listContainer .list .item >.title::after{
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid var(--theme-color);
}

.career .listContainer .list .item > .content{
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.career .listContainer .list .item > .content img{
    width: 70px;
    height: auto;
    flex-shrink: 0;
}

.career .listContainer .list .item > .content p{
    color: #808080;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: justify;
}
.comMsg{
  background: url(../img/com_msg_bg.jpg) no-repeat center;
  background-size: cover;
  padding: 80px 0;
}
.comMsg .comMsg_tit h2{
  color: #FFF;
  text-align: center;
  font-family: "Microsoft YaHei";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.comMsg .comMsg_form{
  margin-top: 50px;
}
.comMsg .comMsg_form .contact .group_box{
  display: flex;
}
.comMsg .comMsg_form .group_left{
  width: 32%;
}
.comMsg .comMsg_form .group{
  position: relative;
}
.comMsg .comMsg_form .group:not(:last-child){
  margin-bottom: 16px;
}
.comMsg .comMsg_form .contact__field{
  box-shadow: none;
  border: none;
  outline: none;
  background: #FFF;
  height: 52px;
  padding: 0 10px 0 45px;
  width: 100%;
  box-sizing: border-box;
}
.comMsg .comMsg_form .contact__field:focus-visible{
  border: none;
  box-shadow: none;
  outline: none;
}
.comMsg .comMsg_form .contact__field::placeholder{
  color: rgba(0, 0, 0, 0.70);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "Source Han Sans CN";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.comMsg .comMsg_form .group svg{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 18px;
}
.comMsg .comMsg_form .service_right{
  flex: 1;
  margin-left: 30px;
}
.comMsg .comMsg_form .groupare{
  position: relative;
  height: 100%;
}
.comMsg .comMsg_form .contact__fieldas{
  box-shadow: none;
  border: none;
  outline: none;
  background: #FFF;
  height: 100%;
  padding: 16px 10px 0 45px;
  width: 100%;
  box-sizing: border-box;
}
.comMsg .comMsg_form .contact__fieldas:focus-visible{
  border: none;
  box-shadow: none;
  outline: none;
}
.comMsg .comMsg_form .contact__fieldas::placeholder{
  color: rgba(0, 0, 0, 0.70);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "Source Han Sans CN";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.comMsg .comMsg_form .groupare svg{
  position: absolute;
  top: 20px;
  left: 18px;
}
.comMsg .comMsg_form .form_btn{
    text-align: right;
    margin-top: 30px;
}
.comMsg .comMsg_form .form_btn input{
  background: #FF9E00;
  color: #FFF;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "PingFang SC";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 10px 30px;
  border: none;
  box-shadow: none;
  outline: none;
}
.comMsg .comMsg_form .form_btn .tijiao{
  margin-left: 16px;
}
/* 关于我们 */
.listBannerSwiper{
  margin-top: 90px;
  position: relative;
}
.listBannerSwiper .con_text{
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
}
.listBannerSwiper .con_text .text1 h2{
  color: #FFF;
  font-family: "PingFang SC";
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.listBannerSwiper .con_text .text2{
  margin-top: 30px;
}
.listBannerSwiper .con_text .text2 p{
  color: #FFF;
  text-align: justify;
  font-family: "PingFang SC";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
}
.listBannerSwiper .con_text .text2 p:not(:first-child){
  margin-top: 20px;
}
.listBannerSwiper .banner__bg img{
      width: 100%;
}
.service_list{
  padding: 80px 0;
}
.service_list .service_list_con{
  margin-top: 40px;
}
.service_list .service_list_con .row{
  margin-bottom: -30px;
}
.service_list .service_list_con .row>div{
  padding-bottom: 30px;
}
.service_list .list_text h2{
  color: #000;
  text-align: center;
  font-family: "PingFang SC";
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.service_list .con_link{
  display: block;
}
.service_list .con_link .link_img img{
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service_list .con_link  .text1{
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service_list .con_link  .text1 h3{
  color:  #000;
  font-family: "PingFang SC";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all .3s;
}
.service_list .con_link:hover .text1 h3{
  color: #FF9E00;
}
.service_list .con_link  .text1 i{
  width: 11px;
  height: 8px;
  display: inline-block;
  background: url(../img/service_list_icon_blue.svg) no-repeat center;
  background-size: contain;
  transition: all .3s;
}
.service_list .con_link:hover .text1 i{
  background: url(../img/service_list_icon_yellow.svg) no-repeat center;
  background-size: contain;
}
.service_list .con_link .text2{
  margin-top: 12px;
}
.service_list .con_link .text2 p{
  color: #808080;
  font-family: "PingFang SC";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
.serviceCta h2{
  color: #FFF;
  font-family: "PingFang SC";
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2px;
}
.serviceCta p{
  color: #FFF;
  font-family: "PingFang SC";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
  margin-top: 8px;
  text-align: center;
}
.serviceCta.cta {
    height: 390px;
    background: linear-gradient(rgba(0, 0, 0, 0.40)), url(../img/serviceCta_bg.jpg) no-repeat center / cover;
}
.service_indus{
  padding: 80px 0;
}
.service_indus .service_indus_con{
  margin-top: 40px;
}
.service_indus .service_indus_con .row{
  margin-bottom: -30px;
}
.service_indus .service_indus_con .row>div{
  padding-bottom: 30px;
}
.service_indus .list_text h2{
  color: #000;
  text-align: center;
  font-family: "PingFang SC";
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.service_indus .service_indus_con .con_link{
  display: block;
  background: #FFF;
  padding: 54px 10px;
  text-align: center;
  height: 100%;
}
.service_indus .service_indus_con .link_img img{
  width: 44px;
}
.service_indus .service_indus_con .link_text{
  margin-top: 12px;
}
.service_indus .service_indus_con .text1 h3{
  color: #000;
  font-family: "PingFang SC";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.serviceShow_box{
  padding: 85px 0;
}
.serviceShow_box .box_text h2{
  color: #000;
  font-family: "PingFang SC";
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.serviceShow_box .box_cont{
  color: #000;
  font-family: "PingFang SC";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 36px */
  margin-top: 35px;
}
.serviceShow_box_one{
  margin-top: 90px;
}
.serviceShow_box_two{
  background: #FFF;
}
/* 服务模式 */
/* 联系我们 */
.contact_map{
  padding: 80px 0;
  background: #fff;
}
.contact_map .map_box{
  border: 1px solid #D9D9D9;
  display: flex;
}
.contact_map .map_box .box_left{
  padding: 50px;
  width: 50%;
}
.contact_map .map_box .box_right{
  width: 50%;
}
.contact_map .map_box .box_right img{
  width: 100%;
}
.contact_map .map_box .box_left h2{
  color:  #000;
  font-family: "Source Han Sans CN";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 46px; /* 143.75% */
}
.contact_map .map_box .box_left ul{
  margin-top: 40px;
}
.contact_map .map_box .box_left li{
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.contact_map .map_box .box_left li span{
  color: #000;
  font-family: "PingFang SC";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  padding-left: 8px;
}
.contact_form{
  padding: 80px 0;
}
.contact_form .box_tit h2{
  color: #000;
  font-family: "Source Han Sans CN";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 46px; /* 143.75% */
}
.contact_form .box_cent{
  margin-top: 30px;
}
.contact_form .box_cent .contact{
  display: flex;
  flex-wrap: wrap;
}
.contact_form .box_cent .contact .input_select{
  width: 47%;
}

.contact_form .box_cent .contact__field{
  color: rgba(0, 0, 0, 0.70);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "Source Han Sans CN";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  box-shadow: none;
  border: none;
  outline: none;
  background: #FFF;
  height: 52px;
  padding: 0 16px 0 16px;
  width: 100%;
  box-sizing: border-box;

   
}
.contact_form .box_cent .contact__field:focus-visible{
  border: none;
  box-shadow: none;
  outline: none;
}
.contact_form .box_cent .contact__field::placeholder{
  color: rgba(0, 0, 0, 0.70);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "Source Han Sans CN";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact_form .box_cent .form_noneborder{
  color: rgba(0, 0, 0, 0.70);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "Source Han Sans CN";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  box-shadow: none;
  border: none;
  outline: none;
  background: #FFF;
  height: 52px;
  padding: 0 16px 0 16px;
  width: 100%;
  box-sizing: border-box;

   /* 去掉默认箭头 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* 自定义箭头图片（可替换为 SVG 或字体图标） */
  background-image: url("../img/contact_from_icon_bot.svg");
  background-repeat: no-repeat;
  background-position: right 16px center; /* 调整箭头位置 */
  background-size: 12px;
}
.contact_form .box_cent .form_noneborder:focus-visible{
  border: none;
  box-shadow: none;
  outline: none;
}
.contact_form .box_cent .form_noneborder::placeholder{
  color: rgba(0, 0, 0, 0.70);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "Source Han Sans CN";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact_form .box_cent .input_select{
    margin: 6px 15px;
}
.contact_form .box_cent .input_btn.input_select{
    width: 100%;
    text-align: right;
    margin-top: 15px;
}
.contact_form .box_cent .input_btn .tijiao{
  background: #FF9E00;
  color: #FFF;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "PingFang SC";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 10px 50px;
    border: none;
    box-shadow: none;
    outline: none;
}
/* 联系我们 */
.industry_tit{
  padding: 80px 0;
}
.industry_tit .tit_box{
  display: flex;
  align-items: center;
}
.industry_tit .box_left{
  margin-right: 68px;
}
.industry_tit .box_left h2{
  color: #000;
  font-family: "PingFang SC";
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.industry_tit .box_left p{
  color: #000;
  font-family: "PingFang SC";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 36px */
  margin-top: 25px;
}
.industry_cust{
  background: url(../img/industry_cust_bg.jpg) no-repeat center;
  background-size: cover;
  padding: 80px 0;
}
.industry_cust .tit_box h2{
  color: #FFF;
  text-align: center;
  font-family: "PingFang SC";
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.industry_cust .tit_box p{
  color: #FFF;
  text-align: center;
  font-family: "PingFang SC";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 36px */
     width: 95%;
    margin: 40px auto 0;
}
.industry_text{
  padding: 60px 0 100px;
}
.industry_text .tit_box>h2{
  color: #000;
  font-family: "PingFang SC";
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.industry_text .box_cont{
  color: #000;
  font-family: "PingFang SC";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 36px */
  margin-top: 30px;
}
.industry_text .box_cont p:not(:first-child){
  margin-top: 20px;
}
.industry_process{
  padding: 80px 0;
  background: #fff;
}
.industry_process .process_tit h2{
  color: #000;
  font-family: "PingFang SC";
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.industry_process .process_list{
  margin-top: 40px;
}
.industry_process .process_list li{
  border-left: 4px solid #0036AA;
  background: #F0F1F5;
  padding: 30px;
  margin-bottom: 20px;
}
.industry_process .process_list h3{
  color: #0036AA;
  font-family: "PingFang SC";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.industry_process .process_list p{
  color: #000;
  font-family: "PingFang SC";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 36px */
  margin-top: 7px;
}