@charset "UTF-8";

/* 通用基础 */
h2 {
  font-weight: 700;
  font-size: 42px;
  text-align: center;
  color: #1a1a1a;
}

.h2-title-desc {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #282828;
}

@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }

  .mb-hide {
    display: none !important;
  }

  .pc-hide {
    display: block;
  }
}

/* 文案上下滚动按钮基础样式 */
a.reusable-button {
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid;
  font-weight: 500;
  font-family: inherit;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: white;
  background: #4f46e5;
  border-color: #64748b;
  box-shadow: 0px 4px 32px 0 rgba(99, 102, 241, 0.7);
  min-width: 183px;
  height: 48px;
}

a.reusable-button:hover .button-text.hover-up {
  transform: translateY(-100%);
}

a.reusable-button:hover .button-text.hover-down {
  top: 0;
}

a.reusable-button.variant-tryNow {
  min-width: 183px;
  height: 48px;
  color: #1a1a1a;
  background: #ffffff;
  box-shadow: none !important;
  border-color: transparent !important;
}

.button-inner {
  position: relative;
  overflow: hidden;
  display: block;
  height: 1.2em;
}

.button-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  display: block;
  transition: transform 1.125s cubic-bezier(0.19, 1, 0.22, 1);
}

.button-text.hover-up {
  transform: translateY(0);
}

.button-text.hover-down {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transition: top 1.125s cubic-bezier(0.19, 1, 0.22, 1);
}

/* icon+文案 下载按钮样式 */
.down-btn .btn-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 72px;
  border-radius: 15px;
  font-weight: 800;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.down-btn .down-link,
.down-btn .buy-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 228px;
  height: 66px;
  border-radius: 15px;
  font-weight: 800;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background-color: #d260ff;
}

.down-btn .down-link:hover {
  background-color: #d260ff;
}

.down-btn .buy-link {
  color: #3b2d00;
  background-color: #ffcb3c;
}

.down-btn .buy-link:hover {
  color: #3b2d00;
  background-color: #ffc423;
}

.down-btn .down-link.outline-btn {
  width: 260px;
  color: #d260ff;
  border: 2px solid #d260ff;
  background: #fff;
}

.down-btn .down-link.outline-btn:hover {
  color: #d260ff;
  background: #fff;
}

.down-btn .buy-link.blue-btn {
  width: 260px;
  color: #fff;
  background: #d260ff;
}

.fade-btn {
  padding: 18px 50px !important;
  color: #fff !important;
  background: linear-gradient(180deg, #7979ff -27.78%, #c859ff 50%);
}

.down-btn .buy-link.blue-btn:hover {
  color: #fff;
  background: #d260ff;
}

.buy-link.blue-btn svg {
  margin: 0 7px 0 0;
}

.down-btn .btn-child+.btn-child {
  margin-left: 22px;
}

.down-btn .down-link:hover {
  animation: unset;
}

.down-btn .down-link svg,
.buy-link svg {
  width: 26px;
  height: 26px;
  margin-left: 7px;
}

.down-btn .group-item {
  display: block;
  position: relative;
  height: 72px;
  line-height: 72px;
  overflow: hidden;
}

.down-btn .btn-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  gap: 10px;
}

.down-btn .btn-item.duplicate {
  transform: translateY(70px);
}

.down-btn .btn-child:hover .btn-item {
  transform: translateY(-70px);
}

.down-btn .btn-child:hover .btn-item.duplicate {
  transform: translateY(-70px);
}

/* main-view 最外层 */
.main-padding {
  padding: 0px 13% 0px 13%;
}

.main-view {
  /* padding: 0px 13% 0px 13%; */
}

.main-view::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1150px;
  /* background: linear-gradient(180.38deg, #EBCBFF -17.19%, rgba(255, 255, 255, 0) 122.1%); */
  z-index: -1;
}

@media (max-width: 768px) {
  .main-padding {
    padding: 0px 15px 0px 15px;
  }
}

/* ————— choose-section ————— */
/* choose-functional-module [1] 标题 */
.choose-section {
  box-sizing: border-box;
  border-radius: 0px;
  margin: 0px auto;
  position: relative;
}

.choose-section .fade-bg {
  padding-top: 70px;
  background: linear-gradient(180deg, rgba(235, 203, 255, 0.85) 0%, rgba(235, 203, 255, 0.35) 40%, rgba(255, 255, 255, 0) 100%);
}

.choose-section h1 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 15px;
}

.choose-section .h2-title-desc {
  font-size: 16px;
  font-weight: 400;
  color: #282828;
  text-align: center;
  margin-bottom: 30px;
}

/* choose-functional-module [2] 文生视频、图生视频 */
.choose-section .choose-functional-module {
  display: flex;
  max-width: 1210px;
  background-color: transparent;
  margin: 30px auto;
  gap: 20px;
  height: 560px;
}

/* [2] 左侧功能区 */
.choose-section .choose-functional-left {
  width: 390px;
  background: #fff;
  border-radius: 20px;
  padding: 13px 20px 10px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.choose-section .choose-functional-left .choose-functional-left-title {
  color: #282828;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  line-height: 1.2;
  text-align: center;
}

.choose-section .choose-functional-left .label-title-text {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.style-select-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.more-style-button {
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
  color: #D063FF;
  cursor: pointer;
  display: none;
}

.story-style-box {
  width: 100%;
  max-width: 100%;
  /* 根据实际布局调整 */
  height: 200px;
  /* 两排的高度 + 内边距，79*2 + 一些间距 */
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0px;
  box-sizing: border-box;
}

.story-style-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 一排4个 */
  gap: 12px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-style-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.style-img-wrapper {
  width: 79px;
  height: 65px;
  border-radius: 8px;
  padding: 2px;
  background: transparent;
  transition: all 0.2s ease;
}

.style-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.story-style-item.selected .style-img-wrapper {
  background: linear-gradient(180deg, #5D5FFF 0%, #E85DFF 100%);
}

.style-name {
  font-size: 13px;
  font-weight: 400;
  color: #2C2D30;
  text-align: center;
  max-width: 79px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.story-style-box::-webkit-scrollbar {
  width: 4px;
}

.story-style-box::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

.story-style-box::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}

.story-style-box::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* [2] 描述输入框 */
.choose-section .description-input-wrapper {
  width: 100%;
}

.choose-section .description-input-wrapper .input-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.choose-section .description-input-wrapper .textarea-container {
  position: relative;
  width: 100%;
  min-height: 147px;
  padding: 10px 2px 10px 10px;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.2s,
    box-shadow 0.2s;
  cursor: text;
}

.choose-section .description-input-wrapper .textarea-container:hover {
  border-color: #d260ff;
}

.choose-section .description-input-wrapper .textarea-container.focused {
  border-color: #d260ff;
}

.choose-section .description-input-wrapper .textarea-container.over-limit {
  border-color: #f56c6c;
}

.choose-section .description-input-wrapper .textarea-container.over-limit.focused {
  box-shadow: 0 0 0 1px #f56c6c inset;
}

.choose-section .description-input-wrapper .transparent-textarea {
  width: 100%;
  height: 110px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  background: transparent;
  resize: none;
  line-height: 1.5;
  color: #2c2d30;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  overflow-y: auto;
  /* 滚动条 */
  scrollbar-width: thin;
  scrollbar-color: #d9d9d9 transparent;
}

.choose-section .description-input-wrapper .transparent-textarea::-webkit-scrollbar {
  width: 4px;
}

.choose-section .description-input-wrapper .transparent-textarea::-webkit-scrollbar-track {
  background: transparent;
}

.choose-section .description-input-wrapper .transparent-textarea::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 2px;
}

.choose-section .description-input-wrapper .transparent-textarea::placeholder {
  color: #999;
}

.choose-section .description-input-wrapper .char-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 2px;
  pointer-events: none;
  color: #868686;
}

.choose-section .description-input-wrapper .char-counter .current-over {
  color: #f56c6c;
}

.choose-section .description-input-wrapper .char-counter .max-sep {
  color: #999;
}

.choose-section .description-input-wrapper .char-counter .max-limit {
  color: #868686;
  font-weight: 500;
}

/* [2] 模型选择容器 自定义下拉框样式 */
.choose-section .model-select-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.choose-section .model-select-container .label-title-text {
  font-size: 16px;
  font-weight: 700;
  color: #282828;
}

.choose-section .custom-select {
  position: relative;
  width: 100%;
  margin-left: 12px;
  width: fit-content;
}

.choose-section .select-selected {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #282828;
  transition: all 0.2s;
}

.choose-section .select-selected:hover {
  border-color: #d260ff;
}

.choose-section .select-selected .model-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.choose-section .select-selected .select-arrow {
  margin-left: auto;
  font-size: 10px;
  transition: transform 0.3s;
}

.choose-section .select-selected.active .select-arrow {
  transform: rotate(180deg);
}

/* 下拉面板 */
.choose-section .select-items {
  position: absolute;
  top: 100%;
  left: 0;
  width: fit-content;
  max-height: 400px;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
  display: none;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #d9d9d9 transparent;
  /* Webkit 浏览器 */
}

.choose-section .select-items::-webkit-scrollbar {
  width: 3px;
}

.choose-section .select-items::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 2px;
}

