
      html,
      body,
      div,
      span,
      h1,
      h2,
      p {
        margin: 0;
        padding: 0;
        font-size: inherit;
        font-weight: 400;
      }
      .text-center {
        text-align: center;
      }
      .color-828282 {
        color: #828282;
      }
      .flex {
        display: flex;
      }
      .info-title {
        font-weight: 600;
        font-size: 36px;
        margin-bottom: 0;
      }
      .flex-column {
        display: flex;
        flex-direction: column;
      }
      .color-B84485 {
        color: #6f6f6f;
      }
      .color-EF8A35 {
        color: #ef8a35;
      }
	  .color-CC6171 {
        color: #CC6171;
      }
      /* 新增: X2 Pro 颜色 */
      .color-EC8054 {
        color: #ec8054;
      }
      .color-FF4F07 {
        color: #ff4f07;
      }
      .bg-EC8054 {
        background-color: #ec8054;
      }
      /* --- */
      .js-sb {
        justify-content: space-between;
        align-items: center;
      }
      .line {
        width: 100%;
        height: 1px;
        background-color: #dddddd;
        margin: 10px 0 30px;
      }
      .js-c {
        justify-content: center;
      }
      a {
        margin: 0 auto;
      }
      .btn1 {
        background-color: #ef8a35;
        color: #fff;
        text-decoration: none;
        text-align: center;
      }
      .btn2 {
        background-color: #000;
      }
      .auto {
        margin-top: auto;
      }
      /* 保持卡片容器是定位上下文 */
      .info-wrap .info-item {
        position: relative;
      }
      /* 图片层在最底 */
      .info-wrap .info-item .product-image {
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: auto;
        z-index: 0;
      }
      /* 除了图片以外的直接子元素都抬到上层 */
      .info-wrap .info-item > :not(.product-image) {
        position: relative;
        z-index: 1;
      }
      /* 标题+图标 同基线对齐 */
      .title-hot {
        align-items: baseline;
        margin-bottom: 25px; /* 和原 info-title 下方间距一致 */
      }
      .hot-icon {
        width: 72px;
        height: auto;
        margin-left: 8px;
      }
	    .limited-time {
        color: #CC6171;
        font-size: 14px;
        text-align: left;
        margin-top: 2px;
      }
	  
	  	.limited-time-std {
        color: #EF8A35;
        font-size: 14px;
        text-align: left;
        margin-top: 2px;
      }


      /* 新增：用于包裹特性简介的组 */
      .feature-list-tight {
        display: flex;
        flex-direction: column;
      }

      @media screen and (max-width: 767px) {
        .content-wrap {
          padding: 20px 0;
        }
        .content-wrap h1 {
          font-weight: 600;
          font-size: 30px;
          margin-bottom: 20px;
        }
        .content-wrap h2 {
          font-size: 18px;
          margin-bottom: 20px;
        }
        .info-wrap {
          flex-direction: column;
          gap: 15px;
          align-items: center;
        }
        .info-wrap .info-item {
          border-radius: 25px;
          padding: 20px;
          box-shadow: 0 5px 15px #68686833;
          width: 90%;
          max-width: 340px;
          box-sizing: border-box;
          display: flex;
          flex-direction: column;
        }
        .info-wrap .info-item .info-title {
          font-size: 24px;
        }
        .info-wrap .info-item .list {
          gap: 20px; /* 调整：增大组间距 */
        }
        /* 新增: 特性组内部间距 */
        .feature-list-tight {
          gap: 5px;
        }
        .info-wrap .info-item .list-name {
          font-size: 16px;
        }
        .info-wrap .info-item .list-content {
          font-size: 20px;
          font-weight: 500;
        }
        .info-wrap .info-item .list-item {
          gap: 10px;
        }
        .info-wrap .info-item .gap-62 {
          width: 100%;
          justify-content: space-between;
          flex: 1;
        }
        .info-wrap .info-item .gap-62 img {
          width: 92px;
        }
        .info-wrap .info-item ul li {
          font-size: 16px;
          font-weight: 500;
        }
        .info-wrap .info-item .price {
          font-size: 24px;
          font-weight: 500;
        }
        .btn1 {
          padding: 8px 20px;
          border-radius: 20px;
          font-size: 18px;
        }
        .info-wrap .info-item .product-image {
          width: 240px;
        }
      }

      @media screen and (min-width: 767px) {
        .content-wrap {
          padding: 95px 0 135px;
        }
        .content-wrap h1 {
          font-weight: 600;
          font-size: 46px;
          margin-bottom: 30px;
        }
        .content-wrap h2 {
          font-size: 26px;
          margin-bottom: 50px;
        }
        .info-wrap {
          gap: 40px;
          justify-content: center;
          flex-wrap: wrap;
        }
        .info-wrap .info-item {
          border-radius: 25px;
          padding: 40px;
          padding-bottom: 30px;
          box-shadow: 0 5px 15px #68686833;
          width: 480px;
          box-sizing: border-box;
          display: flex;
          flex-direction: column;
        }
        .info-wrap .info-item .list {
          gap: 30px; /* 调整：增大组间距 */
        }
        /* 新增: 特性组内部间距 */
        .feature-list-tight {
          gap: 10px;
        }
        .info-wrap .info-item .list-name {
          font-size: 20px;
        }
        .info-wrap .info-item .list-content {
          font-size: 30px;
          font-weight: 500;
        }
        .info-wrap .info-item .list-item {
          gap: 15px;
        }
        .info-wrap .info-item .gap-62 {
          width: 100%;
          justify-content: space-between;
          flex: 1;
        }
        .info-wrap .info-item .gap-62 img {
          width: 92px;
        }
        .info-wrap .info-item ul li {
          font-size: 20px;
          font-weight: 500;
        }
        .info-wrap .info-item .price {
          font-size: 36px;
          font-weight: 500;
        }
        .btn1 {
          padding: 10px 35px;
          border-radius: 27px;
          font-size: 24px;
        }
      }

      /* 自定义小字号列表内容 */
      @media screen and (min-width: 767px) {
        .info-wrap .info-item .list-content--small {
          font-size: 24px;
        }
      }
      @media screen and (max-width: 767px) {
        .info-wrap .info-item .list-content--small {
          font-size: 18px;
        }
      }
    