
        
       .container2 {
            max-width: 1400px;
            margin: 40px auto;
            background-color: #ff6f28;
            color: #333;
          
            padding: 20px;
          
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 689px;
        }

        /* 标签样式 */
        .tabs {
            display: flex;
            position: relative;
            margin-bottom: 40px;
            padding-top: 55px;
        }



        .tab {
            cursor: pointer;
            margin-right:158px;
            position: relative;
            padding-bottom: 10px;
           transition: all 0.3s ease;
        }
        .tab.active .tag {
    background-color: #fff;
    color: #ff6a33;
}


.tab:hover .tag {
       background-color: #fff;
    color: #ff6a33;
}

.tab.active .tag.hot {
    background-color: #fff;
    color: #ff6a33;
}

.tab:hover .tag.hot {
    background-color: #fff;
      color: #ff6a33;
}
        .tab-label {
            display: flex;
            align-items: center;
        }

        .tab-text {
            color: #ffc5a9; /* 默认灰色 */
            font-size: 30px;
            font-weight: bold;
            margin-left: 14px;
            transition: color 0.3s ease;
        }
        
        

        .tab.active .tab-text {
            color: white; /* 激活状态为白色 */
        }

        .tab:hover .tab-text {
            color: white; /* 悬停时变为白色 */
        }

        .tag {
            background-color: #ffc5a9;
            color: #ff6a33;
            font-size: 18px;
            padding: 3px 6px;
            border-radius: 4px;
            font-weight: bold;
        }

    
        .tab-line {
            position: absolute;
         bottom: -20px;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.3);
        }

        .tab.active::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 0;
            width: 170%;
            height: 4px;
            background-color: white;
            transition: all 0.3s ease;
        }


        /* 产品容器 */
        .products-container {
            display: none;
        }

        .products-container.active {
            display: block;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
                padding-top: 38px
        }

        /* 产品卡片 */
        .product-card {
            background-color: white;
       
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 420px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .product-info {
            padding: 20px;
            display: flex;
            flex-direction: column;
            
        }

        .product-info h2 {
            font-size: 36px;
           color: #ff6f28;
            margin-bottom: 2px;
            text-align: center;
            font-weight: bold;
            letter-spacing: 2px;
            margin-top: 26px;
        }

        .product-info p {
            font-size: 25px;
            color: #151515;
            margin-bottom: 15px;
            text-align: center;
            letter-spacing: 4px;
            font-weight: 549;
        }

        .product-buttons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: auto;
        }

        .btn-more, .btn-buy {
         padding: 6px 19px;
    border-radius: 29px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: bold;
  
        }

        .btn-more {
            background-color: #ff6f28;
            color: white;
            border: none;
        }

        .btn-buy {
            background-color: white;
            color: #ff6a33;
            border: 1px solid #ff6f28;
        }

        .btn-more:hover {
            background-color: #e55a28;
            transform: translateY(-2px);
        }

        .btn-buy:hover {
            background-color: #fff8f6;
            transform: translateY(-2px);
        }

        .product-image {
            height: 200px;
            overflow: hidden;
            transition: transform 0.5s ease;
            transform-origin: center;
        }
        
        .product-image:hover {
            transform: scale(1.05); 
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 10px;
        }

      