.choose-section .select-item {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 5px;
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.choose-section .select-item:hover {
  background: #f5f5f5;
}

.choose-section .select-item .model-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.choose-section .select-item.selected {
  background: #f5f5f5;
}

.choose-section .model-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

/* 下拉项中的模型文本 */
.choose-section .select-item .model-text {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

/* 选中项中的模型文本 */
.choose-section .select-selected .model-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  display: block;
}

/* Tooltip 样式 */
.choose-section .tooltip {
  position: relative;
  display: inline-block;
}

.choose-section .tooltip .tooltip-text {
  visibility: hidden;
  width: max-content;
  max-width: 200px;
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 12px;
  position: absolute;
  z-index: 101;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: opacity 0.2s,
    visibility 0.2s;
  /* 延迟显示，避免误触 */
  transition-delay: 0.3s;
}

.choose-section .tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.choose-section .tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #1a1a1a transparent transparent transparent;
}

/* [2] Create 按钮 */
.choose-section .create-btn {
  margin-top: auto;
  width: 100%;
  padding: 14px;
  background: #d260ff;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.choose-section .create-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* [2] 右侧视频区 */
.choose-section .choose-functional-right {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 30px 40px 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.choose-section .right-top-desc-tile,
.choose-section .right-bottom-desc-tile {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
}

.choose-section .right-bottom-desc-tile {
  text-align: left;
  font-size: 16px;
}

.choose-section .main-video-box {
  width: 100%;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  position: relative;
}

.choose-section .main-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  display: none;
}

.choose-section .main-video-box video.active {
  display: block;
}

.choose-section .templates-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.choose-section .templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 17px;
}

.choose-section .template-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.choose-section .nav-btn#prevBtn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background-image: url("https://images.noviai.ai/noviaien/assets/common/program_left.svg");
}

.choose-section .nav-btn#prevBtn:disabled {
  background-image: url("https://images.noviai.ai/noviaien/assets/common/program_left_dis.svg");
  cursor: not-allowed;
}

.choose-section .nav-btn#nextBtn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background-image: url("https://images.noviai.ai/noviaien/assets/common/program_right.svg");
}

.choose-section .nav-btn#nextBtn:disabled {
  background-image: url("https://images.noviai.ai/noviaien/assets/common/program_right_dis.svg");
  cursor: not-allowed;
}

.choose-section .template-item {
  width: 120px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.choose-section .template-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choose-section .template-item.selected {
  outline: 2px solid #6c5ce7;
}

.choose-section .template-item {
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: #eee;
  transition: transform 0.2s;
}

.choose-section .template-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choose-section .template-item:hover {
  transform: scale(1.05);
}

.choose-section .template-item .play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.choose-section .template-item:hover .play-overlay {
  opacity: 1;
}

.choose-section .template-item .play-overlay::before {
  content: "▶";
  font-size: 32px;
  color: white;
  font-weight: bold;
}

.choose-section .template-item.selected {
  box-shadow: 0 0 0 3px #d260ff;
}

@media (max-width: 768px) {
  .choose-section .tab-item {
    font-size: 14px;
  }

  .choose-section .choose-functional-module {
    flex-direction: column;
    gap: 16px;
    height: auto;
  }

  .choose-section .choose-functional-left {
    padding: 20px 10px 28px 10px;
    width: 100%;
  }

  .choose-section .choose-functional-right {
    /*display: none;*/
  }

  .choose-section .main-video-box {
    height: auto;
    width: 100%;
    position: unset;
  }

  .choose-section .main-video-box video {
    position: unset;
  }

  .choose-section .main-video {
    /* width: 100% !important; */
    /* height: auto !important; */
    aspect-ratio: 16/9 !important;
    object-fit: cover !important;
    border-radius: 24px;
  }

  .choose-section .templates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* choose-section [3] 名人推荐 */
.choose-section .choose-content .choose-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 63px 0px 0px 0px;
  gap: 17px;
}

.choose-section .choose-content .choose-cards-item {
  padding: 16px 0px 18px 0px;
  width: 260px;
  height: 140px;
  background-color: transparent;
  box-sizing: border-box;
}

.choose-section .choose-content .choose-cards-item .choose-cards-title {
  height: 72px;
  line-height: 72px;
  font-size: 60px;
  font-weight: 800;
  text-align: center;
  color: #d059ff;
  margin-bottom: 10px;
}

.choose-section .choose-content .choose-cards-item .choose-cards-desc {
  text-align: center;
  height: 24px;
  line-height: 24px;
  font-size: 20px;
  font-weight: 500;
}

.choose-section .media-section {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: nowrap;
}

.choose-section .media-section .choose-sub-title {
  font-size: 26px;
  color: #1a1a1a;
  font-weight: 600;
  max-width: 381px;
  flex-shrink: 0;
  white-space: normal;
  margin: 0px auto;
  text-align: left;
}

.choose-section .media-section .media-wrapper {
  transform-origin: center center;
  will-change: transform;
  overflow: hidden;
  margin-top: 20px;
}

.choose-section .media-section .social-endorsement.two {
  transform: translateX(150px);
}

.choose-section .media-section .social-endorsement .media-list {
  display: flex;
}

.choose-section .media-section .social-endorsement .media-transform2 {
  margin-left: -90px;
}

.choose-section .media-section .social-endorsement img {
  width: 175px;
  height: 55px;
  line-height: 55px;
  margin-right: 70px;
}

@media (max-width: 768px) {
  .choose-section .media-section .social-endorsement .media-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .choose-section .media-section .social-endorsement img {
    margin-right: 0px;
    width: 118px;
    height: 37px;
  }

  .choose-section .media-section .choose-sub-title {
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    padding: 0 15px;
  }

  .choose-section .user-card-wrapper {
    width: 70% !important;
  }
}

.choose-section .user-card-wrapper {
  overflow: hidden;
  margin: 42px auto 0;
  flex-wrap: nowrap;
  max-width: 1312px;
  width: 100%;
}

.choose-section .user-card-wrapper .user-card-anime {
  display: inline-flex;
  transform-origin: center center;
  will-change: transform;
  animation: scrollUserCards 10s linear infinite;
}

.choose-section .user-card-wrapper .user-card-anime:hover {
  animation-play-state: paused;
}

.choose-section .user-card-wrapper .user-card-anime .user-card-list {
  padding: 0px 42px;
  display: flex;
  gap: 84px;
}

.choose-section .user-card-wrapper .user-card-anime .user-card-list .user-card {
  width: 84px;
  height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 12px;
  box-sizing: border-box;
}

.choose-section .user-card-wrapper .user-card-anime .user-card-list .user-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 6px;
}

