
/* 全宽背景层（与FAQ等模块一致） */
.explore-fullwidth {
    width: 100%;
    background-color: #f9fafb;
    border-radius: 24px;
    margin: 30px 0;
}
/* 内容居中容器 */
.explore-carousel {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 24px;
    box-sizing: border-box;
}
.explore-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #222222;
    text-align: center;
    margin-bottom: 12px;
}
.explore-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #555555;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 28px;
    line-height: 1.4;
}
/* 轮播容器 */
.carousel-wrapper {
    position: relative;
    width: 100%;
}
.carousel-container {
    overflow: hidden;
    width: 100%;
}
.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    will-change: transform;
}
/* 卡片样式（高度压缩） */
.product-card {
    flex: 0 0 calc(33.333% - 14px);
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}
.product-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-info {
    padding: 12px 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-info h3 {
    font-weight: 700;
    font-size: 16px;
    color: #0047AB;
    margin-bottom: 8px;
    line-height: 1.3;
}
.product-info p {
    font-size: 12px;
    line-height: 1.45;
    color: #555555;
    margin-bottom: 12px;
    flex: 1;
}
.product-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid #0047AB;
    border-radius: 40px;
    padding: 4px 12px;
    font-weight: 600;
    font-size: 11px;
    color: #0047AB;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    align-self: flex-start;
    margin-top: auto;
}
.product-btn:hover {
    background: #0047AB;
    color: #ffffff;
}
/* 箭头按钮 */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    font-weight: 600;
    color: #0047AB;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.2s;
    z-index: 10;
}
.carousel-btn:hover {
    background: #f8fafc;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}
.prev-btn { left: -20px; }
.next-btn { right: -20px; }
/* 响应式 */
@media (max-width: 900px) {
    .explore-carousel { padding: 28px 20px; }
    .product-card { flex: 0 0 calc(50% - 10px); }
    .carousel-btn { width: 36px; height: 36px; font-size: 22px; }
    .prev-btn { left: -14px; }
    .next-btn { right: -14px; }
}
@media (max-width: 640px) {
    .explore-carousel { padding: 24px 16px; }
    .product-card { flex: 0 0 100%; }
    .carousel-btn { width: 32px; height: 32px; font-size: 20px; }
    .prev-btn { left: -8px; }
    .next-btn { right: -8px; }
    .explore-title { font-size: 24px; margin-bottom: 10px; }
    .explore-sub { font-size: 13px; margin-bottom: 24px; }
    .product-info h3 { font-size: 15px; }
    .product-info p { font-size: 12px; }
}
