/**
 * 首页样式index.css
 */
/* banner图 */
.banner {
  background-image: none;
  text-align: center;
  position: relative;
  padding: 0;
}
.banner .swiper-container {
  width: 100%;
  height: 646px;
}

.banner .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.banner a {
  width: 100%;
  height: 100%;
}

.banner .swiper-container .banner_pagination {
  position: absolute;
  bottom: 72px;
  z-index: 2;
}

.banner .swiper-pagination-bullet {
  width: 46px;
  height: 4px;
  border-radius: 0;
  background-color: #ffffff;
}

/* 供应链模块 */
.supplyChain {
  padding: 20px 0;
  height: 730px;
  background-image: url("../img/index/supplyChain.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.supplyChain_Box {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.supplyChain_Box:hover {
  box-shadow: 0 0 20px 8px rgba(122, 156, 255, 0.3);
}
.supplyChain_img {
  position: relative;
  height: 530px;
  width: 100%;
  max-width: 1200px;
  background-image: url("../img/index/supplyChain_img.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-origin: content-box;
}
.lookVideo {
  cursor: pointer;
  position: absolute;
  bottom: 10%;
  left: 22.5%;
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 18px;
  color: #ffffff;
  background: linear-gradient(to right, #7a9cff, #9795ff, #da86ff, #ff90b5);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
/* 文字容器：溢出省略 */
.lookVideo .text-wrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
/* 图标固定显示 */
.lookVideo img {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  vertical-align: middle;
}
.lookVideo:hover {
  opacity: 0.8;
}
/* 视频弹窗基础样式 */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.video-modal.active {
  display: flex;
}

.video-container {
  position: relative;
  width: 80%;
  max-width: 900px;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 40px;
  cursor: pointer;
  font-family: Arial, sans-serif;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  /* 16:9 视频比例 */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* AI项目定制 */
.aiCustomize .module_aiCustomize {
  display: flex;
  align-items: center;
  height: 118px;
  background-image: url("../img/index/aiBackground.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.aiCustomize .module_title {
  margin: 0 auto;
  font-weight: 700;
  font-size: 36px;
  text-align: center;
}

.aiCustomize .aiBox {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 384px 192px 384px 192px;
  grid-template-rows: 192px 192px;
  grid-gap: 8px;
  width: 100%;
  max-width: calc(384px + 192px + 384px + 192px + 8px * 3);
  margin: 0 auto;
}

.aiCustomize .aiBox .aiBox_item:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 384px;
  height: 384px;
  background-size: 384px 384px !important;
  min-width: 384px;
}

.aiCustomize .aiBox .aiBox_item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  width: 183px;
  height: 183px;
  background-size: 183px 183px !important;
  min-width: 183px;
}

.aiCustomize .aiBox .aiBox_item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
  width: 183px;
  height: 183px;
  background-size: 183px 183px !important;
  min-width: 183px;
}

.aiCustomize .aiBox .aiBox_item:nth-child(4) {
  grid-column: 3;
  grid-row: 1 / span 2;
  width: 384px;
  height: 384px;
  background-size: 384px 384px !important;
  min-width: 384px;
}

.aiCustomize .aiBox .aiBox_item:nth-child(5) {
  grid-column: 4;
  grid-row: 1;
  width: 183px;
  height: 183px;
  background-size: 183px 183px !important;
  min-width: 183px;
}

.aiCustomize .aiBox .aiBox_item:nth-child(6) {
  grid-column: 4;
  grid-row: 2;
  width: 183px;
  height: 183px;
  background-size: 183px 183px !important;
  min-width: 183px;
}

.aiCustomize .aiBox_two {
  margin-top: 25px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: space-evenly;
  gap: 16px;
  flex-wrap: wrap;
}
.aiCustomize .aiBox_two .aiBox_item {
  width: 282px;
  height: 282px;
  background-size: 282px 282px !important;
  min-width: 282px;
}

.aiCustomize .aiBox_item {
  position: relative;
  display: flex;
  cursor: pointer;
  background-repeat: no-repeat !important;
  background-position: center top !important;
  box-sizing: border-box;
  overflow: hidden;
}

.aiCustomize .aiBox_item .text-mask-wrap {
  padding: 12px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: calc(100% / 4.2);
  background: rgba(0, 0, 0, 0.3);
  transition: height 0.3s ease-in-out;
  box-sizing: border-box;
  /* 新增：弹性布局，垂直方向排列 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.aiCustomize .aiSpan {
  font-weight: 700;
  width: 100%;
  color: #ffffff;
  font-size: 16px;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.aiCustomize .aiSpanTwo {
  width: 100%;
  margin-top: 8px;
  color: #cccccc;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.aiCustomize .aiSpanThree {
  width: 100%;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  margin-top: auto;
  opacity: 0;
  max-height: none;
}

.aiCustomize .aiBox_item:hover .text-mask-wrap {
  height: 50%;
  background: rgba(0, 0, 0, 0.5);
}

.aiCustomize .aiBox_item:hover .aiSpanTwo {
  max-height: 120px;
  opacity: 1;
}

.aiCustomize .aiBox_item:hover .aiSpanThree {
  opacity: 1;
}
.aiCustomize .aiBox_item:hover .aiSpan,
.aiCustomize .aiBox_item:hover .aiSpanTwo {
  font-weight: 700;
}
/* 新闻动态 */

.news {
  margin-top: 137px;
}
.news .module_title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  padding: 0 0 60px 0;
}
.news .pc_news {
  padding-bottom: 100px;
}

.news_main {
  display: flex;
  gap: 12px;
  margin: 0 auto;
}

.news_main .news_item:hover {
  box-shadow: 0 4px 10px 0 #0000001a;
}
.news_main .news_item:hover .news_box .news_title {
  color: #204dc5;
}
.news_main .news_item:hover .news_box .newsTime {
  color: #204dc5;
}
.news_main .news_item {
  width: calc(33.3% - 6px);
  margin: 0;
}

.news_side {
  width: calc(100% / 3);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto;
}

.news_side .news_item_simple {
  flex: 1;
  background: #fbfbfb;
  width: 100%;
}

.news_main .news_item .newsImg {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.news_main .news_item .news_box {
  padding: 28px;
  background: #fbfbfb;
}
.news_main .news_item .news_box .newsTime {
  font-size: 16px;
  font-weight: 400;
  margin-top: 17px;
  color: #333333;
}
.news_main .news_item .news_box .news_title {
  height: 48px;
  font-weight: 700;
  font-size: 18px;
  color: #333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-all;
}
.news_main .news_item .news_box .news_more {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news_main .news_item .news_box .news_more .stick-circle {
  width: 50px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
}
.news_main .news_item .news_box .news_more .stick-circle::before {
  content: "";
  width: 40%;
  height: 2px;
  background-color: #333;
}
.news_main .news_item .news_box .news_more .stick-circle::after {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #333;
  border-radius: 50%;
  background-color: #fff;
  box-sizing: border-box;
}
.news_main .news_item .news_box .new_info .new_con {
  height: calc(24px * 3);
  margin-top: 26px;
  color: #999999;
  font-weight: 400;
  margin-bottom: 29px;
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-all;
  max-height: calc(24px * 3);
}

.news .pc_news .news_con .newsLook {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

.news_side .news_item_simple:hover {
  box-shadow: 0 4px 10px 0 #0000001a;
}
.news_side .news_item_simple:hover .news_title_simple {
  color: #204dc5;
}
.news_side .news_item_simple:hover .newsTime_simple {
  color: #204dc5;
}
.news_side .news_item_simple a {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
  padding: 0 15px;
  text-decoration: none;
}
.news_side .news_item_simple .news_title_simple {
  font-weight: 700;
  font-size: 16px;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-all;
  margin-bottom: 4px;
}
.news_side .news_item_simple .newsTime_simple {
  font-size: 14px;
  color: #666;
}
/* 发展历程 */
.developHistory {
  margin-top: 120px;
  background-color: #f7f9ff;
}

.developHistory .developHistory_nav {
  position: relative;
  display: flex;
  margin: 66px auto 0;
  justify-content: center;
}

.developHistory .developHistory_nav::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 9px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}

.developHistory .developHistory_yearNav {
  position: relative;
  color: #204dc5;
  width: 40px;
  opacity: 1;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  height: auto;
  background-color: transparent;
}

.developHistory .developHistory_yearNav + .developHistory_yearNav {
  margin-left: 88px;
}

.developHistory .developHistory_yearNav.swiper-pagination-bullet-active {
  font-weight: bold;
}

.developHistory .developHistory_yearNav::after {
  display: block;
  margin: 0 auto;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(32, 77, 197, 0.5);
  background-color: rgba(32, 77, 197, 0.5);
}

.developHistory .developHistory_yearNav.swiper-pagination-bullet-active::after {
  background-color: #204dc5;
}

.developHistory .developHistory_info {
  color: #333333;
  min-height: 400px;
  padding-top: 32px;
}

.developHistory .swiper-slide {
  width: 394px;
  /* max-width: 394px;
  width: 25vw; */
}

.developHistory .developHistory_year {
  font-size: 28px;
  font-weight: bold;
  line-height: 49px;
  border-bottom: 1px solid #e1e2e9;
}

.developHistory .swiper-slide-active .developHistory_year {
  color: #4269ff;
}

.developHistory .developHistory_monthInfo {
  padding: 16px 20px;
  font-size: 16px;
  line-height: 24px;
}

.developHistory .developHistory_monthInfo > li {
  display: flex;
}

.developHistory .developHistory_month {
  width: 50px;
  min-width: 50px;
}

.developHistory .developHistory_monthInfo > li + li {
  margin-top: 16px;
}

/* 营销板块定制 */
.marketCustom {
  padding: 89px 0;
  background: url("../img/index/marketCustom.png") no-repeat center/cover;
}

.marketCustom .module_marketCustom {
  padding-top: 8px;
}

.marketCustom .marketCustom_list {
  padding-top: 76px;
  height: auto;
  overflow: hidden;
}

.marketCustom .marketCustom_item {
  display: block;
  width: 25%;
  height: 526px;
  background: #fff;
  box-shadow: 0 4px 16px 0 #32323233;
  float: left;
  border-bottom: 20px solid #ff5c00;
  background: url("../img/customServices/solution01.png") no-repeat top
    center/100%;
}

.marketCustom .marketCustom_con {
  width: 100%;
  height: 100%;
  position: relative;
}

.marketCustom .marketCustom_con_mark {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.marketCustom .marketCustom_con_desc {
  font-size: 100px;
  color: #fff;
  font-weight: HarmonyOS Sans Condensed;
  text-align: center;
  margin-top: 210px;
}

.marketCustom .marketCustom_con_p {
  padding: 0 20px 26px;
}

.marketCustom .marketCustom_con_p p {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  line-height: 32px;
}

.marketCustom .marketCustom_con_p span {
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  padding-top: 12px;
}

.marketCustom .marketCustom_item:hover .marketCustom_con_mark {
  background: 0;
}

.marketCustom .marketCustom_item:hover .marketCustom_con {
  display: none;
}

.marketCustom .marketCustom_item:nth-child(2) {
  border-bottom-color: #1bd1a5;
  background: url("../img/customServices/solution02.png") no-repeat top
    left/100%;
}

.marketCustom .marketCustom_item:nth-child(3) {
  border-bottom-color: #ca1513;
  background: url("../img/customServices/solution03.png") no-repeat top
    left/100%;
}

.marketCustom .marketCustom_item:nth-child(4) {
  border-bottom-color: #4269ff;
  background: url("../img/customServices/solution04.png") no-repeat top
    left/100%;
}

/* 移动端 */
@media screen and (max-width: 768px) {
  /* banner图 */
  .banner .swiper-container {
    /* height: calc(100vh - 5.6rem); */
    height: 26rem;
  }

  .banner .swiper-container .banner_pagination {
    bottom: 2rem;
  }

  .banner .swiper-pagination-bullet {
    width: 2rem;
    height: 0.2rem;
  }

  /* 供应链模块 */
  .supplyChain {
    height: 33rem;
  }
  .lookVideo {
    padding: 0.5rem;
    bottom: 32%;
    left: 16.5%;
    width: 45%;
    font-size: 1rem;
  }
  .lookVideo span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* 案例展示 */
  .case-swiper .swiper-slide .type-3-group .phone-container {
    right: 1% !important;
    top: 20% !important;
    bottom: auto !important;
    height: 14.6rem !important;
    width: 6.3rem !important;

    z-index: 3 !important;
  }
  .inner-swiper-container {
    margin: 1rem 2rem 0 1rem;
    width: 26rem;
    height: 19rem !important;
  }

  .rightBlock .effect {
    display: none;
  }
  .pc-container {
    width: 25rem;
  }
  .phone-container {
    position: absolute !important;
    top: 20px;
    width: 6.3rem !important;
    height: 14.6rem !important;
  }
  .phone-container .backImg {
    width: 90% !important;
    left: 5%;
    height: 85% !important;
  }

  .device-frame {
    height: auto !important;
    transform: scale(1);
    transform-origin: center;
  }
  .swiper-container
    .swiper-slide
    .swiper-slide__content
    .leftBlock
    .firstdivOne {
    font-size: 1.5rem;
  }
  .swiper-container
    .swiper-slide
    .swiper-slide__content
    .leftBlock
    .firstdivTwo {
    font-size: 1.2rem;
  }
  .swiper-container
    .swiper-slide
    .swiper-slide__content
    .leftBlock
    .firstdivOne {
    margin-top: 12px;
    margin-bottom: 0;
  }
  .twoBlock {
    position: relative;
    margin-top: 3.35rem;
    margin-bottom: 6.4rem;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .twoBlock .service_oneSpan {
    margin: 18px 18px 0 20px;
  }
  .service_case_swiper_container {
    margin-bottom: 0;
  }
  .service_circle {
    position: absolute;
    right: 0;
    margin-right: 0.3rem;
    top: 0;
    width: 1rem;
    height: 1rem;
    margin-top: 1rem;
    background-color: #4269ff;
  }
  .service_case.active .service_circle {
    background-color: #ffffff;
  }
  .twoBlock h1 {
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    color: #333333;
  }

  .twoBlock .swiper-container {
    width: 90.1%;
    margin-top: 2.35rem;
  }

  .twoBlock .swiper-container .swiper-slide {
    width: 100%;
  }

  .twoBlock .swiper-container .swiper-slide .firstdivimg {
    width: 7rem;
    height: 4rem;
    background: #ffffff;
  }

  .twoBlock .swiper-container .swiper-slide .firstdivimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .twoBlock .swiper-container .swiper-slide .seconddivimg {
    width: 7.65rem;
    height: 6.55rem;
    left: 75%;
  }

  .twoBlock .swiper-container .swiper-slide .seconddivimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  .swiper-container .swiper-slide .secondchange {
    margin-top: 0;
    font-weight: 700;
    width: 80%;
    font-size: 1.3rem;
    text-align: left;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: calc(1.3rem * 1.5 * 2);
  }
  .swiper-container .swiper-slide .swiper-slide__content .leftBlock {
    width: 100%;
  }
  .swiper-container .swiper-slide .swiper-slide__content {
    display: block;
  }
  .swiper-container .swiper-slide .swiper-slide__content .leftBlock .firstdiv {
    color: #333333;
    font-weight: 400;
    width: 100%;
    font-size: 1.2rem;
    margin: 12px 0;
    text-align: left;
    line-height: 2.1rem;
    max-height: calc(2.1rem * 3);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .swiper-container .swiper-slide .swiper-slide__content .leftBlock .thirddiv {
    color: #333333;
    font-weight: 400;
    width: 100%;
    font-size: 1.2rem;
    line-height: 2.3rem;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;

    max-height: calc(2.3rem * 3);
    text-align: left;
    text-align-last: auto;
  }

  .swiper-container .swiper-slide .swiper-slide__content .leftBlock .seconddiv {
    color: #4269ff;
    font-weight: 400;
    margin: 5px 0;
    font-family: Microsoft YaHei;
    font-size: 1.4rem;
    text-align: left;
    line-height: 2.1rem;
  }
  .useCase_nav {
    display: none;
    position: absolute;
    top: 30%;
    cursor: pointer;
    color: #4269ff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }

  .useCase_nav:hover {
    border-color: #4269ff;
  }

  .useCase_next {
    right: 0;
  }

  .useCase_prev {
    left: 0;
  }

  .swiper_pagination {
    margin-top: 0;
    position: relative;
    left: -39%;
  }

  .swiper_pagination .swiper-pagination-bullet {
    width: 1.4rem;
    border-radius: 0;
    height: 0.1rem;
    background: #4269ff;
  }

  .swiper_pagination .swiper-pagination-bullet-active {
    height: 0.2rem;
    background: #4269ff;
  }

  .service_case_con {
    gap: 10px;
    justify-content: flex-start;
    padding-bottom: 10px;
  }

  .service_case {
    height: 8rem !important;
    width: 6.1rem !important;
    padding: 0.2rem !important;
    margin-bottom: 15px;
    margin-left: 0.1rem;
  }

  .service_img {
    width: 2rem;
    height: 2rem;
    margin-right: 0 !important;
  }

  .service_span {
    margin-top: 1rem;
    font-size: 1rem;
  }

  /* AI */
  .aiCustomize .module_aiCustomize {
    display: flex;
    align-items: center;
    height: 6.293rem;
    background-image: url("../img/index/aiBackground.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .aiCustomize .module_title {
    margin: 0 auto;
    font-weight: 700;
    font-size: 1.92rem;
    text-align: center;
  }

  .aiCustomize .maxwidth {
    width: 100%;
    padding: 0 0.853rem;
    box-sizing: border-box;
    margin: 0 auto;
  }

  .aiCustomize .aiBox {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 61.44rem;
    margin: 0 auto;
    box-sizing: border-box;
    display: block;
    overflow: hidden;
  }

  .aiCustomize .aiBox .aiBox_item:nth-child(1) {
    margin-left: 1rem;
    float: left;
    width: 20.48rem;
    height: 20.48rem;
    background-size: 20.48rem 20.48rem !important;
    margin-right: 0.427rem;
    min-width: 20.48rem;
    position: relative;
  }

  .aiCustomize .aiBox .aiBox_item:nth-child(2),
  .aiCustomize .aiBox .aiBox_item:nth-child(3) {
    margin-left: 2rem;
    float: left;
    width: 9.76rem;
    height: 9.76rem;
    background-size: 9.76rem 9.76rem !important;
    min-width: 9.76rem;
    clear: none;
  }
  .aiCustomize .aiBox .aiBox_item:nth-child(2) {
    margin-bottom: 0.427rem;
  }

  .aiCustomize .aiBox .aiBox_item:nth-child(3) {
    margin-bottom: 0.427rem;
  }

  .aiCustomize .aiBox .aiBox_item:nth-child(4) {
    margin-left: 1rem;
    float: left;
    width: 20.48rem;
    height: 20.48rem;
    background-size: 20.48rem 20.48rem !important;
    margin-right: 0.427rem;
    min-width: 20.48rem;
    position: relative;
    clear: both;
  }

  .aiCustomize .aiBox .aiBox_item:nth-child(5),
  .aiCustomize .aiBox .aiBox_item:nth-child(6) {
    margin-left: 2rem;
    float: left;
    width: 9.76rem;
    height: 9.76rem;
    background-size: 9.76rem 9.76rem !important;
    min-width: 9.76rem;
    clear: none;
    margin-top: 0;
  }
  .aiCustomize .aiBox .aiBox_item:nth-child(5) {
    margin-bottom: 0.427rem;
  }

  .aiCustomize .aiBox .aiBox_item:nth-child(6) {
    margin-bottom: 1.333rem;
  }

  .aiCustomize .aiBox_two {
    margin-top: 1.333rem;
    width: 100%;
    max-width: 61.44rem;
    margin: 0 auto;
    box-sizing: border-box;
    clear: both;
    padding-top: 1rem;
  }

  .aiCustomize .aiBox_two .aiBox_item:nth-child(1),
  .aiCustomize .aiBox_two .aiBox_item:nth-child(2) {
    float: left;
    width: 15.04rem;
    height: 15.04rem;
    background-size: 15.04rem 15.04rem !important;
    margin-right: 0.427rem;
    min-width: 15.04rem;
    margin-bottom: 0.427rem;
  }

  .aiCustomize .aiBox_two .aiBox_item:nth-child(3),
  .aiCustomize .aiBox_two .aiBox_item:nth-child(4) {
    float: left;
    width: 15.04rem;
    height: 15.04rem;
    background-size: 15.04rem 15.04rem !important;
    margin-right: 0.427rem;
    min-width: 15.04rem;
    clear: both;
  }
  .aiCustomize .aiBox_two .aiBox_item:nth-child(4) {
    clear: none;
  }

  .aiCustomize .aiBox_item {
    position: relative;
    display: flex;
    cursor: pointer;
    background-repeat: no-repeat !important;
    background-position: center top !important;
    box-sizing: border-box;
    overflow: hidden;
  }

  .aiCustomize .aiBox_item .text-mask-wrap {
    padding: 0.64rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: calc(100% / 4.2);
    background: rgba(0, 0, 0, 0.3);
    transition: height 0.3s ease-in-out;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .aiCustomize .aiSpan {
    font-weight: 700;
    width: 100%;
    color: #ffffff;
    font-size: 0.853rem;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .aiCustomize .aiSpanTwo {
    width: 100%;
    margin-top: 0.427rem;
    color: #cccccc;
    font-size: 0.853rem;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }

  .aiCustomize .aiSpanThree {
    width: 100%;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.853rem;
    line-height: 1.4;
    text-align: left;
    margin-top: auto;
    opacity: 0;
    max-height: none;
  }

  .aiCustomize .aiBox_item:hover .text-mask-wrap {
    height: 50%;
    background: rgba(0, 0, 0, 0.5);
  }

  .aiCustomize .aiBox_item:hover .aiSpanTwo {
    max-height: 6.4rem;
    opacity: 1;
  }

  .aiCustomize .aiBox_item:hover .aiSpanThree {
    opacity: 1;
  }

  .aiCustomize .aiBox_item:hover .aiSpan,
  .aiCustomize .aiBox_item:hover .aiSpanTwo {
    font-weight: 700;
  }

  /* 新闻动态 */
  .news {
    margin-top: 6rem;
  }
  .news .module_title {
    margin-bottom: rem;
    font-size: 2rem;
    padding: 0 0 2rem 0;
  }
  .news .pc_news {
    padding-bottom: 1rem;
  }
  .news .pc_news .news_con {
    display: flex;
    flex-direction: column;
    gap: 0.096rem;
  }

  .news_main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 90%;
  }
  .news_main .news_item:hover {
    box-shadow: 0 0.032rem 0.08rem 0 #0000001a;
  }
  .news_main .news_item:hover .news_box .news_title {
    color: #204dc5;
  }
  .news_main .news_item {
    width: 100%;
    margin: 0 0 0.096rem 0;
  }
  .news_main .news_item .newsImg {
    height: 14.76rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .news_main .news_item .news_box {
    padding: 1rem;
    background: #fbfbfb;
  }
  .news_main .news_item .news_box .newsTime {
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 0.136rem;
    color: #333333;
  }
  .news_main .news_item .news_box .news_title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-all;
  }
  .news_main .news_item .news_box .news_more {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .news_main .news_item .news_box .news_more .stick-circle {
    width: 3rem;
    height: 0.1rem;
    position: relative;
    display: flex;
    align-items: center;
  }
  .news_main .news_item .news_box .news_more .stick-circle::before {
    content: "";
    width: 40%;
    height: 0.1rem;
    background-color: #333;
  }
  .news_main .news_item .news_box .news_more .stick-circle::after {
    content: "";
    width: 1rem;
    height: 1rem;
    border: 0.2rem solid #333;
    border-radius: 50%;
    background-color: #fff;
    box-sizing: border-box;
  }
  .news_main .news_item .news_box .new_info .new_con {
    height: calc(1.5rem * 3);
    margin-top: 1rem;
    color: #999999;
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.5rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-all;
  }

  .news .pc_news .news_con .newsLook {
    font-weight: 400;
    font-size: 1.2rem;
    color: #333333;
  }
  .news_side {
    background-color: #fbfbfb;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  .news_side .news_item_simple:hover {
    box-shadow: 0 0.032rem 0.08rem 0 #0000001a;
  }
  .news_side .news_item_simple:hover .news_title_simple {
    color: #204dc5;
  }
  .news_side .news_item_simple {
    flex: none;
    background: #fbfbfb;
    padding: 1rem;
    margin-bottom: 0.064rem;
  }
  .news_side .news_item_simple a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 0.12rem;
    text-decoration: none;
  }
  .news_side .news_item_simple .news_title_simple {
    font-weight: 700;
    font-size: 1.5rem;
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-all;
    margin-bottom: 0.032rem;
  }
  .news_side .news_item_simple .newsTime_simple {
    font-size: 1.5rem;
    color: #666;
  }

  /* 发展历程 */
  .developHistory {
    margin-top: 5rem;
    background-color: #ffffff;
  }

  .developHistory .developHistory_navCon {
    padding: 3.9rem 0 4.1rem 0 !important;
  }

  .developHistory .developHistory_nav {
    max-width: 33.4rem;
    margin: 2.7rem auto 0;
  }

  .developHistory .developHistory_nav::before {
    left: 2rem;
    right: 2rem;
    bottom: 0.7rem;
  }

  .developHistory .developHistory_yearNav {
    width: 4rem;
    font-size: 1.4rem;
    line-height: 3.7rem;
  }

  .developHistory .developHistory_yearNav + .developHistory_yearNav {
    margin-left: 2rem;
  }

  .developHistory .developHistory_yearNav::after {
    width: 1.4rem;
    height: 1.4rem;
  }

  .developHistory .developHistory_info {
    padding-top: 2.4rem;
    min-height: auto;
    margin-bottom: 2rem;
  }

  .developHistory .swiper-slide {
    width: 26.9rem;
    min-height: 32.3rem;
    padding: 0 1.4rem;
    border-radius: 0.5rem;
    background-color: #f7f8fa;
  }

  .developHistory .developHistory_year {
    font-size: 2rem;
    line-height: 4.4rem;
  }

  .developHistory .developHistory_monthInfo {
    padding: 1.2rem 0;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }

  .developHistory .developHistory_monthInfo > li {
    display: flex;
  }

  .developHistory .developHistory_month {
    width: 8.2rem;
    min-width: 4.2rem;
  }

  .developHistory .developHistory_monthInfo > li + li {
    margin-top: 1.2rem;
  }

  /* 营销板块定制 */
  .marketCustom {
    padding: 2.6rem 0 3rem;
  }

  .marketCustom .module_marketCustom {
    padding-top: 0;
  }

  .marketCustom .marketCustom_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 0;
    margin: 0 3.3rem;
  }

  .marketCustom .marketCustom_item {
    margin-top: 2.4rem;
    width: 14.3rem;
    height: 26.3rem;
    box-shadow: 0 2px 4px 0 rgba(95, 95, 95, 0.29);
    border-bottom-width: 1rem;
  }

  .marketCustom .marketCustom_item .marketCustom_con {
    animation-name: showImg;
    animation-duration: 5s;
    animation-fill-mode: forwards;
    animation-play-state: running;
    animation-iteration-count: infinite;
  }

  .marketCustom .marketCustom_item:nth-child(2) .marketCustom_con {
    animation-name: showImg2;
  }

  .marketCustom .marketCustom_item:nth-child(3) .marketCustom_con {
    animation-name: showImg3;
  }

  .marketCustom .marketCustom_item:nth-child(4) .marketCustom_con {
    animation-name: showImg4;
  }

  .marketCustom .marketCustom_con_desc {
    font-size: 5rem;
    margin-top: 10.8rem;
  }

  .marketCustom .marketCustom_con_p {
    padding: 0 1rem 1.2rem;
  }

  .marketCustom .marketCustom_con_p p {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }

  .marketCustom .marketCustom_con_p span {
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.2rem;
    padding-top: 0.35rem;
  }

  @keyframes showImg {
    0% {
      opacity: 1;
    }

    20% {
      opacity: 0;
    }

    40% {
      opacity: 1;
    }
  }

  @keyframes showImg2 {
    20% {
      opacity: 1;
    }

    40% {
      opacity: 0;
    }

    60% {
      opacity: 1;
    }
  }

  @keyframes showImg3 {
    40% {
      opacity: 1;
    }

    60% {
      opacity: 0;
    }

    80% {
      opacity: 1;
    }
  }

  @keyframes showImg4 {
    60% {
      opacity: 1;
    }

    80% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }
}