.choose-section .user-card-wrapper .user-card-anime .user-card-list .user-card .user-name {
  font-size: 14px;
  font-weight: 700;
  color: #080b29;
  text-align: center;
  line-height: 1.2;
  max-width: 84px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes scrollUserCards {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .choose-section .choose-content .choose-cards {
    margin: 30px 0 40px;
    gap: 9px;
  }
}

@media (max-width: 768px) {
  .choose-section .choose-content .choose-cards-item {
    width: 156px;
    height: 84px;
    padding: 9px 0px 11px 0px;
    border-radius: 8px;
  }

  .choose-section .choose-content .choose-cards-item .choose-cards-title {
    font-size: 36px;
    margin-bottom: 7px;
    height: 43px;
    line-height: 43px;
  }

  .choose-section .choose-content .choose-cards-item .choose-cards-desc {
    height: 14px;
    line-height: 14px;
    font-size: 12px;
  }

  .choose-section .media-section {
    display: flex !important;
    align-items: center !important;
    flex-direction: column;
  }

  .choose-section .choose-logo-list {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .choose-section .choose-content .choose-cards-item {
    width: 150px;
  }

  .choose-section h1 {
    font-size: 28px;
  }

  .choose-section .h2-title-desc {
    font-size: 14px;
  }
}

/* ————— step-section ————— */
.step-section {
  padding: 100px 0;
  position: relative;
}

.step-section h2 {
  margin-bottom: 60px;
}

.step-section .box .tab-switch {
  position: relative;
  display: inline-flex;
  justify-content: center;
  margin-bottom: 110px;
}

.step-section .box .tab-switch:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  border-radius: 3px;
  background: #e4e4e4;
  position: absolute;
  bottom: 0;
  left: 0;
}

.step-section .box .base-tabswitch-title {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  width: 213px;
  padding-bottom: 10px;
  color: #787878;
  cursor: pointer;
}

.step-section .box .base-tabswitch-title.base-tabswitch-title-active {
  color: #5a5aff;
}

.step-section .box .base-tabswitch-title.base-tabswitch-title-active:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  border-radius: 3px;
  background: #5a5aff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.step-section .box .base-tabswitch-msg {
  display: none;
}

.step-section .box .base-tabswitch-msg.base-tabswitch-msg-active {
  display: flex;
  /* align-items: center; */
  justify-content: center;
}

.step-section .box .base-tabswitch-msg .swiper {
  max-width: 700px;
  overflow: hidden;
}

.step-section .pagination {
  position: relative;
  max-width: 500px;
  margin-right: 95px;
}

.step-section .pagination .item {
  position: relative;
  padding-left: 46px;
  cursor: pointer;
}

.step-section .pagination .item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  height: 100%;
  border-left: 5px solid #e4ebe8;
  z-index: 1;
}

.step-section .pagination .item:not(:last-child):after {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  height: 0%;
  border-left: 5px solid #d260ff;
  z-index: 1;
}

.step-section .pagination .item:not(:last-child).active:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  height: 100%;
  border-left: 5px solid #D059FF;
  z-index: 2;
  transition: all linear 3s;
}

.step-section .pagination .item:not(:last-child) {
  padding-bottom: 80px;
}

.step-section .pagination .item span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-weight: 600;
  background: #d260ff;
  color: #fff;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  transform: translateY(0px);
}

.step-section .pagination .item b {
  font-weight: 700;
  font-size: 26px;
  color: #1a1a1a;
}

.step-section .pagination .item p {
  display: none;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  color: #51545c;
  margin-top: 18px;
}

.step-section .pagination .item.active p {
  display: block;
}

.step-section .slide-itme {
  display: none;
}

.step-section .down-btn {
  margin-top: 40px;
  justify-content: center;
}

.step-section .swiper-wrapper {
  padding-bottom: 25px;
}

.step-section .swiper-pagination {
  display: none;
}

.step-section .swiper-pagination-bullet {
  position: relative;
  width: 40px;
  height: 6px;
  border-radius: 3px;
  background: #F8EEFF;
  opacity: 1;
}

.step-section .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  background: #D059FF;
  border-radius: 3px;
}

.step-section .swiper-pagination-bullet-active {
  width: 40px;
  background: #F8EEFF;
  border-radius: 20px;
}

.step-section .swiper-pagination-bullet-active::before {
  width: 100%;
  height: 100%;
  transition: width 3s linear;
}

.step-section .swiper-horizontal>.swiper-pagination-bullets,
.step-section .swiper-pagination-bullets.swiper-pagination-horizontal,
.step-section .swiper-pagination-custom,
.step-section .swiper-pagination-fraction {
  bottom: 0;
}

.step-section .slide-item {
  display: none;
}

@media (max-width: 768px) {
  .step-section .base-maxwidth {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .step-section .pagination .item:not(:last-child) {
    margin-bottom: 40px;
  }

  .step-section .box .base-tabswitch-msg .swiper {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .step-section {
    padding: 40px 0;
  }

  .step-section h2 {
    margin-bottom: 30px;
  }

  .step-section .box .base-tabswitch-msg .swiper {
    max-width: 700px;
  }

  .step-section .pagination {
    display: none;
  }

  .step-section .swiper-pagination {
    display: block;
  }

  .step-section .slide-item {
    display: block;
    margin-bottom: 20px;
  }

  .step-section .slide-item .desc-title {
    display: flex;
    align-items: flex-start;
  }

  .step-section .slide-item .desc-title span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 21px;
    height: 21px;
    background: #d260ff;
    color: #fff;
    border-radius: 100%;
    font-size: 12px;
    transform: translateY(3px);
    flex-shrink: 0;
  }

  .step-section .slide-item .desc-title b {
    font-weight: 700;
    font-size: 18px;
    margin-left: 7px;
    color: #1a1a1a;
  }

  .step-section .slide-item .desc-info {
    font-weight: 400;
    font-size: 16px;
    color: #51545c;
    margin: 14px 0 0;
    /* min-height: 72px; */
  }

  .step-section .down-btn {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .step-section .base-maxwidth {
    padding: 0 15px;
  }
}

/* ————— use-section ————— */
.use-section {
  max-width: 1400px;
  box-sizing: border-box;
  padding: 0px;
  margin: 120px auto 0;
  position: relative;
}

.use-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 50px;
}

.use-section .use-step-item {
  width: 440px;
  text-align: center;
  box-sizing: border-box;
  border-radius: 20px;
}

.use-section .use-step-img-box {
  width: auto;
  height: auto;
  margin-bottom: 20px;
  background: transparent;
}

.use-section .use-step-img-box:hover {
  border-radius: 20px;
  box-shadow: 0px 0px 20px 0px rgba(224, 70, 255, 0.4);
}

.use-section .use-step-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.use-section .use-step-desc {
  width: 440px;
  padding: 0px 5px 0px 5px;
}

.use-section .use-step-desc-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.use-section .use-step-desc-title span {
  color: #d059ff;
}

.use-section .use-step-desc-text {
  font-size: 16px;
  font-weight: 500;
  color: #282828;
  line-height: 1.6;
  margin: 0;
}

.use-section .use-steps-swiper {
  /* 默认为 display: contents，使子元素融入外层 flex 布局（仅 PC） */
  display: contents;
}

/* ————— use-section PC 端：3列网格布局 + 固定宽换行 ————— */
@media (min-width: 768px) {
  .use-section .use-steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 100%;
    margin: 0 auto;
  }

  .use-section .use-steps-wrapper {
    display: contents;
  }

  .use-section .use-steps-pagination {
    display: none;
  }
}

/* ————— use-section 移动端：单列 Swiper 轮播 ————— */
@media (max-width: 768px) {
  .use-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .use-section .use-steps-container {
    max-width: 100%;
    padding: 0px;
    box-sizing: border-box;
  }

  .use-section .use-steps-swiper {
    width: 100%;
    display: block;
    position: relative;
    overflow-x: hidden;
  }

  .use-section .use-steps-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.3s ease;
    align-items: center;
  }

  .use-section .use-step-item {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 345px;
  }

  .use-section .use-step-img-box img {
    width: 345px;
    height: 220px;
  }

  .use-section .use-step-desc {
    width: 345px;
  }

  /* 分页器样式 */
  .use-section .use-steps-pagination {
    margin-top: 24px;
    text-align: center;
  }

  .use-section .use-steps-pagination .swiper-pagination-bullet {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 6px;
    border-radius: 3px;
    background: #F8EEFF;
    opacity: 1;
    margin: 0 4px;
  }

  .use-section .use-steps-pagination .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    background: #D059FF;
    border-radius: 3px;
    transition: width 3s linear;
  }

  .use-section .use-steps-pagination .swiper-pagination-bullet-active::before {
    width: 100%;
    height: 100%;
  }
}

/* ————— peopleLike-section ————— */
.peopleLike-section {
  max-width: 1400px;
  box-sizing: border-box;
  padding: 0px;
  margin: 120px auto 0;
  position: relative;
}

.peopleLike-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 60px;
}

.peopleLike-section .peopleLike-step-item {
  box-sizing: border-box;
  border-radius: 20px;
  justify-content: center;
  display: flex;
  padding: 25px;
  gap: 20px;
  background: #F5F7F9;
}

