/* 首页 */
/* 头部导航 */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  --opacity: 0;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
header.is-white,
header.active {
  --active-color: #000;
  --opacity: 1 !important;
}
header.is-white .tool-list .lang-box img,
header.is-white .tool-list .search-box img,
header.active .tool-list .lang-box img,
header.active .tool-list .search-box img {
  filter: invert(1);
}
header .pc-header .logo img {
  /* 不是纯黑 变白 */
  filter: brightness(0) invert(1);
}
header.is-white .logo img,
header.active .logo img {
  filter: none;
}
.pc-header {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, var(--opacity));
}
.pc-header .top-btm {
  width: 100%;
  position: relative;
}
.right-nav {
  display: flex;
  align-items: center;
}
.tool-list {
  display: flex;
  align-items: center;
  padding-left: 60px;
  position: relative;
}
.tool-list::before {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background: var(--active-color, #fff);
  opacity: 0.4;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.tool-list .lang-box {
  display: flex;
  align-items: center;
  position: relative;
}
.tool-list .lang-box .lang-sel {
  color: var(--active-color, #fff);
  height: 100px;
  text-align: center;
  cursor: pointer;
  position: relative;
  margin-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tool-list .lang-box .lang-sel img {
  margin-left: 5px;
}
.tool-list .search-box img {
  margin-right: 8px;
}
.tool-list .search-box {
  position: relative;
  height: 100px;
  display: flex;
  align-items: center;
  color: var(--active-color, #fff);
  margin-left: 30px;
  cursor: pointer;
  user-select: none;
}
.tool-list .search-box form {
  position: absolute;
  display: flex;
  right: 0;
  top: 100%;
  color: #111;
  background: aliceblue;
  height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: height 0.36s ease;
}
.tool-list .search-box.active form {
  height: 40px;
  visibility: visible;
}
.tool-list .search-box form input {
  width: 268px;
  border-top: 1px solid #ccc;
  height: 100%;
  padding: 0 10px;
}
.tool-list .search-box form button {
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #ccc;
}
.tool-list .search-box form button img {
  filter: invert(1);
  margin-right: 0;
}
.tool-list .contact-box {
  margin-left: 30px;
  width: 108px;
  height: 48px;
  border-radius: 24px;
  background-color: var(--theme-color);
  color: #fff;
  justify-content: center;
}
.right-nav .nav-list .nav-item {
  cursor: pointer;
  position: relative;
  height: 100px;
  margin-right: 60px;
  color: var(--active-color, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
}
.right-nav .nav-list .nav-item.active {
  color: var(--theme-color);
}
.right-nav .nav-list .nav-item::after,
.tool-list .lang-box::after {
  content: "";
  position: absolute;
  /* opacity: 0; */
  /* background-color: var(--theme-color); */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
}
/* .right-nav .nav-list .nav-item:nth-child(2)::after {
  display: none;
} */
.right-nav .nav-list .nav-item .sub-nav,
.tool-list .lang-box .lang-sel ul {
  min-width: 160px;
  width: auto;
  height: auto;
  overflow: hidden;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  border-top: 1px solid #ccc;
  top: calc(100% + 2px);
  left: 50%;
  z-index: 99;
  box-shadow: 0 13px 42px 11px rgba(0, 0, 0, 0.05);
  transform: translateX(-50%);
  transition: all 0.36s;
  font-family: "HarmonyOS_Sans_SC_Light";
}
.right-nav .nav-list .nav-item .sub-nav > a,
.tool-list .lang-box .lang-sel ul li a {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  transition: all 0.3s;
  display: block;
  padding: 15px;
  text-align: center;
  white-space: nowrap;
}
.right-nav .nav-list .nav-item:hover {
  /* color: var(--theme-color); */
  overflow: visible;
}
.right-nav .nav-list .nav-item:hover::after {
  background-color: var(--theme-color);
}
.right-nav .nav-list .nav-item:hover .sub-nav,
.tool-list .lang-box:hover .lang-sel ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.right-nav .nav-list .nav-item .sub-nav > a:hover,
.tool-list .lang-box .lang-sel ul a:hover {
  color: var(--theme-color);
  background-color: #f6f9fc;
}

.mb-header .top-mes {
  padding: 0 20px;
  box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
.mb-header .top-mes .logo img {
  width: 136px;
}
.lang-box2 {
  color: #333;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.lang-box2 i {
  margin-left: 10px;
}
.lang-box2 ul {
  position: relative;
  /* padding: 10px 0; */
  z-index: 999;
  width: 150%;
  background: white;
  box-shadow: 0 0 10px #ccc;
  color: #333;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  display: none;
}
.lang-box2:hover ul {
  display: block;
}
.lang-box2 ul li a {
  display: flex;
  justify-content: center;
  height: 32px;
  line-height: 32px;
  align-items: center;
}
.lang-box2 ul li a:hover {
  background-color: var(--theme-color);
  color: #fff;
}
.mb-header .top-mes .cool-menu {
  display: flex;
  margin-left: 10px;
  align-items: center;
  height: 70px;
}
.mb-header .top-mes .cool-menu .line-wrap {
  cursor: pointer;
  position: relative;
  z-index: 100;
}
.mb-header .top-mes .cool-menu .line-wrap div[class^="line"] {
  transition: all 0.3s ease;
  width: 28px;
  border-radius: 1px;
  border-top: 2px solid #000;
  margin-bottom: 8px;
}
.mb-header .top-mes .cool-menu .line-wrap div.line3 {
  margin-bottom: 0;
}
.mb-header .top-mes .menu-box {
  position: fixed;
  top: 70px;
  width: 100%;
  bottom: 0;
  left: 100%;
  z-index: 10;
  background-color: #f8f8f8;
  overflow: hidden;
  transition: left 0.3s;
}
.mb-header .top-mes .menu-box.active {
  left: 0;
}
.mb-header .top-mes .menu-box .menu-list {
  padding: 20px 20px 0;
}
.mb-header .top-mes .menu-box .menu-list li {
  position: relative;
}
.mb-header .top-mes .menu-box .menu-list li .sub-nav {
  display: none;
  padding: 0 15px;
}
.mb-header .top-mes .menu-box .menu-list li .sub-nav a {
  display: block;
  padding: 15px 0;
  font-size: 14px;
  border-bottom: 1px solid #d4d4d4;
}
.mb-header .top-mes .menu-box .menu-list li .sub-nav a:hover {
  color: var(--theme-color);
}
.mb-header .top-mes .menu-box .menu-list .menu-item {
  position: relative;
  padding: 15px 0;
  border-bottom: 1px solid #d4d4d4;
  font-size: 14px;
  color: #333;
  font-weight: 700;
}
.mb-header .top-mes .menu-box .menu-list .menu-item:hover {
  color: var(--theme-color);
}
/* .right-nav .nav-list .nav-item:nth-child(3) {
  position: static;
} */
.right-nav .nav-list .nav-item .sub-nav2 {
  position: fixed;
  left: 0;
  top: 100px;
  width: 100%;
  color: #666;
  background-color: #fff;
  border-top: 1px solid #ccc;
  box-shadow: 0 13px 13px rgba(0, 0, 0, 0.05);
  transition: all 0.36s;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  font-family: "HarmonyOS_Sans_SC_Light";
}
.right-nav .nav-list .nav-item .sub-nav2 .sn-dv {
  padding: 30px 100px;
  position: relative;
  height: 600px;
}
.right-nav .nav-list .nav-item:hover .sub-nav2 {
  opacity: 1;
  visibility: visible;
}
.all-prev,
.all-next {
  width: 50px;
  height: 50px;
  background-color: var(--theme-color);
  color: #fff;
  border-radius: 50%;
}
.all-prev.swiper-button-prev.swiper-button-disabled,
.all-next.swiper-button-next.swiper-button-disabled {
  color: #666;
  border: 1px solid #666;
  background-color: #fff;
}
.swiper-button-prev.all-prev::after,
.swiper-button-next.all-next::after {
  display: none;
}
.swiper-button-prev.all-prev {
  transform: rotateZ(180deg);
}
#pro-swiper {
  height: 100%;
}
#pro-swiper .ps-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
#pro-swiper .ps-item .pi-t {
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
#pro-swiper .ps-item .pi-t span {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
#pro-swiper .ps-item .pi-t:hover span {
  color: var(--theme-color);
}
#pro-swiper .ps-item .pi-img {
  width: 100%;
  height: 160px;
  background-color: #f6f9fc;
  margin: 22px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#pro-swiper .ps-item .pi-img img {
  width: 50%;
  height: 100px;
  object-fit: contain;
  object-position: center;
}
#pro-swiper .ps-item ul {
  padding: 0 10px;
  overflow-y: auto;
  flex: 1;
}
#pro-swiper .ps-item ul::-webkit-scrollbar {
  width: 2px;
  /*滚动条宽度*/
  height: 2px;
  /*滚动条高度*/
}
/*滚动条里面小方块*/
#pro-swiper .ps-item ul::-webkit-scrollbar-thumb {
  /* 滚动条 拖动条 */
  background-color: #cdd3d9;
  /* border-radius: 6px; */
}
/*滚动条轨道*/
#pro-swiper .ps-item ul::-webkit-scrollbar-track {
  /* 滚动条背景槽 */
  background-color: rgba(51, 51, 51, 0.1);
}

