  .bg-gradient-light {
    background: linear-gradient(135deg, #F5F7FA 0%, #E8F3FF 100%);
  }

  .shadow-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  .hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }

  /* 产品亮点样式 */
  .feature-title {
    font-size: 24px;
    line-height: 33px;
    color: #000000;
    margin-bottom: 1rem;
  }

  .feature-desc {
    font-size: 16px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.88);
    margin-bottom: 1rem;
  }

  .feature-list li {
    font-size: 16px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.88);
    margin-top: 0 !important;
  }

  /* 新增样式 */
  .hover-scale {
    transition: transform 0.3s ease;
  }

  .hover-scale:hover {
    transform: scale(1.05);
  }

  /* 产品亮点图片重叠样式 */
  .feature-image-overlap {
    position: relative;
  }

  .feature-image-overlap .image-container {
    position: relative;
    z-index: 1;
  }

  .feature-image-overlap:nth-child(odd) .image-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: -15%;
    width: 15%;
    height: 100%;
    background: inherit;
    z-index: 2;
  }

  .feature-image-overlap:nth-child(even) .image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -15%;
    width: 15%;
    height: 100%;
    background: inherit;
    z-index: 2;
  }

  /* 产品价值卡片样式 */
  .value-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
  }

  .value-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  .value-card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .value-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #165DFF;
  }

  .value-icon img {
    width: 100%;
    height: auto;
  }

  .value-arrow {
    color: #323233;
  }

  .bg-left-title {
    font-size: 2.75rem;
    color: #000000e0;
  }

  .free-apply-btn {
    background-image: linear-gradient(270deg, #9D66FE 0%, #1677FF 100%);
  }

  img {
    display: inline-block !important;
  }