.peopleLike-section .peopleLike-step-img-box {
  width: 630px;
  height: 354px;
  background: transparent;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.peopleLike-section .peopleLike-step-img-box .sample-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  /* 隐藏所有播放控件 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.peopleLike-section .peopleLike-step-img-box .sample-video {
  pointer-events: none;
  /* 防止用户交互 */
  background-color: #a4a7ab;
  /* 视频加载前的背景色 */
}

.peopleLike-section .peopleLike-step-img-box video {
  background-color: transparent;
}

.peopleLike-section .peopleLike-step-desc {
  width: 467px;
  height: 363px;
  padding: 20px 25px;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 16px;
}

.peopleLike-section .video-text-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  max-width: 100%;
  color: #fff;
  pointer-events: none;
  padding: 0px 0px 26px 23px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
}

.peopleLike-section .video-text-overlay-mobile {
  display: none;
}

/* 第一行 */
.peopleLike-section .video-text-title {
  font-weight: 700;
  font-size: 22px;
}

/* 第二行 */
.peopleLike-section .video-text-desc {
  margin-top: 11px;
  font-size: 14px;
  font-weight: 400;
}

/* WebKit */
.peopleLike-step-desc::-webkit-scrollbar {
  width: 4px;
  margin-top: 5px;
}

.peopleLike-step-desc::-webkit-scrollbar-track {
  background: transparent;
}

.peopleLike-step-desc::-webkit-scrollbar-track-piece:start {
  margin-top: 12px;
}

.peopleLike-step-desc::-webkit-scrollbar-track-piece:end {
  margin-bottom: 12px;
}

.peopleLike-step-desc::-webkit-scrollbar-thumb {
  background-color: #dfe1e3;
  border-radius: 8px;
}

.peopleLike-section .peopleLike-step-desc-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.peopleLike-section .peopleLike-step-desc-title span {
  color: #d260ff;
}

.peopleLike-section .peopleLike-step-desc-text {
  font-size: 16px;
  font-weight: 500;
  color: #282828;
  line-height: 1.6;
  margin: 0;
}

.peopleLike-section .peopleLike-step-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.peopleLike-section .peopleLike-step-basebtn {
  width: 205px;
  height: 55px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.peopleLike-section .make-this-btn {
  background: linear-gradient(180deg, #7979ff -27.78%, #c859ff 50%);
  color: #fff;
}

.peopleLike-section .make-this-btn:hover {
  transform: scale(1.05);
  animation: main-btn-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.peopleLike-section .copy-prompt-btn {
  background: #fff;
  color: #1a1a1a;
  border: 1px solid #dbe3ec;
  box-sizing: border-box;
}

.peopleLike-section .copy-prompt-btn:hover {
  background-color: #f8eaff;
}

.peopleLike-section .peopleLike-steps-swiper {
  /* 默认为 display: contents，使子元素融入外层 flex 布局（仅 PC） */
  display: contents;
}

.peopleLike-section .peopleLike-btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.peopleLike-section .down-btn {
  margin-top: 79px;
}

.peopleLike-section .down-btn .group-item {
  display: block;
  position: relative;
  height: 72px;
  line-height: 72px;
  overflow: hidden;
}

.peopleLike-section .down-btn .btn-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.peopleLike-section .down-btn .btn-item.duplicate {
  transform: translateY(70px);
}

.peopleLike-section .down-btn .btn-child:hover .btn-item {
  transform: translateY(-70px);
}

.peopleLike-section .down-btn .btn-child:hover .btn-item.duplicate {
  transform: translateY(-70px);
}

/* ————— peopleLike-section PC 端：3列网格布局 + 固定宽换行 ————— */
.peopleLike-section .peopleLike-steps-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 100%;
}

.peopleLike-section .peopleLike-steps-wrapper {
  display: contents;
}

.peopleLike-section .peopleLike-steps-pagination {
  display: none;
}

/* ————— peopleLike-section 移动端：单列 Swiper 轮播 ————— */
@media (max-width: 768px) {
  .peopleLike-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .peopleLike-section .peopleLike-steps-container {
    max-width: 100%;
    padding: 0px;
    box-sizing: border-box;
  }

  .peopleLike-section .peopleLike-steps-swiper {
    width: 100%;
    display: block;
    position: relative;
    overflow-x: hidden;
  }

  .peopleLike-section .peopleLike-steps-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.3s ease;
    align-items: center;
  }

  .peopleLike-section .peopleLike-step-img-box {
    height: 189px;
    width: 315px;
  }

  .peopleLike-section .peopleLike-step-item {
    position: relative;
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
    background-color: transparent;
  }

  .peopleLike-section .peopleLike-step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 345px;
    height: 100%;
    transform: translateX(-50%);
    border-radius: 20px;
    background-color: #F5F7F9;
    z-index: -1;
  }

  .peopleLike-section .video-text-overlay-mobile {
    display: block;
    color: #1A1A1A;
    background: transparent;
    padding: 0;
    width: 315px;
    pointer-events: none;
  }

  .peopleLike-section .video-text-overlay-mobile .video-text-title {
    font-size: 16px;
  }

  .peopleLike-section .video-text-overlay {
    display: none;
  }

  .peopleLike-section .peopleLike-step-desc {
    width: 315px;
    height: 271px;
  }

  .peopleLike-section .peopleLike-step-desc .peopleLike-step-desc-title {
    font-size: 15px;
    font-weight: 600px;
  }

  /* 分页器样式 */
  .peopleLike-section .peopleLike-steps-pagination {
    margin-top: 24px;
    text-align: center;
    display: block;
  }

  .peopleLike-section .peopleLike-steps-pagination .swiper-pagination-bullet {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 6px;
    border-radius: 3px;
    background: #F8EEFF;
    opacity: 1;
    margin: 0 4px;
  }

  .peopleLike-section .peopleLike-steps-pagination .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    background: #D059FF;
    border-radius: 3px;
    transition: width 3s linear;
  }

  .peopleLike-section .peopleLike-steps-pagination .swiper-pagination-bullet-active::before {
    width: 100%;
    height: 100%;
  }
}

/* ————— bestUseCases-section ————— */
.bestUseCases-section {
  max-width: 1400px;
  box-sizing: border-box;
  padding: 0px;
  margin: 120px auto 0;
  position: relative;
}

.bestUseCases-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 60px;
}

.bestUseCases-section .bestUseCases-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  box-sizing: border-box;
  background: transparent;
  gap: 60px;
}

.bestUseCases-section .bestUseCases-box .bestUseCases-item {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  width: 100%;
  margin: 0px;
  padding: 30px;
  border-radius: 20px;
  gap: 30px;
}

.bestUseCases-section .bestUseCases-box .bestUseCases-item:hover .bestUseCases-item-img {
  transform: scale(1.2);
}

.bestUseCases-section .bestUseCases-box .bestUseCases-item#bestUseCases-item-1 {
  background-color: #f7e9ff;
}

.bestUseCases-section .bestUseCases-box .bestUseCases-item#bestUseCases-item-2 {
  background-color: #fefae2;
}

.bestUseCases-section .bestUseCases-box .bestUseCases-item#bestUseCases-item-3 {
  background-color: #edf3ff;
}

.bestUseCases-section .bestUseCases-box .reverse-show {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row-reverse;
  align-items: center;
  width: 100%;
  margin: 0px;
  background: #f3f3f3;
  padding: 30px;
  border-radius: 20px;
  gap: 30px;
}

.bestUseCases-section .bestUseCases-box .bestUseCases-item .bestUseCases-item-img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 50%;
  min-width: none;
  height: 360px;
  margin: auto 0px;
  background: transparent;
  overflow: hidden;
  flex: 1;
  border-radius: 20px;
}

.bestUseCases-section .bestUseCases-item-img {
  transition: transform 0.5s ease;
}

.bestUseCases-section .bestUseCases-box .bestUseCases-item .bestUseCases-item-img-box .sample-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  /* 隐藏所有播放控件 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.bestUseCases-section .bestUseCases-box .bestUseCases-item .bestUseCases-item-img-box .sample-video {
  pointer-events: none;
  /* 防止用户交互 */
  background-color: #a4a7ab;
  /* 视频加载前的背景色 */
}

