        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0px 0px;
            color: #2c3e50;
        }
        

        .info-box {
    border: 3px solid #00BCD4;
    padding: 3px;
    box-sizing: border-box;
    margin: 10px 0;
}

.info-content {
    border: 1px solid #2196F3;
    padding: 10px;
    box-sizing: border-box;
}

.info-title {
    text-align: center;
    font-weight: 1000;
    color: #000000;
    margin: 0;
    padding: 0;
}
.info-content p {
    margin: 0px 0;
}
        
        .header {
            text-align: center;
            margin-bottom: 40px;
            max-width: 800px;
        }
        
        .header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            background: linear-gradient(90deg, #3498db, #2ecc71);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .header p {
            color: #7f8c8d;
            font-size: 1.2rem;
            line-height: 1.6;
            margin-top: 15px;
        }
        
        .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1200px;
            width: 100%;
        }
        
        .component-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            width: 100%;
            max-width: 500px;
        }
        
        .section-title {
            font-size: 1.5rem;
            color: #3498db;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e0f7fa;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .section-title i {
            background: linear-gradient(135deg, #3498db, #2ecc71);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* 客服支持组件样式 */
        .support-component {
            background: linear-gradient(to bottom, #ffffff, #f8fdff);
            border-radius: 16px;
            padding: 10px;
            border: 1px solid #e0f7fa;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
            transition: all 0.3s ease;
        }
        
        .support-component:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
        }
        
        .support-header {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 0px;
        }
        
        .support-number {
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .number-circle {
            width: 30px;
            height: 30px;
            background-color: #e7f6fb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            box-shadow: 0 3px 6px rgba(0,0,0,0.05);
        }
        
        /* 添加伪元素作为装饰图标 */
        .number-circle::after {
            content: "";
            position: absolute;
            left: 32px;
            bottom: -4px;
            width: 32px;
            height: 38px; /* 根据图片比例调整 */
            background-image: url('/uploads/allimg/20250602/1-250602191K0435.png');
            background-size: contain;
            background-repeat: no-repeat;
            z-index: 1;
            filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
        }
        
        .number-circle strong {
            font-size: 22px;
            color: #3498db;
            font-weight: 700;
        }
/*      
        .number-decoration {
            position: absolute;
            left: 32px;
            bottom: -4px;
            width: 32px;
            height: auto;
            z-index: 1;
            filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
        }
*/  
        .support-dots {
            display: flex;
            gap: 8px;
            padding-left: 35px;
        }
        
        .support-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            box-shadow: 0 2px 3px rgba(0,0,0,0.1);
        }
        
        .dot-red {
            background-color: #ff9494;
        }
        
        .dot-blue {
            background-color: #82c2ea;
        }
        
        .dot-yellow {
            background-color: #ffdb78;
        }
        
        .support-body {
            border-left: 2px solid #3498db;
            padding: 5px 5px 1px 10px;
            margin-left: 14.5px;
            background: linear-gradient(to right, #f8fdff, #ffffff);
            border-radius: 0 10px 10px 0;
            transition: all 0.3s ease;
        }
        .support-body p{
            margin: 10px 0;
        }
        .support-body:hover {
            background: linear-gradient(to right, #e3f7ff, #ffffff);
            border-left: 2px solid #2ecc71;
        }
        
        .support-title {
            color: #e74c3c;
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .support-content {
            color: #3498db;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        
        /* 文档区域 */
        .documentation {
            background: white;
            border-radius: 20px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            width: 100%;
            max-width: 600px;
        }
        
        .code-block {
            background: #2c3e50;
            color: #ecf0f1;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            font-family: 'Courier New', monospace;
            font-size: 1rem;
            line-height: 1.6;
            overflow-x: auto;
        }
        
        .code-keyword {
            color: #3498db;
        }
        
        .code-comment {
            color: #7f8c8d;
        }
        
        .code-selector {
            color: #2ecc71;
        }
        
        .properties {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        
        .property {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 15px;
            border-left: 4px solid #3498db;
        }
        
        .property h4 {
            color: #2c3e50;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .property p {
            color: #7f8c8d;
            font-size: 0.95rem;
        }
        
        .usage-examples {
            margin-top: 40px;
        }
        
        .example {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid #2ecc71;
        }
        
        .example-title {
            font-weight: 700;
            margin-bottom: 10px;
            color: #2c3e50;
            display: flex;
            align-items: center;
            gap: 10px;
        }
/*
        footer {
            text-align: center;
            margin-top: 50px;
            color: #7f8c8d;
            padding: 20px;
            font-size: 1rem;
            max-width: 800px;
        }
*/
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                align-items: center;
            }
            
            .header h1 {
                font-size: 2.2rem;
            }
            
            .component-container, .documentation {
                width: 100%;
                max-width: 100%;
            }
        }

    body {
      font-family: sans-serif;
      background-color: #f2f2f2;
      /*padding: 20px;*/
    }
    
.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* 可选：增加间距 */
}

.gallery, .product-info {
  flex: 1 1 100%;
  box-sizing: border-box;
}

/* 在大屏幕时让它们并排显示 */
@media (min-width: 768px) {
  .gallery, .product-info {
    flex: 1 1 48%;
  }
}

    .gallery {
      min-width: 0; /* 添加这句 */
      margin-top: 10px;
      box-sizing: border-box;
      
    }

    .main-image {
  aspect-ratio: 3 / 2;
  max-height: 280px;
  width: 100%;
  background-color: white;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
}


    .thumbnail-bar {
      display: flex;
      align-items: center;
      /*margin-top: 10px;*/
    }

    .thumbnail-bar .edge {
      border-right: 0;
    border-left-color: #407899;
    }

    .nav-btn {
    background-color: #c2c2c2;
    border: none;
    font-size: 20px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 30px;
    height: 85px;
    }

    .thumbnails {
    display: flex;
    overflow: hidden;
    gap: 10px;
    /* padding: 10px 0; */
    flex: 1;
    margin: 10px;
    }

    .thumbnail-wrapper {
      display: flex;
      transition: transform 0.3s ease;
    }

    .thumb {
      width: 160px;
      height: 80px;
      cursor: pointer;
      border: 2px solid transparent;
      object-fit: cover;
      flex-shrink: 0;
    }

    .thumb.active {
      border: 2px solid red;
    }
    
    
   
    .fuzhu {
        float: left;
      width: 48%;
      margin-top: 10px;
      
    }
    .product-info {
     
    font-family: Arial, sans-serif;
    background-color: #dae5eb;
    /*color: white;*/
    padding: 20px;
    border-radius: 8px;
    margin-top: 10px;
    margin-block: 10px;

}

.product-title {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
}

.price-info {
    display: flex;
    
    flex-wrap: wrap; /* 允许换行 */
   
    padding: 0.6rem 5%;
    white-space: nowrap;
    margin: 0.15rem 0 0.25rem;
    background: rgb(40 225 167 / 50%);
    border-top-left-radius: 0.02rem;
    border-top-right-radius: 0.02rem;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.price,
.sold-count {
    min-width: 200px; /* 保证不会太小，如果空间不足才会换行 */
  width: 50%;
  box-sizing: border-box;
}

.price {
    font-size: 16px;
}

.price-label {
    font-weight: normal;
}
.price-info .price strong {
  font-size: 25px;
}

.sold-count {
    /*text-align: right;*/
    padding-left: 4%;
    border-left: solid 1px #335069;
    font-size: 16px;
    color: #5d8ba0;
}
.price-info .sold-count span {
  color: #0d3142;
}
.feature-info {
    margin-top: 20px;
}

.feature-list {
    list-style-type: none;
    padding: 0;
}

.feature-list li {
    font-size: 14px;
    margin: 5px 0;
}

.feature-list .active a {
    display: block;
    padding: 0.2rem;
    font-size: 1rem;
    text-align: center;
    border: solid 1.5px #65aecf;
    color: #673AB7;
    text-decoration: none;
}

.actions {
    margin-top: 20px;
    text-align: center;
}

.download-btn, .buy-now-btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    color: black;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
}

.download-btn {
    width: 43%;
    background: linear-gradient(90deg, #0072ff, #06f766);
}

.buy-now-btn {
    width: 43%;
    background-color: #ff5722;
    color: #f7f7f7;
}
.download-btn:hover {
    background: linear-gradient(90deg, #06f766, #0072ff);
}

.buy-now-btn:hover{
    background: linear-gradient(90deg, #06f766, #0072ff);
    color: black;
}

.info-text {
    /*display: block;*/
    margin-top: 5px;
    color: #8a7a7a;
}

    
    
      .thumb {
    cursor: pointer;
    /*
    max-width: 80px;
    max-height: 80px;
    */
    margin-right: 5px;
    border: 2px solid transparent;
    border-radius: 4px;
    vertical-align: middle;
  }
  .thumb.active {
    border-color: #65aecf;
  }
  

  
  