
*[data-v-6ebf36fd] {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* 关键：外层容器加横向滚动，确保内容小于1200px时出滚动条 */
body[data-v-6ebf36fd] {
  overflow-x: auto; /* 仅横向溢出时显示滚动条，纵向不影响 */
  min-width: 1200px; /* 适配手机最小宽度，避免内容挤压 */
}
.main[data-v-6ebf36fd] {
  position: relative;
  width: 100%;
  margin-top: 60px;
  /* 父容器宽度跟随body，子内容区固定1200px */
}
.flex[data-v-6ebf36fd] {
  display: flex;
  justify-content: flex-start; /* 取消居中，让内容靠左对齐（配合滚动） */
  width: 100%;
}
.textBlock[data-v-6ebf36fd] {
  width: 1200px;
  overflow-x: auto;
  margin: 0 auto;
}
.colorRed[data-v-6ebf36fd] {
  color: #f43e3e;
}
.f1[data-v-6ebf36fd] {
  flex: 1;
}
.header[data-v-6ebf36fd] {
  background: url("https://img.yonyou.com/yongyou_ys/khcg/assest/banner.png");
  background-size: 100% 100%;
  background-position: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 取消居中，配合滚动 */
}
.headerTitle[data-v-6ebf36fd] {
  font-family: AlibabaPuHuiTiB;
  font-size: 50px;
  color: #4d4d4d;
  letter-spacing: normal;
  font-weight: 600;
}
.headerContent[data-v-6ebf36fd] {
  font-family: AlibabaPuHuiTiB;
  font-size: 30px;
  color: #4d4d4d;
  line-height: 72px;
  font-weight: 600;
  margin-top: 10px;
}
.headerButton[data-v-6ebf36fd] {
  width: 260px;
  height: 70px;
  background: linear-gradient(90deg, #f43e3e 0%, #ffc26c 100%);
  border-radius: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: AlibabaPuHuiTiB;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  margin-top: 30px;
  box-sizing: border-box;
  cursor: pointer;
}
.contentOne[data-v-6ebf36fd] {
  padding: 30px 0;
}
.contentOne-swtichButton[data-v-6ebf36fd] {
  margin-top: 30px;
  cursor: pointer;
  text-align: right;
}
.contentOne-swtichButton img[data-v-6ebf36fd] {
  height: 49px;
}
.contentOne-title1[data-v-6ebf36fd] {
  margin-top: 10px;
  font-family: AlibabaPuHuiTiB;
  font-size: 30px;
  color: #4d4d4d;
  letter-spacing: normal;
  justify-content: center;
  font-weight: 600;
}
.contentOne-content1[data-v-6ebf36fd] {
  font-family: AlibabaPuHuiTiB;
  font-weight: 500;
  font-size: 20px;
  color: #4d4d4d;
  letter-spacing: normal;
  margin-top: 30px;
}
.contentOne-title2[data-v-6ebf36fd] {
  margin-top: 50px;
  font-family: AlibabaPuHuiTiB;
  font-size: 30px;
  color: #4d4d4d;
  letter-spacing: normal;
  justify-content: center;
  font-weight: 600;
}
.contentOne-content2[data-v-6ebf36fd] {
  font-family: AlibabaPuHuiTiB;
  font-weight: 500;
  font-size: 20px;
  color: #4d4d4d;
  letter-spacing: normal;
  margin-top: 30px;
  text-align: center;
}
/* 关键修改：卡片容器与子项等高样式 */
.card[data-v-6ebf36fd] {
  margin-top: 20px;
  display: flex; /* 父容器用Flex布局 */
  align-items: stretch; /* 强制子项高度跟随最高项（核心） */
  justify-content: space-between;
  gap: 10px; /* 子项之间加间距，避免拥挤 */
  padding: 20px 0; /* 可选：加上下内边距，提升视觉 */
  /* 三个卡片子项：宽度均分+基础样式+高度一致 */
}
.cardItem1[data-v-6ebf36fd],
.cardItem2[data-v-6ebf36fd],
.cardItem3[data-v-6ebf36fd] {
  flex: 1; /* 三个子项宽度均分（占满父容器） */
  background-color: #f5f6fb; /* 可选：加背景色，凸显卡片形态 */
  padding: 30px 45px; /* 可选：加内边距，避免内容贴边 */
  display: flex;
  flex-direction: column; /* 子项内部内容纵向排列（如需） */
  border-radius: 26px;
}
.cardItem1 img[data-v-6ebf36fd],
.cardItem2 img[data-v-6ebf36fd],
.cardItem3 img[data-v-6ebf36fd] {
  width: 60px;
  margin-right: 25px;
}
.cardItem1[data-v-6ebf36fd] {
  background: linear-gradient(
    180deg,
    rgba(235, 240, 249, 0.6) 0%,
    rgba(195, 215, 241, 0.6) 100%
  );
}
.cardItem1-title[data-v-6ebf36fd] {
  display: flex;
  align-items: center;
  font-family: AlibabaPuHuiTiB;
  font-size: 24px;
  color: #4d4d4d;
  letter-spacing: normal;
  font-weight: 600;
  height: 70px;
}
.cardItem1-content[data-v-6ebf36fd] {
  margin-top: 16px;
  font-family: AlibabaPuHuiTiB;
  font-weight: 500;
  font-size: 20px;
  color: #4d4d4d;
  letter-spacing: normal;
}
.cardItem2[data-v-6ebf36fd] {
  background: linear-gradient(
    180deg,
    rgba(253, 219, 226, 0.6) 0%,
    rgba(253, 195, 206, 0.6) 100%
  );
}
.cardItem2-title[data-v-6ebf36fd] {
  display: flex;
  align-items: center;
  font-family: AlibabaPuHuiTiB;
  font-size: 24px;
  color: #4d4d4d;
  letter-spacing: normal;
  font-weight: 600;
  height: 70px;
}
.cardItem2-content[data-v-6ebf36fd] {
  margin-top: 16px;
  font-family: AlibabaPuHuiTiB;
  font-weight: 500;
  font-size: 20px;
  color: #4d4d4d;
  letter-spacing: normal;
}
.cardItem3[data-v-6ebf36fd] {
  background: linear-gradient(
    180deg,
    rgba(240, 234, 249, 0.6) 0%,
    rgba(208, 177, 249, 0.6) 100%
  );
}
.cardItem3-title[data-v-6ebf36fd] {
  display: flex;
  align-items: center;
  font-family: AlibabaPuHuiTiB;
  font-size: 24px;
  color: #4d4d4d;
  letter-spacing: normal;
  font-weight: 600;
  height: 70px;
}
.cardItem3-content[data-v-6ebf36fd] {
  margin-top: 16px;
  font-family: AlibabaPuHuiTiB;
  font-weight: 500;
  font-size: 20px;
  color: #4d4d4d;
  letter-spacing: normal;
}
.contentTwo[data-v-6ebf36fd] {
  margin-top: 90px;
  background: url("https://img.yonyou.com/yongyou_ys/khcg/assest/contentBack.png");
  background-size: 100% 100%;
  background-position: center;
  width: 100%;
  padding: 98px 0;
}
.contentTwo-title1[data-v-6ebf36fd] {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: AlibabaPuHuiTiB;
  font-size: 44px;
  color: #4d4d4d;
  letter-spacing: normal;
  font-weight: 600;
}
.displayLeftRight[data-v-6ebf36fd] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  margin-top: 40px;
}
.displayLeftRight img[data-v-6ebf36fd] {
  width: 100%;
  height: 100%;
}
.displayLeftRight-title1[data-v-6ebf36fd] {
  font-family: AlibabaPuHuiTiB;
  font-size: 32px;
  color: #4d4d4d;
  letter-spacing: normal;
  font-weight: 600;
  margin-left: 10px;
}
.displayLeftRight-title2[data-v-6ebf36fd] {
  font-family: AlibabaPuHuiTiB;
  font-size: 26px;
  color: #4d4d4d;
  letter-spacing: normal;
  font-weight: 500;
  margin-top: 20px;
  margin-left: 10px;
}
.displayF[data-v-6ebf36fd] {
  display: flex;
  align-items: baseline;
  margin-top: 20px;
}
.dot[data-v-6ebf36fd] {
  width: 11px;
  height: 11px;
  background: #f43e3e;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}
.displayLeftRight-content[data-v-6ebf36fd] {
  font-family: AlibabaPuHuiTiB;
  font-weight: 500;
  font-size: 22px;
  color: #4d4d4d;
  letter-spacing: normal;
}
.displayButton[data-v-6ebf36fd] {
  margin-top: 25px;
  padding: 13px 43px;
  background: linear-gradient(90deg, #f43e3e 0%, #ffc26c 100%);
  border-radius: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: AlibabaPuHuiTiB;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: normal;
  cursor: pointer;
}
.footer[data-v-6ebf36fd] {
  padding: 67px 0;
  background: linear-gradient(90deg, #f43e3e 0%, #ffc26c 100%),
    linear-gradient(90deg, #f43e3e 0%, #ffc26c 100%);
  text-align: center;
}
.footerTitle[data-v-6ebf36fd] {
  font-family: AlibabaPuHuiTiB;
  font-size: 44px;
  color: #ffffff;
  letter-spacing: normal;
  text-align: center;
}
.footerContent[data-v-6ebf36fd] {
  font-family: AlibabaPuHuiTiB;
  font-weight: 500;
  font-size: 26px;
  color: #ffffff;
  letter-spacing: normal;
  margin-top: 30px;
  text-align: center;
}
.footerCards[data-v-6ebf36fd] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
.footerCardTitle[data-v-6ebf36fd] {
  font-family: AlibabaPuHuiTiM;
  font-size: 35px;
  color: #4d4d4d;
  font-weight: 600;
  text-align: center;
}
.footerCardImg[data-v-6ebf36fd] {
  text-align: center;
}
.footerCardImg img[data-v-6ebf36fd] {
  width: 60px;
  height: 60px;
}
.footerCardContent[data-v-6ebf36fd] {
  font-family: AlibabaPuHuiTiB;
  font-size: 24px;
  color: #4d4d4d;
  letter-spacing: normal;
  font-weight: 600;
  text-align: center;
}
.footerCardItem1st[data-v-6ebf36fd] {
  background-image: url("https://img.yonyou.com/yongyou_ys/khcg/assest/footerBack1.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 318px;
  height: 220px;
  padding: 24px 0;
  margin: 0 auto;
}
.footerCardItem2nd[data-v-6ebf36fd] {
  background-image: url("https://img.yonyou.com/yongyou_ys/khcg/assest/footerBack2.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 318px;
  height: 220px;
  padding: 24px 0;
  margin: 0 auto;
}
.footerCardItem3rd[data-v-6ebf36fd] {
  background-image: url("https://img.yonyou.com/yongyou_ys/khcg/assest/footerBack3.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 318px;
  height: 220px;
  padding: 24px 0;
  margin: 0 auto;
}

