﻿

/* ==================== 重置样式 Start ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  outline: none;
}

html {}

html.no-scroll {
  overflow: hidden;
}

body::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background: #ececec;
  border-radius: 100px;
}

body::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: #333;
  cursor: pointer;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

ul,
li {
  list-style: none;
}

input,
button {
  outline: 0 none;
  border: none;
  background-color: transparent;
}

button {
  cursor: pointer;
}

/* 图片统一动画 */
.mxw-image {
  overflow: hidden;
}

.mxw-image img {
  transition: transform 0.4s;
  width: 100%;
}

.mxw-image:hover img {
  transform: scale(1.1);
}

main,
header,
footer,
.mxw-box,
section {
  font-size: 16px;
}

main {
  position: relative;
  z-index: 10;
}

section {
  position: relative;
  z-index: 9;
}

/* ==================== 重置样式 End ==================== */
/* ==================== 通用容器大小 Start ==================== */
.mxw-box {
  width: 1440px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 749px) {
  .mxw-box {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ==================== 通用容器大小 End ==================== */
/* ==================== 通用断点隐藏 Start ==================== */
@media screen and (max-width: 749px) {
  .m-hide {
    display: none !important;
  }
}

@media screen and (min-width: 750px) {
  .pc-hide {
    display: none !important;
  }
}

/* ==================== 通用断点隐藏 End ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 750px) {

  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .u-row-2>.u-col {
    width: 49%;
  }

  .u-row-2>.u-col:nth-child(2n) {
    margin-left: 2%;
  }

  .u-row-2>.u-col:nth-child(2)~.u-col {
    margin-top: 2%;
  }

  .u-row-3>.u-col {
    width: 32%;
  }

  .u-row-3>.u-col:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }

  .u-row-3>.u-col:nth-child(3)~.u-col {
    margin-top: 2%;
  }

  .u-row-4>.u-col {
    width: 23.5%;
    margin-right: 2%;
  }

  .u-row-4>.u-col:nth-child(4n) {
    margin-right: 0%;
  }

  .u-row-4>.u-col:nth-child(4)~.u-col {
    margin-top: 2%;
  }

  .u-row-5>.u-col {
    width: 18.4%;
    margin-right: 2%;
  }

  .u-row-5>.u-col:nth-child(5n) {
    margin-right: 0%;
  }

  .u-row-5>.u-col:nth-child(5)~.u-col {
    margin-top: 2%;
  }

  .u-row-6>.u-col {
    width: 15.5%;
    margin-right: 1.4%;
  }

  .u-row-6>.u-col:nth-child(6n) {
    margin-right: 0%;
  }

  .u-row-6>.u-col:nth-child(6)~.u-col {
    margin-top: 1.4%;
  }
}

@media screen and (max-width: 749px) {

  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .u-row-2 .u-col {
    width: 100%;
  }

  .u-row-2 .u-col:nth-child(1)~.u-col {
    margin-top: 4%;
  }

  .u-row-3>.u-col,
  .u-row-4>.u-col,
  .u-row-5>.u-col,
  .u-row-6>.u-col {
    width: 48%;
  }

  .u-row-3>.u-col:nth-child(2n),
  .u-row-4>.u-col:nth-child(2n),
  .u-row-5>.u-col:nth-child(2n),
  .u-row-6>.u-col:nth-child(2n) {
    margin-left: 4%;
  }

  .u-row-3>.u-col:nth-child(2)~.u-col,
  .u-row-4>.u-col:nth-child(2)~.u-col,
  .u-row-5>.u-col:nth-child(2)~.u-col,
  .u-row-6>.u-col:nth-child(2)~.u-col {
    margin-top: 4%;
  }
}

/* ==================== 通用布局 end ==================== */
/* ==================== 通用文本行数限制 start ==================== */
.u-line-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.u-line-2 {
  -webkit-line-clamp: 2;
}

.u-line-3 {
  -webkit-line-clamp: 3;
}

.u-line-4 {
  -webkit-line-clamp: 4;
}

.u-line-5 {
  -webkit-line-clamp: 5;
}

.u-line-6 {
  -webkit-line-clamp: 6;
}

.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

/* ==================== 通用文本行数限制 end ==================== */
.index-main {
  background-color: #fff;
}

/* ==================== 首页 - 板块一 Start ==================== */
.index2-section1 {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #fff;
}

.index2-section1 .item {
  position: absolute;
  top: 40%;
  left: 0;
  z-index: 2;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.index2-section1 .desc {
  max-width: 459.994px;
  line-height: 1.8;
  font-size: 15.994px;
  color: #bfbfbf;
  word-wrap: break-word;
  word-break: break-all;
  font-weight: bold;
  height: 9em;
  overflow: hidden;
}

.index2-section1 .item2 .info {
  margin-top: 0;
}

/* 2025-11-13 注释掉 */
.index2-section1 .info {
  margin-top: 20.006px;
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 1.4;
  font-size: 14px;
  padding: 20.006px;
  /* border: 0.052vw solid rgba(0, 0, 0, 0.04); */
  transition: background-color;
  max-width: 420px;
}

/* 2025-11-10 注释 */
/* .index2-section1 .info:hover {
  background-color: rgba(14, 69, 148, 0.05);
} */

.index2-section1 .info .text1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10.003px;
  color: #333;
}

.index2-section1 .info .text2 {
  font-size: 16px;
  line-height: 1.4;
  color: #64748b;
}

.index2-section1 .video {
  width: 700px;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}

.index2-section1 .video video {
  width: auto;
  height: 110%;
  display: block;
  position: static;
  mix-blend-mode: multiply;
}

.index2-section1 .image2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.index2-section1 .item1 .image {
  margin-left: auto;
  margin-right: auto;
  width: 200px;
}

.index2-section1 .item1 .image img {
  width: 100%;
}

.index2-section1 .item4 {
  transition: all 1s;
}

.index2-section1 .item4.hide {
  transition: all 0.7s;
  transform: scale(0);
}

.index2-section1 .item4 .desc {
  color: #1461bf;
}

.index2-section1 .item5 .info {
  margin-top: 40px;
}

.index2-section1 .item5 .image2 {
  position: relative;
}

.index2-section1 .item5 .image2 .image-group {
  clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
  transition: clip-path 0.5s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index2-section1 .item5 .image2 .image-group img:nth-child(1) {
  width: 56.006px;
}

.index2-section1 .item5 .image2 .image-group img:nth-child(2) {
  width: 141.005px;
}

.index2-section1 .item5 .image2 .image-group img:nth-child(3) {
  width: 98.995px;
}

.index2-section1 .item5 .list-item {
  position: absolute;
  width: 399.994px;
  z-index: 30;
}

.index2-section1 .item5 .list-item .content {
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 1.4;
  font-size: 15.994px;
  padding: 20.006px;
  border: 0.998px solid rgba(0, 0, 0, 0.04);
  display: block;
  color: #333;
}

.index2-section1 .item5 .list-item .content:hover {
  background-color: rgba(14, 69, 148, 0.05);
}

.index2-section1 .item5 .list-item .text1 {
  font-size: 20.006px;
  font-weight: bold;
}

.index2-section1 .item5 .list-item .text2 {
  font-size: 13.997px;
  line-height: 1.4;
}

.index2-section1 .item5 .list-item1 {
  top: 150%;
  right: 140%;
}

.index2-section1 .item5 .list-item1 .line {
  content: "";
  width: 140px;
  height: 1px;
  background-color: rgba(14, 69, 148, 0.22);
  position: absolute;
  top: -2%;
  left: 99%;
  transform: rotate(-25deg);
}

.index2-section1 .item5 .list-item2 {
  bottom: 50%;
  right: 140%;
}

.index2-section1 .item5 .list-item2 .line {
  content: "";
  width: 180px;
  height: 0.998px;
  background-color: rgba(14, 69, 148, 0.22);
  position: absolute;
  bottom: 32%;
  left: 96%;
  transform: rotate(34deg);
}

.index2-section1 .item5 .list-item3 {
  bottom: 200%;
  left: 50%;
  transform: translate(-50%, 0);
}

.index2-section1 .item5 .list-item3 .line {
  content: "";
  width: 60px;
  height: 0.998px;
  background-color: rgba(14, 69, 148, 0.22);
  position: absolute;
  top: 117%;
  left: 43%;
  transform: rotate(90deg);
}

.index2-section1 .item5 .list-item4 {
  bottom: 50%;
  left: 140%;
}

.index2-section1 .item5 .list-item4 .line {
  content: "";
  width: 166px;
  height: 0.998px;
  background-color: rgba(14, 69, 148, 0.22);
  position: absolute;
  top: 70%;
  right: 98%;
  transform: rotate(155deg);
}

.index2-section1 .item5 .list-item5 {
  top: 150%;
  left: 140%;
}

.index2-section1 .item5 .list-item5 .line {
  content: "";
  width: 130.003px;
  height: 0.998px;
  background-color: rgba(14, 69, 148, 0.22);
  position: absolute;
  bottom: 105%;
  right: 99%;
  transform: rotate(200deg);
}

.index2-section1 .item6 img {
  width: 244.992px;
}

.index2-section1 .item7 .info {
  margin-top: 60px;
}

.index2-section1 .item8 {
  height: 320.006px;
}

.index2-section1 .item8 .info {
  margin-top: 0;
}

@media screen and (max-width: 749px) {
  .index2-section1 .item {
    display: block;
  }

  .index2-section1 .desc {
    max-width: 90%;
    width: 100%;
    font-size: 16px;
    margin-left: 5%;
  }

  .index2-section1 .info {
    margin-top: 20px;
    font-size: 16px;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    max-width: 90%;
    width: 100%;
  }

  .index2-section1 .info .text1 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .index2-section1 .info .text2 {
    font-size: 13px;
    line-height: 1.6;
  }

  .index2-section1 .video {
    width: 100%;
    height: auto;
  }

  .index2-section1 .video video {
    width: 100%;
    height: auto;
  }

  .index2-section1 .item1 .image {
    width: 150px;
  }

  .index2-section1 .item2 .info {
    margin-top: 0;
  }

  .index2-section1 .item5 .list {
    display: none;
  }

  .index2-section1 .item5 .list-item {
    width: 400px;
  }

  .index2-section1 .item5 .list-item .content {
    font-size: 16px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
  }

  .index2-section1 .item5 .list-item .text1 {
    font-size: 20px;
  }

  .index2-section1 .item5 .list-item .text2 {
    font-size: 14px;
  }

  .index2-section1 .item5 .list-item1 .line {
    width: 140px;
    height: 1px;
  }

  .index2-section1 .item5 .list-item2 .line {
    width: 180px;
    height: 1px;
  }

  .index2-section1 .item5 .list-item3 .line {
    width: 120px;
    height: 1px;
  }

  .index2-section1 .item5 .list-item4 .line {
    width: 210px;
    height: 1px;
  }

  .index2-section1 .item5 .list-item5 .line {
    width: 130px;
    height: 1px;
  }

  .index2-section1 .item6 .image {
    width: 245px;
    margin-left: auto;
    margin-right: auto;
  }

  .index2-section1 .item6 img {
    width: 100%;
  }

  .index2-section1 .item7 .info {
    margin-top: 60px;
  }

  .index2-section1 .item8 {
    height: 210px;
  }

  .index2-section1 .item8 .info {
    margin-top: 0;
  }
}

/* ==================== 首页 - 板块一 End ==================== */
/* ==================== 新增板块一 - 板块一 Start ==================== */
.page-section1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  background-color: #e8e7ff;
  padding-top: 90.01px;
}

.page-section1 .right-body {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e8e7ff;
}

.page-section1 .right-body .icon {
  width: 399.994px;
}

.page-section1 .right-body .icon .head {
  width: 399.994px;
  height: 10.003px;
  background-color: #fff;
  border-radius: 6.01px;
  border: 1.997px solid #e5e5e5;
}

.page-section1 .right-body .icon .icon-body {
  width: 80%;
  height: 399.994px;
  border-radius: 0 0 99.994px 99.994px;
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 10.003px;
  padding-top: 0;
  border: 1.997px solid #e5e5e5;
  border-top: 0;
}

.page-section1 .body {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.page-section1 .image img {
  width: 100%;
}

.page-section1 .info {
  width: 50%;
  background-color: #e8e7ff;
  padding: 60px;
}

.page-section1 .info .text1 {
  padding: 8.006px 15.994px;
  border: 0.998px solid rgb(166, 160, 255);
  border-radius: 99.994px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgb(33, 17, 255);
  text-align: center;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 30.01px;
}

.page-section1 .info .text2 {
  font-size: 48px;
  color: rgba(30, 41, 59);
  line-height: 1.1;
  font-weight: bold;
  margin-bottom: 20.006px;
}

.page-section1 .info .text3 {
  font-size: 13.997px;
  line-height: 1.1;
  color: rgb(100, 116, 139);
  line-height: 1.1;
}

.page-section1 .info .desc {
  font-size: 18.01px;
  line-height: 1.4;
  color: rgb(100, 116, 139);
  margin-top: 10.003px;
  font-weight: 500;
}

.page-section1 .info .desc p {
  font-size: inherit;
  line-height: inherit;
}

.page-section1 .image-box {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0 0 99.994px 99.994px;
  background: linear-gradient(to top, #e8e7ff, #fff);
}

.page-section1 .image-box .right-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page-section1 .image-box img {
  width: 100%;
}

.page-section1 .drag-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.page-section1 .drag-mask .mask-content {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.page-section1 .drag-mask img {
  clip-path: inset(0 0 0 0% round 0);
  border-radius: 20.006px;
  width: 100%;
}

.page-section1 .drag-mask .img {
  clip-path: inset(0 0 0 0% round 0);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
  /* border: 1.997px dashed #eee; */
  border-radius: 0 0 99.994px 99.994px;
  border-top: 0;
  background: linear-gradient(to top, #e8e7ff, #fff);
}

.page-section1 .drag-mask .img .img-block {
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page-section1 .drag-mask .mask {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  margin-left: -100%;
  border-right: 1.997px solid #3d4884;
}

.page-section1 .drag-btn {
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
  width: 49.92px;
  height: 49.92px;
  right: 0;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  cursor: move;
  z-index: 10;
}

.page-section1 .drag-btn .arrow {
  width: 10.003px;
  height: 10.003px;
  border-top: 0.998px solid #888;
  border-right: 0.998px solid #888;
  transform: rotate(45deg);
  pointer-events: none;
}

.page-section1 .drag-btn .arrow-prev {
  transform: rotate(-135deg);
}

.page-section1 .drag-btn .text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  white-space: nowrap;
  font-size: 20.006px;
  color: #1D1D1F;
  padding-left: 10.003px;
}

@media screen and (max-width: 1300px) {
  .page-section1 .info{
    padding-left: 0;
  }
}
@media screen and (max-width: 1000px) {

  .page-section1 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .page-section1 .body {
    display: block;
  }

  .page-section1 .right-body {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .page-section1 .right-body .icon {
    width: 350px;
  }

  .page-section1 .right-body .icon .head {
    width: 320px;
    height: 10px;
    border-radius: 6px;
    border: 2px solid #e5e5e5;
    margin-left: auto;
    margin-right: auto;
  }

  .page-section1 .right-body .icon .icon-body {
    height: 350px;
    border-radius: 0 0 100px 100px;
    padding: 10px;
    border: 2px solid #e5e5e5;
  }

  .page-section1 .body {}

  .page-section1 .image img {}

  .page-section1 .info {
    padding: 60px 0;
    width: 100%;
  }

  .page-section1 .info .text1 {
    padding: 8px 16px;
    border: 1px solid rgb(166, 160, 255);
    border-radius: 100px;
    margin-bottom: 30px;
  }

  .page-section1 .info .text2 {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .page-section1 .info .text3 {
    font-size: 14px;
  }

  .page-section1 .info .desc {
    font-size: 18px;
    margin-top: 10px;
  }

  .page-section1 .info .desc p {}

  .page-section1 .image-box {
    border-radius: 0 0 100px 100px;
  }

  .page-section1 .image-box .right-img {}

  .page-section1 .image-box img {}

  .page-section1 .drag-mask {}

  .page-section1 .drag-mask .mask-content {}

  .page-section1 .drag-mask img {
    border-radius: 20px;
  }

  .page-section1 .drag-mask .img {
    /* border: 2px dashed #eee; */
    border-radius: 0 0 100px 100px;
  }

  .page-section1 .drag-mask .img .img-block {}

  .page-section1 .drag-mask .mask {
    border-right: 2px solid #3d4884;
  }

  .page-section1 .drag-btn {
    width: 49.92px;
    height: 49.92px;
  }

  .page-section1 .drag-btn .arrow {
    width: 10px;
    height: 10px;
    border-top: 1px solid #888;
    border-right: 1px solid #888;
  }

  .page-section1 .drag-btn .arrow-prev {}

  .page-section1 .drag-btn .text {
    font-size: 20.004px;
    padding-left: 10.002px;
  }
}

/* ==================== 新增板块一 - 板块一 End ==================== */