.bestUseCases-section .bestUseCases-box .bestUseCases-item .bestUseCases-item-img-box video {
  background-color: transparent;
}

.bestUseCases-section .bestUseCases-box .bestUseCases-item .bestUseCases-item-desc {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 0px;
  flex: 1;
  flex-wrap: wrap;
  box-sizing: border-box;
  max-width: 100%;
  padding: 0px 5px 0px 5px;
}

.bestUseCases-section .bestUseCases-box .bestUseCases-item .bestUseCases-item-desc .bestUseCases-item-desc-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.bestUseCases-section .bestUseCases-box .bestUseCases-item .bestUseCases-item-desc .bestUseCases-item-desc-title span {
  color: #d260ff;
}

.bestUseCases-section .bestUseCases-box .bestUseCases-item .bestUseCases-item-desc .bestUseCases-item-desc-text {
  font-size: 16px;
  font-weight: 500;
  color: #282828;
  line-height: 1.6;
  margin-bottom: 26px;
}

.bestUseCases-section .bestUseCases-box .bestUseCasesBtn:hover {
  transform: scale(1.05);
  animation: main-btn-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@media (max-width: 768px) {
  .bestUseCases-section {
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .bestUseCases-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .bestUseCases-section .bestUseCases-box {
    width: 345px;
    padding: 10px;
  }

  .bestUseCases-section .bestUseCases-item-desc-title {
    font-size: 20px !important;
    font-weight: 800 !important;
    text-align: center;
  }

  .bestUseCases-section .bestUseCases-item-desc-text {
    font-size: 14px !important;
    font-weight: 400 !important;
    text-align: center;
  }

  .bestUseCases-section .bestUseCases-box .bestUseCases-item {
    flex-direction: column;
    padding: 10px 10px 35px 10px;
  }

  .bestUseCases-section .bestUseCases-box .bestUseCases-item .bestUseCases-item-img-box {
    max-width: 100%;
  }

  .bestUseCases-section .bestUseCases-box .bestUseCases-item .bestUseCases-item-desc {
    justify-content: center;
  }
}

/* ————— discoverMore-section ————— */
.discoverMore-section {
  max-width: 1400px;
  margin: 120px auto 0;
  padding: 0px;
  box-sizing: border-box;
  position: relative;
}

.discoverMore-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 50px;
}

.discoverMore-section .discoverMore-section-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
}

.discoverMore-section .discoverMore-section-list .discover-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 230px;
  height: 58px;
  padding: 16px 24px;
  border: 2px solid #dfdfdf;
  border-radius: 40px;
  background: transparent;
  color: #282828;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  font-family: Figtree;
  font-style: SemiBold;
}

