.elementor-3165 .elementor-element.elementor-element-5550b81{--display:flex;}/* Start custom CSS for html, class: .elementor-element-78f066a *//* ============================================
   产品总页专用 CSS
   放入：产品总页 → Elementor → 页面自定义 CSS
   前提：site-global.css 已放入 Additional CSS
   ============================================ */

/* ====== Hero（跟产品页共用同一套 class）====== */
.ht-product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}
.ht-product-hero__label {
    color: #00873c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}
.ht-product-hero__title {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin: 0 0 25px;
}
.ht-product-hero__desc {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 35px;
}
.ht-product-hero__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.ht-product-hero__image img {
    width: 90%;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ====== 产品卡片网格 ====== */
.ht-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.ht-overview-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    transition: 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}
.ht-overview-card:hover {
    border-color: #00873c;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.ht-overview-card__img { flex: 0 0 220px; overflow: hidden; }
.ht-overview-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.ht-overview-card:hover .ht-overview-card__img img { transform: scale(1.05); }
.ht-overview-card__body { flex: 1; padding: 25px; display: flex; flex-direction: column; }
.ht-overview-card__num { font-size: 28px; font-weight: 800; color: #cbd5e1; margin-bottom: 5px; }
.ht-overview-card__body h3 { font-size: 20px; font-weight: 700; color: #0f172a; margin: 0 0 10px; }
.ht-overview-card__body p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 15px;
}

/* ====== 响应式 ====== */
@media (max-width: 1024px) {
    .ht-product-hero { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .ht-product-hero__buttons { justify-content: center; }
}
@media (max-width: 768px) {
    .ht-product-hero__title { font-size: 36px; }
    .ht-overview-grid { grid-template-columns: 1fr; }
    .ht-overview-card { flex-direction: column; }
    .ht-overview-card__img { flex: 0 0 200px; }
}/* End custom CSS */