/* 产品系列页面样式 */
.product-series {
    padding: 60px 0;
    background-color: #f9f7ff;
}

.series-title {
    text-align: center;
    margin-bottom: 40px;
    color: #5d3fd3;
}

.series-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.series-title p {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(93, 63, 211, 0.15);
}

.product-img {
    height: 250px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.product-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-link {
    display: inline-block;
    color: #5d3fd3;
    font-weight: 500;
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 2px solid #5d3fd3;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: #4a2fc1;
}