.products {
  width: 100%;
  padding: 40px 0;
  background: #F5F5F7;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 80px;
  /* Removed overflow: hidden to allow horizontal scrolling */
}

.products-title {
  color: #000000;
  font-weight: 400;
  font-size: 24px;
  max-width: 1120px;
  text-align: left;
  margin-bottom: 30px;
  font-weight: bold;
}

.products {
  position: relative;
}

.products-navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

.nav-btn {
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #333;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.nav-btn:hover {
  background-color: white;
  transform: scale(1.1);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.prev-btn {
  margin-left: 10px;
}

.next-btn {
  margin-right: 10px;
}

.products-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  gap: 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  max-width: 100%;
  /* 确保容器不超过屏幕宽度 */
  box-sizing: border-box;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .products .product-card {
    min-width: 280px;
  }
}

@media (max-width: 480px) {
  .products .product-card {
    min-width: 220px;
  }
  .products-container {
    padding: 10px 5px;
    gap: 10px;
  }
}

.products-container::-webkit-scrollbar {
  display: none;
}

.products .product-card {
  min-width: 400px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.products .product-image-container {
  width: 100%;
  height: 250px;
  line-height: 250px;
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 0;
}

.products .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.products .product-details {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background-color: #F5F5F7;
  text-align: center;
}

.products .product-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1D1D1F;
  margin-top: 10px;
}

.products .product-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.products .product-tag {
  width: 83px;
  height: 16px;
  border-radius: 16px;
  border: 1px solid #1D1D1F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #1D1D1F;
}

.products .learn-more-btn {
  width: 90px;
  height: 28px;
  border-radius: 28px;
  background-color: #36D94C;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0;
}

.products .learn-more-btn:hover {
  background-color: #2CC041;
}

