@charset "utf-8";
/* CSS Document */
:root {
  --bgs: #000000;
  --blue: #3071b7;
  --color: #3a3a3a;
  --colors: #345ec9;
  --colors2: #f6339a;
}
@font-face {
  src: url(../fonts/Montserrat-Light.woff2);
  font-family: "myfont";
}
@font-face {
  src: url(../fonts/Montserrat-Regular.woff2);
  font-family: "title";
}
@font-face {
  font-family: "iconfont";
  src: url(../icons/iconfont.eot);
  src: url(../icons/iconfont.eot?#iefix) format("embedded-opentype"),
    url(../icons/iconfont.woff) format("woff"),
    url(../icons/iconfont.ttf) format("truetype"),
    url(../icons/iconfont.svg#iconfont) format("svg");
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  font-size: 62.5%;
  list-style: none;
  font-family: "myfont", sans-serif;
}
input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  box-sizing: border-box;
}
input[type="checkbox"] {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 5px;
  border: 1px solid #a3a3a3;
  border-radius: 0%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
input[type="checkbox"]:checked {
  border-color: #1a1a1a;
  background: #1a1a1a;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
img {
  display: block;
}
.clear {
  clear: both;
}
a {
  text-decoration: none;
}
.w_all {
  width: 1200px;
  margin: auto;
}
.w_all2 {
  width: 1460px;
  margin: auto;
}
.w_all3 {
  width: 1300px;
  margin: auto;
}
p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 1rem 0;
  color: var(--color);
}
/*index*/
html,
body {
  width: 100%;
  position: relative;
}
header {
  width: 100%;
  position: fixed;
  left: 0%;
  top: 0px;
  z-index: 9999;
  box-sizing: border-box;
  background: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
header .contain {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo {
  height: 54px;
  position: relative;
  z-index: 99;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
header .logo img {
  display: block;
  height: 100%;
}
header nav dl {
  display: flex;
  align-items: center;
}
header nav dl dd {
  position: relative;
}
header nav dl dd span {
  display: block;
  font-size: 1.6rem;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
  color: var(--color);
  line-height: 65px;
  padding: 0 1.5rem;
}
header nav dl dd:hover span {
  color: var(--colors2);
}
header nav dl dd span i {
  margin-left: 0.6rem;
  font-family: "title";
}
header .others {
  display: flex;
  align-items: center;
}
.morec {
  border-radius: 6px;
  background: var(--colors);
  line-height: 36px;
  color: #fff !important;
  width: 99px;
  text-align: center;
  transition: all 0.3s linear;
  cursor: pointer;
  font-size: 1.4rem;
}
.morec:hover {
  background: var(--colors2);
}
.s_menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  background: #fff;
  border-radius: 0 0 6px 6px;
  width: max-content;
  color: var(--color);
  min-width: 100%;
  display: none;
  box-shadow: 0px 12px 8px -6px rgba(0, 0, 0, 0.1);
}
.s_menu .sr p {
  text-align: center;
  font-size: 1.3rem;
  padding: 0.6rem 1rem;
  color: var(--color);
  margin: 0;
  transition: all 0.4s ease;
}
.s_menu .sr p:hover {
  background: var(--colors);
  color: #fff;
}
.navBtn {
  z-index: 99999;
  cursor: pointer;
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  margin-left: 3rem;
  display: none;
}
.navBtn span {
  display: block;
  background: var(--colors);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  height: 2px;
  margin: 6px 0;
  width: 26px;
}
.nav_btn_active {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.nav_btn_active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav_btn_active span:nth-of-type(2) {
  opacity: 0;
}
.nav_btn_active span:nth-of-type(3) {
  margin-top: -62%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.banner {
  width: 100%;
  position: relative;
  background: var(--bgs);
  margin-top: 65px;
  height: calc(100vh - 65px);
  overflow: hidden;
}
.banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.txt_all {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
}
.txt_all h3 {
  color: #fff;
  font-size: 5.9rem;
  margin-bottom: 2.5rem;
  line-height: 1.2;
  font-family: "title";
}
.txt_all p {
  font-size: 2.2rem;
  color: #fff;
  line-height: 1.5;
  opacity: 0.9;
  width: 70%;
  margin: auto;
}
.mores {
  display: flex;
  justify-content: center;
  margin-top: 4vh;
  animation: myFadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
}
@keyframes myFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.more {
  margin-top: 3rem;
  color: #fff;
  background: var(--colors);
  line-height: 40px;
  padding: 0 3rem;
  margin: 0 1rem;
  cursor: pointer;
  position: relative;
  z-index: 9;
  overflow: hidden;
  border-radius: 50px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  box-sizing: border-box;
}
.more span {
  font-size: 1.6rem;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.more i {
  display: block;
  font-size: 1.7rem;
  transform: scaleX(0);
  margin-left: 5px;
  transform-origin: 0 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  position: absolute;
  left: 66%;
}

/* .more1 {
  transform: translateX(-10px);
} */
.more2 {
  background: none;
  border-color: #fff;
}
.more:hover {
  background: var(--colors2);
}
.more2:hover {
  background: var(--colors2);
  border-color: transparent;
}
.indexBars {
  position: relative;
  padding: 5% 0;
}
.title {
  color: var(--color);
}
.titleCenter {
  text-align: center;
}
.title h3 {
  font-size: 3.6rem;
  margin-bottom: 0rem;
  line-height: 1.6;
  font-family: "title";
}
.title p {
  line-height: 1.6;
  font-size: 2.2rem;
}
.index_bar1 {
  position: relative;
  height: 100vh;
  width: 99.99%;
  overflow: hidden;
}
.index_bar1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--bgs);
  opacity: 0.4;
  z-index: 1;
}
.index_bar1 .boxs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
.index_bar1 ul {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index_bar1 ul .title {
  color: #fff;
}
.index_bar1 ul .title p {
  font-size: 2.4rem;
  color: #fff;
}
.index_bar1 ul li .tt {
  width: 60%;
  margin-top: 5%;
}
.index_bar1 ul li .tt p {
  color: #fff;
}
.index_bar1 ul li .tt p strong {
  color: #fff;
  font-size: 2.4rem;
}
.moreb {
  margin-top: 2rem;
  color: #fff;
  line-height: 36px;
  width: max-content;
  cursor: pointer;
  display: flex;
  font-size: 1.6rem;
  align-items: center;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.moreb img {
  filter: invert(1) brightness(10000);
  margin-left: 0.6rem;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.moreb:hover {
  margin-left: 1rem;
  text-decoration: underline;
}
.index_bar2 {
  background: #f9fafb;
}
.index_bar2 .title p {
  width: 84%;
}
.index_bar2 .swiper-container {
  border-radius: 1rem;
  margin-top: 2%;
}
.index_bar2 .swiper-slide {
  height: 45vh;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
.index_bar2 .swiper-slide .txt {
  position: absolute;
  width: 96%;
  left: 50%;
  bottom: 0%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  padding: 1.5rem;
  box-sizing: border-box;
  border-radius: 1rem;
  opacity: 0;
  transition: all 0.4s linear 0.5s;
}
.index_bar2 .swiper-slide .txt h4 {
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.index_bar2 .swiper-slide .txt p {
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1.4rem;
  margin: 0;
}
.index_bar2 .swiper-slide-active .txt {
  opacity: 1;
  bottom: 3%;
}
.index_bar2 .box {
  text-align: center;
  padding-bottom: 0;
}
.index_bar2 .box .title h3 {
  font-size: 2.4rem;
}
.index_bar2 .box dl {
  margin: 3% auto;
  display: flex;
  justify-content: space-between;
}
.index_bar2 .box dl dd strong {
  font-size: 3.6rem;
  color: var(--color);
  font-family: "title";
}
.index_bar2 .box dl dd span {
  font-size: 3.6rem;
  color: var(--color);
  font-family: "title";
  margin-left: 0.5rem;
  font-weight: bold;
}
.index_bar2 .box dl dd p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.5rem 0 0;
  font-size: 1.4rem;
}
.index_bar2 .box dl dd p::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--colors);
  margin: -0.3rem 0.8rem 0 0;
}
.index_bar2 .box .morec {
  margin: auto;
}
.index_bar3 .title p {
  width: 72%;
}
.index_bar3 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 4%;
}
.index_bar3 ul li {
  width: 31.3%;
  position: relative;
  border-radius: 2rem;
  height: 50vh;
  perspective: 1000px;
  cursor: default;
}
.index_bar3 ul li .aa {
  height: 100%;
  text-align: center;
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0px 8px 10px #0000001a;
}
.index_bar3 ul li .aa::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}
.index_bar3 ul li img {
  width: 100%;
}
.index_bar3 ul li .tt1 {
  position: absolute;
  left: 0;
  top: 3rem;
  width: 100%;
  color: #fff;
  padding: 0 5%;
  box-sizing: border-box;
}
.index_bar3 ul li .tt2 {
  top: initial;
  bottom: 3rem;
}
.index_bar3 ul li h5 {
  font-weight: normal;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.index_bar3 ul li h6 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}
.index_bar3 ul li p {
  font-size: 1.4rem;
  margin: 0;
  color: #fff;
}
.index_bar3 ul li .bb {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;

  text-align: left;
  border-radius: 2rem;
  transform: rotateY(180deg);
  transition: transform 0.6s;
  transform-style: preserve-3d;
  visibility: hidden;
  position: absolute;
  left: -1%;
  top: 0;
  width: 101%;
  height: 100%;
}
.index_bar3 ul li.active .aa {
  transform: rotateY(180deg);
}
.index_bar3 ul li.active .bb {
  transform: rotateY(360deg);
  visibility: visible;
}
.index_bar3 ul li .bb h4 {
  color: var(--colors);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.index_bar3 ul li .bb p {
  color: var(--color);
  font-size: 1.3rem;
  line-height: 1.4;
}
.index_bar3 ul li .bb .tt2 p {
  color: var(--color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
  margin: 1rem 0 0;
}
.index_bar3 ul li .bb .tt2 p strong {
  font-size: 1.5rem;
}
.index_bar3 ul li .bb .tt2 p:first-of-type strong {
  color: var(--colors);
}

.index_bar4 .marquee {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.index_bar4 .marquee-track img {
  margin: 0 20px;
  display: inline-block;
  height: 5rem;
}

.index_bar5 .swiper-container {
  margin: 3% auto;
}
.index_bar5 .swiper-slide {
  background: var(--colors);
  display: flex;
  justify-content: space-between;
  padding: 3.5% 2% 2%;
  box-sizing: border-box;
  color: #eaeaea;
  height: initial;
  border-radius: 12px;
}
.index_bar5 .swiper-slide .ll {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}
.index_bar5 .swiper-slide .ll img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index_bar5 .swiper-slide .rr {
  width: calc(100% - 90px);
}
.index_bar5 h6 {
  font-family: "title";
  font-size: 1.5rem;
  font-weight: normal;
  display: block;
  margin-bottom: 0.5rem;
}
.index_bar5 h5 {
  font-size: 1.4rem;
  font-weight: normal;
}
.index_bar5 .stars {
  display: flex;
  align-items: center;
  margin: 1rem 0 1.5rem;
}
.index_bar5 .stars img {
  margin-right: 5px;
}
.index_bar5 .rr p {
  font-size: 1.5rem;
  color: #eaeaea;
  line-height: 1.5;
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  color: var(--color);
}
.btn .ll {
  margin: 0 1rem;
}
.btn .ll img {
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  filter: brightness(0);
}
.btn .ll:hover img {
  filter: inherit;
}
.btn .ls img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  display: block;
}
.index_bar6 {
  padding-top: 0;
}
.index_bar6 ul {
  display: flex;
  justify-content: space-between;
  margin-top: 3%;
}
.index_bar6 ul li {
  width: 31.5%;
  background: #f3f4f6;
  border: 1px solid #cecece;
  box-shadow: 0px 1px 3px 0px #0000001a;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}
.index_bar6 .ll {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 22.5rem;
  overflow: hidden;
}
.index_bar6 .rr {
  padding: 2rem 2rem 4rem;
  box-sizing: border-box;
}
.index_bar6 ul li img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s linear;
}
.index_bar6 ul li:hover img {
  transform: scale(1.06);
}
.index_bar6 ul li h6 {
  color: var(--color);
  font-size: 1.8rem;
  font-family: "title";
  line-height: 1.4;
  transition: all 0.4s linear;
}
.index_bar6 ul li:hover h6 {
  color: var(--colors2);
}
.index_bar6 ul li p {
  font-size: 1.3rem;
  line-height: 1.6;
}
.mored {
  display: flex;
  align-items: center;
  color: var(--colors);
  font-size: 1.4rem;
  margin: 3rem 0 0;
  transition: all 0.5s linear;
}
.mored img {
  width: auto !important;
  margin: 0.1rem 0 0 0.6rem;
}
.mored:hover {
  margin-left: 1rem;
  text-decoration: underline;
}
.message {
  background: #f9fafb;
}
.message .title {
  text-align: center;
  margin-bottom: 3%;
}
.message .title p {
  font-size: 1.8rem;
}
.message .contain {
  display: flex;
  justify-content: space-between;
  padding: 0 5% 0 0;
  box-sizing: border-box;
}
.message .contain .ll {
  width: 47%;
  position: sticky;
  top: 0;
}
.message .contain .ll img {
  width: 100%;
}
.message .contain .rr {
  width: 53%;
  background: #f5f5f5;
  padding: 3rem;
  box-sizing: border-box;
  border: 1px solid #cecece;
  box-shadow: 0px 10px 15px -3px #0000001a;
  border-radius: 12px;
}
.message .bars {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.message .bars p {
  margin: 1rem 0;
  width: 48.5%;
  font-size: 1.4rem;
}
.message .bars .pp2 {
  width: 100%;
}
.message .bars p .inps {
  box-shadow: none;
  border: none;
  width: 100%;
  box-sizing: border-box;
  display: block;
  background: #f9fafb;
  border: 1px solid #d1d5dc;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  color: var(--color);
  font-size: 1.4rem;
  margin-top: 5px;
}
.message .bars p option {
  color: var(--color);
  font-size: 1.4rem;
}
.message .bars textarea {
  min-height: 98px;
}
.message ::-webkit-input-placeholder {
  color: var(--color);
  opacity: 0.5;
}
.submit {
  display: flex;
  justify-content: center;
  margin: 2rem 0 0;
  position: relative;
  background: var(--colors);
  width: max-content;
  font-size: 1.4rem;
  border-radius: 8px;
  padding: 0.4rem 2.5rem;
}
.submit button {
  box-shadow: none;
  border: none;
  background: none;
  text-align: center;
  color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}
.submit input {
  box-shadow: none;
  border: none;
  background: none;
  text-align: center;
  color: #fff;
  width: 100%;
  height: 100%;
  cursor: pointer;
  font-size: 1.4rem;
}
.submit:hover {
  background: var(--colors2);
  margin: 2rem 0 0;
  text-decoration: none;
}
.submit p{
    display: flex;
    align-items: center;
    margin: 0;
}
.submit p span{
    width: auto;
    height: auto;
    display: block;
    opacity: 1; 
    font-size: 1.4rem;
    margin: 0;
    background: none;
}
.footer {
  padding: 3rem 0;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}
.footer .logo2 img {
  margin: auto;
  height: 10.3rem;
}
.footer .ll h6 {
  font-size: 1.8rem;
  color: #364153;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.footer .ll .tts {
  margin: 1rem 0;
}
.footer .ll p {
  font-size: 1.4rem;
  color: #4a5565;
  margin: 0;
}
.footer .ll p a {
  font-size: 1.4rem;
  color: #4a5565;
}
.footer .others {
  display: flex;
  margin: 3rem 0;
  justify-content: center;
}
.footer .others p {
  margin: 0 0.7rem;
  transition: all 0.4s linear;
}
.footer .others p:hover {
  opacity: 0.5;
}
.footer ul {
  display: flex;
  position: relative;
  justify-content: center;
  margin: 0rem 0 3rem;
}
.footer ul li {
  color: #4a5565;
  font-size: 1.4rem;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  cursor: pointer;
  margin: 0 2rem;
}
.footer ul li:hover {
  color: var(--colors2);
}
.footer .copyright {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .copyright p {
  font-size: 1.4rem;
  color: #4a5565;
  margin: 0;
}
.footer .copyright a {
  color: #4a5565;
  font-size: 1.4rem;
}
.footer .copyright a:hover {
  color: var(--colors);
}
.bans {
  height: 64vh;
}
.bans .imgs {
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.bans .imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bans2 .txt_all p {
  width: 65%;
}
.services1 .title {
  text-align: center;
}
.services1 ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 2%;
}
.services1 ul li {
  text-align: center;
}
.services1 .ll {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 25rem;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff01;
  box-shadow: 0px 2px 4px -2px #0000001a;
  box-shadow: 0px 4px 6px -1px #0000001a;
  position: relative;
}
.services1 .ll .bbs {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s linear;
  opacity: 0;
}
.services1 .ll:hover .bbs {
  opacity: 1;
}
.services1 .down {
  background: var(--colors);
  padding: 0.9rem 2rem 0.9rem 1rem;
  border-radius: 6px;
  text-align: center;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.4rem;
  transition: all 0.3s linear;
  cursor: pointer;
}
.services1 .down:hover {
  background: var(--colors2);
}
.services1 .down img {
  height: 2.1rem;
  margin: 0 0.8rem 0;
}
.services1 .rr {
  padding: 2rem 0 0;
  box-sizing: border-box;
}
.services1 ul li img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s linear;
}
.services1 ul li:hover img {
  transform: scale(1.06);
}
.services1 ul li h6 {
  color: #101828;
  font-size: 1.6rem;
  font-weight: normal;
  font-family: "title";
  line-height: 1.4;
  transition: all 0.4s linear;
}
.services1 ul li:hover h6 {
  color: var(--colors2);
}
.services2 {
  background: #f9fafb;
}
.services2 .title {
  text-align: center;
  margin-bottom: 3%;
}
.faq ul li {
  cursor: pointer;
  background: var(--color-white-solid, #ffffff);
  box-shadow: 0px 1px 2px -1px #0000001a;
  margin-top: 2rem;
  box-shadow: 0px 1px 3px 0px #0000001a;
  box-sizing: border-box;
  padding: 0 2rem;
  border-radius: 8px;
}
.faq ul li .txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}
.faq ul li .txt i {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--colors);
  transition: all 0.3s linear;
}
.faq ul li.active .txt i {
  transform: rotate(180deg);
}
.faq ul li:hover .txt h3 {
  color: var(--colors);
}
.faq ul li.active .txt h3 {
  color: var(--colors2);
}
.faq ul li h3 {
  font-size: 1.4rem;
  color: #101828;
  font-weight: normal;
  transition: all 0.3s linear;
}
.faq ul li .txt2 {
  padding: 1.5rem 0;
  display: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.faq ul li .txt2 p {
  font-size: 1.3rem;
  margin: 0.5rem 0;
  line-height: 1.6;
}
.faq .mores {
  justify-content: flex-start;
}
.faq .more {
  margin: -2rem 0 0;
}
.services_1 {
  background: #f9fafb;
}
.services_1 ul {
  display: flex;
  justify-content: space-between;
  margin-top: 2%;
}
.services_1 ul li {
  text-align: center;
  width: 48%;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0px 1px 2px -1px #0000001a;
  box-shadow: 0px 1px 3px 0px #0000001a;
  border-radius: 14px;
  padding: 3% 4%;
  box-sizing: border-box;
}
.services_1 ul li .imgs {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--colors);
  position: relative;
  margin: auto;
  width: 64px;
  height: 64px;
}
.services_1 ul li:nth-of-type(2n) .imgs {
  background: var(--colors2);
}
.services_1 ul li h6 {
  color: #0a0a0a;
  font-size: 2rem;
  margin: 2.5rem 0;
  line-height: 1.4;
  transition: all 0.4s linear;
}
.services_1 ul li:hover h6 {
  color: var(--colors2);
}
.services_1 ul li p {
  font-size: 1.8rem;
  color: #4a5565;
  margin: 0;
  line-height: 1.6;
}
.services_1b ul {
  display: flex;
  justify-content: space-between;
  margin-top: 3%;
}
.services_1b ul li {
  text-align: center;
  width: 14.5%;
}
.services_1b ul li .imgs {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--colors);
  position: relative;
  margin: auto;
  width: 64px;
  height: 64px;
}
.services_1b ul li .txt {
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0px 1px 2px -1px #0000001a;
  box-shadow: 0px 1px 3px 0px #0000001a;
  border-radius: 14px;
  padding: 2rem 1.1rem;
  margin-top: 1.5rem;
  box-sizing: border-box;
  position: relative;
}
.services_1b ul li .txt::after {
  content: "";
  position: absolute;
  right: -5rem;
  top: 2.4rem;
  height: 2px;
  background: #0000001a;
  width: 5rem;
}
.services_1b ul li:last-of-type .txt::after {
  display: none;
}
.services_1b ul li h5 {
  color: #fff;
  font-size: 1.4rem;
  background: var(--colors);
  border-radius: 6rem;
  padding: 0.2rem 1.2rem;
  width: max-content;
  margin: auto;
}
.services_1b ul li h6 {
  color: #0a0a0a;
  font-size: 1.4rem;
  margin: 1.2rem 0 1rem;
  line-height: 1.4;
  transition: all 0.4s linear;
}
.services_1b ul li p {
  font-size: 1.2rem;
  color: #4a5565;
  margin: 0;
  line-height: 1.5;
}
.services_1b ul li:nth-of-type(2n) .imgs {
  background: var(--colors2);
}
.services_1b ul li:nth-of-type(2n) h5 {
  background: var(--colors2);
}
.services_1c {
  padding-top: 0;
}
.services_1c ul {
  display: flex;
  justify-content: space-between;
  margin-top: 2%;
}
.services_1c ul li {
  width: 23.3%;
}
.services_1c ul li .imgs {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services_1c ul li .imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services_1c ul li .txt {
  background: var(--colors);
  border-radius: 10px;
  padding: 2.2rem 2rem;
  margin-top: 8%;
  box-sizing: border-box;
  position: relative;
}
.services_1c ul li h6 {
  color: #fff;
  font-size: 2rem;
  font-weight: normal;
  font-family: "title";
  line-height: 1.4;
  transition: all 0.4s linear;
}
.services_1c ul li p {
  font-size: 1.4rem;
  color: #fff;
  opacity: 0.8;
  line-height: 1.5;
}
.services_1c ul li:nth-of-type(2n) .txt {
  background: var(--colors2);
}
.services_1d .contain {
  padding: 0;
}
.services_1d .contain .rr {
  width: 100%;
}
.services_1d .submit {
  margin: 2rem auto 0;
}

.services_2 {
  background: #f9fafb;
}
.services_2 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0.5%;
}
.services_2 ul li {
  width: 49%;
  margin-top: 2%;
  border-radius: 10px;
  overflow: hidden;
  background: var(--colors);
}
.services_2 ul li .imgs {
  position: relative;
  width: 100%;
  height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services_2 ul li .imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services_2 ul li .txt {
  padding: 2.2rem 2rem;
  box-sizing: border-box;
  position: relative;
}
.services_2 ul li h6 {
  color: #fff;
  font-size: 2rem;
  font-weight: normal;
  font-family: "title";
  line-height: 1.4;
  transition: all 0.4s linear;
}
.services_2 ul li p {
  font-size: 1.4rem;
  color: #fff;
  opacity: 0.8;
  line-height: 1.5;
}
.services_2 ul li:nth-of-type(2n) {
  background: var(--colors2);
}
.services_2c .title p {
  padding: 0 18%;
  box-sizing: border-box;
}
.services_2c .imgs img {
  width: 55%;
  margin: auto;
}
.services_2b {
  padding-top: 0;
}
.services_2b ul {
  display: flex;
  justify-content: space-between;
  margin-top: 3%;
}
.services_2b ul li {
  text-align: center;
  width: 15.2%;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0px 1px 2px -1px #0000001a;
  box-shadow: 0px 1px 3px 0px #0000001a;
  border-radius: 14px;
  padding: 2rem 1.1rem;
  position: relative;
  box-sizing: border-box;
}
.services_2b ul li .imgs {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--colors);
  position: relative;
  margin: auto;
  width: 64px;
  height: 64px;
  padding: 18px;
  box-sizing: border-box;
}
.services_2b ul li .imgs img {
  max-width: 100%;
}
.services_2b ul li::after {
  content: "";
  position: absolute;
  right: -28%;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/jt2.png) no-repeat center/contain;
  width: 2.5rem;
  height: 2.5rem;
}
.services_2b ul li:last-of-type::after {
  display: none;
}
.services_2b ul li h6 {
  color: #0a0a0a;
  font-size: 1.8rem;
  line-height: 1.3;
  transition: all 0.4s linear;
  display: flex;
  flex-direction: column;
}
.services_2b ul li h6::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--colors);
  margin: 2rem auto 1.5rem;
}
.services_2b ul li:nth-of-type(2n) .imgs {
  background: var(--colors2);
}
.services_2b ul li:nth-of-type(2n) h6::before {
  background: var(--colors2);
}
.services_3c .imgs p {
  padding: 0 28%;
  box-sizing: border-box;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
}
.services_3c .imgs img {
  margin: 3rem auto;
  max-width: 100%;
}
.services_3b ul li {
  width: 31%;
  padding: 3% 4%;
}
.services_3b ul li::after {
  display: none;
}
.services_4 {
  background: #f9fafb;
}
.services_4 ul li {
  display: flex;
  justify-content: space-between;
  margin-top: 3%;
  background: var(--colors);
  align-items: center;
  border-radius: 0 10px 10px 0;
}
.services_4 ul li .imgs {
  width: 49%;
  overflow: hidden;
}
.services_4 ul li .imgs img {
  width: 100%;
}
.services_4 ul li .txt {
  width: 51%;
  padding: 5% 6%;
  box-sizing: border-box;
}
.services_4 ul li .txt p {
  color: #fff;
  font-size: 2rem;
}
.services_4c ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.services_4c ul li {
  width: 23%;
  border-radius: 16px;
  margin-top: 2%;
  padding: 7% 3%;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0px 1px 2px -1px #0000001a;
  box-shadow: 0px 1px 3px 0px #0000001a;
}
.services_4c ul li .imgs {
  width: 47px;
  height: 47px;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  background: var(--colors);
  position: relative;
}
.services_4c ul li .imgs::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  padding: 1.6rem;
  z-index: -1;
  background: #dbeafe;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.services_4c ul li .imgs img {
  width: 100%;
}
.services_4c ul li .txt h6 {
  font-size: 1.8rem;
  margin-top: 3rem;
  line-height: 1.4;
}
.services_4b ul li {
  width: 23%;
  padding: 4% 4% 5%;
}
.services_4b ul li::after {
  display: none;
}
.services_4b ul li .imgs {
  padding: 1.3rem;
}
.solution ul li {
  background: #f9fafb;
}
.solution ul li .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.solution ul li .rr {
  width: 46%;
  overflow: hidden;
  box-shadow: 0px 4px 6px -4px #0000001a;
  border-radius: 10px;
  height: 45rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-shadow: 0px 10px 15px -3px #0000001a;
}
.solution ul li .ll {
  width: 45%;
  box-sizing: border-box;
}
.solution ul li .ll h6 {
  font-size: 3.4rem;
  margin-bottom: 2rem;
  color: #3a3a3a;
  font-family: "title";
}
.solution ul li .ll p {
  font-size: 2rem;
  color: #000000;
  line-height: 1.6;
}
.solution ul li:nth-of-type(2n) {
  background: #fff;
}
.solution ul li:nth-of-type(2n) .box {
  flex-direction: row-reverse;
}
.solution_1 {
  background: #f9fafb;
}
.solution_1 ul li {
  display: flex;
  justify-content: space-between;
  margin-top: 3%;
  align-items: center;
}
.solution_1 ul li .imgs {
  width: 46%;
  height: 45rem;
  overflow: hidden;
  box-shadow: 0px 4px 6px -4px #0000001a;
  border-radius: 10px;
  box-shadow: 0px 10px 15px -3px #0000001a;
}
.solution_1 ul li .imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution_1 ul li .txt {
  width: 52%;
  padding: 5% 6%;
  box-sizing: border-box;
}
.solution_1 ul li .txt p {
  color: #000000;
  font-size: 2.2rem;
  position: relative;
  line-height: 1.4;
  margin: 2.2rem 0;
  padding-left: 3rem;
  font-weight: bold;
}
.solution_1 ul li .txt p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  background: var(--colors);
  border-radius: 50%;
}
.solution_1b ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 1%;
}
.solution_1b ul li {
  width: 49%;
  border-radius: 10px;
  margin-top: 2%;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
  box-shadow: 0px 4px 6px -4px #0000001a;
  box-shadow: 0px 10px 15px -3px #0000001a;
  background: var(--colors);
}
.solution_1b ul li .imgs {
  width: 100%;
  height: 30rem;
  overflow: hidden;
}
.solution_1b ul li .imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution_1b ul li .txt h6 {
  font-size: 2.2rem;
  padding: 2rem;
  box-sizing: border-box;
  line-height: 1.4;
  color: #fff;
}
.solution_1b ul li:nth-of-type(2),
.solution_1b ul li:nth-of-type(3) {
  background: #fff;
}
.solution_1b ul li:nth-of-type(2) h6,
.solution_1b ul li:nth-of-type(3) h6 {
  color: #0a0a0a;
}
.solution_2 {
  background: #f9fafb;
}
.solution_2 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 4%;
}
.solution_2 ul li .imgs {
  width: 130px;
  height: 130px;
  margin: auto;
  border-radius: 16px;
  background: var(--colors);
  padding: 2rem;
  box-sizing: border-box;
}
.solution_2 ul li .imgs img {
  width: 100%;
}
.solution_2 ul li .txt h6 {
  font-size: 2rem;
  padding: 3rem 0 0;
  box-sizing: border-box;
  line-height: 1.4;
  color: #0a0a0a;
}
.solution_2b ul {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  margin: 1% auto 0;
}
.solution_2b ul li {
  width: 20%;
  margin-top: 2%;
  margin-right: 10%;
  text-align: center;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0px 1px 2px -1px #0000001a;
  box-shadow: 0px 1px 3px 0px #0000001a;
  border-radius: 14px;
  padding: 2% 2% 3%;
  position: relative;
  box-sizing: border-box;
}
.solution_2b ul li:nth-of-type(3),
.solution_2b ul li:nth-of-type(5) {
  margin-right: 0;
}
.solution_2b ul li .imgs {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--colors);
  position: relative;
  margin: auto;
  width: 106px;
  height: 106px;
  padding: 18px;
  box-sizing: border-box;
}
.solution_2b ul li .imgs img {
  max-width: 100%;
}
.solution_2b ul li::after {
  content: "";
  position: absolute;
  right: -40%;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  background: url(../images/jt3.png) no-repeat center/contain;
  width: 7rem;
  height: 4rem;
  z-index: -1;
}
.solution_2b ul li h6 {
  color: #0a0a0a;
  font-size: 1.8rem;
  line-height: 1.3;
  transition: all 0.4s linear;
  display: flex;
  flex-direction: column;
}
.solution_2b ul li h6::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--colors);
  margin: 2rem auto 1.5rem;
}
.solution_2b ul li:nth-of-type(2) .imgs,
.solution_2b ul li:nth-of-type(5) .imgs {
  background: var(--colors2);
}
.solution_2b ul li:nth-of-type(2) h6::before,
.solution_2b ul li:nth-of-type(5) h6::before {
  background: var(--colors2);
}
.solution_2b ul li:nth-of-type(4)::after {
  transform: translateY(-50%) rotate(0deg);
}
.solution_2b ul li:nth-of-type(5)::before {
  content: "";
  position: absolute;
  right: -28%;
  top: -10%;
  width: 2px;
  height: 60%;
  background: var(--color);
  z-index: -1;
}
.solution_2b ul li:nth-of-type(5)::after {
  transform: translateY(-50%) rotate(0deg);
  right: -28%;
  width: 6rem;
}
.solution_2b ul li:nth-of-type(3)::after {
  display: none;
}
.solution_3b {
  background: #f9fafb;
}
.solution_3b ul li:nth-of-type(2),
.solution_3b ul li:nth-of-type(3) {
  background: var(--colors);
}
.solution_3b ul li:nth-of-type(2) h6,
.solution_3b ul li:nth-of-type(3) h6 {
  color: #fff;
}
.solution_3b ul li:nth-of-type(1),
.solution_3b ul li:nth-of-type(4) {
  background: #fff;
}
.solution_3b ul li:nth-of-type(1) h6,
.solution_3b ul li:nth-of-type(4) h6 {
  color: #0a0a0a;
}
.solution_3c ul {
  display: flex;
  justify-content: space-between;
  margin-top: 3%;
}
.solution_3c ul li {
  text-align: center;
  width: 28%;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0px 1px 2px -1px #0000001a;
  box-shadow: 0px 1px 3px 0px #0000001a;
  border-radius: 14px;
  padding: 2% 2% 3%;
  position: relative;
  box-sizing: border-box;
}
.solution_3c ul li .imgs {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--colors);
  position: relative;
  margin: auto;
  width: 80px;
  height: 80px;
  padding: 1.5rem;
  box-sizing: border-box;
}
.solution_3c ul li .imgs img {
  max-width: 100%;
}
.solution_3c ul li h6 {
  color: #0a0a0a;
  font-size: 1.8rem;
  line-height: 1.3;
  transition: all 0.4s linear;
  display: flex;
  flex-direction: column;
}
.solution_3c ul li h6::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--colors);
  margin: 2rem auto 1.5rem;
}
.solution_3c ul li:nth-of-type(2n) .imgs {
  background: var(--colors2);
}
.solution_3c ul li:nth-of-type(2n) h6::before {
  background: var(--colors2);
}
.solution_4 ul li {
  background: #fff;
  box-sizing: border-box;
}
.solution_4 ul li .bb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.solution_4 ul li:nth-of-type(2n + 1) {
  background: #f9fafb;
}
.solution_4 ul li:nth-of-type(2n + 1) .bb {
  flex-direction: row-reverse;
}
.solution_4 ul li .imgs {
  width: 38%;
  height: 45rem;
  overflow: hidden;
  box-shadow: 0px 4px 6px -4px #0000001a;
  border-radius: 10px;
  box-shadow: 0px 10px 15px -3px #0000001a;
}
.solution_4 ul li .imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution_4 ul li .txt {
  width: 55%;
  padding: 5% 0;
  box-sizing: border-box;
}
.solution_4 ul li .txt h6 {
  color: #3a3a3a;
  font-size: 3.4rem;
  font-family: "title";
  margin-bottom: 3rem;
}
.solution_4 ul li .txt p {
  color: #000000;
  font-size: 2.2rem;
  position: relative;
  line-height: 1.4;
  margin: 2rem 0;
  padding-left: 3rem;
  font-weight: bold;
}
.solution_4 ul li .txt p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  background: var(--colors);
  border-radius: 50%;
}
.contact ul {
  display: flex;
  justify-content: space-between;
}
.contact ul li {
  width: 46.5%;
  background: #fff;
  box-shadow: 0px 4px 6px -4px #0000001a;
  box-shadow: 0px 10px 15px -3px #0000001a;
  padding: 3% 3% 4.5%;
  box-sizing: border-box;
}
.contact ul li h3 {
  font-size: 2.4rem;
  color: var(--colors);
  margin-bottom: 5%;
  font-family: "title";
}
.contact ul li .bb {
  display: flex;
  align-items: center;
}
.contact ul li .bb b {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0.8rem;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--colors);
  margin-right: 2rem;
}
.contact ul li .bb:nth-of-type(2n) b {
  background: var(--colors2);
}
.contact ul li .bb b img {
  max-width: 100%;
}
.contact ul li .bb p {
  font-size: 1.6rem;
  line-height: 24px;
  color: #101828;
  font-weight: 600;
  width: calc(100% - 50px);
}
.contact ul li .bb p span {
  font-size: 1.5rem;
  display: block;
  color: #101828;
}
.contact ul li .bb p i {
  font-size: 1.4rem;
  display: block;
  color: #4a5565;
  font-weight: normal;
  font-style: normal;
}
.contact ul li .cc {
  margin: 6.5rem 0 0;
}
.contact ul li .cc h5 {
  font-size: 1.8rem;
  line-height: 28px;
  color: #101828;
  font-weight: 600;
}
.contact ul li .cc p {
  font-size: 1.6rem;
  line-height: 24px;
  color: #364153;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact ul li .cc p span {
  color: #364153;
  font-size: 1.6rem;
  font-weight: normal;
}
.about1 ul li .ll p {
  color: #4a5565;
  display: flex;
  align-items: center;
  margin: 0.4px 0;
}
.about1 ul li .ll p img {
  margin-right: 8px;
}
.about1 ul li {
  background: #fff;
}
.about1 ul li:nth-of-type(2n) {
  background: #f9fafb;
}
.about2 .title h3 {
  margin-bottom: 3%;
}
.about2 .title p {
  font-size: 2rem;
}
.about2 ul {
  display: flex;
  justify-content: space-between;
  margin-top: 2%;
}
.about2 ul li {
  text-align: center;
  width: 31.3%;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0px 1px 2px -1px #0000001a;
  box-shadow: 0px 1px 3px 0px #0000001a;
  border-radius: 14px;
  padding: 4% 2%;
  box-sizing: border-box;
}
.about2 ul li .imgs {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6rem;
}
.about2 ul li .imgs img {
  height: auto;
  width: auto;
  object-fit: cover;
}
.about2 ul li h6 {
  color: #101828;
  font-size: 1.8rem;
  margin: 1rem 0;
  line-height: 1.4;
  transition: all 0.4s linear;
}
.about2 ul li:hover h6 {
  color: var(--colors2);
}
.about2 ul li p {
  font-size: 1.6rem;
  color: #4a5565;
  margin: 0;
  line-height: 1.4;
}
.about3 ul li {
  background: #f9fafb !important;
}
.about3 ul li .ll p {
  color: #4a5565;
}
.about4 .title p {
  font-size: 2rem;
}
.about4 ul {
  display: flex;
  justify-content: center;
  margin-top: 2%;
}
.about4 ul li {
  margin: 0 2.5rem;
  background: var(--colors);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  width: 50px;
  height: 40px;
  transition: all 0.4s linear;
}
.about4 ul li img {
  height: 1.6rem;
  filter: invert(1) brightness(10000);
}
.about4 ul li:hover {
  background: var(--colors2);
}
.about5 {
  padding-bottom: 0;
}
.about5 .bg {
  width: 100%;
  height: 60rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about5 h3 {
  color: #fff;
  font-size: 6rem;
}
.about6 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3%;
}
.about6 ul li {
  display: flex;
  padding: 2.5% 0;
  width: 43rem;
  border-top: 2px solid #c5cedd;
  margin: 0% 2%;
}
.about6 ul li b {
  width: 10rem;
  margin: 0.6rem 1rem 0 0;
}
.about6 ul li b img {
  max-width: 100%;
}
.about6 ul li h6 {
  font-size: 6rem;
  color: #528fc3;
  font-family: "title";
}
.about6 ul li h6 strong {
  font-size: 6rem;
  font-family: "title";
}
.about6 ul li p {
  color: #4a5565;
  font-size: 1.8rem;
  margin: 0;
  line-height: 1.4;
}
.about7 {
  padding-top: 0;
}
.about7 .bg {
  position: relative;
  width: 68%;
  margin: -3rem auto;
}
.about7 .bg .bg0 {
  width: 100%;
  z-index: 6;
  position: relative;
}
.about7 .bg .b2 {
  position: absolute;
  left: 50%;
  top: 59%;
  transform: translate(-50%, -50%);
}
.about7 .bg .b2 .aa {
  height: 4rem;
  margin: 0 auto 1rem;
}
.about7 .bg .b2 .bb {
  width: 100%;
  margin: auto;
}
/* 色块里的图标 */
.about7 .bg .b3 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 9;
}
.about7 .bg .b3 .imgs {
  display: flex;
  justify-content: space-between;
  height: 50%;
  width: 100%;
  align-items: flex-start;
}
.about7 .bg .b3 .imgs b {
  display: flex;
  justify-content: center;
  width: 25%;
  margin-top: 32%;
}
.about7 .bg .b3 .imgs b:nth-of-type(2) {
  margin-top: 9%;
  transform: translateX(-10%);
}
.about7 .bg .b3 .imgs b:nth-of-type(3) {
  margin-top: 10%;
  transform: translateX(10%);
}
.about7 .bg .b3 .imgs2 {
  align-items: flex-end;
}
.about7 .bg .b3 .imgs2 b {
  margin: 0;
  margin-bottom: 32%;
  transform: none;
}
.about7 .bg .b3 .imgs2 b:nth-of-type(2) {
  margin-bottom: 10%;
  transform: translateX(-12%);
}
.about7 .bg .b3 .imgs2 b:nth-of-type(3) {
  margin-bottom: 10%;
  transform: translateX(15%);
}
/* 文案定位 */
.about7 ul {
  display: flex;
  justify-content: space-between;
  transform: translateY(10%);
}
.about7 .ul2 {
  transform: translateY(0%);
}
.about7 ul li {
  width: 22%;
  text-align: center;
}
.about7 ul li h6 {
  color: #735fa1;
  font-size: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "title";
  line-height: 1.2;
  margin: 1rem 0;
}
.about7 ul li p {
  line-height: 1.4;
  opacity: 0.6;
}
.about7 ul li h6 span {
  width: 3rem;
  height: 3px;
  background: #735fa1;
  margin-top: 1rem;
}
.about7 ul li .lines img {
  margin: auto;
}
.about7 ul li b img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 9;
  display: none;
}
.about7 ul li:nth-of-type(1),
.about7 ul li:nth-of-type(4) {
  transform: translateY(50%);
}
.about7 ul li:nth-of-type(1) .lines img {
  transform: translateX(45%);
}
.about7 ul li:nth-of-type(4) .lines img {
  transform: translateX(-45%);
}
.about7 .ul2 li:nth-of-type(1),
.about7 .ul2 li:nth-of-type(4) {
  transform: translateY(-50%);
}
.about7 .ul2 li:nth-of-type(1) .lines img {
  transform: translateX(45%) rotate(180deg);
}
.about7 .ul2 li:nth-of-type(4) .lines img {
  transform: translateX(-45%) rotate(180deg);
}
.p_nav ul {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
}
.p_nav ul li {
  margin: 0 0.5rem;
  line-height: 45px;
  font-size: 1.4rem;
  color: #155dfc;
}
.p_nav ul li i {
  font-size: 1.2rem;
}
.pro .contain {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #f9fafb;
}
.pro .contain .left {
  width: 32rem;
  background: #fff;
  border-right: 1px solid #e5e5e5;
  padding: 0.5% 1% 3%;
  box-sizing: border-box;
}
.pro .contain .left dl dt {
  color: #101828;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 1.8rem 0 0;
  cursor: pointer;
}
.pro .contain .left dl dd {
  color: #4a5565;
  font-size: 1.4rem;
  margin: 1.5rem 0;
  display: none;
  transition: all 0.4s linear;
}
.pro .contain .left dl dd:hover {
  transform: translateX(5px);
  text-decoration: underline;
}
.pro .contain .right {
  width: calc(100% - 38rem);
}
.pro .contain ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 1%;
}
.pro ul li {
  text-align: center;
}
.pro ul li b {
  display: block;
  width: 100%;
  overflow: hidden;
  box-shadow: 0px 2px 4px -2px #0000001a;
  box-shadow: 0px 4px 6px -1px #0000001a;
}
.pro ul li b img {
  display: block;
  width: 100%;
  transition: all 0.6s linear;
}
.pro ul li:hover b img {
  transform: scale(1.06);
}
.pro ul li h6 {
  font-weight: normal;
  color: #101828;
  font-size: 1.6rem;
  font-family: "title";
  margin: 2rem 0 0;
  text-decoration: underline;
  transition: all 0.3s linear;
}
.pro ul li:hover h6 {
  color: var(--colors2);
  text-decoration: none;
}
.pro_d {
  background: #f9fafb;
}
.ban_pd {
  height: 0;
  border-bottom: 1px solid #cecece;
  box-shadow: 0px 1px 2px -1px #0000001a;
  box-shadow: 0px 1px 3px 0px #0000001a;
}
.pro_d .bar1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.pro_d .left {
  width: 61%;
  background: #fff;
  padding: 2rem;
  box-sizing: border-box;
}
.pro_d .left h1 {
  font-size: 3.4rem;
  color: #101828;
  font-family: "title";
  padding: 1rem 0 2.5rem;
}
.pro_d .left .lbox {
  display: flex;
  justify-content: space-between;
}
.pro_d .swiper-container {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.pro_d .gallery-thumbs {
  width: 6.4rem;
  overflow: inherit !important;
}
.pro_d .gallery-thumbs .swiper-slide {
  height: auto !important;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
  border: 1px solid #f3f4f6;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
}
.pro_d .gallery-thumbs .swiper-slide-thumb-active {
  border-color: var(--colors2);
}
.pro_d .swiper-wrapper {
  height: auto !important;
}
.pro_d .gallery-top {
  width: calc(100% - 8rem);
  position: relative;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  border-radius: 10px;
  margin: 0;
}
.pro_d .gallery-top .swiper-slide {
  height: auto !important;
}
.pro_d .left img {
  width: 100%;
}
.pro_d .swiper-button-next,
.pro_d .swiper-button-prev {
  width: 38px;
  height: 38px;
  box-shadow: 0px 1px 2px 0px #0000000d;
  border: 1px solid #e5e5e5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #fff;
  margin: 0;
}
.pro_d .swiper-button-next {
  right: 1.5rem;
}
.pro_d .swiper-button-prev {
  left: 1.5rem;
}
.pro_d .swiper-button-next::after,
.pro_d .swiper-button-prev::after {
  font-size: 1rem;
  color: #0a0a0a;
  font-weight: bold;
}
.pro_d .gallery-top .icons {
  position: absolute;
  right: 1.5rem;
  top: 0.8rem;
  z-index: 6;
}
.pro_d .gallery-top .icons b {
  width: 3.8rem;
  height: 3.8rem;
  display: flex;
  justify-content: center;
  border: 1px solid #e5e5e5;
  align-items: center;
  box-shadow: 0px 1px 2px 0px #0000000d;
  border-radius: 8px;
  margin: 0.8rem 0;
  background: #fff;
}
.pro_d .gallery-top .icons b img {
  height: 1.6rem;
  width: auto;
  object-fit: cover;
}
.pro_d .right {
  width: 37%;
  background: #fff;
  border-radius: 8px;
  padding: 3rem;
  box-sizing: border-box;
  margin-bottom: 5%;
}
.pro_d .right table {
  width: 100%;
  border-collapse: collapse;
}
.pro_d .right table td {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  padding: 10px 8px;
  box-sizing: border-box;
  color: #000000;
}
.pro_d .right table td:first-of-type {
  background: #f9fafb;
}
.pro_d .barss {
  padding-top: 0;
}
.pro_d .barss .barWidth {
  width: 61%;
}
.pro_d .bbs {
  border-radius: 10px 10px 0 0;
  padding: 2rem;
  box-sizing: border-box;
}
.pro_d .bar2 ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 4rem;
}
.pro_d .bar2 ul li {
  text-align: center;
}
.pro_d .bar2 ul li .imgs {
  display: block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 2px 4px -2px #0000001a;
  box-shadow: 0px 4px 6px -1px #0000001a;
}
.pro_d .bar2 ul li .imgs img {
  display: block;
  width: 100%;
  transition: all 0.6s linear;
}
.pro_d .bar2 ul li:hover .imgs img {
  transform: scale(1.06);
}
.pro_d .bar2 ul li h6 {
  font-weight: normal;
  color: #101828;
  font-size: 1.6rem;
  font-family: "title";
  margin: 1rem 0 0;
  transition: all 0.3s linear;
}
.pro_d .bar2 ul li:hover h6 {
  color: var(--colors2);
}
.pro_d .bar3 {
  background: #fff;
}
.pro_d .barss h3 {
  font-size: 2rem;
  color: #0a0a0a;
  padding: 0 0 2rem 0;
}
.pro_d .bar3 .tbox {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.pro_d .bar3 table {
  width: 100%;
  border-collapse: collapse;
}
.pro_d .bar3 table td {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  padding: 10px 8px;
  box-sizing: border-box;
  color: #101828;
  border: 1px solid #e5e7eb;
}
.pro_d .bar3 table tr:nth-of-type(2n) td {
  background: #f9fafb;
}
.pro_d .bar3 table tr td:first-of-type {
  border-left: none;
}
.pro_d .bar3 table tr td:last-of-type {
  border-right: none;
}
.pro_d .bar3 table tr:first-of-type td {
  border-top: none;
}
.pro_d .bar3 table tr:last-of-type td {
  border-bottom: none;
}
.pro_d .bar4 {
  background: #eff6ff;
}
.pro_d .bar4 .tt1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.pro_d .bar4 .tl {
  width: 11rem;
  height: 11rem;
}
.pro_d .bar4 .tl img {
  width: 100%;
}
.pro_d .bar4 .tm {
  width: 54%;
}
.pro_d .bar4 .tm h6 {
  color: #345ec9;
  font-size: 1.8rem;
  text-decoration: underline;
  font-family: "title";
  margin-bottom: 1rem;
}
.pro_d .bar4 .tm p {
  color: #4a5565;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  margin: 0.2rem 0;
}
.pro_d .bar4 .tm p span {
  border: 1px solid #b9f8cf;
  background: #dcfce7;
  color: #016630;
  font-size: 1.2rem;
  margin-right: 0.5rem;
  padding: 0 0.8rem;
  line-height: 22px;
  border-radius: 5rem;
}
.pro_d .bar4 .tr {
  border: 1px solid #bedbff;
  background: #dbeafe;
  font-size: 1.4rem;
  color: #193cb8;
  height: 100%;
  font-weight: 600;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  width: max-content;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5rem;
}
.pro_d .bar4 .tt2 {
  padding: 2rem;
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
}
.pro_d .bar4 .tt2 h3 {
  font-size: 1.6rem;
  color: #0a0a0a;
}
.pro_d .bar4 .tt2 dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pro_d .bar4 .tt2 dl dd {
  text-align: center;
  margin-bottom: 3rem;
}
.pro_d .bar4 .tt2 dl dd p {
  font-size: 1.4rem;
  color: #4a5565;
  margin: 0 0 0.5rem;
}
.pro_d .bar4 .tt2 dl dd strong {
  font-size: 2.4rem;
  display: block;
  font-family: "title";
  color: #0a0a0a;
}
.pro_d .bar4 .tt2 dl dd:nth-of-type(3) {
  padding-right: 15%;
}
.pro_d .bar4 .tt2 dl .dd2 {
  width: 50%;
  text-align: left;
}
.pro_d .bar4 .tt2 dl .dd2 strong {
  font-size: 1.6rem;
}
.pro_d .bar4 .tt2 .t3 h3 {
  display: flex;
  align-items: center;
  padding: 1rem 0 1.2rem;
}
.pro_d .bar4 .tt2 .t3 h3 a {
  text-decoration: underline;
  color: #155dfc;
  font-size: 1.4rem;
  margin-left: 4rem;
  font-weight: normal;
}
.pro_d .bar4 .tt2 .t4 {
  display: flex;
  flex-wrap: wrap;
}
.pro_d .bar4 .tt2 .t4 p {
  font-size: 1.4rem;
  position: relative;
  padding-left: 1.2rem;
  margin: 0 6rem 3rem 0;
}
.pro_d .bar4 .tt2 .t4 p:nth-of-type(3n) {
  margin-right: 0;
}
.pro_d .bar4 .tt2 .t4 p::before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  top: 10px;
  left: 0;
  background-color: #4a5565;
  border-radius: 50%;
}
.pro_d .bar4 .tt3 {
  margin: 3rem 0 1rem;
  display: flex;
  justify-content: center;
  background: #345ec9;
  border-radius: 5rem;
  box-shadow: 0px 1px 2px 0px #0000000d;
}
.pro_d .bar4 .tt3 p {
  width: 50%;
  margin: 0;
  text-align: center;
  line-height: 36px;
  color: #fff;
  font-family: "title";
}
.pro_d .bar4 .tt3 p:last-of-type {
  background: #fff;
  border-radius: 5rem;
  color: #364153;
  border: 1px solid #d1d5dc;
}
.pro_d .bar5 {
  background: #fff;
}
.pro_d .bar5 b {
  width: 100%;
  height: 22rem;
  display: block;
}
.pro_d .bar6 {
  padding: 2rem 0;
  background: #fff;
}
.pro_d .bar6 .imgs {
  height: 26rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pro_d .bar6 h3 {
  color: #ffffff;
  font-size: 6rem;
  text-align: center;
}
.pro_d .bar7 {
  background: #fff;
  border-radius: 10px;
}
.pro_d .bar7 h3 {
  text-align: center;
}
.pro_d .bar7 ul li {
  border-bottom: 1px solid #f3f4f6;
  padding: 1rem 0;
}
.pro_d .bar7 ul li p {
  font-size: 1.4rem;
  color: #4a5565;
  margin: 0.5rem 0;
}
.pro_d .bar7 ul li p strong {
  font-size: 1.6rem;
  color: #0a0a0a;
  display: block;
}
.resources ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2%;
}
.resources ul li {
  width: 23.6%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0px 1px 2px -1px #0000001a;
  border: 1px solid #e5e7eb;
  box-shadow: 0px 1px 3px 0px #0000001a;
}
.resources ul li .imgs {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.resources ul li .imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition: all 0.5s linear;
}
.resources ul li:hover .imgs img {
  transform: scale(1.06);
}
.resources ul li .txt {
  padding: 1rem 2.5rem;
  box-sizing: border-box;
  position: relative;
}
.resources ul li .top p {
  font-size: 1.2rem;
  color: #374151;
  display: flex;
  align-items: center;
}
.resources ul li .top p img {
  margin: -2px 4px 0 0;
}
.resources ul li .top {
  font-size: 1.2rem;
  color: #345ec9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.resources ul li h6 {
  color: #345ec9;
  font-size: 1.5rem;
  font-weight: normal;
  font-family: "title";
  line-height: 1.4;
  transition: all 0.4s linear;
  margin: 1rem 0;
}
.resources ul li:hover h6 {
  color: var(--colors2);
}
.resources2 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.resources2 ul li {
  width: 48.5%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 4px 6px -4px #0000001a;
  box-shadow: 0px 10px 15px -3px #0000001a;
  position: relative;
}
.resources2 ul li img {
  width: 100%;
  transition: all 0.5s linear;
}
.resources2 ul li:hover img:first-of-type {
  transform: scale(1.06);
}
.resources2 ul li .vbtn {
  width: 12.7rem;
  height: 12.7rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.resources2 dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2%;
  box-shadow: 0px 4px 6px -4px #0000001a;
  background: #fff;
  box-shadow: 0px 10px 15px -3px #0000001a;
  padding: 3rem 12%;
  box-sizing: border-box;
  border-radius: 8px;
}
.resources2 dl dd {
  display: flex;
  align-items: center;
}
.resources2 dl dd p {
  text-align: center;
  font-size: 1.4rem;
  margin: 0 0 0 0.5rem;
  line-height: 1;
}
.resources2 dl dd p strong {
  display: block;
  font-size: 1.6rem;
  color: #345ec9;
  margin-bottom: 6px;
}
.resources3 {
  height: 60rem;
}
.resources3 .imgs {
  position: relative;
  opacity: 1;
}
.resources3 .imgs::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.5;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(52, 94, 201, 0.45) 0%,
    rgba(52, 94, 201, 0.3) 100%
  );
}
.resources4 {
  padding-top: 0;
  text-align: center;
}
.resources4 ul {
  margin: 0 auto;
}
.resources4 ul li .imgs {
  height: 24.5rem;
}
.resources4 ul .bbs {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s linear;
  opacity: 0;
}
.resources4 ul li:hover .bbs {
  opacity: 1;
}
.resources4 ul li .down {
  background: var(--colors);
  padding: 0.9rem 2rem 0.9rem 1rem;
  border-radius: 6px;
  text-align: center;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.4rem;
  transition: all 0.3s linear;
  cursor: pointer;
}
.resources4 ul li .down:hover {
  background: var(--colors2);
}
.resources4 ul li .down img {
  height: 2.1rem;
  margin: 0 0.8rem 0;
}