.discoverMore-section .discoverMore-section-list .discover-btn .arrow {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("https://images.noviai.ai/noviaien/assets/ai-tools/novi-ai-left-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-left: 18px;
}

.discoverMore-section .discoverMore-section-list .discover-btn:hover {
  border-color: #d059ff;
  color: #d059ff;
  transform: translateY(-2px);
}

.discoverMore-section .discoverMore-section-list .discover-btn:hover .arrow {
  background-image: url("https://images.noviai.ai/noviaien/assets/ai-tools/novi-ai-left-arrow_hov.svg");
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .discoverMore-section {
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .discoverMore-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .discoverMore-section .discoverMore-section-list {
    row-gap: 10px;
    column-gap: 15px;
    display: grid;
    width: fit-content;
    width: 345px;
    grid-template-columns: repeat(2, 1fr);
  }

  .discoverMore-section .discoverMore-section-list .discover-btn {
    height: auto;
    min-width: 0;
    font-size: 13px;
    padding: 10px 8px;
    text-align: center;
  }

  .discoverMore-section .discoverMore-section-list .discover-btn .arrow {
    margin-left: 6px;
    width: 16px;
    height: 16px;
  }
}

/* ————— programEntrance-section ————— */
.programEntrance-section {
  max-width: 100%;
  width: 100%;
  max-height: 560px;
  height: 560px;
  box-sizing: border-box;
  padding: 0px;
  margin: 120px auto 0;
  position: relative;
  overflow: hidden;
}

.programEntrance-section .programEntrance-img-box {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background: transparent;
}

.programEntrance-section .programEntrance-img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.programEntrance-section .programEntrance-img-box img,
.programEntrance-section .programEntrance-img-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.programEntrance-section .programEntrance-desc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background: transparent;
}

.programEntrance-section .programEntrance-desc .programEntrance-desc-logo {
  margin-bottom: 20px;
}

.programEntrance-section .programEntrance-desc .programEntrance-desc-logo span {
  margin-left: 14px;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.programEntrance-section .programEntrance-desc .programEntrance-desc-text {
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.programEntrance-section .programEntrance-desc .programEntrance-desc-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  width: auto;
  height: auto;
  margin-top: 0;
}

.programEntrance-section .programEntrance-desc .programEntrance-desc-btn .programEntrance-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  height: 60px;
  padding: 0 30px;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.programEntrance-section .programEntrance-desc .programEntrance-desc-btn .programEntrance-btn .programEntrance-btn-span {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

.programEntrance-btn-span {
  margin-left: 10px;
}

.programEntrance-section .programEntrance-desc .programEntrance-desc-btn .click-link {
  background: transparent;
  border: 1px solid white;
  backdrop-filter: blur(10px);
}

.programEntrance-section .programEntrance-desc .programEntrance-desc-btn .click-link:hover {
  transform: scale(1.05);
  animation: main-btn-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.programEntrance-section .programEntrance-desc .programEntrance-desc-btn .click-down {
  background: #046ae7;
  border: 1px solid #046ae7;
}

.programEntrance-section .programEntrance-desc .programEntrance-desc-btn .click-down:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .programEntrance-section {
    height: 373px;
    margin: 60px auto 0;
  }

  .programEntrance-section .programEntrance-desc .programEntrance-desc-text {
    font-size: 28px;
    margin-bottom: 20px;
    padding: 0 20px;
  }

  .programEntrance-section .programEntrance-desc .programEntrance-desc-btn {
    flex-direction: column;
    gap: 22px;
  }

  .programEntrance-section .programEntrance-desc .programEntrance-desc-btn .programEntrance-btn {
    min-width: 163px;
    height: 43px;
    border-radius: 10px;
  }
}

/* ————— relatedArticles-section ————— */
.relatedArticles-section {
  max-width: 1400px;
  margin: 120px auto 0;
  padding: 0px;
  box-sizing: border-box;
  position: relative;
}

.relatedArticles-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 50px;
}

.relatedArticles-section .relatedArticles-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background: transparent;
  flex-wrap: wrap;
  gap: 25px;
}

.relatedArticles-section .relatedArticles-box .relatedArticles-item {
  width: 330px;
  height: 284px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  background: #f1f1f1;
  border-radius: 20px;
  padding: 13px 0px 0px 0px;
}

.relatedArticles-section .relatedArticles-box .relatedArticles-item:hover {
  box-shadow: 0px 0px 20px 0px rgba(37, 88, 255, 0.4);
}

.relatedArticles-section .relatedArticles-box .relatedArticles-item .relatedArticles-item-img-box {
  width: 304px;
  height: 187px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background: transparent;
  margin-bottom: 15px;
}

.relatedArticles-section .relatedArticles-box .relatedArticles-item .relatedArticles-item-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.relatedArticles-section .relatedArticles-box .relatedArticles-item .relatedArticles-item-desc {
  max-width: 304px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background: transparent;
}

.relatedArticles-section .relatedArticles-box .relatedArticles-item .relatedArticles-item-desc .relatedArticles-item-desc-text {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .relatedArticles-section {
    margin: 60px auto 0;
  }

  .relatedArticles-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .relatedArticles-section .relatedArticles-box {
    gap: 20px;
  }

  .relatedArticles-section .relatedArticles-box .relatedArticles-item {
    width: 100%;
    flex-direction: column;
    max-width: 345px;
    height: 284px;
  }
}

/* ————— aboutOur-section ————— */
.aboutOur-section {
  max-width: 1400px;
  margin: 120px auto 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

.aboutOur-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 50px;
}

.aboutOur-section .aboutOur-box {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
  height: 481px;
}

.aboutOur-section .aboutOur-keyDesc {
  max-width: 602px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px;
  box-sizing: border-box;
  background: #f7e9ff;
  border-radius: 20px;
  gap: 0px;
}

.aboutOur-section .aboutOur-keyDesc:hover {
  box-shadow: 0px 0px 20px 0px rgba(224, 70, 255, 0.4);
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  /* 向上浮动 10px */
  100% {
    transform: translateY(0);
  }
}

.aboutOur-section .aboutOur-keyDesc-logo {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  /* 确保元素是块级或可定位的 */
  display: inline-block;
  /* 动画 */
  animation: floatUpDown 3s ease-in-out infinite;
}

.aboutOur-section .aboutOur-keyDesc-logo img {
  width: 120px;
  height: auto;
}

.aboutOur-section .aboutOur-keyDesc-title {
  font-size: 26px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: left;
  margin-bottom: 20px;
}

.aboutOur-section .aboutOur-keyDesc-text {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.8;
  margin: 0;
  flex-grow: 1;
  overflow-y: auto;
  margin-bottom: 20px;
}

.aboutOur-section .aboutOur-otherDesc {
  max-width: 778px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 30px;
  box-sizing: border-box;
  background: #edf3ff;
  border-radius: 20px;
  gap: 10px;
}

.aboutOur-section .aboutOur-otherDesc:hover {
  box-shadow: 0px 0px 20px 0px rgba(51, 95, 240, 0.4);
}

.aboutOur-section .about-use-btn:hover {
  transform: scale(1.05);
  animation: main-btn-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.aboutOur-section .aboutOur-otherDesc-title {
  font-size: 26px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: left;
  margin: 0;
}

.aboutOur-section .aboutOur-otherDesc-text {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 5px;
}

.aboutOur-section .aboutOur-otherDesc-oneDayInfo {
  display: flex;
  width: 100%;
  height: 120px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.aboutOur-section .aboutOur-otherDesc-oneDayInfo .stat-item {
  text-align: left;
}

.aboutOur-section .aboutOur-otherDesc-oneDayInfo .stat-value {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  transition: all 0.2s ease-out;
}

.aboutOur-section .aboutOur-otherDesc-oneDayInfo .stat-label {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
}

.aboutOur-section .aboutOur-otherDesc-oneDayInfo .stat-status-indicator {
  padding: 8px 12px;
  border-radius: 30px;
  min-height: 40px;
  min-width: 170px;
  font-size: 16px;
  font-weight: 500;
  color: #008e47;
  background: #e8fff0;
  border: 1px solid #22ce78;
  display: inline-block;
  text-align: center;
  line-height: 2;
}

.aboutOur-section .aboutOur-otherDesc-oneDayInfo .stat-status-indicator svg {
  margin-right: 8px;
}

.aboutOur-section .aboutOur-otherDesc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 14px;
  column-gap: 10px;
  width: 100%;
}

.aboutOur-section .aboutOur-otherDesc-list .list-item {
  display: flex;
  align-items: center;
  height: 98px;
  padding: 24px 30px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  gap: 13px;
}

.aboutOur-section .aboutOur-otherDesc-list .list-item .item-icon {
  width: 50px;
  height: 50px;
  border-radius: 9px;
}

.aboutOur-section .aboutOur-otherDesc-list .list-item .item-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aboutOur-section .aboutOur-otherDesc-list .item-content {
  flex-grow: 1;
}

.aboutOur-section .aboutOur-otherDesc-list .item-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.aboutOur-section .aboutOur-otherDesc-list .item-desc {
  font-size: 14px;
  font-weight: 500;
  color: #747474;
  margin: 0;
}

@media (min-width: 769px) {
  .aboutOur-section .aboutOur-box {
    flex-wrap: nowrap;
  }

  .aboutOur-section .aboutOur-keyDesc {
    flex: 0 1 602px;
    /* 不放大，可收缩，基准宽 602px */
    min-width: 300px;
    /* 收缩底线：不窄于 400px */
    max-width: 602px;
    height: 100%;
  }

  .aboutOur-section .aboutOur-otherDesc {
    flex: 1 1 778px;
    /* 可放大、可收缩，基准宽 778px */
    min-width: 400px;
    max-width: 778px;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .aboutOur-section .aboutOur-box {
    flex-wrap: wrap;
    min-height: 481px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .aboutOur-section {
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .aboutOur-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .aboutOur-section .aboutOur-box {
    flex-direction: column;
    height: auto;
    gap: 16px;
    width: 345px;
  }

  .aboutOur-section .aboutOur-keyDesc-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
  }

  .aboutOur-section .aboutOur-keyDesc-text {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
  }

  .aboutOur-section .aboutOur-otherDesc-title {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
  }

  .aboutOur-section .aboutOur-otherDesc-text {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
  }

  .aboutOur-section .aboutOur-keyDesc,
  .aboutOur-section .aboutOur-otherDesc {
    flex: 0 0 100% !important;
    min-width: auto !important;
    max-width: 100% !important;
    height: auto;
    padding: 25px 14px;
    align-items: center;
  }

  .aboutOur-section .aboutOur-keyDesc-logo img {
    width: 65px;
  }

  .aboutOur-section .aboutOur-otherDesc-oneDayInfo {
    gap: 16px;
    padding: 16px;
    position: relative;
  }

  .aboutOur-section .aboutOur-otherDesc-oneDayInfo .stat-value {
    font-size: 34px;
  }

  .aboutOur-section .aboutOur-otherDesc-oneDayInfo .stat-label {
    font-size: 14px;
  }

  .aboutOur-section .aboutOur-otherDesc-oneDayInfo .stat-status {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .aboutOur-section .aboutOur-otherDesc-oneDayInfo .stat-status-indicator {
    font-size: 14px;
    width: fit-content;
    height: 32px;
    padding: 0 7px;
    white-space: nowrap;
    min-width: auto;
    min-height: auto;
    font-weight: 500;
  }

  .aboutOur-section .aboutOur-otherDesc-oneDayInfo .stat-status-indicator svg {
    margin: 0;
  }

  .aboutOur-section .aboutOur-otherDesc-list {
    gap: 13px;
  }

  .aboutOur-section .aboutOur-otherDesc-list .list-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 116px;
    padding: 0;
    gap: 5px;
    align-items: center;
  }

  .aboutOur-section .aboutOur-otherDesc-list .item-content {
    flex-grow: 0;
  }

  .aboutOur-section .aboutOur-otherDesc-list .item-title {
    font-size: 18px;
    text-align: center;
  }

  .aboutOur-section .aboutOur-otherDesc-list .item-desc {
    font-size: 12px;
    text-align: center;
  }

  .aboutOur-section .aboutOur-otherDesc-list .list-item .item-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
}

/* ————— faq-section ————— */
.faq-section {
  max-width: 1400px;
  margin: 120px auto 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

.faq-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 50px;
}

.faq-section .faqs-content {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.faq-section .faqs-content .info {
  width: 100%;
  background: #f5f7f9;
  border-radius: 15px;
}

.faq-section h2 {
  margin-bottom: 50px;
}

.faq-section .faqs-content a svg {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}

.faq-section .info {
  border-radius: 15px;
  background-color: #ffffff;
}

.faq-section .info:last-child {
  margin-bottom: 0;
}

.faq-section .info .info-titles {
  padding: 27px 46px 27px 20px;
  /* 调整左右padding */
  font-size: 22px;
  display: flex;
  align-items: center;
  /* 改为居中对齐 */
  justify-content: space-between;
  /* 将内容分布到两端 */
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.faq-section .info.current .info-titles {
  padding-bottom: 17px;
}

.faq-section .info.current .info-titles h3 {
  color: #d059ff;
}

.faq-section .info .info-titles .open {
  width: 18px;
  height: 10px;
}

.faq-section .info .info-titles svg.open {
  width: 18px;
  height: 18px;
  position: static;
  /* 改为静态定位 */
  color: #767474;
  flex-shrink: 0;
  transform: translateY(0) rotate(0deg);
  /* 调整transform */
  margin-left: 4px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  order: 2;
  /* 图标排在标题后面 */
}

/* 修改这里：调整标题样式 */
.faq-section .info .info-titles h3 {
  margin: 0;
  flex: 1;
  /* 标题占据剩余空间 */
  order: 1;
  /* 标题排在第一 */
  padding-right: 10px;
  /* 与图标保持间距 */
}

.faq-section .info.current .info-titles svg.open {
  transform: translateY(0) rotate(180deg);
  /* 展开时180度（向上） */
  -moz-transform: translateY(0) rotate(180deg);
  -webkit-transform: translateY(0) rotate(180deg);
  -o-transform: translateY(0) rotate(180deg);
  color: #1a1a1a;
  /* 展开时图标也变为蓝色 */
}

.faq-section .info .info-content {
  display: none;
  margin: 16px 50px 0px 20px;
  color: #51545c;
  font-weight: 400;
  font-size: 16px;
}

.faq-section .info.current .info-content {
  display: block;
  margin-top: 0;
  padding-bottom: 27px;
}

.faq-section .info .info-content span {
  display: block;
}

@media (max-width: 768px) {
  .faq-section .base-maxwidth {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0 0 0;
  }

  .faq-section .base-maxwidth {
    padding: 0 15px;
  }

  .faq-section h2 {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    margin: 60px auto 0;
    width: 345px;
  }

  .faq-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .faq-section .info {
    margin-bottom: 18px;
  }

  .faq-section .info .info-titles {
    padding: 12px 12px 12px 17px;
    /* 调整移动端padding */
    font-size: 16px;
  }

  .faq-section .faqs-content {
    gap: 0;
  }

  .faq-section .info .info-content {
    font-size: 14px;
    margin: 16px 34px 0px 11px;
  }

  .faq-section .info .info-titles h3 {
    font-size: 16px;
  }
}

.faq-section .flexible {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 20px 20px 20px 0px;
  background: transparent;
  border-radius: 15px;
}

/* ————— whyChoose-section ————— */
.whyChoose-section {
  max-width: 1400px;
  margin: 120px auto 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

.whyChoose-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 50px;
}

.whyChoose-section .whyChoose-section-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  flex-wrap: wrap;
  padding: 0;
  gap: 30px;
  background: #f5f7f9;
  padding: 40px 50px;
  border-radius: 20px;
}

.whyChoose-section .whyChoose-section-list .whyChoose-list-title {
  width: 100%;
  font-size: 36px;
  font-weight: 700;
  text-align: left;
  color: #1a1a1a;
}

.whyChoose-section .whyChoose-section-list .whyChoose-list-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  background: transparent;
  flex-wrap: wrap;
  padding: 0;
  gap: 15px;
}

.whyChoose-section .whyChoose-section-list .whyChoose-list-item .whyChoose-list-item-title {
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  color: #1a1a1a;
}

.whyChoose-section .whyChoose-section-list .whyChoose-list-item .whyChoose-list-item-content {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  color: #1a1a1a;
}

.whyChoose-section .whyChoose-list-table {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  background: #fff;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 6px;
}

.whyChoose-section .whyChoose-list-table .table-header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  background: #d059ff;
  color: white;
  font-size: 18px;
  font-weight: 700;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.whyChoose-section .whyChoose-list-table .table-row {
  display: flex;
  border-bottom: 1px solid #e4e4e4;
  align-items: center;
}

.whyChoose-section .whyChoose-list-table .table-row:last-child {
  border-bottom: none;
}

.whyChoose-section .whyChoose-list-table .row-label {
  font-size: 16px;
  font-weight: 500;
  color: #282828;
  display: inline-block;
  /* 关键 */
  margin: 0 auto;
  /* 水平居中 */
  text-align: left;
  /* 内部文字左对齐 */
}

.whyChoose-section .whyChoose-list-table .row-cell {
  font-size: 16px;
  font-weight: 500;
  color: #282828;
  line-height: 1.6;
  display: inline-block;
  /* 关键 */
  margin: 0 auto;
  /* 水平居中 */
  text-align: left;
  /* 内部文字左对齐 */
}

.whyChoose-section .whyChoose-list-table .table-header .header-cell:not(:last-child) {
  border-right: 1px solid #c6c6c6;
}

.whyChoose-section .whyChoose-list-table .table-row .row-cell:not(:last-child),
.whyChoose-section .whyChoose-list-table .table-row .row-label {
  border-right: 1px solid #c6c6c6;
}

.whyChoose-section .whyChoose-list-table .header-cell {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0px 30px;
}

.whyChoose-section .whyChoose-list-table .row-label,
.whyChoose-section .whyChoose-list-table .row-cell {
  width: 100%;
  height: 120px;
  padding: 0px 30px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media (max-width: 768px) {
  .whyChoose-section {
    margin: 60px auto 0;
    width: 345px;
  }

  .whyChoose-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .whyChoose-section .whyChoose-section-list {
    padding: 30px 20px;
  }

  .whyChoose-section .whyChoose-section-list .whyChoose-list-title {
    font-size: 20px;
    font-weight: 800;
  }

  .whyChoose-section .whyChoose-section-list .whyChoose-list-item .whyChoose-list-item-title {
    font-size: 16px;
    font-weight: 800;
  }

  .whyChoose-section .whyChoose-section-list .whyChoose-list-item .whyChoose-list-item-content {
    font-size: 14px;
  }

  .whyChoose-section .whyChoose-list-table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    background: #f9fafb;
    border: 1px solid #e4e4e4;
  }

  .whyChoose-section .whyChoose-list-table>div {
    min-width: 768px;
  }

  .whyChoose-section .whyChoose-list-table .table-header {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    background: #d260ff;
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    min-width: 768px;
  }

  .whyChoose-section .whyChoose-list-table .table-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid #e4e4e4;
    align-items: center;
    background: white;
    min-width: 768px;
  }

  .whyChoose-section .whyChoose-list-table .table-row:last-child {
    border-bottom: none;
  }

  .whyChoose-section .whyChoose-list-table .table-header {
    display: grid !important;
  }

  .whyChoose-section .whyChoose-list-table .table-row {
    display: grid !important;
    flex-direction: row !important;
    gap: 0 !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
  }

  .whyChoose-section .whyChoose-list-table .row-label {
    font-weight: 500 !important;
    color: #282828 !important;
    font-size: 16px !important;
  }

  .whyChoose-section .whyChoose-list-table .row-cell {
    font-weight: 500 !important;
    color: #282828 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  .whyChoose-section .whyChoose-list-table .table-header .header-cell:not(:last-child) {
    border-right: 1px solid #c6c6c6 !important;
  }

  .whyChoose-section .whyChoose-list-table .table-row .row-cell:not(:last-child),
  .whyChoose-section .whyChoose-list-table .table-row .row-label {
    border-right: 1px solid #c6c6c6 !important;
  }

  .whyChoose-section .whyChoose-list-table .header-cell,
  .whyChoose-section .whyChoose-list-table .row-label,
  .whyChoose-section .whyChoose-list-table .row-cell {
    padding: 10px 10px !important;
    box-sizing: border-box;
  }
}

/* ————— moreStyles-section ————— */
.moreStyles-section {
  max-width: 1400px;
  box-sizing: border-box;
  padding: 0px;
  margin: 120px auto 0;
  position: relative;
}

.moreStyles-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 20px;
}

.moreStyles-section .moreStyles-title-desc {
  font-size: 18px;
  font-weight: 400;
  color: #282828;
  text-align: center;
  margin-bottom: 50px;
}

.moreStyles-section .moreStyles-step-item {
  min-width: 250px;
  min-height: 700px;
  text-align: center;
  box-sizing: border-box;
  border-radius: 24px;
  padding: 12px 12px 0px 12px;
  display: flex;
  flex-direction: column;
}

.moreStyles-section .moreStyles-step-item.bgStyle1 {
  background: #335ff0;
}

.moreStyles-section .moreStyles-step-item.bgStyle2 {
  background: #6b1ef2;
}

.moreStyles-section .moreStyles-step-item.bgStyle3 {
  background: #a011ff;
}

.moreStyles-section .moreStyles-step-item.bgStyle4 {
  background: #c200e5;
}

.moreStyles-section .moreStyles-step-item .moreStyles-item-img-box {
  width: 100%;
  height: 390px;
  margin-bottom: 16px;
  background: transparent;
  flex-shrink: 0;
}

.moreStyles-section .moreStyles-step-item .moreStyles-item-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.moreStyles-section .moreStyles-step-item .moreStyles-item-title {
  width: 100%;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  word-wrap: break-word;
  padding-left: 12px;
}

.moreStyles-section .moreStyles-step-item .moreStyles-item-text {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 20px;
  word-wrap: break-word;
  padding-left: 12px;
}

.moreStyles-section .moreStyles-steps-swiper {
  display: contents;
}

.moreStyles-section .moreStyles-step-item .reusable-button {
  margin-top: auto;
  /* 将按钮推到容器底部 */
  margin-bottom: 30px;
  flex-shrink: 0;
  margin-left: 12px;
}

@media (max-width: 768px) {
  .moreStyles-section {
    margin: 60px auto 0;
  }

  .moreStyles-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .moreStyles-section .moreStyles-title-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .moreStyles-section .moreStyles-steps-container {
    max-width: 100%;
    padding: 0px;
    box-sizing: border-box;
  }

  .moreStyles-section .moreStyles-steps-swiper {
    width: 100%;
    display: block;
    position: relative;
    overflow-x: hidden;
  }

  .moreStyles-section .moreStyles-step-item {
    position: relative;
    background: transparent !important;
    padding-bottom: 30px;
    min-height: 0px;
    align-items: center;
    flex: 0 0 100%;
    box-sizing: border-box;
  }

  .moreStyles-section .moreStyles-step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 345px;
    height: 100%;
    transform: translateX(-50%);
    border-radius: 20px;
    z-index: -1;
  }

  .moreStyles-section .moreStyles-step-item.bgStyle1::before {
    background-color: #335ff0;
  }

  .moreStyles-section .moreStyles-step-item.bgStyle2::before {
    background-color: #6b1ef2;
  }

  .moreStyles-section .moreStyles-step-item.bgStyle3::before {
    background-color: #a011ff;
  }

  .moreStyles-section .moreStyles-steps-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.3s ease;
    align-items: center;
  }

  .moreStyles-section .moreStyles-step-item .moreStyles-item-img-box {
    width: 325px;
    height: 293px;
    margin-bottom: 20px;
  }

  .moreStyles-section .moreStyles-steps-pagination {
    margin-top: 24px;
    text-align: center;
  }

  .moreStyles-section .moreStyles-steps-pagination .swiper-pagination-bullet {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 6px;
    border-radius: 3px;
    background: #F8EEFF;
    opacity: 1;
    margin: 0 4px;
  }

  .moreStyles-section .moreStyles-steps-pagination .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    background: #D059FF;
    border-radius: 3px;
    transition: width 3s linear;
  }

  .moreStyles-section .moreStyles-steps-pagination .swiper-pagination-bullet-active::before {
    width: 100%;
    height: 100%;
  }

  .moreStyles-section .moreStyles-step-item .moreStyles-item-title {
    text-align: center;
    font-size: 22px;
    display: block;
    width: 320px;
  }

  .moreStyles-section .moreStyles-step-item .moreStyles-item-text {
    text-align: center;
    font-size: 14px;
    display: block;
    width: 320px;
  }

  .moreStyles-section .moreStyles-step-item .reusable-button {
    margin-top: 30px;
    margin-bottom: 0px;
  }
}