.products .product-navigation {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.products .nav-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products .nav-button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Statement Regarding Section Styles */
.statement-regarding {
  width: 100%;
  padding: 60px 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sr-container {
  max-width: 1120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sr-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 20px;
  text-align: center;
}

.sr-desc {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
}

.sr-card {
  width: 1120px;
  border-radius: 56px;
  background-color: #F5F5F7;
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sr-card .keyword {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 20px;
  text-align: center;
}

.sr-card .p-name {}

/* About Brand Story Section Styles */
.about-brand-story {
  width: 100%;
  padding: 60px 0;
  background-color: #F5F5F7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-brand-story-container {
  max-width: 1120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-brand-story-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 20px;
  text-align: center;
}

.about-brand-story-desc {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
}

.about-brand-story-card {
  width: 1120px;
  height: 450px;
  border-radius: 56px;
  background-color: #FFFFFF;
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.about-brand-story-card-left {
  width: 50%;
  padding-right: 40px;
  box-sizing: border-box;
}

.about-brand-story-card-left-title {
  color: #1D1D1F;
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 20px;
}

.about-brand-story-card-left-desc {
  color: #1D1D1F;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
}

.about-brand-story-card-right {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}

.about-brand-story-card-right img {
  width: 436px;
  height: 330px;
  object-fit: cover;
  border-radius: 16px;
}

/* Responsive styles for about-brand-story-card */
@media (max-width: 768px) {
  .about-brand-story-card {
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 30px;
  }

  .about-brand-story-card-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .about-brand-story-card-left-title {
    font-size: 28px;
  }

  .about-brand-story-card-right {
    width: 100%;
    justify-content: center;
  }

  .about-brand-story-card-right img {
    width: 100%;
    height: auto;
    max-width: 400px;
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .about-brand-story-card {
    border-radius: 24px;
    padding: 20px;
  }

  .about-brand-story-card-left-title {
    font-size: 24px;
  }

  .about-brand-story-card-left-desc {
    font-size: 12px;
  }

  .about-brand-story-card-right img {
    max-width: 100%;
    max-height: 250px;
    border-radius: 12px;
  }
}

/* Commitment Section Styles */
.commitment {
  width: 100%;
  padding: 120px 0;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.commitment-container {
  max-width: 1120px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.commitment-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.commitment-desc {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
}

/* Exceptional Section Styles */
.exceptional {
  width: 100%;
  padding: 120px 0;
  background-color: #F5F5F7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.exceptional-container {
  max-width: 1120px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.exceptional-desc {
  color: #87868B;
  font-weight: 400;
  font-size: 16px;
  width: 500px;
  text-align: center;
}

.exceptional-blocks {
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.exceptional-blocks-item {
  flex: 1;
  width: 100%;
  border-radius: 24px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: flex-start;
  padding: 30px;
  box-sizing: border-box;
}

.exceptional-blocks-item-img {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exceptional-blocks-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.exceptional-blocks-item-title {
  color: #1D1D1F;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.exceptional-blocks-item-desc {
  color: #87868B;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive styles for exceptional section */
@media (max-width: 1200px) {
  .exceptional-blocks-item {
    width: calc(50% - 15px);
    height: 350px;
  }
}

@media (max-width: 768px) {
  .exceptional-blocks {
    flex-direction: column;
    align-items: center;
  }

  .exceptional-blocks-item {
    width: 100%;
    max-width: 520px;
    height: auto;
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .exceptional {
    padding: 40px 0;
  }

  .exceptional-desc {
    font-size: 14px;
    width: 100%;
  }

  .exceptional-blocks-item {
    width: 100%;
    height: auto;
    min-height: 280px;
    border-radius: 16px;
    padding: 20px;
  }

  .exceptional-blocks-item-title {
    font-size: 16px;
  }

  .exceptional-blocks-item-desc {
    font-size: 12px;
  }
}

@media (max-width: 320px) {
  .exceptional-desc {
    font-size: 12px;
    width: 100%;
  }
}

/* TISV Section Styles */
.tisv {
  background-color: #F5F5F7;
  padding: 100px 0;
}

.tisv-card {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 56px;
  background-color: #FFFFFF;
  padding: 40px;
  box-sizing: border-box;
  text-align: center;
}

.tisv-card-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
}

.tisv-card-desc {
  color: #87868B;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 30px;
}

.tisv-card-footer {
  color: #1D1D1F;
  font-weight: 400;
  font-size: 14px;
  margin-top: 60px;
}

/* Responsive styles for TISV section */
@media (max-width: 768px) {
  .tisv-card {
    padding: 30px;
    border-radius: 40px;
  }

  .tisv-card-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .tisv-card {
    padding: 20px;
    border-radius: 24px;
  }

  .tisv-card-title {
    font-size: 24px;
  }

  .tisv-card-desc,
  .tisv-card-footer {
    font-size: 12px;
  }
}

/* Wholesale List Section Styles */
.wholesale-list {
  background-color: #F5F5F7;
  padding: 60px 0;
}

.wholesale-list-card {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 56px;
  background-color: #FFFFFF;
  padding: 40px;
  box-sizing: border-box;
}

.wholesale-list-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  margin-bottom: 40px;
}

.wholesale-list-row {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #E5E5E5;
  padding: 20px 0;
}

.wholesale-list-row:first-child {
  border-top: 1px solid #E5E5E5;
}

.wholesale-list-row-item {
  flex: 1;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
}

.wholesale-list-row-item-title {
  color: #1D1D1F;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}

.wholesale-list-row-item-desc {
  color: #87868B;
  font-weight: 400;
  font-size: 14px;
}

/* Responsive styles for Wholesale List section */
@media (max-width: 768px) {
  .wholesale-list-card {
    padding: 30px;
    border-radius: 40px;
  }

  .wholesale-list-title {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .wholesale-list-card {
    padding: 20px;
    border-radius: 24px;
  }

  .wholesale-list-title {
    font-size: 28px;
  }

  .wholesale-list-row-item-title {
    font-size: 14px;
  }

  .wholesale-list-row-item-desc {
    font-size: 12px;
  }
}

.commitment-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.commitment-content-item {
  width: calc(33.33% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.commitment-content-item-img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.commitment-content-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.commitment-content-item-title {
  color: #1D1D1F;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.commitment-content-item-desc {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
}

/* Become Form Section Styles */
.become-form {
  background-color: #F5F5F7;
  padding: 60px 0;
}

.become-form-card {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 56px;
  background-color: #FFFFFF;
  padding: 40px;
  box-sizing: border-box;
}

.become-form-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 40px;
  text-align: center;
}

.become-form-body {
  width: 100%;
}

.become-form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.become-form-row-item {
  width: calc(50% - 10px);
}

.become-form-row-item input,
.become-form-row-item textarea {
  width: 100%;
  height: 52px;
  border-radius: 12px;
  background-color: #F5F5F7;
  border: none;
  padding: 0 16px;
  box-sizing: border-box;
  font-size: 16px;
  color: #1D1D1F;
}

.become-form-row-item textarea {
  height: 120px;
  resize: none;
  padding: 16px;
}

.become-form-row.full-width {
  display: block;
}

.become-form-row.full-width .become-form-row-item {
  width: 100%;
}

.uploadPicture-container {
  margin-bottom: 20px;
}

.uploadPicture {
  font-family: Microsoft YaHei;
  color: #87868B;
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
  text-decoration: none;
  text-align: left;
  margin-bottom: 5px;
  display: block;
  cursor: pointer;
}

.uploadPicture-hint {
  font-family: Microsoft YaHei;
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
  font-style: normal;
  text-decoration: none;
  text-align: left;
  margin-bottom: 15px;
  display: block;
}

.become-form-submit {
  background-color: #1D1D1F;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  padding: 14px 40px;
  border: none;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

.become-form-submit:hover {
  background-color: #333333;
}

/* Responsive styles for Become Form section */
@media (max-width: 768px) {
  .become-form-card {
    padding: 30px;
    border-radius: 40px;
  }

  .become-form-title {
    font-size: 36px;
  }

  .become-form-row-item {
    width: 100%;
    margin-bottom: 20px;
  }

  .become-form-row {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .become-form-card {
    padding: 20px;
    border-radius: 24px;
  }

  .become-form-title {
    font-size: 28px;
  }

  .become-form-row-item input,
  .become-form-row-item textarea {
    height: 48px;
    font-size: 14px;
  }

  .uploadPicture {
    font-size: 14px;
  }

  .become-form-submit {
    font-size: 14px;
    padding: 12px 30px;
  }
}

.sr-card .p-name {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

.sr-card .sr-image {
  width: 960px;
  height: 580px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 20px;
}

.sr-card .sr-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sr-card .p-footer {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  max-width: 800px;
}

/* Reason Section Styles */
.reason {
  width: 100%;
  padding: 60px 0;
  background-color: #F5F5F7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reason-container {
  max-width: 1120px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reason-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}

.reason-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
}

.reason-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 300px;
}

.reason-icon {
  width: 92px;
  height: 92px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reason-icon-title {
  color: #1D1D1F;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 10px;
}

.reason-icon-desc {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
}

/* Reason Card Styles */
.reason-card {
  width: 1120px;
  height: 450px;
  border-radius: 56px;
  background-color: #FFFFFF;
  display: flex;
  overflow: hidden;
  margin-top: 40px;
}

.reason-card .left {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reason-card .right {
  width: 330px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.reason-card-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
}

.reason-card-desc {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
}

.reason-card-img {
  width: 330px;
  height: 330px;
  object-fit: contain;
}

/* Page Footer Styles */
.page-footer {
  width: 100%;
  background-color: #F5F5F7;
  padding: 60px 0;
}

.page-footer-container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.about-us {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.about-us-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 32px;
  font-style: normal;
  text-decoration: underline;
  text-align: left;
}

.about-us-desc {
  color: #87868B;
  font-weight: 400;
  font-size: 10px;
  margin-top: 10px;
}

.about-us-right {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
  cursor: pointer;
}

.page-footer-desc {
  color: #1D1D1F;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.page-footer-link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 40px;
  padding-top: 60px;
  border-top: 1px solid #999;
}

.footer-link-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.footer-link-label {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-link-list {
  color: #1D1D1F;
  font-weight: 400;
  font-size: 12px;
  line-height: 2;
  list-style: none;
  padding: 0;
}

.footer-link-list li {
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-link-list li:hover {
  color: #0066cc;
}

/* Contract Us Section Styles */
.contract-us {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  margin-top: 60px;
  border-top: 1px solid #999;
}

.contract-us-left {
  color: #1D1D1F;
  font-weight: 400;
  font-size: 18px;
}

.contract-us-right {
  display: flex;
  align-items: center;
}

.contract-us-right-title {
  color: #1D1D1F;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 10px;
}

.contract-us-right-email {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 20px;
}

.contract-us-right-icons {
  display: flex;
  gap: 10px;
  padding-left: 20px;
}

.contract-us-right-icon-item {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.contract-us-right-icon-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* Verification Navigation Styles */
.verification-navs {
  background-color: #FFFFFF;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/* Responsive Styles for Verification Navigation */
@media (max-width: 768px) {
  .verification-navs-container {
    padding: 0 20px;
  }

  .verification-navs-left {
    font-size: 20px;
  }

  .verification-navs-right {
    gap: 20px;
  }

  .verification-navs-right-item {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .verification-navs-container {
    flex-direction: column;
    height: auto;
    padding: 15px 20px;
    align-items: center;
  }

  .verification-navs-left {
    font-size: 18px;
    line-height: 40px;
    margin-bottom: 10px;
  }

  .verification-navs-right {
    gap: 15px;
    line-height: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .verification-navs-right-item {
    font-size: 12px;
    line-height: 30px;
  }
}


/* Verification Content Styles */

/* Verification Success Dialog Styles */

/* Verification Fail Dialog Styles */
.verification-fail-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.verification-fail-dialog-overlay.active {
  opacity: 1;
  visibility: visible;
}

.verification-fail-dialog {
  width: 50%;
  border-radius: 25px;
  background-color: #FFFFFF;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 40px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  text-align: center;
}

.verification-fail-dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F5F5F7;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
}

.verification-fail-dialog-close:hover {
  background-color: #E5E5E7;
}

.verification-fail-dialog-tip {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
}

.verification-fail-dialog-title {
  color: #1D1D1F;
  font-weight: 400;
  font-size: 32px;
  margin-top: 10px;
}

.verification-fail-dialog-desc {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 16px;
  margin-top: 30px;
}

.verification-fail-dialog-code {
  font-size: 28px;
  font-weight: 700;
  color: #1D1D1F;
  letter-spacing: 2px;
  padding: 0px 40px;
  border-radius: 25px;
  background-color: #FF3B30;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  line-height: 40px;
  margin-top: 10px;
}

.verification-fail-dialog-time {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
  margin-top: 20px;
}

.verification-fail-dialog-footer-desc {
  color: #87868B;
  font-weight: 400;
  font-size: 14px;
  margin-top: 30px;
  line-height: 1.5;
}

/* Verification Success Dialog Styles */
.verification-success-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.verification-success-dialog-overlay.active {
  opacity: 1;
  visibility: visible;
}

.verification-success-dialog {
  width: 50%;
  border-radius: 25px;
  background-color: #FFFFFF;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 40px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  /* 确保弹窗位于覆盖层上方 */

  text-align: center;
}

.verification-success-dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F5F5F7;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
}

.verification-success-dialog-close:hover {
  background-color: #E5E5E7;
}

.verification-success-dialog-tip {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
}

.verification-success-dialog-title {
  color: #1D1D1F;
  font-weight: 400;
  font-size: 32px;
  margin-top: 10px;
}

.verification-success-dialog-desc {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 16px;
  margin-top: 30px;
}

.verification-success-dialog-code {
  font-size: 28px;
  font-weight: 700;
  color: #1D1D1F;
  letter-spacing: 2px;
  padding: 0px 40px;
  border-radius: 25px;
  background-color: #36D94C;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  line-height: 40px;
  margin-top: 10px;
}

.verification-success-dialog-time {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
  margin-top: 20px;
}

.verification-success-dialog-footer-desc {
  color: #87868B;
  font-weight: 400;
  font-size: 14px;
  margin-top: 30px;
  line-height: 1.5;
}

/* Responsive Styles for Dialog */
@media (max-width: 1024px) {
  .verification-success-dialog {
    width: 80%;
    max-width: 768px;
    height: auto;
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .verification-success-dialog {
    width: 90%;
    padding: 30px;
    border-radius: 30px;
  }
}

@media (max-width: 480px) {
  .verification-success-dialog {
    width: 95%;
    padding: 20px;
    border-radius: 20px;
  }
}


.verification-content {
  width: 100%;
  background-color: #F5F5F7;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive Styles for Verification Card */
@media (max-width: 1200px) {
  .verification-content-card {
    width: 90%;
    max-width: 900px;
    height: auto;
    padding: 40px;
  }

  .verification-content-card-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .verification-content-card {
    width: 95%;
    padding: 30px;
    border-radius: 30px;
  }

  .verification-content-card-title {
    font-size: 28px;
  }

  .verification-content-card-desc {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .verification-content-card-input {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .verification-content {
    padding: 40px 0;
  }

  .verification-content-card {
    border-radius: 20px;
    width: 95%;
    max-width: 375px;
    padding: 20px !important;
  }

  .verification-content-card-title {
    font-size: 24px;
  }

  .verification-content-card-desc {
    font-size: 12px;
  }

  .verification-content-card-input {
    width: 100%;
    max-width: 300px;
    height: 50px;
  }

  .verification-content-card-input-btn {
    width: 80px;
    height: 40px;
    font-size: 14px;
  }

  .verification-content-card-tips {
    padding: 20px;
  }

  .verification-content-card-tips-title {
    font-size: 14px;
  }

  .verification-content-card-tips-desc {
    font-size: 10px;
  }
}

.verification-content-card {
  width: 1120px;
  border-radius: 56px;
  background-color: #FFFFFF;
  padding: 60px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.verification-content-card-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
}

.verification-content-card-desc {
  color: #87868B;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
}

.verification-content-card-input {
  width: 568px;
  height: 60px;
  border-radius: 12px;
  background-color: #F5F5F7;
  display: flex;
  align-items: center;
  padding: 0 15px;
  margin-bottom: 40px;
}

.verification-content-card-input input {
  flex: 1;
  height: 100%;
  border: none;
  background-color: transparent;
  padding: 0 15px;
  font-size: 16px;
  color: #1D1D1F;
  outline: none;
}

.verification-content-card-input-btn {
  width: 96px;
  height: 49px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(200, 90, 215, 1) 0%, rgba(244, 81, 25, 1) 100%);
  color: #FFFFFF;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.verification-content-card-input-btn:hover {
  opacity: 0.9;
}

.verification-content-card-tips {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

.verification-content-card-tips-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}

.verification-content-card-tips-desc {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
}

.verification-navs-container {
  min-height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  max-width: 1120px;
  width: 100%;
}

.verification-navs-left {
  font-weight: 400;
  font-size: 24px;
  line-height: 60px;
  font-weight: 700;
}

.verification-navs-right {
  display: flex;
}

/* Video Panel Styles */
.video-panel {
  width: 100%;
  padding: 60px 0;
  background-color: #F5F5F7;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-panel-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}

.video-panel-content {
  width: 100%;
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 20px;
  gap: 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  justify-content: flex-start;
}

.video-panel-content::-webkit-scrollbar {
  display: none;
}

.video-panel-content-item {
  position: relative;
  min-width: 941px;
  cursor: pointer;
  flex-shrink: 0;
}

/* Responsive styles for video panel */
@media (max-width: 1200px) {
  .video-panel-content-item {
    min-width: 768px;
  }

  .video-panel-content-item-img {
    width: 100%;
    height: 432px;
  }
}

@media (max-width: 992px) {
  .video-panel-content-item {
    min-width: 640px;
  }

  .video-panel-content-item-img {
    width: 100%;
    height: 360px;
  }
}

@media (max-width: 768px) {
  .video-panel-content-item {
    min-width: 576px;
  }

  .video-panel-content-item-img {
    width: 100%;
    height: 324px;
  }
}

@media (max-width: 576px) {
  .video-panel-content-item {
    min-width: 100%;
    max-width: 100%;
  }

  .video-panel-content-item-img {
    width: 100%;
    height: 200px;
  }

  .video-panel-content-item-title {
    font-size: 24px;
  }
}

.video-panel-content-item-img {
  width: 100%;
  height: 528px;
  border-radius: 32px;
  object-fit: cover;
}

@media (min-width: 1201px) {}

.video-panel-content-item {
  background-color: #1D1D1F;
  overflow: hidden;
  border-radius: 32px;
}

.video-panel-content-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-panel-content-item-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 36px;
}

.verification-navs-right {
  display: flex;
}

/* FAQ Section Styles */
.faq-card-container {
  background-color: #F5F5F7;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-card {
  width: 1120px;
  border-radius: 56px;
  background-color: #FFFFFF;
  box-sizing: border-box;
  padding: 40px;
}

.faq-filter {
  width: 324px;
  height: 61px;
  border-radius: 31px;
  background-color: #ECECEE;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
}

.faq-filter-item {
  width: 156px;
  height: 49px;
  color: #333336;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.faq-filter-item.active {
  width: 156px;
  height: 49px;
  border-radius: 25px;
  background-color: #1D1D1F;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 1;
}

.faq-filter-item:hover {
  opacity: 0.8;
}

.faq-content {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ECECEE;
}

.faq-question {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  color: #87868B;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

/* Responsive Styles for FAQ */
@media (max-width: 1200px) {
  .faq-card {
    width: 90%;
    max-width: 900px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .faq-card {
    width: 95%;
    padding: 30px;
    border-radius: 30px;
  }

  .faq-filter {
    width: 280px;
    height: 50px;
  }

  .faq-filter-item {
    width: 136px;
    height: 40px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .faq-card-container {
    padding: 40px 0;
  }

  .faq-card {
    border-radius: 20px;
    width: 95%;
    padding: 20px;
  }

  .faq-filter {
    width: 100%;
    max-width: 280px;
  }

  .faq-filter-item {
    width: 48%;
    font-size: 12px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 12px;
  }
}

.verification-navs-right {
  display: flex;
  gap: 40px;
  line-height: 60px;
  color: #87868B;
}

.verification-navs-right-item {
  font-weight: 400;
  font-size: 14px;
  line-height: 60px;
  cursor: pointer;
}

.verification-navs-right-item.active {
  color: #1D1D1F;
  font-weight: 700;
  border-bottom: 1px solid #1D1D1F;
}

/* Gen1 Description Section Styles */
.gen1-desc {
  background-color: #FFFFFF;
  padding: 60px 0;
  width: 100%;
}

.gen1-desc-container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.gen1-desc-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.gen1-desc-subtitle {
  color: #87868B;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 40px;
  text-align: center;
}

.gen1-desc-content {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: center;
}

.gen1-desc-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.gen1-desc-item img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}

.gen1-desc-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

/* Responsive Design for Gen1 Section */

/* Gen1 Features Section */
.gen1-features {
  background-color: #F5F5F7;
  padding: 60px 0;
  width: 100%;
}

.gen1-features-container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.gen1-features-subtitle {
  color: #1D1D1F;
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 10px;
}

.gen1-features-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 30px;
}

.gen1-features-comparison {
  position: relative;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1D1D1F;
  padding: 0 20px;
  margin: 40px auto;
  width: 80%;
}

.gen1-features-comparison::before,
.gen1-features-comparison::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background-color: #999;
}

.gen1-features-comparison::before {
  left: 0;
}

.gen1-features-comparison::after {
  right: 0;
}

/* Responsive Design for Gen1 Features */

.gen1-features-block {
  margin-top: 60px;
  padding: 40px 0;
}

.gen1-features-block-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  text-align: left;
}

.gen1-features-block-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.gen1-features-block-item {
  flex: 1;
  height: 216px;
  border-radius: 24px;
  background-color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.gen1-features-block-item-img {
  margin-bottom: 20px;
}

.gen1-features-block-item-img img {
  width: 68px;
  height: 80px;
  object-fit: contain;
}

.gen1-features-block-item-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  text-align: left;
}

.gen1-features-block-item-desc {
  color: #1D1D1F;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
  opacity: 0.6;
}

/* Responsive Design for Gen1 Features Block */
@media (max-width: 768px) {
  .gen1-features-block-title {
    font-size: 28px;
  }

  .gen1-features-block-item {
    width: 300px;
    height: 220px;
  }
}

@media (max-width: 480px) {
  .gen1-features-block-title {
    font-size: 24px;
  }

  .gen1-features-block-item {
    width: 100%;
    max-width: 300px;
    height: auto;
    min-height: 200px;
  }
}

/* Gen2 Feature1 Section Styles */
.gen2-feature1 {
  background-color: #F5F5F7;
  padding: 60px 0;
  width: 100%;
}

.gen2-feature1-container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gen2-feature1-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.gen2-feature1-desc {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: center;
}

/* Responsive Design for Gen2 Feature1 */
@media (max-width: 768px) {
  .gen2-feature1-title {
    font-size: 36px;
  }

  .gen2-feature1-desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .gen2-feature1-title {
    font-size: 28px;
  }

  .gen2-feature1-desc {
    font-size: 12px;
  }
}

/* Gen2 Feature1 Card Styles */

/* Gen2 Feature2 Section Styles */
.gen2-feature2 {
  background-color: #FFFFFF;
  padding: 60px 0;
  width: 100%;
}

.gen2-feature2-container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.gen2-feature2-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.gen2-feature2-desc {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: center;
}

.gen2-feature2-card {
  width: 1120px;
  height: 419px;
  border-radius: 56px;
  background-color: #F5F5F7;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.gen2-feature2-card-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.gen2-feature2-card-right img {
  width: 215px;
  height: 419px;
  object-fit: contain;
}

/* Responsive Design for Gen2 Feature2 Card Right */
@media (max-width: 1200px) {
  .gen2-feature2-card-right img {
    width: 180px;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .gen2-feature2-card {
    flex-direction: column;
  }

  .gen2-feature2-card-right img {
    width: 160px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .gen2-feature2-card-right img {
    width: 140px;
    height: 260px;
  }
}

/* Responsive Design for Gen2 Feature2 */
@media (max-width: 1200px) {
  .gen2-feature2-card {
    width: 90%;
    height: auto;
    max-width: 1000px;
  }
}

@media (max-width: 768px) {
  .gen2-feature2-title {
    font-size: 28px;
  }
}

/* Gen2 How Use Section Styles */
.gen2-how-use {
  background-color: #FFFFFF;
  padding: 60px 0;
  width: 100%;
}

.gen2-how-use-container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.gen2-how-use-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}

.gen2-how-use-card1 {
  width: 1120px;
  height: 431px;
  border-radius: 56px;
  background-color: #F5F5F7;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.gen2-how-use-card1-left {
  padding: 0 60px;
  width: 400px;
  text-align: center;
  border-right: 1px solid #e5e5e5;
}

.gen2-how-use-card1-left-img {
  margin-bottom: 30px;
}

.gen2-how-use-card1-left-img img {
  width: 148px;
  height: 152px;
  object-fit: contain;
}

.gen2-how-use-card1-right {
  padding-left: 60px;
  display: flex;
  height: 100%;
  width: 700px;
}

.gen2-how-use-card1-right-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}

.gen2-how-use-card1-right-item-tip {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 10px;
  text-align: left;
}

.gen2-how-use-card1-right-item-title {
  color: #5281A6;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 10px;
}

.gen2-how-use-card1-right-item-desc {
  color: #87868B;
  font-weight: 400;
  font-size: 24px;
  text-align: left;
  line-height: 1.6;
  margin-top: 40px;
}

.gen2-how-use-card1-left div:last-child {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 24px;
}

.gen2-how-use-blocks {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.gen2-how-use-block {
  text-align: center;
  padding: 20px 30px;
}

@media (max-width: 480px) {
  .gen2-how-use-blocks {
    flex-direction: column;
  }

  .gen2-how-use-card1-right {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .gen2-how-use-card1-right {
    flex: 1;
    width: 240px;
    align-items: flex-start;
  }
}


.gen2-how-use-block-img img {
  width: 220px;
  object-fit: contain;
}

.gen2-how-use-block-title {
  color: #1D1D1F;
  font-weight: 400;
  font-size: 20px;
  margin-top: 20px;
}

.gen2-how-use-block-desc {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
  margin-top: 10px;
}

.gen2-how-use-block-arrow {
  width: 16px;
  height: 20px;
}

/* Responsive Design for Gen2 How Use */
@media (max-width: 1200px) {
  .gen2-how-use-card1 {
    width: 90%;
    height: auto;
    max-width: 1000px;
  }

  .gen2-how-use-title {
    font-size: 28px;
  }

  .gen2-how-use-card1-left div:last-child {
    font-size: 22px;
  }

  .gen2-how-use-card1-left-img img {
    width: 130px;
    height: 134px;
  }

  .gen2-how-use-card1-right-item-title {
    font-size: 24px;
  }

  .gen2-how-use-card1-right-item-desc {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .gen2-how-use-card1 {
    width: 95%;
    height: auto;
    flex-direction: column;
  }

  .gen2-how-use-title {
    font-size: 24px;
  }

  .gen2-how-use-card1-left {
    padding: 40px;
    align-items: center;
    text-align: center;
  }

  .gen2-how-use-card1-left div:last-child {
    font-size: 20px;
  }

  .gen2-how-use-card1-left-img img {
    width: 120px;
    height: 124px;
  }

  .gen2-how-use-card1-right-item-title {
    font-size: 24px;
  }

  .gen2-how-use-card1-right-item-tip {
    font-size: 10px;
  }

  .gen2-how-use-card1-right-item-desc {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .gen2-how-use-card1 {
    width: 100%;
    height: auto;
    border-radius: 28px;
  }

  .gen2-how-use-title {
    font-size: 20px;
  }

  .gen2-how-use-card1-left {
    padding: 30px 20px;
  }

  .gen2-how-use-card1-left-img img {
    width: 110px;
    height: 114px;
  }

  .gen2-how-use-card1-left div:last-child {
    font-size: 18px;
  }

  .gen2-how-use-card1-right-item-title {
    font-size: 28px;
  }

  .gen2-how-use-card1-right-item-tip {
    font-size: 12px;
  }

  .gen2-how-use-card1-right-item-desc {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .gen2-feature2-desc {
    font-size: 14px;
  }

  .gen2-feature2-card {
    width: 95%;
    height: auto;
    border-radius: 40px;
  }

  .gen2-feature2-card-left-title {
    font-size: 48px;
  }

  .gen2-feature2-card-left-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .gen2-feature2-title {
    font-size: 24px;
  }

  .gen2-feature2-desc {
    font-size: 12px;
  }

  .gen2-feature2-card {
    width: 100%;
    height: auto;
    border-radius: 24px;
  }

  .gen2-feature2-card-left-title {
    font-size: 40px;
  }

  .gen2-feature2-card-left-subtitle {
    font-size: 16px;
  }

  .gen2-feature2-card-left-desc {
    font-size: 14px;
  }
}

/* Gen2 Safety Warning Styles */
.gen2-safety-warning {
  background-color: #F5F5F7;
  padding: 60px 0;
  width: 100%;
}

.gen2-safety-warning-container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.gen2-safety-warning-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 20px;
}

.gen2-safety-warning-desc {
  color: #87868B;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  margin-top: 40px;
}

/* Responsive Design for Gen2 Safety Warning */
@media (max-width: 1200px) {
  .gen2-safety-warning-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .gen2-safety-warning-title {
    font-size: 36px;
  }

  .gen2-safety-warning-desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .gen2-safety-warning-title {
    font-size: 30px;
  }

  .gen2-safety-warning-desc {
    font-size: 12px;
  }
}

/* Gen2 Feature2 Card Left Styles */
.gen2-feature2-card-left {
  padding: 60px;
  flex: 1;
}

.gen2-feature2-card-left-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 56px;
  margin-bottom: 10px;
}

.gen2-feature2-card-left-subtitle {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 30px;
  opacity: 0.7;
}

.gen2-feature2-card-left-desc {
  color: #1D1D1F;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.gen2-feature1-card-left-title {
  color: #1D1D1F;
  font-weight: 700;
  font-size: 56px;
  margin-bottom: 20px;
}

.gen2-feature1-card-left-desc {
  color: #1D1D1F;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Responsive Design for Gen2 Feature1 Card */
@media (max-width: 1200px) {
  .gen2-feature1-card-left-title {
    font-size: 48px;
  }

  .gen2-feature1-card-left-desc {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .gen2-feature1-card-left-title {
    font-size: 40px;
  }

  .gen2-feature1-card-left-desc {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .gen2-feature1-card-left-title {
    font-size: 32px;
  }

  .gen2-feature1-card-left-desc {
    font-size: 16px;
  }
}

/* Gen2 Feature1 Card Styles */
.gen2-feature1-card {
  display: flex;
  border-radius: 56px;
  background-color: #FFFFFF;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  justify-content: space-between;
  align-items: center;
  padding: 40px 100px;
  width: 1120px;
}

.gen2-feature1-card-right img {
  width: 320px;
  height: 320px;
  object-fit: contain;
}

/* Responsive Design for Gen2 Feature1 Card */
@media (max-width: 1200px) {
  .gen2-feature1-card {
    width: 90%;
    max-width: 1120px;
    height: auto;
    min-height: 419px;
  }
}

@media (max-width: 768px) {
  .gen2-feature1-card {
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
  }

  .gen2-feature1-card-right img {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 480px) {
  .gen2-feature1-card-right img {
    width: 240px;
    height: 240px;
  }
}

/* Responsive Design for Gen1 Features */
@media (max-width: 768px) {
  .gen1-features-title {
    font-size: 36px;
  }

  .gen1-features-comparison {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .gen1-features-title {
    font-size: 28px;
  }

  .gen1-features-comparison {
    font-size: 20px;
  }

  .gen1-features-comparison::before,
  .gen1-features-comparison::after {
    width: 20%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {

  .gen1-desc-title,
  .gen1-desc-subtitle,
  .gen1-desc-content {
    font-size: 24px;
  }

  .gen1-desc-item img {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 480px) {

  .gen1-desc-title,
  .gen1-desc-subtitle,
  .gen1-desc-content {
    font-size: 20px;
  }

  .gen1-desc-item img {
    width: 200px;
    height: 200px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {

  /* Products Section */
  .products .product-card {
    min-width: 280px;
  }

  /* Statement Regarding Section */
  .sr-title {
    font-size: 32px;
  }

  .sr-card {
    width: 100%;
    border-radius: 20px;
    padding: 20px;
  }

  .sr-card .sr-image {
    width: 100%;
    height: auto;
  }

  /* Reason Section */
  .reason-title {
    font-size: 24px;
  }

  .reason-card {
    width: 100%;
    height: auto;
    border-radius: 20px;
    flex-direction: column;
  }

  .reason-card .left {
    padding: 20px;
  }

  .reason-card .right {
    width: 100%;
    padding: 20px;
  }

  .reason-card-title {
    font-size: 24px;
  }

  /* Page Footer */
  .about-us {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-footer-link {
    flex-direction: column;
    gap: 30px;
  }

  .contract-us {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .products-title {
    font-size: 20px;
  }

  .reason-icon {
    width: 70px;
    height: 70px;
  }

  .contract-us-left {
    font-size: 16px;
  }

  .contract-us-right-icon-item {
    width: 30px;
    height: 30px;
  }

  .contract-us-right-icon-item img {
    width: 30px;
    height: 30px;
  }
}