
   body {
       background: #fff;
       color: #333;
       min-height: 100vh;
       display: flex;
       flex-direction: column;
        }
        
  .container-1 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center; /* 水平居中 */
       }
        
   .products-grid-1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center; /* 添加水平居中 */
}
        
        .product-card-1 {
            background: rgba(20, 30, 48, 0.7);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .product-card-1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #00b4db, #0083b0);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .product-card-1:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 180, 219, 0.2);
        }
        
        .product-card-1:hover::before {
            transform: scaleX(1);
        }
        
        .product-image-1 {
            height: 200px;
            overflow: hidden;
            position: relative;
            background: #1a2a3a;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .product-image-1 img {
            width: 80%;
            height: 80%;
            object-fit: contain;
            transition: transform 0.5s ease;
			border-radius: 10px;

        }
        
        .product-card-1:hover .product-image-1 img {
            transform: scale(1.1);
        }
        
        .product-info-1 {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-name-1 {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 10px;
            color: #fff;
			text-align: center;
			text-shadow: 2px 2px 4px #000000;
        }
        
   
        .product-price-1 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 15px;
            text-shadow: 0 0 10px rgba(0, 180, 219, 0.3);
        }
        
        .product-action-1 {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            border: none;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .btn-detail {
            background: transparent;
            color: #fff;
            border: 1px solid #00b4db;
        }
        
        .btn-detail:hover {
            background: rgba(0, 180, 219, 0.1);
            box-shadow: 0 0 10px rgba(0, 180, 219, 0.3);
            color: #000;
        }
        
        .btn-cart {
            background: linear-gradient(90deg, #000000, #0083b0);
            color: white;
        } 
        
        .btn-cart:hover {
            box-shadow: 0 0 15px rgba(0, 180, 219, 0.5);
            transform: translateY(-2px);
            color: #29f567;
        }
        
        .tech-border-1 {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            border-radius: 12px;
            pointer-events: none;
            overflow: hidden;
            z-index: -1;
        }
        
        .tech-border-1::before {
            content: '';
            position: absolute;
            width: 170%;
            height: 170%;
            top: -25%;
            left: -25%;
            background: conic-gradient(
                from 0deg,
                transparent,
                rgba(0, 180, 219, 0.8),
                transparent,
                rgba(0, 180, 219, 0.8),
                transparent
            );
            animation: rotate 8s linear infinite;
        }
        
        .product-card-1:hover .tech-border-1::before {
            animation-duration: 4s;
        }
        
        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .products-grid-1 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 600px) {
            .products-grid-1 {
                grid-template-columns: 1fr;
            }
        }
		.product-description-1 {
    color: #211d1d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}
