/* Product 页面增强样式 - 不影响其他页面 */

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* 页面标题区域 */
.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin: 0;
    font-weight: 300;
}

/* 产品卡片优化 */
.product-container .box-with-humber {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #667eea;
    height: 100%;
}

.product-container .box-with-humber:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.25);
}

.product-container .box-with-humber h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-container .box-with-humber .icon {
    font-size: 2rem;
    color: #667eea;
    margin-right: 15px;
}

.product-container .box-with-humber p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.product-container a {
    text-decoration: none;
    color: inherit;
}

.product-container a:hover {
    text-decoration: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .product-container .box-with-humber {
        padding: 25px 20px;
    }
}

