.product-list {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    height: 100%;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* 左侧图片区域 */
.product-image {
    flex: 0 0 45%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); */
    transition: all 0.4s ease;
}

/* .product-item:nth-child(odd) .product-image {
    transform: rotate(-2deg);
}

.product-item:nth-child(even) .product-image {
    transform: rotate(2deg);
} */

.product-item:hover .product-image {
    transform: rotate(0deg) scale(1.02);
}

.product-image img {
    display: block;
    width: 100%;
    height: 185px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(57, 127, 255, 0.1), rgba(42, 105, 226, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-item:hover .product-image::before {
    opacity: 1;
}

/* 右侧内容区域 */
.product-content {
    flex: 1;
    padding: 10px 0;
    min-height: 350px;
}

.product-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2857B3;
    position: relative;
    padding-bottom: 15px;
}

.product-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #2857B3;
    border-radius: 2px;
}

.product-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* 产品详情按钮样式 */
.product-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 25px;
    background: #2857B3;
    color: white;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #2857B3;
    font-size: 1rem;
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.product-detail-btn:hover {
    background: transparent;
    color: #2857B3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(57, 127, 255, 0.3);
}

.product-detail-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.product-detail-btn:hover i {
    transform: translateX(3px);
}