#pro-swiper .ps-item ul li {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
}
#pro-swiper .ps-item ul li:last-child {
  margin-bottom: 0;
}
/* 轮播图 */
.home-swiper {
  --swiper-pagination-bullet-width: 6px;
  --swiper-pagination-bullet-height: 10px;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-inactive-opacity: 0.5;
  --swiper-pagination-color: #fff;
  --swiper-pagination-bullet-horizontal-gap: 10px;
  --home-bottom: 50px;
}
.home-swiper .swiper-pagination-fraction,
.home-swiper .swiper-pagination-custom,
.home-swiper .swiper-horizontal > .swiper-pagination-bullets,
.home-swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--home-bottom);
}
.home-swiper .swiper-pagination-bullet {
  border-radius: 0;
  transition: height 0.3s;
}
.home-swiper .swiper-pagination-bullet-active {
  --swiper-pagination-bullet-height: 20px;
}
.hs-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hs-content .container {
  height: 100%;
}
.hs-content-box {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-self: center;
}
.hs-content .p2 {
  font-size: 52px;
  color: #fff;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.hs-content .p3 {
  color: #fff;
  font-weight: 700;
  font-size: 52px;
  letter-spacing: 2px;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.hs-content .go-by {
  display: flex;
  align-items: center;
  margin-top: 44px;
}
.all-btn .btn1,
.all-btn .btn2 {
  min-width: 150px;
  height: 60px;
  border-radius: 30px;
  background-color: var(--theme-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.all-btn .btn2 {
  margin-left: 22px;
  background-color: #ffffff;
  color: var(--theme-color);
}
.all-btn .btn1 img,
.all-btn .btn2 img {
  margin-left: 16px;
  transition: all 0.2s;
}
.all-btn .btn1:hover img {
  margin-left: 20px;
}
.all-btn .btn2:hover img {
  margin-left: 20px;
}

.main {
  width: 100%;
  background-size: 100% 100%;
}
.all-title {
  font-size: 36px;
  color: #000;
  margin: 50px 0;
  text-align: center;
  font-weight: 700;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.i-product {
  padding: 50px 0;
}
.i-product .ip-box {
  position: relative;
}
.i-product .ip-item {
  width: 100%;
  height: 530px;
  border-radius: 16px;
  background: #f7f9fc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  overflow: hidden;
  --transform-y: 100px;
}
.i-product .ip-item .ip-img {
  width: 100%;
  height: 220px;
  flex-shrink: 0;
}
.i-product .ip-item .ip-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.i-product .ip-item .ip-text {
  transform: translateY(var(--transform-y));
  transition: all 0.3s;
}
.i-product .ip-item .p1 {
  font-weight: 400;
  font-size: 30px;
  text-align: center;
  color: var(--item-color, #000);
  margin-bottom: 30px;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.i-product .ip-item .p2 {
  text-align: center;
  color: var(--item-color, #666);
  line-height: 2;
}
.main .swiper-slide .p3 {
  margin: 30px auto 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 13px 27px 0 #ffffff57;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--theme-color);
}
.i-product .ip-item:hover {
  --item-color: #fff;
  --transform-y: 0;
  background: linear-gradient(to bottom, #f5f5f5 30%, var(--theme-color));
}
.i-product .all-prev {
  left: -60px;
}
.i-product .all-next {
  right: -60px;
}
.i-agency {
  padding-bottom: 50px;
}
.i-agency .ia-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
}
.i-agency .ia-list .il-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.i-application {
  padding-bottom: 100px;
}
.i-application .ia-box {
  position: relative;
}
.i-application .ia-item {
  display: flex;
  width: 100%;
  height: 480px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.i-application .ia-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.i-application .ia-item .ii-bo {
  position: absolute;
  left: 0;
  top: 0;
  padding: 40px 0;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  --transform-y: 100px;
}
.i-application .ia-item .ii-bo .ip-text {
  transform: translateY(var(--transform-y));
  transition: all 0.3s;
}
.i-application .ia-item .ii-bo .p1 {
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.i-application .ia-item:hover .ii-bo {
  --transform-y: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, var(--theme-color));
}
.i-application .ia-pn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.i-application .all-prev,
.i-application .all-next {
  user-select: none;
  position: static;
  margin: 0 24px;
}
.i-service {
  background-color: #f7f9fc;
  padding: 130px 0;
}
.i-service .is-lf {
  width: 50%;
}
.i-service .is-lf .p1 {
  font-size: 48px;
  color: #000;
  font-weight: 700;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.i-service .is-lf .p2 {
  color: #666666;
  margin: 40px 0;
  line-height: 2;
}
.i-service .is-rh {
  width: 30%;
  display: flex;
  flex-direction: column;
}
.i-service .is-lf .all-btn {
  display: flex;
  align-items: center;
}
.i-service .is-rh .is-r-vw {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 46px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.07);
}
.i-service .is-rh .is-r-vw .is-v {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.i-service .is-rh .is-r-vw .num {
  font-size: 60px;
  font-weight: 600;
  font-family: "Montserrat-SemiBold";
}
.i-service .is-rh .is-r-vw .is-text {
  font-size: 18px;
}
.i-service .is-rh .is-r-vw:first-child {
  padding-top: 0;
}
.i-service .is-rh .is-r-vw:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.i-news {
  padding: 100px 0 80px;
}
.i-news h2 {
  font-size: 36px;
  font-weight: 700;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.i-news .in-top {
  margin: 30px 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.all-in-tabs {
  display: flex;
  flex-wrap: wrap;
}
.all-in-tabs .in-tab {
  color: #8392b9;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  margin-right: 20px;
  margin-bottom: 10px;
  border: 1px solid rgba(51, 51, 51, 0.3);
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.all-in-tabs .in-tab.active {
  background-color: #2ac1fe;
  color: #fff;
  border: none;
}
.i-news .in-list-all {
  display: none;
}
.i-news .in-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
}
.i-news .in-list .in-item {
  display: flex;
  flex-direction: column;
}
.i-news .in-list .in-img {
  width: 100%;
  height: 270px;
  overflow: hidden;
  border-radius: 10px;
}
.i-news .in-list .in-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s;
}
.i-news .in-list .p1 {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  margin: 35px 0 20px;
  font-family: "Montserrat-SemiBold";
}
.i-news .in-list .p2 {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.i-news .in-list .p3 {
  display: flex;
  align-items: center;
  margin-top: 40px;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.i-news .in-list .p3 img {
  margin-right: 10px;
}
.i-news .in-list .in-item:hover .in-img img {
  transform: scale(1.1);
}
/* 底部 */
footer {
  padding-top: 80px;
  background-color: #064fb7;
  color: #fff;
}
footer .ft-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 15px;
}
footer .ft-link .wx-boss-2 {
  margin-right: 17px;
  margin-bottom: 10px;
}
footer .ft-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .ft-top .ft-left {
  width: 275px;
}
footer .ft-top .ft-left .fl-tt {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 33px;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
footer .ft-top .ft-left .fl-tc {
  color: rgba(255, 255, 255, 0.651);
  line-height: 1.4;
}
footer .ft-top .ft-left .fl-tc .ft-i {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
footer .ft-top .ft-left .fl-tc .ft-i span {
  flex-shrink: 0;
}
footer .ft-top .ft-left .fl-tc .ft-i p {
  word-break: break-word;
}
footer .ft-top .ft-left .fl-tb {
  width: 100px;
  /* height: 100px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 14px;
}
footer .ft-top .ft-left .fl-tb p {
  text-align: center;
  margin-top: 10px;
}
footer .ft-top .ft-right {
  display: flex;
}
footer .ft-top .ft-right dl {
  margin-left: 60px;
  max-width: 150px;
}
footer .ft-top .ft-right dl:first-child {
  margin-left: 0;
}
footer .ft-top dl dt {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 33px;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
footer .ft-top dl dd {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.651);
  margin-bottom: 20px;
}
footer a:hover {
  color: #fff;
}

footer .copyright {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.ab-video video {
  width: 100%;
  /* height: 854px; */
  display: block;
}
.ab-video .av-img {
  width: 100%;
}
.ab-video .ab-v-box {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  transform: translate(-50%, -50%);
}
.ab-video .ab-v-box .p-title {
  font-weight: 700;
  font-size: 64px;
  color: #ffffff;
  letter-spacing: 5px;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
/* 内页菜单 */
.nav-wrapper {
  background-color: #fff;
  border-bottom: 1px solid rgba(51, 51, 51, 0.05);
}
.nav-wrapper .tab-list {
  position: relative;
  overflow-x: auto;
}
.nav-wrapper .tab-list::-webkit-scrollbar-thumb {
  background-color: #999;
}
.nav-wrapper .tab-list .tab-item {
  position: relative;
  line-height: 80px;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 18px;
  color: #000;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.nav-wrapper .tab-list .tab-item:not(:last-child) {
  margin-right: 80px;
}
.nav-wrapper .tab-list .tab-item:hover,
.nav-wrapper .tab-list .tab-item.active {
  color: var(--theme-color);
}
.nav-wrapper .tab-list .tab-item:hover::after,
.nav-wrapper .tab-list .tab-item.active::after {
  width: 100%;
}
.nav-wrapper .tab-list .tab-item::after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  width: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: #2ac1fe;
}
/* 内页banner信息 */
.bread {
  display: flex;
  align-items: center;
  padding: 20px 0;
  overflow: hidden;
}
.bread li {
  margin-right: 10px;
  flex-shrink: 0;
}
.bread li a {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}
.bread li:not(:first-child) a::before {
  content: ">";
  /* color: #fff; */
  margin-right: 10px;
}
.ab-main-1 {
  padding: 60px 0 100px;
  background: url("../images/index/ab-bg1.png") left top no-repeat,
    url("../images/index/ab-bg2.png") right bottom no-repeat;
}
.ab-main-1 .am-1-tp {
  display: flex;
  justify-content: space-between;
}
.ab-main-1 .am-1-tp .at-l {
  width: 440px;
  font-size: 48px;
  font-weight: 700;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.ab-main-1 .am-1-ct {
  margin: 60px 0 90px;
}
.ab-main-1 .at-r {
  width: 50%;
  color: #666;
  line-height: 1.8;
  word-break: break-word;
}
.ab-main-1 .at-r p {
  text-wrap: wrap !important;
  word-break: break-word;
}
.ab-main-1 .at-r p span {
  text-wrap: wrap !important;
  word-break: break-word;
}
.ab-main-1 .am-1-bm {
  display: flex;
  justify-content: space-between;
}
.ab-main-1 .is-rh {
  width: 30%;
  display: flex;
  flex-direction: column;
}
.ab-main-1 .is-rh .is-r-vw {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 46px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.07);
}
.ab-main-1 .is-rh .is-r-vw .is-v {
  width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ab-main-1 .is-rh .is-r-vw .num {
  font-size: 60px;
  font-weight: 600;
  font-family: "Montserrat-SemiBold";
  color: var(--theme-color);
}
.ab-main-1 .is-rh .is-r-vw .is-text {
  font-size: 18px;
}
.ab-main-1 .is-rh .is-r-vw:first-child {
  padding-top: 0;
}
.ab-main-1 .is-rh .is-r-vw:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.ab-main-2 {
  padding: 60px 0 80px;
}
.ab-main-2 .am-2-tp {
  width: 70%;
  margin: 0 auto;
  text-align: center;
}
.ab-main-2 .am-2-tp h2 {
  font-size: 48px;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 50px;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.ab-main-2 .am-2-tp .p1 {
  color: #666;
  line-height: 2;
}
.ab-main-2 .am-2-tp p {
  text-wrap: wrap !important;
  word-break: break-word;
}
.ab-main-2 .am-2-tp p span {
  text-wrap: wrap !important;
  word-break: break-word;
}
.ab-main-2 .am-2-list {
  margin: 50px 0 60px;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
}
.ab-main-2 .am-2-list .am-2-i {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  text-align: center;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.ab-main-2 .am-2-list .am-2-img {
  width: 120px;
  height: 120px;
  background-color: #f7fafd;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 18px;
}
.ab-main-1 .am-1-ct img {
  width: 100%;
}
.ab-main-2 .am-2-ct img {
  width: 100%;
}
.ab-main-3 {
  padding: 30px 0 60px;
}
/* .ab-main-3 .ab-3-box {
  position: relative;
  margin-top: 40px;
}
.ab-main-3 .ab-3-box .ab-lc {
  position: relative;
  padding: 0 50px;
}
.ab-main-3 .ab-3-box .ab-lc img {
  position: absolute;
  left: 0;
  top: 0;
}
.ab-main-3 .ab-3-box .ab-lc .p1 {
  font-size: 54px;
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 40px;
}
.ab-main-3 .ab-3-box .ab-lc .p2 {
  font-size: 18px;
  line-height: 1.5;
}
.ab-main-3 .all-prev {
  left: -60px;
}
.ab-main-3 .all-next {
  right: -60px;
} */
.time-line {
  display: flex;
  flex-direction: column;
}
.time-line .time-line-item {
  padding: 0 40px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.time-line .time-line-item .lf {
  font-weight: 600;
  font-size: 36px;
  flex: 1;
  font-family: "Montserrat-SemiBold";
  text-align: right;
}
.time-line .time-line-item .ct {
  position: relative;
  z-index: 2;
}
.time-line .time-line-item .ct .ct-img {
  width: 12px;
  height: 12px;
  background: #dbe1e8;
  border-radius: 50%;
  margin: 60px 70px;
  outline: 1px solid #dbe1e8;
  outline-offset: 5px;
  flex-shrink: 0;
}
.time-line .time-line-item .ct::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #dbe1e8;
  left: 50%;
  top: 0;
  z-index: 1;
}
.time-line .time-line-item .ct img {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-sizing: content-box;
  border-radius: 50%;
  padding: 20px;
  background-color: var(--theme-color);
}
.time-line .time-line-item .rh {
  font-size: 18px;
  line-height: 1.8;
  flex: 1;
}
/* time: 2024年8月5日15:49:35 */
.time-line .time-line-item .rh .rh1 {
  width: 60%;
}
.time-line .time-line-item:nth-child(2n) {
  flex-direction: row-reverse;
}
.time-line .time-line-item:nth-child(2n) .rh .rh1 {
  text-align: right;
}
.time-line .time-line-item:nth-child(2n) .rh {
  display: flex;
  justify-content: flex-end;
}
.time-line .time-line-item:nth-child(2n) .lf {
  text-align: left;
}
.time-line .time-line-item:hover {
  background-color: #f7fafd;
  color: var(--theme-color);
}
.time-line .time-line-item:hover .ct img {
  display: block;
}
.time-line .time-line-item:first-child .ct::before {
  top: 50%;
}
.time-line .time-line-item:last-child .ct::before {
  top: auto;
  bottom: 50%;
}
.load-more {
  margin-top: 50px;
}
.load-more .flex {
  padding-top: 30px;
  border-top: 1px solid rgba(51, 51, 51, 0.07);
  color: #666;
  font-size: 18px;
  cursor: pointer;
}
.load-more .flex img {
  margin-left: 10px;
}

.ab-main-4 {
  padding: 10px 0 80px;
}
.ab-4-ti {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: var(--theme-color);
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.ab-main-4 .ab-4-list {
  margin-top: 50px;
}
.ab-main-4 .ab-4-list .ab-4-i {
  width: 48%;
  display: flex;
  border-radius: 16px;
  background: #f7fafd;
  min-height: 343px;
  margin-bottom: 40px;
}
.ab-main-4 .ab-4-list .ab-4-i .p1 {
  height: 100%;
  overflow: hidden;
  width: 265px;
  border-radius: 16px 0 0 16px;
  flex-shrink: 0;
}
.ab-main-4 .ab-4-list .ab-4-i .p1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ab-main-4 .ab-4-list .ab-4-ir {
  padding: 50px 60px;
}
.ab-main-4 .ab-4-list .ab-4-ir .p2 {
  font-size: 22px;
  line-height: 1.4;
  position: relative;
  font-weight: 700;
  padding-bottom: 28px;
  font-family: "HarmonyOS_Sans_SC_Bold";
  border-bottom: 1px solid rgba(51, 51, 51, 0.07);
}
.ab-main-4 .ab-4-list .ab-4-ir .p2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--theme-color);
}
.ab-main-4 .ab-4-list .ab-4-ir ul {
  margin-top: 28px;
}
.ab-main-4 .ab-4-list .ab-4-ir li {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}
.ab-main-4 .ab-4-list .ab-4-ir li::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #666;
  margin-right: 6px;
  margin-top: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ab-main-4 .ab-4-list .ab-4-ir li p {
  text-wrap: wrap !important;
  word-break: break-word;
}
.ab-main-4 .ab-4-list .ab-4-ir li p span {
  text-wrap: wrap !important;
  word-break: break-word;
}
.mp-html p {
  text-wrap: wrap !important;
  word-break: break-word;
}
.mp-html span {
  text-wrap: wrap !important;
  word-break: break-word;
}
.ab-main-4-1 {
  padding: 100px 0 90px;
  background-color: #f7fafd;
}
.ab-main-4-1 .ab-4-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
.ab-main-4-1 .ab-4-list .ab-4-i {
  flex-direction: column;
  width: 100%;
  min-height: auto;
  background-color: #fff;
}
.ab-main-4-1 .ab-4-list .ab-4-i .p1 {
  width: 100%;
  height: 240px;
  border-radius: 16px;
}
.ab-main-4-1 .ab-4-list .ab-4-i .p2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ab-main-4-1 .ab-4-list .ab-4-i .p2::after {
  display: none;
}
.ab-main-4-1 .ab-4-list .ab-4-ir {
  padding: 40px 50px;
}
.ab-main-5 {
  padding: 70px 0 100px;
}
.ab-main-5 .am-5-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
}
.ab-main-5 .am-5-list .al-i {
  width: 100%;
  background-color: #f7fafd;
  border-radius: 16px;
}
.ab-main-5 .am-5-list .al-i .p1 {
  text-align: center;
  padding: 47px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.05);
}
.ab-main-5 .am-5-list .al-i .p2 {
  text-align: center;
  padding: 25px 10px;
  font-size: 18px;
}
.pro-main {
  padding: 60px 0 100px;
}
.pro-main .all-in-tabs {
  margin-bottom: 50px;
}
.pro-main-2 .all-in-tabs {
  margin-top: 50px;
}
.pro-table {
  border-radius: 20px 20px 0 0;
  overflow-x: auto;
}
.pro-table .layui-table {
  margin: 0;
  min-width: 880px;
  /* border-spacing: 1px; */
}
.pro-table .layui-table thead {
  border-radius: 20px 20px 0 0;
  background-color: var(--theme-color);
  color: #fff;
}
.pro-table .layui-table th {
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  padding: 30px 5px;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.pro-table .layui-table td {
  text-align: center;
  padding: 20px 5px;
  color: #000;
}
.pro-table .layui-table tbody tr:nth-child(even) {
  background-color: #f7fafd;
}
.pro-table .layui-table tbody tr:nth-child(odd) {
  background-color: #f7fafd4d;
}
.pro-table .layui-table tbody tr {
  transition: none;
  cursor: pointer;
}
.pro-table .layui-table tbody tr:hover {
  outline: 1px solid #2ac1fe;
  outline-offset: -1px;
}
.pro-table .layui-table tbody tr:hover td:nth-child(1) {
  color: var(--theme-color);
}
.pro-main-2 {
  background-color: #f7fafd;
  padding-bottom: 100px;
}
.pm-2-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
  margin-top: 40px;
}
.pm-2-list .pl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 17px 92px 0 #2934480d;
}
.pm-2-list .pl-item .p1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  overflow: hidden;
}
.pm-2-list .pl-item .p1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.pm-2-list .pl-item .p2 {
  text-align: center;
  margin: 30px 0;
}
.pm-2-list .pl-item .p2-1 {
  font-size: 22px;
  margin-bottom: 14px;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.pm-2-list .pl-item .p2-2 {
  color: #999;
  font-weight: 300;
  font-family: "Montserrat-SemiBold";
}
.pm-2-list .pl-item .p3 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 22px;
  font-size: 14px;
  color: var(--theme-color);
  border: 1px solid rgba(2, 83, 198, 0.16);
  transition: all 0.3s;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.pm-2-list .pl-item .p3 img {
  margin-left: 10px;
}
.pm-2-list .pl-item:hover .p3 {
  color: #fff;
  background-color: var(--theme-color);
  box-shadow: 0 18px 29px 0 #0047d873;
}
.pm-2-list .pl-item:hover .p3 img {
  filter: brightness(0) invert(1);
}
.safe-area {
  padding-top: 100px;
}
.pro-detail-top {
  background-color: #f7fafd;
}
.pro-detail-top .pt-box {
  padding: 80px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pro-detail-top .pt-box .ptb-lf {
  width: 50%;
}
.pro-detail-top .pt-box .ptb-rh {
  width: 40%;
  text-align: center;
}
.pro-detail-top .pt-box .pl-t {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.07);
}
.pro-detail-top .pt-box .p1 {
  font-weight: 600;
  font-size: 18px;
  color: var(--theme-color);
  font-family: "Montserrat-SemiBold";
}
.pro-detail-top .pt-box .p2 {
  font-size: 48px;
  font-weight: 600;
  margin: 20px 0;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.pro-detail-top .pt-box .p3 {
  font-size: 18px;
  line-height: 1.5;
}
.pro-detail-top .pt-box ul {
  margin-top: 28px;
}
.pro-detail-top .pt-box li {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}
.pro-detail-top .pt-box li::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #666;
  margin-right: 6px;
  margin-top: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pro-detail-sk {
  background-color: #fff;
  position: sticky;
  left: 0;
  top: 100px;
  z-index: 11;
  border-top: 1px solid rgba(51, 51, 51, 0.05);
}
.pro-detail-content {
  padding-top: 50px;
}
.pro-detail-content .p-box {
  padding: 50px 0;
}
.pro-detail-content .pdc-1 .pdc-1-box {
  /* text-align: center; */
  color: #666666;
  line-height: 2;
  width: 80%;
  margin: 0 auto;
}
.pro-detail-content h2,
.pro-detail-btm h2 {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.pro-detail-btm {
  padding: 100px 0;
}
.pro-detail-content .pdc-2 .pdc-2-box {
  /* border-radius: 20px; */
  overflow: hidden;
  line-height: 2;
  width: 80%;
  margin: 0 auto;
}
.pro-detail-content .pdc-2 .pdc-2-box .pp-1 {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(51, 51, 51, 0.05);
}
.pro-detail-content .pdc-2 .pdc-2-box .pp-1:last-child {
  border-bottom: none;
}
.pro-detail-content .pdc-2 .pdc-2-box .pp-1 > div {
  padding: 20px 0;
}
.pro-detail-content .pdc-2 .pdc-2-box .pp-1 .lf {
  width: 40%;
  background-color: #f7fafd;
  text-align: center;
  font-weight: 600;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.pro-detail-content .pdc-2 .pdc-2-box .pp-1 .rh {
  flex: 1;
  text-align: center;
}
.pro-detail-content .pdc-3-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  justify-content: space-between;
}
.pro-detail-content .pdc-3-box .p3-b-img {
  width: 48%;
}
.pro-detail-content .pdc-3-box .p3-b-img img {
  width: 100%;
}
.pro-detail-content .i-application {
  padding-bottom: 0;
}
.pro-detail-content .pdc-5 {
  background-color: #f7fafd;
  padding: 100px 0;
}
.pro-detail-content .pdc-5-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 24px;
}
.pro-detail-content .pdc-5-box .download-it {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #ffffff;
  padding: 30px 40px 0;
}
.pro-detail-content .pdc-5-box .p-title {
  font-size: 22px;
  line-height: 2;
}
.pro-detail-content .pdc-5-box .p5-b {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  color: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(51, 51, 51, 0.05);
}
.solution-box {
  padding: 60px 0 80px;
}
.solution-box .sb-inner .p1 {
  font-size: 48px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.solution-box .sb-inner p.p2 {
  color: #666;
  width: 80%;
  margin: 0 auto 40px;
  line-height: 1.8;
  text-align: center;
}
.solution-box .sb-inner .p3 {
  width: 100%;
  margin-bottom: 100px;
}
.agency-inner .ai-box {
  padding: 80px 0;
}
.agency-inner .ai-box h2 {
  font-weight: 600;
  font-size: 36px;
  text-align: center;
  margin-bottom: 48px;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.agency-inner .ai-box .ai-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 48px;
}
.agency-inner .ai-box .ai-list .al-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 50px 50px;
  border-radius: 16px;
  background: #ffffff;
  position: relative;
  border: 1px solid #eaeff3;
  overflow: hidden;
}
.agency-inner .ai-box .ai-list .al-item .img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(51, 51, 51, 0.05);
}
.agency-inner .ai-list .al-item .p1 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #030d23;
  margin: 20px 0;
  transition: color 0.3s;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.agency-inner .ai-list .al-item .p2 {
  color: #666;
  line-height: 2;
  text-align: center;
}
.agency-inner #b2 {
  background-color: #f7fafd;
}
.agency-inner .ai-list .al-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  transition: all 0.3s;
  background-color: var(--hover-color, #fff0);
}
.agency-inner .ai-list .al-item:hover .p1 {
  color: var(--theme-color);
}
.agency-inner .ai-box .ai-list .al-item:hover {
  box-shadow: 0 1px 20px #273f6b11;
}
.agency-inner .ai-list .al-item:hover {
  --hover-color: #2ac1fe;
}
.agency-detail-top {
  background-color: #f9fafc;
}
.agency-detail {
  padding: 80px 0;
}
.agency-detail .ad-top {
  display: flex;
  padding: 50px;
  background-color: #f7fafd;
  justify-content: space-between;
  border-radius: 20px;
}
.agency-detail .ad-top .ad-lf {
  width: 46%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
}
.agency-detail .ad-top .ad-rh {
  flex: 1;
  padding: 20px 0 30px 70px;
}
.agency-detail .ad-top .ad-rh .p1 {
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 40px;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.agency-detail .ad-top .ad-rh .p2 {
  color: #666;
  line-height: 1.8;
}
.agency-detail .ad-ct {
  padding: 80px 0;
  width: 60%;
  color: #666;
  line-height: 1.8;
  margin: 0 auto;
  /* text-align: center; */
}
.agency-detail .ad-bm h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.agency-detail .ad-bm .adb-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.agency-detail .ad-bm .al-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.agency-detail .ad-bm .al-item .img {
  width: 100%;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 50px;
  height: 272px;
}
.agency-detail .ad-bm .al-item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.agency-detail .ad-bm .al-item .p1 {
  text-align: center;
  font-size: 22px;
  margin-top: 20px;
  font-weight: 600;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.ab-video2 {
  min-height: 560px;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 180px 0 50px;
}
.ab-video2 .ab-v-box {
  display: flex;
  justify-content: space-between;
}
.ab-video2 .ab-v-box .a-lf {
  width: 50%;
}
.ab-video2 .ab-v-box .a-rh {
  width: 300px;
  text-align: center;
}
.ab-video2 .ab-v-box .p1 {
  font-weight: 300;
  font-size: 22px;
  color: #2ac1fe;
  margin-bottom: 30px;
  font-family: "Montserrat-SemiBold";
}
.ab-video2 .ab-v-box .p2 {
  font-weight: 600;
  margin-bottom: 40px;
  font-size: 72px;
  color: #fff;
  font-family: "Montserrat-SemiBold";
}
.ab-video2 .ab-v-box .p3 {
  color: #fff;
  line-height: 2;
}
.contact-us {
  padding: 60px 0;
}
.contact-us .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-us .list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  border-radius: 40px;
  padding: 50px 70px;
}
.contact-us .list .item:hover {
  background: #ffffff;
  box-shadow: 0 17px 92px 0 #2934480d;
}
.contact-us .list .item .p2 {
  font-weight: 400;
  margin-top: 30px;
  text-align: center;
}
.contact-us .list .item .p2 .p2-2 {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.contact-us-all {
  text-align: center;
  margin-bottom: 50px;
}
.contact-us-all .p1 {
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.contact-us-all .p2 {
  color: #666;
}
.contact-us-form .c-u-b {
  width: 50%;
  margin: 0 auto;
}
.contact-us-form form .form-input-box {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.contact-us-form form .flex {
  margin-bottom: 30px;
}
.contact-us-form form .flex .form-input-box {
  width: 48%;
}

.contact-us-form form .flex:nth-child(3) .form-input-box {
  width: 100%;
}
.contact-us-form form .form-input-label {
  font-weight: 700;
  margin-left: 20px;
  margin-bottom: 12px;
  font-family: "HarmonyOS_Sans_SC_Bold";
}

.contact-us-form form .form-input-box input,
.contact-us-form form .form-input-box textarea {
  width: 100%;
  height: 64px;
  border-radius: 32px;
  background: #ffffff;
  padding: 0 20px;
}
.contact-us-form form .form-input-box textarea {
  height: 160px;
  padding: 20px;
  resize: none;
  border: none;
}
.contact-us-form form .authCode-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.contact-us-form form .authCode-box .authCode {
  display: flex;
  align-items: center;
}
.contact-us-form form .authCode-box .authCode input {
  align-self: stretch;
  height: 64px;
  background-color: #fff;
  padding: 0 20px;
  width: 180px;
  border-radius: 32px 0 0 32px;
  border: none;
  outline: none;
}
.contact-us-form form .authCode-box .authCode img {
  align-self: stretch;
  height: 64px;
  width: 160px;
}

.contact-us-form {
  padding: 80px 0;
  background-color: #f7fafd;
}

.contact-us-form .c-u-b .layui-form button {
  min-width: 150px;
  height: 60px;
  border-radius: 35px;
  background: var(--theme-color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.contact-us-form .c-u-b .layui-form button img {
  margin-left: 10px;
}
#map {
  width: 100%;
  height: 540px;
}

/* 分页器 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 60px;
}
.pagination ul {
  display: flex;
  flex-wrap: wrap;
}
.pagination ul li {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  background-color: rgba(83, 118, 171, 0.07);
  margin-right: 10px;
}
.pagination ul li:last-child {
  margin-right: 0;
}
.pagination ul li.active {
  background: var(--theme-color);
}
.pagination ul li a {
  width: 100%;
  height: 100%;
  font-weight: bold;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s;
  font-family: "Montserrat-SemiBold";
}
.pagination ul li.active a {
  color: #fff;
}
.pagination ul li:hover:not(.disabled) {
  background: var(--theme-color);
}
.pagination ul li:hover:not(.disabled) a {
  color: #fff;
}
.pagination li.disabled a {
  cursor: not-allowed;
  opacity: 0.3;
}

.news-inner {
  padding: 80px 0;
}
.news-inner .i-news {
  padding: 0;
}
.news-inner .i-news .in-list .in-item:first-child {
  position: relative;
  height: 564px;
  grid-column-start: 1;
  grid-column-end: 3;
}
.news-inner .i-news .in-list .in-item:first-child .in-img {
  height: 100%;
}
.news-inner .i-news .in-list .in-item:first-child .in-abs {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 50px;
}
.news-inner .i-news .in-list .in-item:first-child .in-abs .p3 {
  display: none;
}
.news-inner .i-news .in-list .in-item:first-child .in-abs .p1 {
  color: #fff;
}
.news-inner .i-news .in-list .in-item:first-child .in-abs .p2 {
  color: #fff;
}
.news-inner .i-news .in-list .in-item:nth-child(2) .in-abs {
  position: relative;
  flex: 1;
}
.news-inner .i-news .in-list .in-item:nth-child(2) .in-abs .p3 {
  position: absolute;
  bottom: 30px;
  left: 0;
}
.news-inner .i-news .in-list {
  gap: 50px 40px;
}
.news-detail-top {
  background-color: #f9fafc;
}
.news-detail {
  padding: 80px 0;
}
.news-detail .nd-top {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.05);
}
.news-detail .nd-top .p1 {
  color: var(--theme-color);
  margin-bottom: 30px;
  font-family: "Montserrat-SemiBold";
}
.news-detail .nd-top .p2 {
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 40px;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.news-detail .nd-top .p3 {
  display: flex;
  flex-wrap: wrap;
}
.news-detail .nd-top .p3-i {
  padding: 10px 15px;
  margin-right: 20px;
  border-radius: 40px;
  margin-bottom: 10px;
  border: 1px solid rgba(51, 51, 51, 0.1);
}
.news-detail .nd-btm {
  display: flex;
  justify-content: space-between;
  padding-top: 60px;
}
.news-detail .nd-btm .nb-lf {
  width: 60%;
  color: #666;
  line-height: 2;
}
.news-detail .nd-btm .nb-rh {
  width: 35%;
}
.news-detail .nd-btm .nb-rh h3 {
  font-weight: 600;
  font-size: 26px;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.news-detail .nd-btm .nb-rh .list {
  display: flex;
  flex-direction: column;
}
.news-detail .nd-btm .nb-rh .list .item {
  display: flex;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.05);
}
.news-detail .nd-btm .nb-rh .list .item .img {
  width: 150px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 20px;
}
.news-detail .nd-btm .nb-rh .list .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s;
}
.news-detail .nd-btm .nb-rh .list .item .p1 {
  font-size: 18px;
  font-weight: 600;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.news-detail .nd-btm .nb-rh .list .item .p2 {
  color: #666;
  margin-top: 10px;
  font-family: "Montserrat-SemiBold";
}
.news-detail .nd-btm .nb-rh .nb-kw {
  margin-top: 60px;
}
.news-detail .nd-btm .nb-rh .kw-list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}
.news-detail .nd-btm .nb-rh .kw-list .item {
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 40px;
  border: 1px solid rgba(51, 51, 51, 0.15);
  margin-right: 4px;
  margin-bottom: 10px;
  transition: all 0.3s;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.news-detail .nd-btm .nb-rh .kw-list .item:hover {
  background-color: var(--theme-color);
  color: #fff;
}
.video-inner {
  padding: 80px 0;
}
.video-inner .vi-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 30px;
}
.video-inner .vi-list .vi-item {
  display: flex;
  flex-direction: column;
}
.video-inner .vi-list .vi-item .v-img {
  position: relative;
  width: 100%;
  height: 255px;
  overflow: hidden;
  border-radius: 10px;
}
.video-inner .vi-list .vi-item .v-img .i1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-inner .vi-list .vi-item .v-img .i2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-inner .vi-list .vi-item .p1 {
  width: 100%;
  padding: 20px 10px 0;
  font-weight: 600;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.video-detail.news-detail .nd-btm {
  padding-top: 0;
}
.video-detail.news-detail .nd-top {
  border: none;
}
.video-detail.news-detail .nd-btm .nb-lf {
  color: inherit;
  line-height: 1.2;
}
.video-detail .v-con video {
  width: 100%;
  border-radius: 10px;
}
.video-detail .v-con .vc-text {
  margin-top: 40px;
  color: #666;
  line-height: 2;
}
.video-detail .nb-rh .list .item .img {
  position: relative;
}
.video-detail .nd-btm .nb-rh .list .item .img .pl {
  position: absolute;
  width: 34px;
  height: 34px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.application-box .app-b-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 24px;
  margin-top: 50px;
}
.application-box .app-b-list .abl-item {
  display: flex;
  flex-direction: column;
}
.application-box .app-b-list .abl-item .img {
  width: 100%;
  height: 440px;
  overflow: hidden;
  border-radius: 10px;
}
.application-box .app-b-list .abl-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.application-box .app-b-list .abl-item .p1 {
  font-weight: 600;
  margin-top: 20px;
  font-size: 22px;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.app-detail {
  padding: 80px 0;
}
.app-detail .ad-top > h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.app-detail .ad-top .ad-content {
  line-height: 2;
}
.app-detail .ad-top .ad-content .p1 {
  width: 80%;
  text-align: center;
  color: #666;
  margin: 0 auto 30px;
}
.app-detail .ad-top .ad-content .p2 {
  color: var(--theme-color);
  font-size: 22px;
  font-weight: 600;
  margin: 50px 0 30px;
  font-family: "HarmonyOS_Sans_SC_Bold";
}
.app-detail .app-d-news h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}
.app-detail .app-d-news {
  padding: 80px 0;
}
.app-detail .app-d-news .i-news {
  padding: 0;
}
/* time: 2024年8月3日15:48:02 */
/* author: pipi */
