.elementor-3189 .elementor-element.elementor-element-cab9947{--display:flex;}/* Start custom CSS for global, class: .elementor-global-3183 *//* ============================================
   型材页专用 CSS
   放入：每个型材页面 → Elementor → 页面自定义 CSS
   前提：site-global.css 已放入 Additional CSS
   ============================================ */

/* ====== Hero ====== */
.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: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ====== 规格 ====== */
.ht-spec-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.ht-material-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.ht-material-table thead th {
    background: #0f172a;
    color: #fff;
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ht-material-table tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
}
.ht-material-table tbody tr:hover { background: #f8fafc; }
.ht-spec-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 35px;
}
.ht-spec-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ht-spec-card__title i { color: #00873c; }
.ht-spec-list { list-style: none; padding: 0; margin: 0; }
.ht-spec-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #f1f5f9;
    font-size: 14px;
}
.ht-spec-list li:last-child { border-bottom: none; }
.ht-spec-list .ht-spec-label { color: #64748b; font-weight: 500; }
.ht-spec-list .ht-spec-value { color: #0f172a; font-weight: 700; }

/* ====== Gallery ====== */
.ht-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.ht-gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    position: relative;
}
.ht-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.ht-gallery-item:hover img { transform: scale(1.05); }

/* ====== 应用场景 ====== */
.ht-app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.ht-app-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    transition: 0.3s ease;
}
.ht-app-card:hover {
    border-color: #00873c;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.ht-app-card__icon { font-size: 28px; color: #00873c; margin-bottom: 15px; }
.ht-app-card__title { font-size: 18px; font-weight: 700; color: #0f172a; margin-bottom: 10px; }
.ht-app-card__desc { font-size: 14px; color: #64748b; line-height: 1.6; }

/* ====== Why Us ====== */
.ht-advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.ht-advantage-card { text-align: center; padding: 30px 20px; }
.ht-advantage-card__icon {
    width: 60px; height: 60px;
    background: #f0fdf4;
    color: #00873c;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: 0.3s ease;
}
.ht-advantage-card:hover .ht-advantage-card__icon { background: #00873c; color: #fff; }
.ht-advantage-card__title { font-size: 17px; font-weight: 700; color: #0f172a; margin-bottom: 10px; }
.ht-advantage-card__desc { font-size: 13.5px; color: #64748b; line-height: 1.6; }

/* ====== FAQ ====== */
.ht-product-faq { max-width: 900px; margin: 0 auto; }
.ht-product-faq .ht-faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    cursor: pointer;
}
.ht-product-faq .ht-faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: #0f172a;
    transition: color 0.3s;
    user-select: none;
}
.ht-product-faq .ht-faq-item__question:hover { color: #00873c; }
.ht-product-faq .ht-faq-item__question span { font-size: 20px; transition: transform 0.3s; }
.ht-product-faq .ht-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #64748b;
    line-height: 1.6;
}
.ht-product-faq .ht-faq-item.active .ht-faq-item__answer { max-height: 200px; padding-top: 15px; }
.ht-product-faq .ht-faq-item.active .ht-faq-item__question { color: #00873c; }
.ht-product-faq .ht-faq-item.active .ht-faq-item__question span { transform: rotate(45deg); }

/* ====== 总页 Overview ====== */
.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; }
    .ht-spec-layout { grid-template-columns: 1fr; }
    .ht-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .ht-app-grid { grid-template-columns: repeat(2, 1fr); }
    .ht-advantage-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .ht-product-hero__title { font-size: 36px; }
    .ht-app-grid, .ht-gallery-grid { grid-template-columns: 1fr; }
    .ht-advantage-grid { grid-template-columns: 1fr; }
    .ht-overview-grid { grid-template-columns: 1fr; }
    .ht-overview-card { flex-direction: column; }
    .ht-overview-card__img { flex: 0 0 200px; }
}/* End custom CSS */