@media (min-width: 769px) {
  .moreStyles-section .moreStyles-steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    max-width: 100%;
    margin: 0 auto;
  }

  .moreStyles-section .moreStyles-steps-wrapper {
    display: contents;
  }

  .moreStyles-section .moreStyles-steps-pagination {
    display: none;
  }

  .moreStyles-section .moreStyles-step-item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 456px;
    min-height: 700px;
    text-align: center;
    box-sizing: border-box;
    border-radius: 24px;
    padding: 12px 12px 0px 12px;
  }

  .moreStyles-section .moreStyles-step-item .moreStyles-item-title {
    text-align: left;
    font-size: 22px;
  }

  .moreStyles-section .moreStyles-step-item .moreStyles-item-text {
    text-align: left;
    font-size: 16px;
  }
}

.global-toast {
  position: fixed;
  left: 50%;
  top: 80px;
  transform: translateX(-50%) translateY(10px);
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  color: #fff;
  opacity: 0;
  z-index: 9999;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  white-space: nowrap;
}

.global-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.global-toast.success {
  background: rgba(40, 167, 69, 0.95);
}

.global-toast.error {
  background: rgba(220, 53, 69, 0.95);
}

.article-table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 19px;
  width: 100%;
  table-layout: fixed;
  text-align: center;
  border: 1px solid #D8DCE0;
}

