    /* 基础样式 */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* 整体容器 */
    .section.product-hot.cloud-pro-list {
      background-color: #FFFFFF;
      padding: 40px 20px;
      max-width: 1680px;
      margin: 0 auto;
    }

    /* 选项卡样式 */
    .swiper-container.gallery-thumbs {
      margin-bottom: 30px;
      padding: 0 20px;
    }

    .swiper-slide.title {
      background-color: #3498db;
      color: white;
      padding: 12px 24px;
      border-radius: 25px;
      cursor: pointer;
      font-size: 16px;
      text-align: center;
      transition: all 0.3s ease;
      width: auto !important;
      margin-right: 10px;
    }

    .swiper-slide.title.active {
      background-color: #2980b9;
      box-shadow: 0 4px 15px rgba(41, 128, 185, 0.4);
    }

    /* 内容区域 */
    .swiper-container.hot-cont {
      width: 75%;
      padding: 0 20px;
      margin: 0 auto;
    }

    .product-country {
      display: flex;
      justify-content: center;
      margin-bottom: 30px;
      gap: 10px;
      flex-wrap: wrap;
    }

    .country-item {
      background-color: #ecf0f1;
      color: #333;
      padding: 10px 20px;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 14px;
    }

    .country-item.active {
      background-color: #bdc3c7;
      color: #fff;
    }

    .hot-list {
      display: none;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .hot-list.active {
      display: flex;
    }

    /* 产品项样式 */
    .product-item {
      background-color: white;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      border-radius: 12px;
      padding: 24px;
      width: calc(25% - 15px);
      transition: transform 0.3s ease;
    }

    .product-item:hover {
      transform: translateY(-5px);
    }

    .product-active-text {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 15px;
      color: #2c3e50;
    }

    .product-item-top h4 {
      font-size: 16px;
      margin-bottom: 8px;
      color: #34495e;
    }

    .title-desc {
      font-size: 14px;
      color: #7f8c8d;
      line-height: 1.5;
    }

    .product-config {
      margin: 15px 0;
    }

    .product-config p {
      margin: 8px 0;
      display: flex;
      justify-content: space-between;
    }

    .config-lable {
      color: #95a5a6;
    }

    .config-value {
      color: #2c3e50;
      font-weight: 500;
    }

    .product-text {
      margin: 15px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .product-text-item {
      background-color: #2ecc71;
      color: white;
      padding: 6px 12px;
      border-radius: 12px;
      font-size: 12px;
    }

    /* 优化后的价格样式 */
    .product-price-box {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 20px;
      gap: 15px;
      border-top: 1px solid #eee;
      padding-top: 20px;
    }

    .price-left {
      flex: 1;
    }

    .price {
      font-size: 21px;
      font-weight: bold;
      color: #e74c3c;
      position: relative;
    }

    /*.price:after {*/
    /*  content: "";*/
    /*  position: absolute;*/
    /*  bottom: -5px;*/
    /*  left: 0;*/
    /*  width: 100%;*/
    /*  height: 2px;*/
    /*  background: linear-gradient(90deg, transparent, #e74c3c 50%, transparent);*/
    /*}*/

    .origin-price {
      font-size: 16px;
      color: #95a5a6;
      text-decoration: line-through;
      margin-top: 5px;
    }

    .price-desc {
      font-size: 14px;
      color: #7f8c8d;
      margin-top: 5px;
    }

    .price-right {
      flex-shrink: 0;
    }

    .buy-cloud {
      text-decoration: none;
      display: block;
    }

    .product-btn {
      background-color: #3498db;
      color: white;
      padding: 12px 24px;
      border-radius: 25px;
      border: none;
      cursor: pointer;
      font-size: 16px;
      transition: all 0.3s ease;
      width: 100%;
    }

    .product-btn:hover {
      background-color: #2980b9;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
    }

    /* 响应式设计 */
    @media (max-width: 1200px) {
      .product-item {
        width: calc(50% - 10px);
      }
    }

    @media (max-width: 768px) {
      .product-item {
        width: 100%;
      }

      .country-item {
        padding: 8px 16px;
        font-size: 13px;
      }

      .product-btn {
        padding: 10px 20px;
        font-size: 14px;
      }
    }

    .swiper-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide.title {
      width: auto !important;
      margin-right: 10px;
      text-align: center;
    }

    .product-item {
      position: relative;
    }

    /**八折角标**/
    .discount-badge {
      position: absolute;
      top: 0.5rem;
      right: 0.5rem;
      background-color: red;
      color: white;
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 999px; /* 完全圆角 */
      font-weight: bold;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
      z-index: 1;
    }
