/* 首页独立样式（简化版）
 * 如果需要完全还原 Nuxt 中的视觉效果，可运行：npm run build:css
 * 使用 sass 将 assets/css/index.scss 编译覆盖本文件。
 */

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
  background-color: #f1f3fb;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1;
}

.page-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== 导航栏完整样式（完全还原 Navbar.vue）========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-top {
  background-color: #fff;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  padding-top: 0;
}

.navbar-top .page-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 0;
}

.navbar-top .left-section {
  display: flex;
  align-items: center;
  padding-top: 0;
}

.logo-component {
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 0;
}

.logo-component a {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
  padding-top: 0;
}

.logo-component .brand-logo {
  width: 196px;
  height: 39px;
  transition: transform 0.3s ease;
  object-fit: contain;
  display: block;
}

.logo-component .brand-logo:hover {
  transform: scale(1.05);
}

.navbar-top .right-section {
  display: flex;
  align-items: center;
}

.navbar-top .phone,
.navbar-top .email {
  display: flex;
  align-items: center;
}

.navbar-top .phone_icon,
.navbar-top .email_icon {
  width: 44px;
  height: 44px;
  margin-right: 18px;
}

.navbar-top .phone_icon img,
.navbar-top .email_icon img {
  width: 100%;
  height: 100%;
}

.navbar-top .phone_info,
.navbar-top .email_info {
  display: flex;
  flex-direction: column;
}

.navbar-top .phone_text,
.navbar-top .email_text {
  font-size: 16px;
  font-family: Roboto-Medium;
  font-weight: 400;
  color: #888888;
}

.navbar-top .phone_number,
.navbar-top .email_address {
  font-size: 18px;
  font-family: Roboto-Medium;
  font-weight: 500;
  color: #000000;
}

.navbar-top .line {
  width: 2px;
  height: 40px;
  background: #888888;
  margin: 0 40px 0 63px;
}

.navbar-top .join-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  width: 158px;
  height: 53px;
  background: #475ced;
  border-radius: 27px;
  font-size: 18px;
  font-family: PingFang HK, PingFang HK-500;
  text-align: center;
  line-height: 53px;
  color: #ffffff;
  margin-left: 56px;
  text-decoration: none;
}

.navbar-top .join-link .plus-icon {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  margin-left: 6px;
}

.navbar-top .join-link:hover {
  background-color: #302743;
  transform: translateY(-3px);
}

.navbar-main {
  background-color: #191423;
  height: 92px;
  display: flex;
  align-items: center;
  padding-top: 0;
}

.navbar-main .main-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  padding-top: 0;
}