.base-table-header {
  background: var(--topic-color);
  border-radius: 19px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  height: 56px;
}

.article-table td {
  border-right: 1px solid #D6DAE0;
  border-bottom: 1px solid #D6DAE0;
  padding: 23px 34px;
  font-size: 14px;
  font-weight: 500;
}

.article-table th {
  border-right: 1px solid #DD8EFF;
  border-bottom: 1px solid #DD8EFF;
}

.article-table th:first-child {
  border-radius: 19px 0 0 0;
}

.article-table th:last-child {
  border-radius: 0 19px 0 0;
  border-right: none;
}

.article-table tbody tr:last-child td {
  border-bottom: none;
}

.article-table td:last-child {
  border-right: none;
}

.article-table tbody tr:last-child td:last-child {
  border-radius: 0 0 19px 0;
}

.article-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 19px;
}

.main-video-box .main-img {
  width: 100%;
  height: 100%;
  display: none;
}

.main-video-box .main-img.active {
  display: block;
}

/* ===== 视频原生控件样式 ===== */

/* 视频容器 - 透明背景 + 圆角 */
.choose-section .main-video-box {
  width: 100%;
  height: 400px;
  border-radius: 20px;        /* 圆角20px */
  overflow: hidden;           /* 确保圆角裁剪 */
  position: relative;
}

/* 视频元素 - 显示原生控件 */
.choose-section .main-video-box .main-video {
  width: 100%;
  height: 100%;
  object-fit: contain;        /* 保持视频比例，透明背景会透出 */
  display: none;
}

.choose-section .main-video-box .main-video.active {
  display: block;
}

/* 移除controls属性可能带有的白色背景 */
.choose-section .main-video-box .main-video::-webkit-media-controls-panel {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}

.choose-section .main-video-box .main-video::-webkit-media-controls {
  border-radius: 0 0 20px 20px;  /* 底部控件也带圆角 */
}


/* ===== peopleLike-section 视频控制样式 ===== */

/* 视频容器 - 相对定位 */
.peopleLike-section .peopleLike-step-img-box {
  position: relative;
  width: 630px;
  height: 354px;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

/* 视频元素 - 保持比例，显示原生控件 */
.peopleLike-section .peopleLike-step-img-box .sample-video {
  width: 100%;
  height: 100%;
  object-fit: contain;  /* 保持原始比例 */
  display: block;
}

/* 覆盖原有的pointer-events设置，让视频可以交互 */
.peopleLike-section .peopleLike-step-img-box .sample-video {
  pointer-events: auto !important;
}

/* 文字覆盖层 - 只覆盖视频上半部分，不挡住底部控件 */
.peopleLike-section .video-text-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 5;
  pointer-events: none;  /* 让点击穿透到视频 */
  padding: 20px 20px 60px 20px;  /* 底部留出60px给控件 */

}

/* 视频控件区域 - 确保不被覆盖 */
.peopleLike-section .peopleLike-step-img-box .sample-video::-webkit-media-controls-panel {
  position: relative;
  z-index: 10;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}

.peopleLike-section .peopleLike-step-img-box .sample-video::-webkit-media-controls {
  position: relative;
  z-index: 10;
}

/* 标题文字 - 放在上半部分 */
.peopleLike-section .video-text-overlay .video-text-title {
  font-weight: 700;
  font-size: 22px;
  color: white;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  position: relative;
  z-index: 6;
  max-width: 80%;  /* 限制宽度，避免挡住控件区域 */
}

/* 描述文字 */
.peopleLike-section .video-text-overlay .video-text-desc {
  font-size: 14px;
  font-weight: 400;
  color: white;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  position: relative;
  z-index: 6;
  max-width: 80%;
  opacity: 0.9;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .peopleLike-section .peopleLike-step-img-box {
    width: 315px;
    height: 189px;
  }
  
  .peopleLike-section .video-text-overlay {
    padding: 10px 10px 50px 10px;  
  }
  
  .peopleLike-section .video-text-overlay .video-text-title {
    font-size: 16px;
    max-width: 90%;
  }
  
  .peopleLike-section .video-text-overlay .video-text-desc {
    font-size: 12px;
    max-width: 90%;
  }
}