
.explore-products {
    max-width: 1400px;               /* 模块总宽度增加 */
    margin: 40px auto;
    background-color: #f9fafb;
    border-radius: 24px;
    padding: 40px 32px;              /* 内边距略增，容纳更宽卡片 */
}
.explore-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 35px;
    color: #222222;
    text-align: center;
    margin-bottom: 28px;
}
.products-grid {
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
}
.product-card {
    flex: 1;
    max-width: 620px;               /* 卡片最大宽度增加 */
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.product-img {
    flex: 0 0 220px;               /* 图片宽度增大至 220px */
    overflow: hidden;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-info {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product-info h3 {
    font-weight: 700;
    font-size: 20px;
    color: #0047AB;
    margin-bottom: 10px;
}
.product-info p {
    font-size: 14px;
    line-height: 1.5;
    color: #555555;
    margin-bottom: 16px;
}
.product-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid #0047AB;
    border-radius: 40px;
    padding: 6px 20px;
    font-weight: 600;
    font-size: 13px;
    color: #0047AB;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    align-self: flex-start;
}
.product-btn:hover {
    background: #0047AB;
    color: #ffffff;
}
/* 响应式：平板及手机改为上下布局 */
@media (max-width: 1000px) {
    .products-grid {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }
    .product-card {
        max-width: 100%;
        width: 100%;
        flex-direction: row;
    }
    .product-img {
        flex: 0 0 200px;
    }
}
@media (max-width: 640px) {
    .explore-products {
        padding: 28px 20px;
    }
    .explore-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    .product-card {
        flex-direction: column;
    }
    .product-img {
        flex: 0 0 auto;
        aspect-ratio: 4 / 3;
    }
    .product-info {
        padding: 20px;
    }
    .product-info h3 {
        font-size: 18px;
    }
    .product-info p {
        font-size: 13px;
    }
}