.navbar-main .main-menu {
  border-bottom: none;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-main .menu-item {
  padding: 0 30px;
  display: flex;
  justify-content: start;
  align-items: center;
  line-height: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border-bottom: 4px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
  padding-top: 0;
  margin-top: 0;
}

.navbar-main .menu-item:nth-child(2) {
  padding: 0;
}

.navbar-main .menu-item-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.navbar-main .menu-item-text .ch {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  margin-top: 0;
}

.navbar-main .menu-item-text .en {
  font-size: 16px;
  font-family: Roboto-Regular;
  font-weight: 400;
  text-align: center;
  color: #888888;
  margin-top: 0;
}

.navbar-main .menu-item.is-active,
.navbar-main .menu-item:hover {
  border-bottom: 4px solid #474de3;
}

.navbar-main .menu-item.is-active .menu-item-text .ch,
.navbar-main .menu-item.is-active .menu-item-text .en,
.navbar-main .menu-item:hover .menu-item-text .ch,
.navbar-main .menu-item:hover .menu-item-text .en {
  color: #475ced !important;
}

.navbar-main .has-sub {
  position: relative;
  padding: 0 40px !important;
}

.navbar-main .has-sub .menu-item-text {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-right: 20px;
}

/* 下拉箭头图标 */
.navbar-main .has-sub .menu-item-text::after {
  content: '▼';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #ffffff;
  transition: all 0.3s ease;
  pointer-events: none;
}

.navbar-main .has-sub:hover .menu-item-text::after,
.navbar-main .has-sub.is-active .menu-item-text::after {
  color: #475ced;
  transform: translateY(-50%) rotate(180deg);
}

.navbar-main .has-sub:hover .menu-item-text .ch,
.navbar-main .has-sub:hover .menu-item-text .en,
.navbar-main .has-sub.is-active .menu-item-text .ch,
.navbar-main .has-sub.is-active .menu-item-text .en {
  color: #475ced !important;
}

/* 下拉菜单动画效果 */
.navbar-main .has-sub .sub-menu {
  display: block;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  min-width: 220px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  border-radius: 4px;
  overflow: hidden;
}

.navbar-main .has-sub:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.navbar-main .sub_menu_item {
  display: flex;
  align-items: center;
  height: 50px;
  border-bottom: 1px solid #f0f0f0;
  color: #0e0f11;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  padding: 0 18px;
  margin: 0;
  background-color: transparent;
}

.navbar-main .sub_menu_item:last-child {
  border-bottom: none;
}

.navbar-main .sub_menu_item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: #475ced;
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

/* 只有 hover 时才高亮 */
.navbar-main .sub_menu_item:hover {
  background-color: #f8f9fa;
  padding-left: 24px;
  color: #475ced;
}

.navbar-main .sub_menu_item:hover::before {
  transform: scaleY(1);
}

/* 只有选中状态时才高亮（非 hover 时也保持高亮） */
.navbar-main .sub_menu_item.selectRoutr,
.navbar-main .sub_menu_item[aria-current='page'] {
  color: #475ced;
  font-weight: 500;
  background-color: #f0f4ff;
  padding-left: 24px;
}

.navbar-main .sub_menu_item.selectRoutr::before,
.navbar-main .sub_menu_item[aria-current='page']::before {
  transform: scaleY(1);
}

/* 选中状态 + hover 时的样式（可以更突出） */
.navbar-main .sub_menu_item.selectRoutr:hover,
.navbar-main .sub_menu_item[aria-current='page']:hover {
  background-color: #e6efff;
  color: #475ced;
}

.navbar-main .sub_menu_icon {
  margin-right: 12px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.navbar-main .sub_menu_icon img {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.navbar-main .sub_menu_item:hover .sub_menu_icon {
  transform: translateX(3px);
}

.navbar-main .sub_menu_item:hover .sub_menu_icon img {
  transform: scale(1.1);
}

.navbar-main .sub_menu_text {
  font-size: 16px;
  font-family: Source-Han-Sans-CN;
  transition: color 0.3s ease;
}

/* ========== 移动端导航栏样式 ========== */
.mobile-navbar {
  display: none;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.mobile-navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.mobile-logo {
  display: flex;
  align-items: center;
}

.mobile-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-actions .icon-btn {
  font-size: 24px;
  cursor: pointer;
  color: #333;
  background: none;
  border: none;
  padding: 0;
}

.mobile-menu {
  background-color: #f5f5f5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu.active {
  max-height: 1000px;
}

.mobile-menu .collapse-item {
  border-bottom: 1px solid #eee;
}

.mobile-menu .collapse-header {
  padding: 0 15px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu .collapse-content {
  padding: 0;
  background-color: #fff;
}

.mobile-menu .collapse-content a {
  display: block;
  padding: 12px 30px;
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.mobile-menu .collapse-content a:hover {
  color: #475ced;
  background-color: #f0f0f0;
}

/* ========== 导航栏响应式样式 ========== */
@media (max-width: 992px) {
  .navbar .navbar-top,
  .navbar .navbar-main {
    display: none;
  }

  .navbar .mobile-navbar {
    display: block;
  }

  .navbar-top .join-link {
    margin-left: 20px;
  }

  .navbar-top .line {
    margin: 0 20px 0 30px;
  }
}

@media (max-width: 768px) {
  .logo-component .brand-logo {
    width: 100px;
    height: 20px;
  }

  .navbar-top .phone_text,
  .navbar-top .email_text {
    font-size: 12px;
  }

  .navbar-top .phone_number,
  .navbar-top .email_address {
    font-size: 14px;
  }

  .navbar-top .join-link {
    width: 120px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    margin-left: 10px;
  }

  .navbar-top .join-link .plus-icon {
    font-size: 16px;
  }
}

/* 首页主体结构简版（对应 .indexCss 部分） */
.indexCss .hero-section {
  margin-top: 180px;
}

.hero-carousel {
  width: 100%;
  height: 800px;
  overflow: hidden;
}

.carousel-content {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 992px) {
  .indexCss .hero-section {
    margin-top: 55px;
  }
  .hero-carousel {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .hero-carousel {
    height: 300px;
  }
}

.headerTitle {
  margin-bottom: 55px;
}

.headerTitle .chinese-text {
  font-size: 32px;
  font-weight: 400;
  color: #0e0f11;
  margin-bottom: 16px;
}

.headerTitle .english-text {
  font-size: 18px;
  color: #474de3;
}

.business-company {
  padding: 86px 0;
  background-color: #fff;
}

.business-company .company-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  gap: 40px;
}

.business-company .company_list .company_item {
  margin-bottom: 32px;
}

.business-company .company-title {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.business-company .caretRight_icon {
  margin-right: 12px;
  color: #474de3;
}

.business-company h2 {
  font-size: 24px;
}

.business-company h3 {
  font-size: 18px;
  color: #5b6170;
  font-weight: 400;
}

.business-company .company-bgc {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.business-company .company-bgc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-company .company_num {
  position: absolute;
  left: 0;
  bottom: -80px;
  width: 80%;
  max-width: 976px;
  height: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: -3px 0 20px rgba(152, 152, 152, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.business-company .company_num .num {
  font-size: 40px;
  color: #474de3;
  text-align: center;
}

.business-company .company_num .text {
  font-size: 20px;
  color: #0e0f11;
}

.business-company .company_num .device_line {
  width: 2px;
  height: 45%;
  background-color: #888;
}

@media (max-width: 992px) {
  .business-company {
    padding: 32px 0 80px;
  }
  .business-company .company-content {
    grid-template-columns: 1fr;
  }
  .business-company .company-bgc {
    height: 300px;
  }
  .business-company .company_num {
    width: 100%;
    height: 130px;
  }
}

.advantage-section {
  padding-top: 106px;
}

.advantageTitle .chinese-text,
.advantageTitle .english-text {
  text-align: center;
}

.advantage-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.statistic-item {
  background-color: #fff;
  border-radius: 12px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.statistic-item .circle_num {
  width: 54px;
  height: 54px;
  background: #475ced;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: -27px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
}

.statistic-icon {
  width: 44px;
  height: 44px;
  margin: 30px auto 40px;
}

.statistic-icon img {
  width: 100%;
  height: 100%;
}

.statistic-title h3 {
  font-size: 22px;
  margin: 0 0 12px;
}

.statistic-remark {
  font-size: 16px;
  color: #5b6170;
  text-align: left;
}

@media (max-width: 992px) {
  .advantage-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .advantage-container {
    grid-template-columns: 1fr;
  }
}

.solve-plan {
  padding: 80px 0 60px;
}

.solvePlanTitle .chinese-text,
.solvePlanTitle .english-text {
  text-align: center;
}

.plaSnwiper {
  margin-top: 106px;
}

/* 解决方案 Swiper 轮播样式（基于 PlaSnwiper.vue） */
.swiper-container {
  position: relative;
  width: 100%;
}

.my-swiper {
  width: 100%;
  height: 544px;
  padding: 0 12px;
}

@media (max-width: 992px) {
  .plaSnwiper {
    margin-top: 50px;
  }
  .my-swiper {
    height: 444px;
  }
}

@media (max-width: 576px) {
  .plaSnwiper {
    margin-top: 20px;
  }
  .my-swiper {
    height: 344px;
  }
}

/* 卡片样式 */
.slide-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 85%;
  position: relative;
}

.slide-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.slide-item img:hover {
  transform: scale(1.1);
}

.slide-item .card {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 144px;
  background: #ffffff;
  border-radius: 2px;
  padding: 2.5% 6%;
  display: flex;
  justify-content: space-between;
}

.slide-item .card .left {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
  width: 70%;
}

.slide-item .card .left h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  text-align: left;
  color: #0e0f11;
}

.slide-item .card .left p {
  font-size: 18px;
  color: #888888;
  text-align: left;
  margin: 0;
}

.slide-item .card .right {
  margin: auto 0;
}

.slide-item .card .right img {
  width: 48px;
  height: 48px;
  background: #ecefff;
  border-radius: 50%;
}

@media (max-width: 992px) {
  .slide-item .card {
    height: 110px;
  }
  .slide-item .card .left h3 {
    font-size: 20px;
  }
  .slide-item .card .left p {
    font-size: 16px;
  }
  .slide-item .card .right img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .slide-item .card {
    height: 80px;
  }
  .slide-item .card .left h3 {
    font-size: 18px;
  }
  .slide-item .card .left p {
    font-size: 14px;
  }
  .slide-item .card .right img {
    width: 32px;
    height: 32px;
  }
}

/* 分页点样式 */
.swiper-pagination-bullet {
  background: #c4c6cd;
  opacity: 1;
  transition: transform 0.2s ease;
}

.swiper-pagination-bullet:hover {
  transform: scale(1.3);
}

.swiper-pagination-bullet-active {
  width: 36px;
  height: 10px;
  background: linear-gradient(90deg, #007aff, #00c6ff);
  border-radius: 6px;
}

.display-section {
  padding: 86px 0;
  background-color: #fff;
}

.display-section .display-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.display-section .display-item {
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
}

.display-section .display-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .display-section .display-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .display-section .display-content {
    grid-template-columns: 1fr;
  }
}

/* 页脚简版样式（参考 Footer.vue） */
.footer {
  background-color: #191423;
  color: #fff;
}

.footer-main {
  padding: 90px 0 86px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 40px;
  align-items: flex-start;
}

.footer .logo_box {
  width: 176px;
  padding-bottom: 35px;
  border-bottom: 1px solid #726983;
}

.footer .logo_box .brand-logo {
  width: 176px;
  height: 35px;
}

.footer .logo-component {
  display: flex;
  align-items: flex-start;
}

.footer .logo-component a {
  display: flex;
  align-items: flex-start;
}

.routerList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-column h3 {
  font-size: 22px;
  margin-bottom: 40px;
  margin-top: 0;
}

.footer-links,
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 18px;
  color: #9f9da3;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #475ced;
  padding-left: 10px;
  font-weight: 500;
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.contact-info img {
  width: 34px;
  height: 34px;
  margin-right: 10px;
}

.contact-info span {
  font-size: 18px;
  color: #9f9da3;
}

.footer-bottom {
  background-color: #110f17;
  height: 121px;
  display: flex;
  align-items: center;
}

.footer-bottom .footer-nav {
  width: 100%;
  text-align: center;
  font-size: 16px;
}

@media (max-width: 992px) {
  .footer-main {
    padding: 40px 0 20px;
  }
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .routerList {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .routerList {
    grid-template-columns: 1fr;
  }
}

.indexCss .hero-section {
  margin-top: 180px;
  position: relative;
}
.indexCss .hero-section .carousel-content {
  height: 100%;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
}
.indexCss .hero-section .carousel-content .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.indexCss .hero-section .carousel-content .carousel-caption {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  width: 80%;
  max-width: 1440px;
  z-index: 2;
}
.indexCss .hero-section .carousel-content .carousel-caption .slide-title {
  text-align: left;
}
.indexCss .hero-section .carousel-content .carousel-caption .slide-title span {
  font-size: 68px;
  font-family: OPPOSANS-B;
  font-weight: 400;
  color: #ffffff;
  margin-right: 50px;
}
.indexCss .hero-section .carousel-content .carousel-caption .slide-subtitle {
  font-size: 30px;
  font-family: OPPOSANS-B;
  font-weight: 400;
  color: #ffffff;
  text-align: left;
  width: 50%;
  padding-bottom: 35px;
  border-bottom: 2px solid #ffffff;
  margin: 48px 0 32px;
}
.indexCss .hero-section .carousel-content .carousel-caption .slide-enText {
  font-size: 25px;
  font-family: Roboto-Regular;
  font-weight: 100;
  text-align: LEFT;
  color: #ffffff;
}
@media (max-width: 992px) {
  .indexCss .hero-section .el-carousel {
    height: 400px;
  }
  .indexCss .hero-section .el-carousel .el-carousel__container {
    height: 400px !important;
  }
  .indexCss .hero-section .el-carousel .carousel-caption .slide-title {
    text-align: left;
  }
  .indexCss .hero-section .el-carousel .carousel-caption .slide-title span {
    font-size: 24px;
    margin-right: 20px;
  }
  .indexCss .hero-section .el-carousel .carousel-caption .slide-subtitle {
    font-size: 16px;
    width: 95%;
    padding-bottom: 20px;
    margin: 24px 0 16px;
    border-bottom: 1px solid #ffffff;
  }
  .indexCss .hero-section .el-carousel .carousel-caption .slide-enText {
    font-size: 14px;
  }
}
@media (max-width: 573px) {
  .indexCss .hero-section {
    margin-top: 54px;
  }
  .indexCss .hero-section .el-carousel {
    height: 300px;
  }
  .indexCss .hero-section .el-carousel .el-carousel__container {
    height: 400px !important;
  }
  .indexCss .hero-section .el-carousel .carousel-caption {
    width: 90%;
    top: 20%;
  }
  .indexCss .hero-section .el-carousel .carousel-caption .slide-title {
    text-align: left;
  }
  .indexCss .hero-section .el-carousel .carousel-caption .slide-title span {
    font-size: 18px;
    margin-right: 20px;
  }
  .indexCss .hero-section .el-carousel .carousel-caption .slide-subtitle {
    font-size: 16px;
    width: 95%;
    padding-bottom: 20px;
    margin: 24px 0 16px;
  }
  .indexCss .hero-section .el-carousel .carousel-caption .slide-enText {
    font-size: 12px;
  }
}
.indexCss .headerTitle {
  margin-bottom: 55px;
}
.indexCss .headerTitle .chinese-text h1 {
  font-size: 32px;
}
.indexCss .headerTitle .chinese-text {
  font-size: 32px;
  font-family: OPPOSANS-B;
  font-weight: 400;
  text-align: LEFT;
  color: #0e0f11;
  margin-bottom: 16px;
  margin: auto;
}
.indexCss .headerTitle .english-text {
  font-size: 18px;
  font-family: Roboto-Regular;
  font-weight: 500;
  text-align: LEFT;
  color: #474de3;
  margin: auto;
}
@media (max-width: 992px) {
  .indexCss .headerTitle {
    margin-bottom: 20px;
  }
  .indexCss .headerTitle .chinese-text {
    font-size: 24px;
  }
  .indexCss .headerTitle .english-text {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .indexCss .headerTitle {
    margin-bottom: 10px;
  }
  .indexCss .headerTitle .chinese-text {
    font-size: 20px;
    text-align: center;
  }
  .indexCss .headerTitle .english-text {
    font-size: 14px;
    text-align: center;
  }
}
.indexCss .business-company {
  padding: 86px 0;
  background-color: #fff;
}
.indexCss .business-company .company-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.indexCss .business-company .company-content .company-introduction .company_list {
  padding-right: 8%;
  box-sizing: border-box;
}
.indexCss .business-company .company-content .company-introduction .company_list .company_item {
  margin-bottom: 64px;
}
.indexCss .business-company .company-content .company-introduction .company_list .company_item .company-title {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.indexCss .business-company .company-content .company-introduction .company_list .company_item .company-title .caretRight_icon {
  font-size: 19px;
  color: #474de3;
  margin: 10px 16px 0 0;
}
.indexCss .business-company .company-content .company-introduction .company_list .company_item .company-title h2 {
  font-size: 24px;
  font-family: PingFang HK, PingFang HK-500;
  font-weight: 500;
  text-align: LEFT;
  color: #0e0f11;
  margin-bottom: 0;
}
.indexCss .business-company .company-content .company-introduction .company_list .company_item h3 {
  font-size: 20px;
  font-family: Source Han Sans CN, Source Han Sans CN-400;
  font-weight: 400;
  text-align: LEFT;
  color: #5b6170;
}
.indexCss .business-company .company-content .company-bgc {
  width: 100%;
  height: 867px;
  overflow: hidden;
  margin-bottom: 173px;
}
.indexCss .business-company .company-content .company-bgc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.indexCss .business-company .company-content .company-bgc img:hover {
  transform: scale(1.05);
}
.indexCss .business-company .company-content .company_num {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 976px;
  height: 269px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: -3px 0px 19.7px 0px rgba(152, 152, 152, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.indexCss .business-company .company-content .company_num .device_num .num,
.indexCss .business-company .company-content .company_num .device_mj .num {
  font-size: 55px;
  font-family: Roboto-Medium;
  font-weight: 600;
  text-align: center;
  color: #474de3;
}
.indexCss .business-company .company-content .company_num .device_num .text,
.indexCss .business-company .company-content .company_num .device_mj .text {
  font-size: 24px;
  font-family: PingFang HK, PingFang HK-400;
  font-weight: 400;
  text-align: LEFT;
  color: #0e0f11;
}
.indexCss .business-company .company-content .company_num .device_line {
  width: 2px;
  height: 45%;
  background-color: #888888;
  margin: 0 40px;
}
@media (max-width: 992px) {
  .indexCss .business-company {
    padding: 32px 0 100px;
  }
  .indexCss .business-company .company-content {
    grid-template-columns: 1fr;
  }
  .indexCss .business-company .company-content .company-introduction .company_list {
    padding: 0;
  }
  .indexCss .business-company .company-content .company-introduction .company_list .company_item {
    margin-bottom: 30px;
  }
  .indexCss .business-company .company-content .company-introduction .company_list .company_item .company-title {
    margin-bottom: 14px;
  }
  .indexCss .business-company .company-content .company-introduction .company_list .company_item .company-title .caretRight_icon {
    margin: 5px 10px 0 0;
  }
  .indexCss .business-company .company-content .company-introduction .company_list .company_item .company-title h3 {
    font-size: 18px;
  }
  .indexCss .business-company .company-content .company-introduction .company_list .company_item p {
    font-size: 16px;
  }
  .indexCss .business-company .company-content .company-bgc {
    height: 400px;
    padding: 0;
  }
  .indexCss .business-company .company-content .company-bgc img {
    height: 100%;
  }
  .indexCss .business-company .company-content .company-bgc {
    margin-bottom: 30px;
  }
  .indexCss .business-company .company-content .company_num {
    width: 100%;
    height: 130px;
    bottom: -80px;
  }
  .indexCss .business-company .company-content .company_num .device_num .num,
  .indexCss .business-company .company-content .company_num .device_mj .num {
    font-size: 26px;
  }
  .indexCss .business-company .company-content .company_num .device_num .text,
  .indexCss .business-company .company-content .company_num .device_mj .text {
    font-size: 12px;
  }
}
@media (max-width: 573px) {
  .indexCss .business-company {
    padding: 32px 0 100px;
  }
  .indexCss .business-company .company-content {
    grid-template-columns: 1fr;
  }
  .indexCss .business-company .company-content .company-introduction .company_list {
    padding: 0;
  }
  .indexCss .business-company .company-content .company-introduction .company_list .company_item {
    margin-bottom: 10px;
  }
  .indexCss .business-company .company-content .company-introduction .company_list .company_item .company-title .caretRight_icon {
    margin: 0px 10px 0 0;
  }
  .indexCss .business-company .company-content .company-introduction .company_list .company_item .company-title {
    margin-bottom: 14px;
  }
  .indexCss .business-company .company-content .company-introduction .company_list .company_item .company-title h3 {
    font-size: 16px;
  }
  .indexCss .business-company .company-content .company-introduction .company_list .company_item p {
    font-size: 14px;
  }
  .indexCss .business-company .company-content .company-bgc {
    height: 400px;
    padding: 0;
  }
  .indexCss .business-company .company-content .company-bgc img {
    height: 100%;
  }
  .indexCss .business-company .company-content .company-bgc {
    margin-bottom: 30px;
  }
  .indexCss .business-company .company-content .company_num {
    width: 100%;
    height: 130px;
    bottom: -80px;
  }
  .indexCss .business-company .company-content .company_num .device_num .num,
  .indexCss .business-company .company-content .company_num .device_mj .num {
    font-size: 24px;
  }
  .indexCss .business-company .company-content .company_num .device_num .text,
  .indexCss .business-company .company-content .company_num .device_mj .text {
    font-size: 12px;
  }
}
.indexCss .advantage-section {
  padding-top: 106px;
}
.indexCss .advantage-section .advantageTitle .chinese-text,
.indexCss .advantage-section .advantageTitle .english-text {
  display: flex;
  justify-content: center;
  margin: auto;
}
.indexCss .advantage-section .advantage-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 130px;
}
.indexCss .advantage-section .advantage-container .statistic-item {
  background-color: #fff;
  border-radius: 12px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.indexCss .advantage-section .advantage-container .statistic-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.indexCss .advantage-section .advantage-container .statistic-item .circle_num {
  width: 54px;
  height: 54px;
  background: #475ced;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: -27px;
  transform: translateX(-50%);
}
.indexCss .advantage-section .advantage-container .statistic-item .circle_num span {
  font-size: 32px;
  font-family: Racing-Sans-One-Regular;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
}
.indexCss .advantage-section .advantage-container .statistic-item .statistic-icon {
  width: 44px;
  height: 44px;
  margin: 10px 0 50px;
}
.indexCss .advantage-section .advantage-container .statistic-item .statistic-icon img {
  width: 100%;
  height: 100%;
}
.indexCss .advantage-section .advantage-container .statistic-item .statistic-title h3 {
  font-size: 22px;
  font-family: PingFang HK, PingFang HK-500;
  font-weight: 500;
  text-align: LEFT;
  color: #0e0f11;
  margin: 0 auto 13px;
}
.indexCss .advantage-section .advantage-container .statistic-item .statistic-remark {
  font-size: 18px;
  font-family: Source-Han-Sans-CN;
  font-weight: 400;
  text-align: LEFT;
  color: #5b6170;
}
@media (max-width: 992px) {
  .indexCss .advantage-section {
    padding-top: 30px;
  }
  .indexCss .advantage-section .advantage-container {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }
  .indexCss .advantage-section .advantage-container .statistic-item {
    margin-top: 26px;
  }
  .indexCss .advantage-section .advantage-container .statistic-item .circle_num {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .indexCss .advantage-section .advantage-container .statistic-item .circle_num span {
    font-size: 28px;
  }
  .indexCss .advantage-section .advantage-container .statistic-item .statistic-icon {
    width: 30px;
    height: 30px;
    margin: 10px 0 20px;
  }
  .indexCss .advantage-section .advantage-container .statistic-item .statistic-title h3 {
    font-size: 18px;
  }
  .indexCss .advantage-section .advantage-container .statistic-item .statistic-remark {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .indexCss .advantage-section {
    padding-top: 20px;
  }
  .indexCss .advantage-section .advantage-container {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .indexCss .advantage-section .advantage-container .statistic-item {
    margin-top: 26px;
  }
  .indexCss .advantage-section .advantage-container .statistic-item .circle_num {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .indexCss .advantage-section .advantage-container .statistic-item .circle_num span {
    font-size: 24px;
  }
  .indexCss .advantage-section .advantage-container .statistic-item .statistic-icon {
    width: 30px;
    height: 30px;
    margin: 5px 0 10px;
  }
  .indexCss .advantage-section .advantage-container .statistic-item .statistic-title h3 {
    font-size: 16px;
  }
  .indexCss .advantage-section .advantage-container .statistic-item .statistic-remark {
    font-size: 14px;
  }
}
.indexCss .solve-plan {
  padding: 80px 0 60px;
}
.indexCss .solve-plan .solvePlanTitle .chinese-text,
.indexCss .solve-plan .solvePlanTitle .english-text {
  display: flex;
  justify-content: center;
  margin: auto;
}
.indexCss .solve-plan .plaSnwiper {
  margin-top: 106px;
}
@media (max-width: 992px) {
  .indexCss .solve-plan {
    padding: 30px 0 20px;
  }
  .indexCss .solve-plan .plaSnwiper {
    margin-top: 50px;
  }
}
@media (max-width: 573px) {
  .indexCss .solve-plan {
    padding: 20px 0 10px;
  }
  .indexCss .solve-plan .plaSnwiper {
    margin-top: 20px;
  }
}
.indexCss .display-section {
  padding: 86px 0;
  background-color: #fff;
}
.indexCss .display-section .display-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}
.indexCss .display-section .display-content .display-item {
  height: 421px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.indexCss .display-section .display-content .display-item img {
  width: 100%;
  height: 100%;
}
.indexCss .display-section .display-content .display-item .mbinfo {
  position: absolute;
  bottom: 0;
  height: 125px;
  width: 100%;
  padding: 0 32px 32px;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(98, 98, 98, 0), rgba(0, 0, 0, 0.68) 100%);
  border-radius: 0px 0px 12px 12px;
  display: flex;
  align-items: flex-end;
}
.indexCss .display-section .display-content .display-item .mbinfo p {
  font-size: 22px;
  font-family: PingFang HK, PingFang HK-500;
  font-weight: 500;
  text-align: LEFT;
  color: #ffffff;
}
@media (max-width: 992px) {
  .indexCss .display-section {
    padding: 50px 0;
  }
  .indexCss .display-section .display-content {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }
  .indexCss .display-section .display-content .display-item .mbinfo {
    height: 80px;
    line-height: 80px;
    padding: 0 15px;
  }
  .indexCss .display-section .display-content .display-item .mbinfo p {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .indexCss .display-section {
    padding: 30px 0;
  }
  .indexCss .display-section .display-content {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 20px;
  }
  .indexCss .display-section .display-content .display-item {
    height: 321px;
  }
  .indexCss .display-section .display-content .display-item .mbinfo {
    height: 60px;
    line-height: 60px;
    padding: 0 15px;
  }
  .indexCss .display-section .display-content .display-item .mbinfo p {
    font-size: 16px;
  }
}
.indexCss .news-section {
  padding: 80px 0;
}
.indexCss .news-section .news-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 29px;
}
.indexCss .news-section .news-content .main-news-item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}
.indexCss .news-section .news-content .main-news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.indexCss .news-section .news-content .main-news-item .news-image {
  height: 358px;
  overflow: hidden;
}
.indexCss .news-section .news-content .main-news-item .news-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.indexCss .news-section .news-content .main-news-item .news-image img:hover {
  transform: scale(1.05);
}
.indexCss .news-section .news-content .main-news-item .news-info {
  padding: 24px;
}
.indexCss .news-section .news-content .main-news-item .news-info h3 {
  font-size: 22px;
  font-family: PingFang HK, PingFang HK-500;
  font-weight: 500;
  text-align: LEFT;
  color: #0e0f11;
  line-height: 1.4;
}
.indexCss .news-section .news-content .main-news-item .news-info p {
  font-size: 16px;
  font-family: Source-Han-Sans-CN;
  font-weight: 400;
  text-align: LEFT;
  color: #5b6170;
  line-height: 1.6;
}
.indexCss .news-section .news-content .main-news-item .news-info .news-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 30px;
}
.indexCss .news-section .news-content .main-news-item .news-info .news-meta .btn {
  width: 104px;
  height: 41px;
  background: #ecefff;
  border-radius: 21px;
  line-height: 41px;
  font-size: 16px;
  font-family: Source-Han-Sans-CN;
  font-weight: 400;
  text-align: center;
  color: #5b6170;
  margin-right: 16px;
}
.indexCss .news-section .news-content .main-news-item .news-info .news-meta .jt img {
  width: 48px;
  height: 48px;
  background: #ecefff;
  border-radius: 50%;
}
.indexCss .news-section .news-more {
  text-align: center;
}
.indexCss .news-section .news-more .more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #163c7d;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid #163c7d;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.indexCss .news-section .news-more .more-link:hover {
  background-color: #163c7d;
  color: white;
}
@media (max-width: 992px) {
  .indexCss .news-section {
    padding: 50px 0;
  }
  .indexCss .news-section .news-content {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }
  .indexCss .news-section .news-content .main-news-item .news-image {
    height: 300px;
  }
  .indexCss .news-section .news-content .main-news-item .news-info {
    padding: 20px;
  }
  .indexCss .news-section .news-content .main-news-item .news-info h3 {
    font-size: 20px;
  }
  .indexCss .news-section .news-content .main-news-item .news-info p {
    font-size: 16px;
  }
  .indexCss .news-section .news-content .main-news-item .news-info .news-meta {
    margin-top: 20px;
  }
  .indexCss .news-section .news-content .main-news-item .news-info .news-meta .btn {
    width: 100px;
    height: 35px;
    font-size: 14px;
    line-height: 35px;
  }
  .indexCss .news-section .news-content .main-news-item .news-info .news-meta .jt img {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 576px) {
  .indexCss .news-section {
    padding-top: 20px;
  }
  .indexCss .news-section .news-content {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .indexCss .news-section .news-content .main-news-item .news-image {
    height: 240px;
  }
  .indexCss .news-section .news-content .main-news-item .news-info {
    padding: 20px;
  }
  .indexCss .news-section .news-content .main-news-item .news-info h3 {
    font-size: 16px;
  }
  .indexCss .news-section .news-content .main-news-item .news-info p {
    font-size: 12px;
  }
  .indexCss .news-section .news-content .main-news-item .news-info .news-meta {
    margin-top: 20px;
  }
  .indexCss .news-section .news-content .main-news-item .news-info .news-meta .btn {
    width: 80px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
  }
  .indexCss .news-section .news-content .main-news-item .news-info .news-meta .jt img {
    width: 30px;
    height: 30px;
  }
}
.indexCss .foot-section {
  position: relative;
}
.indexCss .foot-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.5s ease;
}
.indexCss .foot-section:hover .overlay {
  background-color: rgba(0, 0, 0, 0.3);
}
.indexCss .foot-section:hover .join-link {
  opacity: 1;
  animation: shake 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  12% {
    transform: rotate(-6deg);
  }
  25% {
    transform: rotate(6deg);
  }
  37% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(3deg);
  }
  62% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.indexCss .foot-section .foot-content {
  text-align: center;
  color: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.indexCss .foot-section .foot-content .foot_item {
  width: 100%;
  height: 415px;
}
.indexCss .foot-section .foot-content .foot_item img {
  width: 100%;
  height: 100%;
}
.indexCss .foot-section .join-link {
  position: absolute;
  left: 45.5%;
  top: 44%;
  background: #ebd47e;
  border-radius: 37px;
  transition: all 0.5s ease;
  font-size: 22px;
  font-family: Source-Han-Sans-CN;
  font-weight: 400;
  text-align: LEFT;
  color: #0e0f11;
  padding: 18px 40px;
  opacity: 0;
}
@media (max-width: 992px) {
  .indexCss .foot-section .foot-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .indexCss .foot-section .foot-content .foot_item {
    width: 100%;
    height: 300px;
  }
  .indexCss .foot-section .foot-content .foot_item img {
    width: 100%;
    height: 100%;
  }
  .indexCss .foot-section .join-link {
    opacity: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 30px;
    font-size: 18px;
  }
}
@media (max-width: 573px) {
  .indexCss .foot-section .foot-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .indexCss .foot-section .foot-content .foot_item {
    width: 100%;
    height: 240px;
  }
  .indexCss .foot-section .foot-content .foot_item img {
    width: 100%;
    height: 100%;
  }
  .indexCss .foot-section .join-link {
    opacity: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 8px 20px;
    font-size: 14px;
  }
}
