/* ========================================================================== 
   Shapesculpt Theme - Components Layer
   --------------------------------------------------------------------------
   说明：本文件用于放置“可复用组件样式”（全站通用）。
   组件特点：
   - 命名空间：ss-（避免与 Bootstrap / 插件 / WP 默认样式冲突）
   - 不包含页面布局（页面布局放在各自 page css）
   - 不包含全局地基（变量/栅格等放在 base.css）
   ========================================================================== */

/* ========================================================================== 
   Component: Buttons
   来源：front-page.php（首页多个模块复用）
   - Hero Banner 按钮（.hero-banner__buttons）
   - CTA Cards 按钮（.cta-card）
   - Design Capability CTA 按钮
   - Process Setup CTA 按钮
   - Recent Blogs 卡片按钮
   --------------------------------------------------------------------------
   用法：
   <a class="ss-btn ss-btn--primary" ...>...</a>
   <a class="ss-btn ss-btn--red" ...>...</a>
   <a class="ss-btn ss-btn--learn-more" ...>...</a>
   ========================================================================== */

/* .ss-btn base + variants moved to bridge-components.css (single source of truth) */

/* ========================================================================== 
   Global Button Color Fallback (enforce accent/hover variables)
   --------------------------------------------------------------------------
   说明：部分页面仍使用 .btn/.btn-primary/.btn-red/.btn-learn-more。
   这里提供兜底，确保按钮背景色与 hover 始终跟随 Customizer：
   --accent-color / --accent-hover。
   ========================================================================== */

.btn-primary,
.btn-red,
.btn-learn-more,
.blog-card .btn-learn-more,
.ss-btn--primary,
.ss-btn--red {
    background: var(--accent-color) !important;
    background-color: var(--accent-color) !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-red:hover,
.btn-learn-more:hover,
.blog-card .btn-learn-more:hover,
.ss-btn--primary:hover,
.ss-btn--red:hover {
    background: var(--accent-hover) !important;
    background-color: var(--accent-hover) !important;
}

/* ========================================================================== 
   Component: Quote Modal (Global)
   --------------------------------------------------------------------------
   说明：全站通用报价弹窗（#quote-modal）。
   触发方式：给任意按钮/链接加 class="js-open-quote-modal"。
   显示控制：默认隐藏，JS 添加 .is-open 时显示。
   ========================================================================== */

.quote-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none; /* 默认隐藏：仅在 .is-open 时显示 */
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.quote-modal.is-open {
    display: flex;
}

.quote-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.quote-modal-content {
    position: relative;
    background: var(--bg-light, var(--secondary-color, #fff));
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    z-index: 10000;
    /* 优化滚动条样式 */
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

.quote-modal-content {
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.quote-modal-content::-webkit-scrollbar {
    display: none;
}

.quote-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    line-height: 1;
}

.quote-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.quote-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    text-align: center;
}

.quote-modal-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}

.quote-form {
    width: 100%;
}

/* ========================================================================== 
   WPForms 在弹窗中的样式优化
   ========================================================================== */

/* WPForms 容器样式 */
.quote-form .wpforms-container,
.quote-modal-form .wpforms-container {
    margin: 0;
    padding: 0;
    width: 100%;
}

.quote-form .wpforms-form,
.quote-modal-form .wpforms-form {
    margin: 0;
    padding: 0;
}

/* 表单字段容器 */
.quote-form .wpforms-field,
.quote-modal-form .wpforms-field {
    margin-bottom: 20px;
}

.quote-form .wpforms-field:last-child,
.quote-modal-form .wpforms-field:last-child {
    margin-bottom: 0;
}

/* 标签样式 */
.quote-form .wpforms-field-label,
.quote-modal-form .wpforms-field-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.quote-form .wpforms-field-label.wpforms-label-hide,
.quote-modal-form .wpforms-field-label.wpforms-label-hide {
    display: none;
}

/* 必填字段标记 */
.quote-form .wpforms-required-label,
.quote-modal-form .wpforms-required-label {
    color: #e91e63;
    margin-left: 3px;
}

/* 输入框样式 */
.quote-form .wpforms-field input[type="text"],
.quote-form .wpforms-field input[type="email"],
.quote-form .wpforms-field input[type="tel"],
.quote-form .wpforms-field input[type="url"],
.quote-form .wpforms-field input[type="number"],
.quote-form .wpforms-field select,
.quote-form .wpforms-field textarea,
.quote-modal-form .wpforms-field input[type="text"],
.quote-modal-form .wpforms-field input[type="email"],
.quote-modal-form .wpforms-field input[type="tel"],
.quote-modal-form .wpforms-field input[type="url"],
.quote-modal-form .wpforms-field input[type="number"],
.quote-modal-form .wpforms-field select,
.quote-modal-form .wpforms-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.quote-form .wpforms-field input:focus,
.quote-form .wpforms-field select:focus,
.quote-form .wpforms-field textarea:focus,
.quote-modal-form .wpforms-field input:focus,
.quote-modal-form .wpforms-field select:focus,
.quote-modal-form .wpforms-field textarea:focus {
    outline: none;
    border-color: var(--accent-color, #e91e63);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.quote-form .wpforms-field textarea,
.quote-modal-form .wpforms-field textarea {
    resize: vertical;
    min-height: 120px;
}

/* 下拉选择框 */
.quote-form .wpforms-field select,
.quote-modal-form .wpforms-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* 错误提示样式 */
.quote-form .wpforms-error,
.quote-modal-form .wpforms-error {
    color: #d63638;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.quote-form .wpforms-field.wpforms-has-error input,
.quote-form .wpforms-field.wpforms-has-error select,
.quote-form .wpforms-field.wpforms-has-error textarea,
.quote-modal-form .wpforms-field.wpforms-has-error input,
.quote-modal-form .wpforms-field.wpforms-has-error select,
.quote-modal-form .wpforms-field.wpforms-has-error textarea {
    border-color: #d63638;
}

.quote-form .wpforms-field.wpforms-has-error input:focus,
.quote-form .wpforms-field.wpforms-has-error select:focus,
.quote-form .wpforms-field.wpforms-has-error textarea:focus,
.quote-modal-form .wpforms-field.wpforms-has-error input:focus,
.quote-modal-form .wpforms-field.wpforms-has-error select:focus,
.quote-modal-form .wpforms-field.wpforms-has-error textarea:focus {
    border-color: #d63638;
    box-shadow: 0 0 0 3px rgba(214, 54, 56, 0.1);
}

/* 成功提示样式 */
.quote-form .wpforms-confirmation-container {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    color: #155724;
    font-size: 14px;
}

/* 提交按钮容器 */
.quote-form .wpforms-submit-container,
.quote-modal-form .wpforms-submit-container {
    margin-top: 30px;
    text-align: center;
}

/* 提交按钮样式 */
.quote-form .wpforms-submit,
.quote-modal-form .wpforms-submit {
    min-width: 200px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    background: var(--accent-color, #e91e63);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.quote-form .wpforms-submit:hover,
.quote-modal-form .wpforms-submit:hover {
    background: var(--accent-hover, #c2185b);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.quote-form .wpforms-submit:active,
.quote-modal-form .wpforms-submit:active {
    transform: translateY(0);
}

.quote-form .wpforms-submit:disabled,
.quote-modal-form .wpforms-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* 隐藏 WPForms 默认的标题和描述（因为弹窗已有标题） */
.quote-form .wpforms-title,
.quote-modal-form .wpforms-title {
    display: none;
}

.quote-form .wpforms-description,
.quote-modal-form .wpforms-description {
    display: none;
}

/* 复选框和单选框样式优化 */
.quote-form .wpforms-field-checkbox .wpforms-field-label,
.quote-form .wpforms-field-radio .wpforms-field-label,
.quote-modal-form .wpforms-field-checkbox .wpforms-field-label,
.quote-modal-form .wpforms-field-radio .wpforms-field-label {
    font-weight: 600;
    margin-bottom: 12px;
}

.quote-form .wpforms-field-checkbox ul,
.quote-form .wpforms-field-radio ul,
.quote-modal-form .wpforms-field-checkbox ul,
.quote-modal-form .wpforms-field-radio ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quote-form .wpforms-field-checkbox li,
.quote-form .wpforms-field-radio li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.quote-form .wpforms-field-checkbox input[type="checkbox"],
.quote-form .wpforms-field-radio input[type="radio"] {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
}

.quote-form .wpforms-field-checkbox label,
.quote-form .wpforms-field-radio label {
    font-weight: normal;
    margin: 0;
    cursor: pointer;
    line-height: 1.5;
}

/* 文件上传字段 */
.quote-form .wpforms-field-file-upload input[type="file"] {
    padding: 8px;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
    cursor: pointer;
}

.quote-form .wpforms-field-file-upload input[type="file"]:hover {
    border-color: var(--accent-color, #e91e63);
    background: #fff;
}

/* 日期选择器 */
.quote-form .wpforms-field-date-time input[type="date"],
.quote-form .wpforms-field-date-time input[type="time"] {
    cursor: pointer;
}

/* 加载状态优化 */
.quote-form .wpforms-submit-container .wpforms-submit.wpforms-submitting {
    position: relative;
    color: transparent;
}

.quote-form .wpforms-submit-container .wpforms-submit.wpforms-submitting::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* 隐藏 WPForms 的 "Powered by" 链接（可选，如果需要显示可以删除） */
.quote-form .wpforms-container .wpforms-powered-by {
    display: none;
}

/* 确保表单在弹窗中正确对齐 */
.quote-form .wpforms-container-full {
    width: 100%;
}

/* 优化字段描述文字 */
.quote-form .wpforms-field-description {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    margin-bottom: 0;
    line-height: 1.4;
}

/* 优化字段帮助文字 */
.quote-form .wpforms-field-help {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
    font-style: italic;
}

.quote-form-group {
    margin-bottom: 20px;
}

.quote-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.quote-form-group input[type="text"],
.quote-form-group input[type="email"],
.quote-form-group input[type="tel"],
.quote-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.quote-form-group input:focus,
.quote-form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color, #e91e63);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.quote-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.quote-form-submit {
    margin-top: 30px;
    text-align: center;
}

.quote-form-submit .btn {
    min-width: 200px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    .quote-modal-content {
        padding: 30px 20px;
        width: 95%;
        max-height: 95vh;
    }

    .quote-modal-title {
        font-size: 24px;
    }

    .quote-modal-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .quote-form-submit .btn {
        width: 100%;
        min-width: auto;
    }

    /* 移动端 WPForms 样式优化 */
    .quote-form .wpforms-field {
        margin-bottom: 18px;
    }

    .quote-form .wpforms-field input[type="text"],
    .quote-form .wpforms-field input[type="email"],
    .quote-form .wpforms-field input[type="tel"],
    .quote-form .wpforms-field input[type="url"],
    .quote-form .wpforms-field input[type="number"],
    .quote-form .wpforms-field select,
    .quote-form .wpforms-field textarea {
        padding: 10px 12px;
        font-size: 16px; /* 防止 iOS 自动缩放 */
    }

    .quote-form .wpforms-submit {
        width: 100%;
        min-width: auto;
        padding: 12px 20px;
    }

    .quote-form .wpforms-field-checkbox li,
    .quote-form .wpforms-field-radio li {
        margin-bottom: 8px;
    }
}

/* ========================================================================== 
   Component: Floating Actions (WhatsApp + Back to Top)
   说明：右下角浮动按钮，全站通用（所有页面都需要）
   位置：footer.php 中定义
   ========================================================================== */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.floating-whatsapp {
    background: #25D366;
    text-decoration: none;
}

.floating-whatsapp-icon {
    width: 32px;
    height: 32px;
    display: block;
    object-fit: contain;
}

.floating-backtop {
    background: var(--primary-color, #e54b4d);
    border: none;
    display: none;
    font-size: 22px;
    font-weight: 700;
}

.floating-backtop.show {
    display: inline-flex !important;
    background-color: var(--primary-color, #e54b4d) !important;
}

/* ==========================================================================
   Component: Category SEO Form (WPForms inline form)
   --------------------------------------------------------------------------
   说明：子分类页面中的内联表单样式（.category-seo__form）
   与 .quote-form 保持一致的外观和交互体验
   ========================================================================== */

.category-seo__form {
    margin-top: 30px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
}

.category-seo__form .wpforms-container,
.category-seo__form .wpforms-container-full {
    margin: 0;
    padding: 0;
    width: 100%;
}

.category-seo__form .wpforms-form {
    margin: 0;
    padding: 0;
}

.category-seo__form .wpforms-field-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
}

.category-seo__form .wpforms-field {
    margin-bottom: 0;
}

.category-seo__form .wpforms-field-textarea {
    grid-column: 1 / -1;
}

.category-seo__form .wpforms-field-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.category-seo__form .wpforms-required-label {
    color: #e91e63;
    margin-left: 3px;
}

.category-seo__form .wpforms-field input[type="text"],
.category-seo__form .wpforms-field input[type="email"],
.category-seo__form .wpforms-field input[type="tel"],
.category-seo__form .wpforms-field input[type="url"],
.category-seo__form .wpforms-field input[type="number"],
.category-seo__form .wpforms-field select,
.category-seo__form .wpforms-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.category-seo__form .wpforms-field input:focus,
.category-seo__form .wpforms-field select:focus,
.category-seo__form .wpforms-field textarea:focus {
    outline: none;
    border-color: var(--accent-color, #e91e63);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.category-seo__form .wpforms-field textarea {
    resize: vertical;
    min-height: 100px;
}

.category-seo__form .wpforms-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.category-seo__form .wpforms-error {
    color: #d63638;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.category-seo__form .wpforms-field.wpforms-has-error input,
.category-seo__form .wpforms-field.wpforms-has-error select,
.category-seo__form .wpforms-field.wpforms-has-error textarea {
    border-color: #d63638;
}

.category-seo__form .wpforms-field.wpforms-has-error input:focus,
.category-seo__form .wpforms-field.wpforms-has-error select:focus,
.category-seo__form .wpforms-field.wpforms-has-error textarea:focus {
    border-color: #d63638;
    box-shadow: 0 0 0 3px rgba(214, 54, 56, 0.1);
}

.category-seo__form .wpforms-submit-container {
    grid-column: 1 / -1;
    margin-top: 20px;
    text-align: left;
}

.category-seo__form .wpforms-submit {
    min-width: 160px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    background: var(--accent-color, #e91e63);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.category-seo__form .wpforms-submit:hover {
    background: var(--accent-hover, #c2185b);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.category-seo__form .wpforms-submit:active {
    transform: translateY(0);
}

.category-seo__form .wpforms-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.category-seo__form .wpforms-title {
    display: none;
}

.category-seo__form .wpforms-description {
    display: none;
}

.category-seo__form .wpforms-container .wpforms-powered-by {
    display: none;
}

@media (max-width: 768px) {
    .category-seo__form {
        padding: 20px 15px;
    }

    .category-seo__form .wpforms-field-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .category-seo__form .wpforms-field-textarea {
        grid-column: 1;
    }

    .category-seo__form .wpforms-field input[type="text"],
    .category-seo__form .wpforms-field input[type="email"],
    .category-seo__form .wpforms-field input[type="tel"],
    .category-seo__form .wpforms-field select,
    .category-seo__form .wpforms-field textarea {
        padding: 10px 12px;
        font-size: 16px;
    }

    .category-seo__form .wpforms-submit {
        width: 100%;
        min-width: auto;
    }
}
/* ==================== 内页通用样式 ==================== */
/* 注意：基础栅格系统和 CSS 变量已移至 base.css，所有页面共享 */

/* 兼容旧样式（保留原有 container 宽度设置） */
@media (min-width:1250px){
    .container{
        width:1230px;
        max-width: 1400px; /* 覆盖上面的设置，但保留最大宽度限制 */
    }
}

.resetStyle a{
    text-decoration:none
}
 .resetStyle a:hover{
    text-decoration:none
}
 .resetStyle li,.resetStyle p,.resetStyle ul{
    margin:0;
    padding:0;
    list-style:none
}
 .resetStyle h1,.resetStyle h2,.resetStyle h3,.resetStyle h4,.resetStyle h5,.resetStyle h6{
    letter-spacing:0;
    text-transform:none;
    margin:0;
    padding:0
}
 .inside-page{
    background-color:#ffffff
}
/* inside-banner 样式已删除 - Support 页面不再使用 banner */
 .inside-page .inside-content{
    overflow:hidden
}
 .left-content{
    float:left;
    width:889px;
    padding-right:10px;
    border-right:1px solid #e2e4e5;
    padding-top:40px!important
}
 @media (max-width:767px){
    .left-content{
        padding-top:5px!important
    }
}
 .left-content .inside-header .inside-nav{
    font-size:20px
}
 .left-content .inside-header .inside-nav a{
    color:#000
}
 .left-content .inside-header .inside-nav a:hover{
    color:#d30000
}
 .left-content .inside-header .inside-nav i{
    margin:0 10px;
    color:#000;
    font-style:normal
}
 .left-content .inside-header .inside-nav span{
    color:#6c6c6c
}
 .left-content .inside-header .inside-title{
    color:#000;
    font-size:30px;
    line-height:40px
}
 .left-content .inside-header .inside-title:after{
    content:'';
    display:block;
    width:90px;
    height:2px;
    margin-top:10px;
    background-color:#d30000
}
 .left-content .inside-header .inside-title span{
    display:block
}

#product-page .left-content .inside-header .inside-title{
    font-size: 18px;
    line-height: 30px;
    
}
#product-page .left-content .inside-header .inside-title:after{display:none}



 @media (max-width:1249.98px){
    .left-content{
        width:74%
    }
}
 @media (max-width:1199.98px){
    .left-content .inside-header .inside-nav{
        padding:10px 0
    }
}
 @media (max-width:991.98px){
    .left-content .inside-header .inside-nav{
        padding:10px 0;
        font-size:16px
    }
     .left-content .inside-header .inside-title{
        font-size:24px;
        line-height:30px
    }
    #product-page .left-content .inside-header .inside-title{
        font-size: 16px;
        line-height: 26px;
        
    }
     .left-content .inside-header .inside-title:after{
        margin-top:10px
    }
}
 @media (max-width:767.98px){
    .left-content{
        width:100%;
        padding-right:0;
        border-right:none;
        padding:0
    }
     .left-content .inside-header .inside-title{
        font-size:20px;
        line-height:24px
    }
}
 #product-page .inside-content .container .left-content{
    width:1250px;
    padding:0;
    border:0;
    padding-top:60px!important
}
 #product-page .inside-content .container .left-content .inside-header>h2{
    font-size:30px
}
 #product-page .inside-content .container .left-content .inside-header>.remark{
    font-size:18px;
    line-height:26px
}
 @media (max-width:1300px){
    #product-page .inside-content .container .left-content{
        width:100%
    }
}
 .right-sidebar{
    position:relative;
    float:right;
    width:300px;
    padding-bottom:20px;
    font-size:16px;
    line-height:1;
    color:#000;
    background-color:#f5f7f8
}
 .right-sidebar:after{
    content:'';
    width:1px;
    height:100%;
    background-color:#e2e4e5;
    position:absolute;
    top:0;
    left:-12px
}
 @media (max-width:1249.98px){
    .right-sidebar:after{
        left:-13px
    }
}
 @media (width:820px){
    .right-sidebar{
        width:100%!important
    }
     .left-content{
        width:100%
    }
     .content-product-details iframe{
        width:100%!important
    }
     #product-page .inside-content .left-content .product-box .product-list .item{
        width:50%;
        float:left
    }
}
 @media (width:768px){
    .right-sidebar{
        width:100%!important
    }
     .left-content{
        width:100%
    }
     .content-product-details iframe{
        width:100%!important
    }
     #product-page .inside-content .left-content .product-box .product-list .item{
        width:50%;
        float:left
    }
     .box{
        width:540px!important
    }
     .tb-s310,.tb-s310 img{
        max-width:535px!important;
        max-height:500px!important
    }
     .tb-s310,.tb-s310 a{
        width:535px!important;
        height:500px!important
    }
     .tb-thumb li{
        height:100px!important;
        margin-bottom:10px!important
    }
     .tb-s40,.tb-s40 a{
        height:100px!important;
        width:100px!important
    }
     .tb-thumb .tb-selected{
        padding:0!important
    }
}
 @media (max-width:1199.98px){
    .right-sidebar:after{
        left:-11px
    }
}
 @media (max-width:991.98px){
    .right-sidebar:after{
        left:-9px
    }
     #product-page .inside-content .container .left-content{
        width:100%;
        padding-top:20px!important
    }
}
 @media (max-width:767.98px){
    .right-sidebar:after{
        display:none
    }
}
 @media (max-width:1249.98px){
    .right-sidebar{
        width:25%
    }
}
 @media (max-width:767.98px){
    .right-sidebar{
        width:100%
    }
}
 .right-sidebar .sec-header{
    font-size:24px
}
 @media (max-width:767.98px){
    .right-sidebar .sec-header{
        font-size:20px
    }
}
 .right-sidebar .divider{
    width:418px;
    height:1px;
    margin:20px 0;
    background-color:#e2e4e5
}
 .right-sidebar .divider.search-addthis{
    margin:40px 0 36px
}
 .right-sidebar .divider.addthis-category{
    margin:33px 0 23px
}
 .right-sidebar .divider.category-news{
    margin:42px 0 28px
}
 .right-sidebar .divider.news-contact{
    margin:40px 0 38px
}
 .right-sidebar .divider.category-hot{
    margin:45px 0 28px
}
 .right-sidebar .divider.hot-news{
    margin:39px 0 28px
}
 @media (max-width:1199.98px){
    .right-sidebar .divider{
        margin:20px 0!important
    }
}
 @media (max-width:767.98px){
    .right-sidebar .divider{
        width:100%;
        margin:10px 0!important
    }
}
 .right-sidebar .search-box{
    margin-top:27px
}
 .right-sidebar .search-box .search-form{
    position:relative;
    margin-top:13px;
    background-color:#fff
}
 .right-sidebar .search-box .search-form form input[type=text]{
    width:100%;
    height:35px;
    padding:0 45px 0 15px;
    color:grey;
    background:#fff;
    border:1px solid #bfbfbf;
    border-radius:1px;
    outline:0
}
 .right-sidebar .search-box .search-form form input[type=text]::-webkit-input-placeholder{
    color:grey
}
 .right-sidebar .search-box .search-form form input[type=text]:-moz-placeholder{
    color:grey
}
 .right-sidebar .search-box .search-form form input[type=text]::-moz-placeholder{
    color:grey
}
 .right-sidebar .search-box .search-form form input[type=text]:-ms-input-placeholder{
    color:grey
}
 .right-sidebar .search-box .search-form form input[type=submit]{
    position:absolute;
    right:15px;
    top:50%;
    margin-top:-9px;
    width:19px;
    height:19px;
    border:none;
    background:transparent url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/submit.png) center no-repeat
}
 @media (max-width:1199.98px){
    .right-sidebar .search-box{
        margin-top:20px
    }
     .right-sidebar .search-box .search-form{
        margin-top:10px
    }
     .right-sidebar .search-box .search-form form input[type=text]{
        padding:0 30px 0 10px
    }
     .right-sidebar .search-box .search-form form input[type=submit]{
        right:5px
    }
}
 @media (max-width:767.98px){
    .right-sidebar .search-box{
        margin-top:10px
    }
}
 .right-sidebar .category-box .cate{
    margin-top:17px;
    padding-bottom:20px;
    background-color:#e5e5e5;
    overflow:hidden
}
 @media (max-width:991.98px){
    .right-sidebar .category-box .cate{
        font-size:14px
    }
}
 .right-sidebar .category-box .cate>li{
    border-bottom:1px solid #f5f7f8
}
 .right-sidebar .category-box .cate>li>a{
    display:block;
    line-height:24px;
    color:#000;
    padding:10px 30px 10px 20px;
    white-space:nowrap
}
 .right-sidebar .category-box .cate>li>a>i{
    display:inline-block;
    width:5px;
    height:5px;
    position:relative;
    top:9px;
    vertical-align:top;
    background-color:#393e41
}
 .right-sidebar .category-box .cate>li>a>span{
    display:inline-block;
    margin-left:18px;
    font-size:16px;
    color:#000;
    white-space:normal;
    vertical-align:top
}
 .right-sidebar .category-box .cate>li>a.active,.right-sidebar .category-box .cate>li>a:hover{
    background-color:#e70010
}
 .right-sidebar .category-box .cate>li>a.active>i,.right-sidebar .category-box .cate>li>a:hover>i{
    background-color:#fff
}
 .right-sidebar .category-box .cate>li>a.active>span,.right-sidebar .category-box .cate>li>a:hover>span{
    color:#fff
}
 .right-sidebar .category-box .cate>li.pulldu>a>i{
    display:inline-block;
    width:11px;
    height:11px;
    background:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/sidebar/pulldown-n.png) center no-repeat;
    background-size:contain;
    vertical-align:top;
    position:relative;
    top:6px
}
 .right-sidebar .category-box .cate>li.pulldu>a.active,.right-sidebar .category-box .cate>li.pulldu>a:hover{
    background-color:#e70010
}
 .right-sidebar .category-box .cate>li.pulldu>a.active>i,.right-sidebar .category-box .cate>li.pulldu>a:hover>i{
    background:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/sidebar/pulldown-h.png) center no-repeat
}
 .right-sidebar .category-box .cate>li.pulldu>a.active>span,.right-sidebar .category-box .cate>li.pulldu>a:hover>span{
    color:#fff
}
 .right-sidebar .category-box .cate>li .sub-menu{
    display:none;
    background-color:#f2f3f4
}
 .right-sidebar .category-box .cate>li .sub-menu>li{
    border-bottom:1px solid rgba(57,62,65,.2)
}
 .right-sidebar .category-box .cate>li .sub-menu>li>a{
    display:block;
    line-height:24px;
    color:#000;
    padding:10px 30px 10px 50px;
    white-space:nowrap
}
 .right-sidebar .category-box .cate>li .sub-menu>li>a>i{
    display:inline-block;
    width:5px;
    height:5px;
    background-color:#393e41;
    vertical-align:top;
    position:relative;
    top:9px
}
 .right-sidebar .category-box .cate>li .sub-menu>li>a>span{
    display:inline-block;
    margin-left:18px;
    font-size:16px;
    color:#000;
    white-space:normal
}
 .right-sidebar .category-box .cate>li .sub-menu>li>a.active>i,.right-sidebar .category-box .cate>li .sub-menu>li>a:hover>i{
    background-color:#e70010
}
 .right-sidebar .category-box .cate>li .sub-menu>li>a.active>span,.right-sidebar .category-box .cate>li .sub-menu>li>a:hover>span{
    color:#e70010
}
 .right-sidebar .category-box .App-recom{
    overflow:hidden;
    margin-top:33px
}
 .right-sidebar .category-box .App-recom li{
    float:left;
    margin-right:8px;
    margin-bottom:15px
}
 @media (max-width:767px){
    .right-sidebar .category-box .App-recom li{
        margin-left:20px
    }
}
 @media (max-width:320px){
    .right-sidebar .category-box .App-recom li{
        margin-left:0;
        margin-right:3px
    }
}
 .right-sidebar .category-box .App-recom li:nth-child(2n+2){
    margin-right:0
}
 .right-sidebar .category-box .App-recom li a{
    padding:13px;
    display:block;
    text-align:center;
    width:143px;
    word-break:break-word;
    background-color:#e5e5e5
}
 .right-sidebar .category-box .App-recom li a:hover{
    color:#fff;
    background-color:#e70010
}
 .right-sidebar .category-box .App-recom li a.active{
    color:#fff;
    background-color:#e70010
}
 .right-sidebar .hot-box .hot-item{
    display:block;
    margin-top:21px
}
 .right-sidebar .hot-box .hot-item .item-cv{
    width:290px;
    height:291px;
    margin:0 auto;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden
}
 .right-sidebar .hot-box .hot-item .item-cv img{
    width:100%;
    transition:all .3s;
    -webkit-transition:all .3s;
    -moz-transition:all .3s;
    -o-transition:all .3s;
    -ms-transition:all .3s
}
 .right-sidebar .hot-box .hot-item .item-name{
    text-align:center;
    padding:21px 10px 0;
    font-size:16px;
    color:#323232
}
 @media (max-width:1249.98px){
    .right-sidebar .hot-box .hot-item .item-cv{
        width:100%;
        height:285px
    }
}
 @media (max-width:1199.98px){
    .right-sidebar .hot-box .hot-item{
        margin-top:20px
    }
     .right-sidebar .hot-box .hot-item .item-cv{
        height:235px
    }
}
 @media (max-width:991.98px){
    .right-sidebar .hot-box .hot-item .item-cv{
        height:auto
    }
     .right-sidebar .hot-box .hot-item .item-name{
        padding:10px 10px 0
    }
}
 .right-sidebar .hot-box .hot-item:hover .item-cv img{
    transform:scale(1.1);
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -o-transform:scale(1.1);
    -ms-transform:scale(1.1)
}
 .right-sidebar .hot-box .hot-item:hover .item-name{
    color:#d30000
}
 .right-sidebar .news-box>ul{
    margin-top:14px
}
 .right-sidebar .news-box>ul>li{
    margin-bottom:30px;
    background-color:#fff
}
 .right-sidebar .news-box>ul>li a{
    display:block;
    height:107px;
    overflow:hidden
}
 .right-sidebar .news-box>ul>li a .news-l{
    float:left;
    width:196px;
    padding-left:6px;
    font-size:14px;
    line-height:22px
}
 .right-sidebar .news-box>ul>li a .news-l p{
    padding-top:6px;
    margin-bottom:2px;
    min-height:76px;
    color:#000;
    border-bottom:1px solid #e2e4e5;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    webkit-box-orient:vertical;
    webkit-line-clamp:3;
    word-break:break-all
}
 .right-sidebar .news-box>ul>li a .news-l img{
    margin:0 8px 0 6px;
    vertical-align:middle
}
 .right-sidebar .news-box>ul>li a .news-l span{
    color:#747474;
    vertical-align:middle
}
 @media (max-width:1249.98px){
    .right-sidebar .news-box>ul>li a .news-l{
        width:62%
    }
}
 @media (max-width:991.98px){
    .right-sidebar .news-box>ul>li a .news-l{
        font-size:12px
    }
}
 @media (max-width:767.98px){
    .right-sidebar .news-box>ul>li a .news-l{
        width:68%
    }
}
 .right-sidebar .news-box>ul>li a .news-r{
    float:right;
    width:95px;
    height:100%;
    display:flex;
    justify-content:flex-start;
    align-items:center;
    overflow:hidden
}
 .right-sidebar .news-box>ul>li a .news-r>span{
    width:90px;
    height:90px;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden
}
 .right-sidebar .news-box>ul>li a .news-r>span img{
    width:100%;
    transition:all .3s;
    -webkit-transition:all .3s;
    -moz-transition:all .3s;
    -o-transition:all .3s;
    -ms-transition:all .3s
}
 @media (max-width:1249.98px){
    .right-sidebar .news-box>ul>li a .news-r{
        width:30%;
        padding-right:4px
    }
}
 @media (max-width:767.98px){
    .right-sidebar .news-box>ul>li a .news-r{
        width:30%;
        justify-content:flex-end
    }
     .right-sidebar .news-box>ul>li a .news-r>span{
        width:100%
    }
}
 .right-sidebar .news-box>ul>li a:hover .news-r>span img{
    transform:scale(1.1);
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -o-transform:scale(1.1);
    -ms-transform:scale(1.1)
}
 @media (max-width:1199.98px){
    .right-sidebar .news-box>ul{
        margin-top:10px
    }
     .right-sidebar .news-box>ul>li{
        margin-bottom:10px
    }
}
 .right-sidebar .contact-box .cover{
    width:100%;
    height:161px;
    margin-top:24px;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden
}
 .right-sidebar .contact-box .cover>img{
    width:100%
}
 .right-sidebar .contact-box .detail{
    margin-top:20px;
    line-height:32px
}
 .right-sidebar .contact-box .detail a{
    display:block;
    color:#000
}
 .right-sidebar .contact-box .detail a:last-child{
    margin-top:4px;
    line-height:24px
}
 @media (max-width:1249.98px){
    .right-sidebar .contact-box .cover{
        height:157px
    }
}
 @media (max-width:1199.98px){
    .right-sidebar .contact-box .cover{
        height:130px;
        margin-top:20px
    }
}
 @media (max-width:991.98px){
    .right-sidebar .contact-box .cover{
        height:100px
    }
     .right-sidebar .contact-box .detail{
        line-height:20px
    }
     .right-sidebar .contact-box .detail a{
        margin-bottom:10px
    }
     .right-sidebar .contact-box .detail a:last-child{
        margin-top:0;
        line-height:20px
    }
}
 @media (max-width:767.98px){
    .right-sidebar .contact-box .cover{
        height:140px;
        margin-top:10px
    }
}
 .inside-pagination{
    padding:63px 0 104px;
    text-align:center
}
 @media (max-width:1199.98px){
    .inside-pagination{
        padding:50px 0
    }
}
 @media (max-width:767.98px){
    .inside-pagination{
        padding:30px 0
    }
}
 .inside-pagination>ul{
    display:inline-block
}
 .inside-pagination>ul>li{
    display:inline-block;
    margin:0 3px;
    font-size:18px;
    color:#828283;
    font-family:ArialMT
}
 .inside-pagination>ul>li a{
    padding:0 3px 3px;
    color:#828283
}
 .inside-pagination>ul>li a.active{
    color:#d30000;
    border-bottom:1px solid #d30000
}
 .inside-pagination>ul>li.next-page{
    position:relative;
    top:-1px
}
 .inside-pagination>ul>li.next-page a img:last-child{
    display:none
}
 .inside-pagination>ul>li.active a,.inside-pagination>ul>li:hover a{
    color:#d30000;
    border-bottom:1px solid #d30000
}
 .inside-pagination>ul>li.active.next-page a img:first-child,.inside-pagination>ul>li:hover.next-page a img:first-child{
    display:none
}
 .inside-pagination>ul>li.active.next-page a img:last-child,.inside-pagination>ul>li:hover.next-page a img:last-child{
    display:inline
}
 #news-detail-page .inside-content .left-content,#news-page .inside-content .left-content{
    float:unset;
    padding:0;
    border:0;
    margin:auto
}
 #news-page .inside-content .left-content .news-box{
    margin-top:50px;
    padding-right:18px
}
 @media (max-width:1199.98px){
    #news-page .inside-content .left-content .news-box{
        margin-top:20px;
        padding-right:0
    }
}
 @media (max-width:767.98px){
    #news-page .inside-content .left-content .news-box{
        margin-top:10px;
        padding-right:0
    }
}
 #news-page .inside-content .left-content .news-box .news-list{
    overflow:hidden
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item{
    display:flex;
    margin-bottom:75px
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item:last-child{
    margin-bottom:0
}
 @media (max-width:1199.98px){
    #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item{
        display:flex;
        justify-content:space-between;
        align-items:center;
        flex-wrap:wrap
    }
}
 @media (max-width:767px){
    #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item{
        flex-direction:column;
        margin-bottom:20px
    }
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-l{
    flex:0 0 316px;
    height:178px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-l:hover>a>img{
    transform:scale(1.1)
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-l>a{
    width:100%
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-l img{
    width:100%;
    transition:.3s
}
 @media (max-width:1199.98px){
    #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-l{
        height:160px
    }
}
 @media (max-width:991.98px){
    #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-l{
        height:180px;
        flex:0 0 240px
    }
}
 @media (max-width:549.98px){
    #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-l{
        width:100%;
        height:190px;
        margin-top:10px;
        flex:1
    }
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r{
    padding-left:20px;
    flex:1;
    overflow:hidden
}
 @media (max-width:767px){
    #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r{
        padding:0
    }
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r .top-line{
    font-size:14px;
    color:#6c6c6c
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r .top-line img{
    margin:0 4px;
    vertical-align:middle
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r>h6{
    margin:0 0 12px;
    font-size:30px
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r>h6 a{
    color:#000;
    font-size:24px
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r>h6 a:hover{
    color:#d30000
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r>p{
    font-size:14px;
    line-height:22px;
    color:grey;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    height:44px
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r .more-line{
    height:33px;
    margin-top:35px;
    line-height:33px;
    color:#6c6c6c;
    font-size:12px;
    background-color:#f1f3f4;
    overflow:hidden
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r .more-line .icon-h{
    display:none
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r .more-line .like-box{
    float:left;
    padding-left:20px
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r .more-line .like-box i{
    margin-left:8px;
    font-style:normal;
    color:#d30000;
    cursor:pointer
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r .more-line .like-box i img{
    margin-right:4px;
    vertical-align:middle
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r .more-line .like-box i span{
    vertical-align:middle
}
 @media (min-width:1200px){
    #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r .more-line .like-box i:hover .icon-h{
        display:inline
    }
     #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r .more-line .like-box i:hover .icon-n{
        display:none
    }
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r .more-line .more-box{
    float:right;
    padding:0 23px 0 13px;
    border-left:1px solid #dee0e0
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r .more-line .more-box a{
    color:#d30000
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r .more-line .more-box a img{
    margin-right:8px;
    vertical-align:middle
}
 #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r .more-line .more-box a span{
    vertical-align:middle
}
 @media (min-width:1200px){
    #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r .more-line .more-box a:hover .icon-h{
        display:inline
    }
     #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r .more-line .more-box a:hover .icon-n{
        display:none
    }
}
 @media (max-width:1199.98px){
    #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r>h6{
        font-size:24px;
        margin:5px 0 10px
    }
     #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r>p{
        line-height:24px
    }
     #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r .more-line{
        margin-top:20px
    }
}
 @media (max-width:767.98px){
    #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r>h6{
        font-size:20px
    }
     #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r .more-line{
        margin-top:10px
    }
}
 @media (max-width:549.98px){
    #news-page .inside-content .left-content .news-box .news-list .news-container .news-middle .news-item .news-r{
        width:100%;
        margin-top:10px
    }
}
 #news-page .inside-content .left-content .news-box .inside-pagination{
    padding:80px 0 84px
}
 @media (max-width:1199.98px){
    #news-page .inside-content .left-content .news-box .inside-pagination{
        padding:50px 0
    }
}
 @media (max-width:767.98px){
    #news-page .inside-content .left-content .news-box .inside-pagination{
        padding:30px 0
    }
}
 #application-page .app-list{
    padding-top:65px
}
 @media (max-width:1199px){
    #application-page .app-list{
        padding-top:40px
    }
}
 @media (max-width:991px){
    #application-page .app-list{
        padding-top:30px
    }
}
 #application-page .app-list .item{
    margin-bottom:75px
}
 @media (max-width:1199px){
    #application-page .app-list .item{
        margin-bottom:30px
    }
}
 @media (max-width:600px){
    #application-page .app-list .item{
        margin-bottom:15px
    }
}
 #application-page .app-list .item:last-child{
    margin-bottom:35px
}
 #application-page .app-list .item .item-a{
    display:flex
}
 @media (max-width:600px){
    #application-page .app-list .item .item-a{
        flex-direction:column;
        box-shadow:0 0 20px #f5f5f5
    }
}
 #application-page .app-list .item .item-a:hover .item-l .set-img img{
    transform:scale(1.1)
}
 #application-page .app-list .item .item-a:hover .item-r .more-btn{
    color:#fff;
    background-color:#e60012
}
 #application-page .app-list .item .item-a:hover .item-r .more-btn::before{
    border-left:20px solid #e60012
}
 #application-page .app-list .item .item-a .item-l{
    flex:0 0 316px;
    display:flex;
    align-items:center;
    justify-content:center
}
 @media (max-width:991px){
    #application-page .app-list .item .item-a .item-l{
        flex:0 0 240px
    }
     .header-top{
        margin-bottom:0!important
    }
}
 @media (max-width:600px){
    #application-page .app-list .item .item-a .item-l{
        flex:1
    }
}
 #application-page .app-list .item .item-a .item-l .set-img{
    position:relative;
    width:100%;
    padding-bottom:56.32%;
    height:0;
    overflow:hidden
}
 #application-page .app-list .item .item-a .item-l .set-img img{
    position:absolute;
    width:100%;
    top:0;
    bottom:0;
    margin:auto;
    transition:.3s
}
 #application-page .app-list .item .item-a .item-r{
    padding-left:20px;
    flex:1;
    overflow:hidden
}
 @media (max-width:600px){
    #application-page .app-list .item .item-a .item-r{
        padding:0
    }
}
 #application-page .app-list .item .item-a .item-r .tit{
    color:#000;
    font-size:24px;
    text-overflow:ellipsis;
    overflow:hidden;
    white-space:nowrap;
    line-height:40px
}
 @media (max-width:600px){
    #application-page .app-list .item .item-a .item-r .tit{
        margin:5px 0;
        font-size:20px;
        line-height:26px
    }
}
 #application-page .app-list .item .item-a .item-r .des{
    font-size:14px;
    line-height:22px;
    height:66px;
    color:#5a5a5a;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    margin-top:13px
}
 @media (max-width:991px){
    #application-page .app-list .item .item-a .item-r .des{
        margin-top:0
    }
}
 #application-page .app-list .item .item-a .item-r .more-btn{
    font-size:14px;
    width:132px;
    height:40px;
    line-height:40px;
    text-align:center;
    background-color:#e5e5e5;
    position:relative;
    font-weight:700;
    margin-top:20px;
    transition:.3s
}
 @media (max-width:991px){
    #application-page .app-list .item .item-a .item-r .more-btn{
        margin-top:5px
    }
}
 @media (max-width:600px){
    #application-page .app-list .item .item-a .item-r .more-btn{
        border-radius:5px;
        margin:10px auto
    }
}
 #application-page .app-list .item .item-a .item-r .more-btn::before{
    position:absolute;
    content:'';
    top:0;
    bottom:0;
    right:-20px;
    margin:auto;
    border-top:20px solid transparent;
    border-left:20px solid #e5e5e5;
    border-bottom:20px solid transparent;
    transition:.3s
}
 @media (max-width:600px){
    #application-page .app-list .item .item-a .item-r .more-btn::before{
        display:none
    }
}
 #exhibition-page .inside-content .left-content .exh-box{
    margin-top:50px;
    padding-right:18px
}
 @media (max-width:1199.98px){
    #exhibition-page .inside-content .left-content .exh-box{
        margin-top:20px;
        padding-right:0
    }
}
 @media (max-width:767.98px){
    #exhibition-page .inside-content .left-content .exh-box{
        margin-top:10px
    }
}
 #exhibition-page .inside-content .left-content .exh-box .case-list{
    margin-top:30px;
    padding-bottom:32px
}
 @media (min-width:1250px){
    #exhibition-page .inside-content .left-content .exh-box .case-list{
        padding-right:10px
    }
}
 @media (max-width:1199.98px){
    #exhibition-page .inside-content .left-content .exh-box .case-list{
        margin-top:20px;
        padding-bottom:0
    }
}
 @media (max-width:767.98px){
    #exhibition-page .inside-content .left-content .exh-box .case-list{
        margin-top:10px
    }
}
 @media (min-width:768px){
    #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide+.swiper-slide+.swiper-slide{
        margin-top:40px!important
    }
}
 @media (min-width:1250px){
    #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide+.swiper-slide+.swiper-slide{
        margin-top:60px!important
    }
}
 #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .cv{
    width:100%;
    height:230px;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden
}
 #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .cv img{
    max-height:100%;
    transition:all .3s;
    -webkit-transition:all .3s;
    -moz-transition:all .3s;
    -o-transition:all .3s;
    -ms-transition:all .3s
}
 @media (max-width:767px){
    #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .cv img{
        max-height:initial;
        width:100%
    }
}
 @media (max-width:1199.98px){
    #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .cv{
        height:209px
    }
}
 @media (max-width:991.98px){
    #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .cv{
        height:160px
    }
}
 @media (max-width:599.98px){
    #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .cv{
        height:180px
    }
}
 @media (max-width:399.98px){
    #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .cv{
        height:140px
    }
}
 #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .cv:hover img{
    transform:scale(1.1);
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -o-transform:scale(1.1);
    -ms-transform:scale(1.1)
}
 #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail{
    padding-top:30px
}
 #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail h6{
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:1
}
 #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail h6 a{
    font-size:22px;
    color:#000;
    text-overflow:ellipsis;
    overflow:hidden;
    white-space:nowrap;
    display:block
}
 #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail h6 a:hover{
    color:#d30000
}
 #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail p{
    margin:16px 0 21px;
    font-size:14px;
    line-height:24px;
    height:72px;
    color:#6c6c6c;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3
}
 @media (max-width:1199.98px){
    #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail{
        padding-top:20px
    }
     #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail p{
        margin:10px 0 15px;
        line-height:24px
    }
}
 @media (max-width:767.98px){
    #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail{
        padding-top:10px
    }
     #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail h6{
        font-size:16px
    }
     #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail p{
        margin:10px 0 10px;
        font-size:14px;
        line-height:20px;
        min-height:60px
    }
}
 #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line{
    height:50px;
    line-height:50px;
    color:#6c6c6c;
    font-size:12px;
    background-color:#f1f3f4;
    overflow:hidden
}
 @media (max-width:767.98px){
    #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line{
        height:42px;
        line-height:42px
    }
}
 #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .icon-h{
    display:none
}
 #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .like-box{
    float:left;
    padding-left:14px
}
 #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .like-box i{
    margin-left:8px;
    font-style:normal;
    color:#d30000;
    cursor:pointer
}
 #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .like-box i img{
    margin-right:4px;
    vertical-align:middle
}
 #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .like-box i span{
    vertical-align:middle
}
 @media (min-width:1200px){
    #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .like-box i:hover .icon-h{
        display:inline
    }
     #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .like-box i:hover .icon-n{
        display:none
    }
}
 #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .more-box{
    float:right;
    padding:0 23px 0 13px;
    border-left:1px solid #dee0e0
}
 #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .more-box a{
    color:#d30000
}
 #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .more-box a img{
    margin-right:8px;
    vertical-align:middle
}
 #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .more-box a span{
    vertical-align:middle
}
 @media (min-width:1200px){
    #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .more-box a:hover .icon-h{
        display:inline
    }
     #exhibition-page .inside-content .left-content .exh-box .case-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .more-box a:hover .icon-n{
        display:none
    }
}
 @media (min-width:1200px){
    #exhibition-page .inside-content .left-content .exh-box .inside-pagination{
        padding:57px 0 50px
    }
}
 #video-page .video-list{
    overflow:hidden;
    margin:0 -18px;
    padding-right:15px;
    padding-top:50px
}
 @media (max-width:767px){
    #video-page .video-list{
        padding-right:0
    }
}
 #video-page .video-list .item{
    width:50%;
    float:left;
    padding:0 18px;
    margin-bottom:75px
}
 @media (max-width:1199px){
    #video-page .video-list .item{
        margin-bottom:5%
    }
}
 @media (max-width:767px){
    #video-page .video-list .item{
        width:100%;
        margin-bottom:30px
    }
}
 #video-page .video-list .item .wrap-box{
    margin:50px 0 30px
}
 #video-page .video-list .item .wrap-box:hover .des{
    color:#e60012
}
 #video-page .video-list .item .wrap-box .set-video{
    position:relative;
    height:0;
    width:100%;
    padding-bottom:56.1%
}
 #video-page .video-list .item .wrap-box .set-video img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover
}
 #video-page .video-list .item .wrap-box .set-video .mask{
    position:absolute;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,.4);
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/video/play-icon.png);
    background-position:center;
    background-repeat:no-repeat
}
 #video-page .video-list .item .wrap-box .des{
    text-align:center;
    text-overflow:ellipsis;
    white-space:nowrap;
    overflow:hidden;
    font-size:20px;
    color:#000;
    margin-top:35px;
    transition:.3s
}
 @media (max-width:1199px){
    #video-page .video-list .item .wrap-box .des{
        margin-top:15px
    }
}
 #Contact-Support .inside-content .left-content .Contact-Support{
    margin-top:50px;
    padding-right:18px;
    overflow:hidden;
    font-family:sans-serif,Arial,Verdana,"Trebuchet MS";
    font-size:16px;
    line-height:1.6
}
 @media (max-width:1199.98px){
    #Contact-Support .inside-content .left-content .Contact-Support{
        margin-top:20px
    }
}
 @media (max-width:767.98px){
    #Contact-Support .inside-content .left-content .Contact-Support{
        margin-top:10px;
        padding-right:0
    }
}
 #Contact-Support .inside-content .left-content .Contact-Support .Contact-Details ul .list-box{
    float:left;
    margin-bottom:50px
}
 #Contact-Support .inside-content .left-content .Contact-Support .Contact-Details ul .list-box:nth-child(2n+2){
    margin-left:30px
}
 @media (max-width:1200px) and (min-width:768px){
    #Contact-Support .inside-content .left-content .Contact-Support .Contact-Details ul .list-box{
        width:47%
    }
}
 @media (max-width:767px){
    #Contact-Support .inside-content .left-content .Contact-Support .Contact-Details ul .list-box:nth-child(2n+2){
        margin-left:0
    }
}
 #Contact-Support .inside-content .left-content .Contact-Support .Contact-Details ul .list-box .text-b{
    padding:30px 10px 0
}
 #Contact-Support .inside-content .left-content .Contact-Support .Contact-Details ul .list-box .text-b a{
    text-decoration:none;
    color:#000
}
 #Contact-Support .inside-content .left-content .Contact-Support .Contact-Details ul .list-box .text-b a:hover{
    color:#c90909
}
 #Contact-Support .inside-content .left-content .Contact-Support .Contact-Details ul .list-box .text-b .text-r{
    float:right
}
 #contact-page .inside-content .left-content{
    float:none;
    width:100%;
    padding-right:0;
    border-right:none
}
 #contact-page .inside-content .left-content .contact-box{
    margin-top:90px;
    overflow:hidden
}
 @media (max-width:1199.98px){
    #contact-page .inside-content .left-content .contact-box{
        margin-top:20px
    }
}
 @media (max-width:767.98px){
    #contact-page .inside-content .left-content .contact-box{
        margin-top:10px
    }
}
 #contact-page .inside-content .left-content .contact-box>div>h6{
    font-size:26px;
    color:#000
}
 #contact-page .inside-content .left-content .contact-box>div>p{
    margin:23px 0 30px;
    font-size:14px;
    line-height:18px;
    color:#6c6c6c;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2
}
 @media (max-width:767.98px){
    #contact-page .inside-content .left-content .contact-box>div>h6{
        font-size:20px
    }
     #contact-page .inside-content .left-content .contact-box>div>p{
        margin:4px 0
    }
}
 #contact-page .inside-content .left-content .contact-box .contact-l{
    float:left;
    width:32%
}
 @media (max-width:767.98px){
    #contact-page .inside-content .left-content .contact-box .contact-l{
        width:100%
    }
}
 #contact-page .inside-content .left-content .contact-box .contact-l p{
    display:block
}
 #contact-page .inside-content .left-content .contact-box .contact-l .masg-l{
    color:#000;
    font-weight:600
}
 #contact-page .inside-content .left-content .contact-box .contact-l .info-box{
    overflow:hidden;
    white-space:nowrap
}
 #contact-page .inside-content .left-content .contact-box .contact-l .info-box .icon-box{
    display:inline-block;
    width:45px;
    vertical-align:top;
    overflow:hidden
}
 #contact-page .inside-content .left-content .contact-box .contact-l .info-box .icon-box img{
    width:100%
}
 @media (max-width:991.98px){
    #contact-page .inside-content .left-content .contact-box .contact-l .info-box .icon-box{
        display:none
    }
}
 #contact-page .inside-content .left-content .contact-box .contact-l .info-box .info{
    display:inline-block;
    margin-left:22px;
    padding-right:50px;
    white-space:normal;
    word-break:break-all;
    vertical-align:top
}
 #contact-page .inside-content .left-content .contact-box .contact-l .info-box .info>h6{
    font-size:22px;
    line-height:34px;
    color:#000;
    margin-bottom:15px
}
 #contact-page .inside-content .left-content .contact-box .contact-l .info-box .info>p{
    margin:10px 0 24px;
    font-size:12px;
    line-height:18px;
    color:#000
}
 #contact-page .inside-content .left-content .contact-box .contact-l .info-box .info>a{
    display:block;
    font-size:14px;
    line-height:16px;
    color:#000;
    position:relative
}
 #contact-page .inside-content .left-content .contact-box .contact-l .info-box .info>a+a{
    margin-top:5px
}
 #contact-page .inside-content .left-content .contact-box .contact-l .info-box .info>a .span-r{
    color:#6c6c6c
}
 #contact-page .inside-content .left-content .contact-box .contact-l .info-box .info>a span{
    display:inline-block
}
 #contact-page .inside-content .left-content .contact-box .contact-l .info-box .info>a span:first-child{
    font-weight:700
}
 @media (max-width:991.98px){
    #contact-page .inside-content .left-content .contact-box .contact-l .info-box .info{
        margin-left:0;
        padding-right:0
    }
}
 @media (max-width:767.98px){
    #contact-page .inside-content .left-content .contact-box .contact-l .info-box .info>h6{
        font-size:18px;
        line-height:24px
    }
     #contact-page .inside-content .left-content .contact-box .contact-l .info-box .info>p{
        margin:2px 0 6px
    }
}
 #contact-page .inside-content .left-content .contact-box .contact-r{
    float:right;
    width:64.5%
}
 @media (max-width:767.98px){
    #contact-page .inside-content .left-content .contact-box .contact-r{
        width:100%;
        margin-top:10px
    }
}
 #contact-page .inside-content .left-content .contact-box .contact-r form input[type=text]{
    width:49.2%;
    padding:0 14px;
    margin-bottom:10px;
    line-height:44px;
    height:44px;
    font-size:14px;
    color:#484848;
    border:1px solid #bfbfbf;
    outline:0;
    background-color:#f5f7f8
}
 #contact-page .inside-content .left-content .contact-box .contact-r form input[type=text].email{
    float:right
}
 #contact-page .inside-content .left-content .contact-box .contact-r form input[type=text].address{
    float:right
}
 #contact-page .inside-content .left-content .contact-box .contact-r form input[type=text]::-webkit-input-placeholder{
    color:#484848
}
 #contact-page .inside-content .left-content .contact-box .contact-r form input[type=text]:-moz-placeholder{
    color:#484848
}
 #contact-page .inside-content .left-content .contact-box .contact-r form input[type=text]::-moz-placeholder{
    color:#484848
}
 #contact-page .inside-content .left-content .contact-box .contact-r form input[type=text]:-ms-input-placeholder{
    color:#484848
}
 #contact-page .inside-content .left-content .contact-box .contact-r form textarea{
    width:100%;
    height:88px;
    padding:8px 14px;
    font-size:14px;
    line-height:24px;
    color:#484848;
    border:1px solid #bfbfbf;
    background-color:#f5f7f8;
    outline:0;
    resize:none
}
 #contact-page .inside-content .left-content .contact-box .contact-r form textarea::-webkit-input-placeholder{
    color:#484848
}
 #contact-page .inside-content .left-content .contact-box .contact-r form textarea:-moz-placeholder{
    color:#484848
}
 #contact-page .inside-content .left-content .contact-box .contact-r form textarea::-moz-placeholder{
    color:#484848
}
 #contact-page .inside-content .left-content .contact-box .contact-r form textarea:-ms-input-placeholder{
    color:#484848
}
 #contact-page .inside-content .left-content .contact-box .contact-r form .sub-box{
    margin-top:15px
}
 #contact-page .inside-content .left-content .contact-box .contact-r form .sub-box input[type=submit]{
    width:155px;
    border:none;
    padding-left:12px;
    text-align:left;
    font-size:14px;
    color:#fff;
    line-height:42px;
    outline:0;
    height:42px;
    background:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/contact/bg-btn.png) no-repeat
}
 @media (max-width:991.98px){
    #contact-page .inside-content .left-content .contact-box .contact-r form .sub-box input[type=text]{
        width:49%
    }
}
 @media (max-width:549.98px){
    #contact-page .inside-content .left-content .contact-box .contact-r form .sub-box input[type=text]{
        width:100%
    }
     #contact-page .inside-content .left-content .contact-box .contact-r form .sub-box input[type=submit]{
        display:block;
        width:155px;
        margin-left:auto;
        margin-right:auto
    }
}
 #contact-page .inside-content .map-box{
    width:100%;
    height:472px;
    margin-top:75px;
    margin-left:auto;
    margin-right:auto
}
 #contact-page .inside-content .map-box>div{
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    text-align:center
}
 #contact-page .inside-content .map-box img{
    height:100%
}
 @media (max-width:1199.98px){
    #contact-page .inside-content .map-box{
        height:340px;
        margin-top:20px
    }
}
 @media (max-width:767.98px){
    #contact-page .inside-content .map-box{
        height:240px;
        margin-top:10px
    }
}
 #contact-page #slider{
    float:left;
    margin:0 50px 0 0!important;
    width:280px;
    height:42px;
    position:relative;
    border-radius:2px;
    background-color:#bbb;
    overflow:hidden;
    text-align:center;
    user-select:none;
    -moz-user-select:none;
    -webkit-user-select:none;
    vertical-align:middle
}
 @media (max-width:1199.98px){
    #contact-page #slider{
        width:240px
    }
}
 @media (max-width:991.98px){
    #contact-page #slider{
        display:inline-block;
        width:240px;
        float:none
    }
}
 @media (max-width:767.98px){
    #contact-page #slider{
        width:200px;
        height:40px;
        margin-right:50px!important
    }
}
 @media (max-width:549.98px){
    #contact-page #slider{
        display:block;
        width:220px;
        margin:0 auto 10px!important
    }
}
 #contact-page #slider .slider_bg{
    position:absolute;
    left:0;
    top:0;
    height:100%;
    background-color:#d30000;
    z-index:1
}
 #contact-page #slider .label{
    width:48px;
    position:absolute;
    left:0;
    top:0;
    height:100%;
    padding:0;
    line-height:42px;
    border:1px solid #ccc;
    background:#fff;
    z-index:3;
    border-radius:0;
    cursor:move;
    color:#40647f;
    font-size:14px;
    font-weight:900
}
 @media (max-width:767.98px){
    #contact-page #slider .label{
        width:40px;
        line-height:40px
    }
}
 #contact-page #slider .labelTip{
    position:absolute;
    left:0;
    width:100%;
    height:100%;
    font-size:13px;
    font-family:'Microsoft Yahei',serif;
    color:#fff!important;
    line-height:42px;
    text-align:center;
    z-index:2
}
 @media (max-width:767.98px){
    #contact-page #slider .labelTip{
        line-height:40px
    }
}
 #ApplicationDetail .inside-content .left-content .Application-box{
    margin-top:50px;
    padding-right:18px;
    overflow:hidden;
    font-family:sans-serif,Arial,Verdana,"Trebuchet MS";
    font-size:16px;
    line-height:1.6
}
 #ApplicationDetail .inside-content .left-content .Application-box h4{
    text-align:center;
    font-size:30px;
    margin:74px 0
}
 #ApplicationDetail .inside-content .left-content .Application-box h5{
    text-align:center;
    font-size:24px;
    margin:50px 0 20px;
    color:#e70010
}
 #ApplicationDetail .inside-content .left-content .Application-box .hr{
    height:2px;
    background-color:#e2e4e5;
    margin:65px 0
}
 @media (max-width:1199.98px){
    #ApplicationDetail .inside-content .left-content .Application-box{
        margin-top:20px
    }
}
 @media (max-width:767.98px){
    #ApplicationDetail .inside-content .left-content .Application-box{
        margin-top:10px;
        padding-right:0
    }
}
 #ApplicationDetail .inside-content .left-content .Application-box .Details-box{
    border-bottom:1px solid #e2e4e5;
    padding-bottom:63px
}
 #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-title{
    font-size:30px;
    margin:0 auto;
    width:500px;
    text-align:center;
    margin-top:45px;
    margin-bottom:35px;
    color:#000
}
 #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-title span{
    display:block
}
 #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item{
    width:33.333%;
    overflow:hidden;
    float:left
}
 @media (max-width:767px){
    #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item{
        width:50%
    }
}
 @media (max-width:767px){
    #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item:nth-of-type(2n) a{
        margin-right:0;
        margin-left:5px
    }
}
 #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item a{
    display:block;
    text-decoration:none;
    margin-right:10px;
    margin-bottom:10px
}
 @media (max-width:767px){
    #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item a{
        margin-right:5px
    }
}
 #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item a .cover{
    height:276px;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    background-color:#fff
}
 #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item a .cover img{
    max-height:100%;
    transition:all .3s;
    -webkit-transition:all .3s;
    -moz-transition:all .3s;
    -o-transition:all .3s;
    -ms-transition:all .3s
}
 #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item a .detail{
    padding:20px 10px 28px;
    text-align:center;
    background-color:#fff
}
 #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item a .detail h6{
    font-size:16px;
    line-height:20px;
    color:#323232;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:1
}
 #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item a .detail span{
    display:block;
    width:125px;
    margin:23px auto 0;
    line-height:28px;
    font-size:16px;
    color:grey;
    border:1px solid #bfbfbf
}
 @media (max-width:1249.98px){
    #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item a .cover{
        height:262px
    }
}
 @media (max-width:1199.98px){
    #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item a .cover{
        height:213px
    }
     #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item a .detail{
        padding:20px 10px
    }
     #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item a .detail span{
        margin-top:20px
    }
}
 @media (max-width:991.98px){
    #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item a .cover{
        height:161px
    }
}
 @media (max-width:767.98px){
    #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item a .cover{
        height:200px
    }
}
 @media (max-width:699.98px){
    #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item a .cover{
        height:160px
    }
}
 @media (max-width:599.98px){
    #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item a .cover{
        height:140px
    }
}
 @media (max-width:499.98px){
    #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item a .cover{
        height:160px
    }
}
 @media (max-width:399.98px){
    #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item a .cover{
        height:120px
    }
     #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item a .detail span{
        width:90%
    }
}
 #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item:hover a .cover img{
    transform:scale(1.1);
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -o-transform:scale(1.1);
    -ms-transform:scale(1.1)
}
 #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item:hover a .detail h6{
    color:#d30000
}
 #ApplicationDetail .inside-content .left-content .Application-box .Application-Product .Product-bottom .item:hover a .detail span{
    color:#d30000;
    border-color:#d30000
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box{
    position:relative;
    margin-top:74px;
    padding-bottom:126px;
    overflow:hidden;
    width:100%;
    float:left
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box #message-box{
    position:absolute;
    top:-100px;
    left:0
}
 @media (max-width:1199.98px){
    #ApplicationDetail .inside-content .left-content .Application-box .message-box{
        margin-top:20px;
        padding-bottom:20px
    }
}
 @media (max-width:767.98px){
    #ApplicationDetail .inside-content .left-content .Application-box .message-box{
        margin-top:10px;
        padding-bottom:10px
    }
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-l{
    float:left;
    width:288px
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-l h6{
    font-size:26px;
    font-weight:700;
    color:#000
}
 @media (max-width:767.98px){
    #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-l h6{
        font-size:20px
    }
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-l p{
    margin-top:25px;
    font-size:16px;
    line-height:24px;
    color:#6c6c6c
}
 @media (max-width:1249.98px){
    #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-l{
        width:32%
    }
}
 @media (max-width:1199.98px){
    #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-l p{
        margin-top:10px;
        line-height:22px
    }
}
 @media (max-width:549.98px){
    #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-l{
        width:100%
    }
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r{
    float:right;
    width:553px
}
 @media (max-width:1249.98px){
    #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r{
        width:62%
    }
}
 @media (max-width:549.98px){
    #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r{
        width:100%;
        margin-top:10px
    }
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r form .input-wrapper{
    position:relative
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r form .input-wrapper i{
    display:none;
    width:9px;
    height:8px;
    position:absolute;
    right:24px;
    top:50%;
    margin-top:-4px;
    background:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/product_detail/icon-tri.png) center no-repeat
}
 @media (max-width:549.98px){
    #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r form .input-wrapper i{
        right:10px
    }
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r form input[type=text]{
    width:49%;
    padding:0 14px;
    margin-bottom:10px;
    line-height:44px;
    height:44px;
    font-size:14px;
    color:#484848;
    border:1px solid #bfbfbf;
    outline:0;
    background-color:#f5f7f8
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r form input[type=text]:nth-child(2n){
    margin-left:1%
}
 @media (max-width:1199px) and (min-width:992px){
    #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r form input[type=text]:nth-child(2n){
        margin-left:0
    }
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r form input[type=text]::-webkit-input-placeholder{
    color:#484848
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r form input[type=text]:-moz-placeholder{
    color:#484848
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r form input[type=text]::-moz-placeholder{
    color:#484848
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r form input[type=text]:-ms-input-placeholder{
    color:#484848
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r form textarea{
    width:100%;
    height:88px;
    padding:8px 14px;
    font-size:14px;
    line-height:24px;
    color:#484848;
    border:1px solid #bfbfbf;
    background-color:#f5f7f8;
    outline:0;
    resize:none
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r form textarea::-webkit-input-placeholder{
    color:#484848
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r form textarea:-moz-placeholder{
    color:#484848
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r form textarea::-moz-placeholder{
    color:#484848
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r form textarea:-ms-input-placeholder{
    color:#484848
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r form .sub-box{
    margin-top:15px
}
 #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r form input[type=submit]{
    width:155px;
    border:none;
    padding-left:15px;
    text-align:left;
    font-size:14px;
    color:#fff;
    line-height:42px;
    height:42px;
    background:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/contact/bg-btn.png) no-repeat
}
 @media (max-width:991.98px){
    #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r form input[type=text]{
        width:48%
    }
     #ApplicationDetail .inside-content .left-content .Application-box .message-box .message-r form input[type=submit]{
        display:block;
        width:155px;
        margin-left:auto;
        margin-right:auto
    }
}
 #ApplicationDetail #slider{
    float:left;
    margin:0 50px 0 0!important;
    width:280px;
    height:42px;
    position:relative;
    border-radius:2px;
    background-color:#bbb;
    overflow:hidden;
    text-align:center;
    user-select:none;
    -moz-user-select:none;
    -webkit-user-select:none;
    vertical-align:middle
}
 @media (max-width:1199px) and (min-width:992px){
    #ApplicationDetail #slider{
        margin:0 15px 0 0!important
    }
}
 @media (max-width:1199.98px){
    #ApplicationDetail #slider{
        width:240px
    }
}
 @media (max-width:991.98px){
    #ApplicationDetail #slider{
        display:block;
        width:240px;
        float:none;
        margin:0 auto 10px!important
    }
}
 #ApplicationDetail #slider .slider_bg{
    position:absolute;
    left:0;
    top:0;
    height:100%;
    background-color:#d30000;
    z-index:1
}
 #ApplicationDetail #slider .label{
    width:48px;
    position:absolute;
    left:0;
    top:0;
    height:100%;
    padding:0;
    line-height:42px;
    border:1px solid #ccc;
    background:#fff;
    z-index:3;
    border-radius:0;
    cursor:move;
    color:#40647f;
    font-size:14px;
    font-weight:900
}
 @media (max-width:767.98px){
    #ApplicationDetail #slider .label{
        width:40px;
        line-height:40px
    }
}
 #ApplicationDetail #slider .labelTip{
    position:absolute;
    left:0;
    width:100%;
    height:100%;
    font-size:13px;
    font-family:'Microsoft Yahei',serif;
    color:#fff!important;
    line-height:42px;
    text-align:center;
    z-index:2
}
 @media (max-width:767.98px){
    #ApplicationDetail #slider .labelTip{
        line-height:40px
    }
}
 #driver-software-page .inside-content .left-content .download-box{
    padding-top:47px
}
 #driver-software-page .inside-content .left-content .download-box .box-title h4{
    text-align:center;
    font-size:24px;
    font-weight:400;
    line-height:28px;
    letter-spacing:0;
    color:#000
}
 #driver-software-page .inside-content .left-content .download-box .box-banner{
    margin-top:32px
}
 #driver-software-page .inside-content .left-content .download-box .box-banner img{
    width:100%
}
 #driver-software-page .inside-content .left-content .download-box .box-tips{
    margin-top:23px
}
 #driver-software-page .inside-content .left-content .download-box .box-tips .tips{
    font-size:14px;
    font-weight:400;
    font-style:italic;
    line-height:24px;
    letter-spacing:0;
    color:#393e41
}
 #driver-software-page .inside-content .left-content .download-box .box-download{
    margin-top:69px
}
 #driver-software-page .inside-content .left-content .download-box .box-download::after{
    content:'';
    display:block;
    clear:both
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item{
    width:calc((100% - 27px)/ 2);
    float:left;
    margin-bottom:25px;
    cursor:pointer
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item:nth-of-type(odd){
    margin-right:27px
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item .item-inner{
    position:relative;
    display:block
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item .item-inner .file-img{
    position:relative;
    width:100%;
    overflow:hidden
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item .item-inner .file-img::before{
    content:'';
    display:block;
    padding-top:62.7%
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item .item-inner .file-img img{
    position:absolute;
    top:0;
    width:100%
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item .item-inner .download-bottom{
    position:relative;
    margin-top:28px
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item .item-inner .download-bottom .file-name{
    padding-right:32px
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item .item-inner .download-bottom .file-name p{
    font-size:20px;
    font-weight:400;
    line-height:24px;
    letter-spacing:0;
    color:#000;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item .item-inner .download-bottom .download-button{
    position:absolute;
    top:0;
    right:0
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item .item-inner .download-bottom .download-button img{
    width:22px;
    height:22px
}
 @media (max-width:767px){
    #driver-software-page .inside-content .left-content .download-box .box-download .download-item{
        width:100%;
        float:none
    }
     #driver-software-page .inside-content .left-content .download-box .box-download .download-item:nth-of-type(odd){
        margin-right:0
    }
}
 @media (max-width:767px){
    #driver-software-page .inside-content .left-content .download-box{
        padding-top:20px
    }
     #driver-software-page .inside-content .left-content .download-box .box-title h4{
        text-align:left
    }
     #driver-software-page .inside-content .left-content .download-box .box-download{
        margin-top:30px
    }
}
 #faq-page .inside-content .left-content .faq-box{
    padding-top:50px;
    padding-bottom:120px
}
 #faq-page .inside-content .left-content .faq-box .faq-list .faq-item{
    padding:28px 26px 26px 31px;
    background:#fff;
    margin-bottom:38px;
    cursor:pointer
}
 #faq-page .inside-content .left-content .faq-box .faq-list .faq-item:last-of-type{
    margin-bottom:0
}
 #faq-page .inside-content .left-content .faq-box .faq-list .faq-item:hover .question{
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/faq/question_on.png)
}
 #faq-page .inside-content .left-content .faq-box .faq-list .faq-item:hover .question p{
    color:#e70011
}
 #faq-page .inside-content .left-content .faq-box .faq-list .faq-item:hover .answer{
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/faq/answer_on.png)
}
 #faq-page .inside-content .left-content .faq-box .faq-list .faq-item .faq-bg{
    padding-left:54px;
    background-repeat:no-repeat;
    background-size:40px;
    background-position:top left
}
 #faq-page .inside-content .left-content .faq-box .faq-list .faq-item .question{
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/faq/question.png);
    padding-bottom:13px;
    border-bottom:1px solid #ccc;
    transition:all .3s
}
 #faq-page .inside-content .left-content .faq-box .faq-list .faq-item .question p{
    font-size:22px;
    font-weight:400;
    font-stretch:normal;
    padding:9px 0;
    line-height:28px;
    letter-spacing:0;
    color:#000;
    transition:all .3s
}
 #faq-page .inside-content .left-content .faq-box .faq-list .faq-item .answer{
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/faq/answer.png);
    margin-top:20px;
    transition:all .3s
}
 #faq-page .inside-content .left-content .faq-box .faq-list .faq-item .answer p{
    font-size:16px;
    font-weight:400;
    line-height:28px;
    letter-spacing:0;
    color:#5a5a5a
}
 @media (max-width:767px){
    #faq-page .inside-content .left-content .faq-box .faq-list .faq-item{
        margin-bottom:28px;
        padding:18px 16px 16px 21px
    }
     #faq-page .inside-content .left-content .faq-box .faq-list .faq-item .faq-bg{
        padding-left:36px;
        background-size:24px
    }
     #faq-page .inside-content .left-content .faq-box .faq-list .faq-item .question p{
        font-size:16px;
        line-height:24px;
        padding:0
    }
     #faq-page .inside-content .left-content .faq-box .faq-list .faq-item .answer p{
        line-height:24px
    }
}
 @media (max-width:767px){
    #faq-page .inside-content .left-content .faq-box{
        padding-top:20px;
        padding-bottom:30px
    }
}
 #knowledge-page .inside-content .left-content .knowledge-box{
    padding-top:65px
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder{
    margin-bottom:84px
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-title{
    padding-left:44px;
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/knowledge/title_book.png);
    background-repeat:no-repeat;
    background-size:28px auto;
    background-position:center left
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-title h4{
    font-size:24px;
    font-weight:400;
    line-height:28px;
    letter-spacing:0;
    color:#000
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list{
    margin-top:28px
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item{
    background-color:#fff;
    padding:15px 29px 12px 16px;
    margin-bottom:15px;
    border:solid 1px #e5e5e5
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item.active .item-title{
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/knowledge/book_on.png)
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item.active .item-title .arrow{
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/knowledge/arrow_on.png)
}
 @media (max-width:767px){
    #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item.active .item-title{
        background-position:top 6px left
    }
     #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item.active .item-title .arrow{
        top:6px;
        bottom:auto
    }
     #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item.active .item-title>p{
        white-space:normal;
        overflow:visible;
        text-overflow:initial
    }
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item .item-title{
    position:relative;
    padding:0 32px;
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/knowledge/book.png);
    background-repeat:no-repeat;
    background-size:14px auto;
    background-position:center left;
    cursor:pointer
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item .item-title>p{
    font-size:18px;
    font-weight:400;
    font-stretch:normal;
    line-height:24px;
    letter-spacing:0;
    color:#000;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item .item-title .arrow{
    position:absolute;
    top:0;
    bottom:0;
    right:0;
    margin:auto;
    display:block;
    width:12px;
    height:12px;
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/knowledge/arrow.png);
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item .item-content{
    margin-top:20px;
    padding-left:32px;
    padding-bottom:16px;
    display:none
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item .item-content p{
    font-family:OpenSans;
    font-size:14px;
    font-weight:400;
    font-stretch:normal;
    line-height:24px;
    letter-spacing:0;
    color:#393e41
}
 @media (max-width:767px){
    #knowledge-page .inside-content .left-content .knowledge-box{
        padding-top:20px
    }
     #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder{
        margin-bottom:30px
    }
}
 #manual-page .inside-content .left-content .download-box{
    padding-top:47px
}
 #manual-page .inside-content .left-content .download-box .box-title h4{
    text-align:center;
    font-size:24px;
    font-weight:400;
    line-height:28px;
    letter-spacing:0;
    color:#000
}
 #manual-page .inside-content .left-content .download-box .box-banner{
    margin-top:32px
}
 #manual-page .inside-content .left-content .download-box .box-banner img{
    width:100%
}
 #manual-page .inside-content .left-content .download-box .box-tips{
    margin-top:23px
}
 #manual-page .inside-content .left-content .download-box .box-tips .tips{
    font-size:14px;
    font-weight:400;
    font-style:italic;
    line-height:24px;
    letter-spacing:0;
    color:#393e41
}
 #manual-page .inside-content .left-content .download-box .box-tips .tips:nth-of-type(n+1){
    margin-top:25px
}
 #manual-page .inside-content .left-content .download-box .box-download{
    margin-top:75px
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner{
    width:calc((100% - 27px)/ 2);
    float:left;
    margin-bottom:25px
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner:nth-of-type(odd){
    margin-right:27px
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner .inner-title{
    padding-left:44px;
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/manual/list_icon.png);
    background-repeat:no-repeat;
    background-size:25px auto;
    background-position:center left
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner .inner-title h4{
    font-size:20px;
    font-weight:400;
    line-height:40px;
    letter-spacing:0;
    color:#000
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner .download-list{
    height:310px;
    margin-top:15px;
    background-color:#fff;
    border:solid 1px #e5e5e5
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner .download-list .download-item{
    cursor:pointer;
    border-bottom:solid 1px #e5e5e5
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner .download-list .download-item:nth-of-type(5){
    border-bottom:none
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner .download-list .download-item:hover .item .file-name{
    color:#020c98
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner .download-list .download-item .item{
    position:relative;
    display:block;
    padding:18px 23px 18px 25px
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner .download-list .download-item .item .file-name{
    position:relative;
    display:block;
    padding-right:33px;
    font-size:16px;
    font-weight:400;
    line-height:24px;
    letter-spacing:0;
    color:#000;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    transition:all .3s
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner .download-list .download-item .item .file-name .file-icon{
    display:block;
    position:absolute;
    right:0;
    top:0;
    bottom:0;
    margin:auto;
    width:23px;
    height:23px;
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/manual/pdf.png);
    background-repeat:no-repeat;
    background-size:contain;
    background-position:center
}
 @media (max-width:767px){
    #manual-page .inside-content .left-content .download-box .box-download .download-inner{
        width:100%;
        float:none
    }
     #manual-page .inside-content .left-content .download-box .box-download .download-inner:nth-of-type(odd){
        margin-right:0
    }
}
 @media (max-width:767px){
    #manual-page .inside-content .left-content .download-box{
        padding-top:20px
    }
     #manual-page .inside-content .left-content .download-box .box-title h4{
        text-align:left
    }
     #manual-page .inside-content .left-content .download-box .box-download{
        margin-top:30px
    }
}
 .inside-page-public-article{
    font-family:sans-serif,Arial,Verdana,"Trebuchet MS";
    font-size:16px;
    line-height:1.6
}
 .inside-page-public-article a{
    color:#0782c1
}
.inside-page-public-article h1{
    display:block;
    margin-block-start:0.67em;
    margin-block-end:0.67em;
    margin-inline-start:0;
    margin-inline-end:0
}
.inside-page-public-article h2{
    display:block;
    margin-block-start:0.83em;
    margin-block-end:0.83em;
    margin-inline-start:0;
    margin-inline-end:0
}
 .inside-page-public-article p{
    display:block;
    margin-block-start:1em;
    margin-block-end:1em;
    margin-inline-start:0;
    margin-inline-end:0
}
 .inside-page-public-article a:-webkit-any-link{
    cursor:pointer;
    text-decoration:underline
}
 .inside-page-public-article h1,.inside-page-public-article h2,.inside-page-public-article h3,.inside-page-public-article h4,.inside-page-public-article h5,.inside-page-public-article h6{
    line-height:1.2;
    font-weight:400
}
 .inside-page-public-article img{
    max-width:100%
}
 #preview{
    width:100%;
    height:420px;
    overflow:hidden
}
 #preview .jqzoom{
    float:left;
    border:none;
    position:relative;
    padding:0;
    cursor:pointer;
    margin:0;
    display:block;
    width:100%!important
}
 #preview .jqzoom img{
    width:100%;
    height:100%
}
 @media (max-width:1249.98px){
    #preview{
        height:330px
    }
}
 @media (max-width:1199.98px){
    #preview{
        height:273px
    }
}
 @media (max-width:991.98px){
    #preview{
        height:313px
    }
}
 @media (max-width:767.98px){
    #preview{
        height:280px
    }
}
 @media (max-width:699.98px){
    #preview{
        height:240px
    }
}
 @media (max-width:549.98px){
    #preview{
        height:183px
    }
}
 @media (max-width:499.98px){
    #preview .jqzoom{
        height:100%;
        text-align:center
    }
     #preview .jqzoom img{
        height:100%
    }
}
 @media (max-width:399.98px){
    #preview{
        height:auto
    }
}
 .zoomdiv{
    z-index:100;
    position:absolute;
    top:0;
    left:0;
    width:500px;
    height:500px;
    background:#fff;
    border:1px solid #ddd;
    display:none;
    text-align:center;
    overflow:hidden
}
 .zoomdiv img{
    width:300%;
    max-width:300%
}
 .jqZoomPup{
    z-index:10;
    visibility:hidden;
    position:absolute;
    top:0;
    left:0;
    width:20px;
    height:20px;
    border:1px solid #bbb;
    background:#fff;
    opacity:.5;
    -moz-opacity:0.5;
    -khtml-opacity:0.5
}
 #product-page .inside-content .left-content .product-box{
    margin-top:32px;
    padding-right:8px
}
 @media (max-width:1199.98px){
    #product-page .inside-content .left-content .product-box{
        margin-top:20px
    }
}
 @media (max-width:767.98px){
    #product-page .inside-content .left-content .product-box{
        padding-right:0
    }
}
 #product-page .inside-content .left-content .product-box .product-list{
    overflow:hidden;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    width:100%
}
 #product-page .inside-content .left-content .product-box .inside-pagination{
    padding-bottom:0
}
 @media (max-width:767px){
    #product-page .inside-content .left-content .product-box .product-list .item{
        flex:0 0 calc((100% - 1 * 20px)/ 2)
    }
     #product-page .inside-content .left-content .product-box .inside-pagination{
        margin:45px 0;
        padding:0
    }
     .inside-pagination>ul{
        margin-bottom:0
    }
}
 @media (min-width:1200px){
    #product-page .inside-content .left-content .product-box .product-list .item{
        flex:0 0 calc((100% - 3 * 20px)/ 4);
        overflow:hidden
    }
}
 @media (max-width:767px){
    #product-page .inside-content .left-content .product-box .product-list{
        gap:20px 10px
    }
     #product-page .inside-content .left-content .product-box .product-list .item:nth-child(n+3){
        margin-top:0
    }
}
 @media (max-width:767px){
    #product-page .inside-content .left-content .product-box .product-list .item:nth-of-type(2n) a{
        margin-right:0
    }
}
 #product-page .inside-content .left-content .product-box .product-list .item a{
    display:block
}
 @media (max-width:767px){
    #product-page .inside-content .left-content .product-box .product-list .item a{
        margin:0
    }
}
 #product-page .inside-content .left-content .product-box .product-list .item a .cover{
    height:285.5px;
    overflow:hidden;
    background-color:#fff;
    border-bottom:1px solid #f8f8f8
}
 #product-page .inside-content .left-content .product-box .product-list .item a .cover img{
    max-height:100%;
    max-width:100%;
    transition:all .3s;
    -webkit-transition:all .3s;
    -moz-transition:all .3s;
    -o-transition:all .3s;
    -ms-transition:all .3s;
    object-fit:contain
}
 #product-page .inside-content .left-content .product-box .product-list .item a .detail{
    padding:20px;
    text-align:center;
    background-color:#fff
}
 #product-page .inside-content .left-content .product-box .product-list .item a .detail h6{
    font-size:18px;
    line-height:24px;
    height:72px;
    color:#000;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3
}
 #product-page .inside-content .left-content .product-box .product-list .item a .detail span{
    display:block;
    width:125px;
    margin:23px auto 0;
    line-height:34px;
    font-size:16px;
    color:grey;
    border:1px solid #bfbfbf
}
 @media (max-width:1249.98px){
    #product-page .inside-content .left-content .product-box .product-list .item a .cover{
        height:262px
    }
}
 @media (max-width:1199.98px){
    #product-page .inside-content .left-content .product-box .product-list .item a .cover{
        height:213px
    }
     #product-page .inside-content .left-content .product-box .product-list .item a .detail{
        padding:10px
    }
     #product-page .inside-content .left-content .product-box .product-list .item a .detail span{
        margin-top:20px
    }
}
 @media (max-width:991.98px){
    #product-page .inside-content .left-content .product-box .product-list .item a .cover{
        height:max-content
    }
     #product-page .inside-content .left-content .product-box .product-list .item a .detail h6{
        font-size:16px;
        line-height:20px;
        height:auto
    }
}
 @media (max-width:399.98px){
    #product-page .inside-content .left-content .product-box .product-list .item a .detail span{
        width:90%
    }
}
 #product-page .inside-content .left-content .product-box .product-list .item:hover a .cover img{
    transform:scale(1.1);
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -o-transform:scale(1.1);
    -ms-transform:scale(1.1)
}
 #product-page .inside-content .left-content .product-box .product-list .item:hover a .detail h6{
    color:#d30000
}
 #product-page .inside-content .left-content .product-box .product-list .item:hover a .detail span{
    color:#d30000;
    border-color:#d30000
}
 #product-detail-page .inside-content .left-content .product-box{
    overflow:hidden
}
 @media (max-width:1199.98px){
    #product-detail-page .inside-content .left-content .product-box{
        margin-top:20px
    }
     .contact-box>li:nth-child(2){
        border-bottom:none;
        border-top:none;
        border-left:1px solid #ccc!important;
        border-right:1px solid #ccc!important
    }
     .contact-bj{
        background:unset!important;
        padding:0!important
    }
     .contact-bj form{
        border:1px solid #dedede;
        padding:20px
    }
}
 @media (max-width:767.98px){
    #product-detail-page .inside-content .left-content .product-box{
        margin-top:10px
    }
}
 #product-detail-page .inside-content .left-content .product-box .cover-box{
    float:left;
    width:420px
}
 @media (max-width:1249.98px){
    #product-detail-page .inside-content .left-content .product-box .cover-box{
        width:40%
    }
}
 @media (max-width:991.98px) and (min-width:768px){
    #product-detail-page .inside-content .left-content .product-box .cover-box{
        width:60%
    }
}
 @media (max-width:499.98px){
    #product-detail-page .inside-content .left-content .product-box .cover-box{
        width:100%
    }
}
 #product-detail-page .inside-content .left-content .product-box .cover-box .cover-s{
    margin-top:20px
}
 @media (max-width:991.98px){
    #product-detail-page .inside-content .left-content .product-box .cover-box .cover-s{
        margin-top:10px
    }
}
 #product-detail-page .inside-content .left-content .product-box .cover-box .cover-s .swiper-container:hover .swiper-button-next,#product-detail-page .inside-content .left-content .product-box .cover-box .cover-s .swiper-container:hover .swiper-button-prev{
    display:block
}
 #product-detail-page .inside-content .left-content .product-box .cover-box .cover-s .swiper-container .swiper-button-next,#product-detail-page .inside-content .left-content .product-box .cover-box .cover-s .swiper-container .swiper-button-prev{
    display:none;
    background-size:20px 22px;
    background-color:rgba(0,0,0,.4);
    outline:0;
    height:60px;
    margin-top:-30px;
    border-radius:1px
}
 #product-detail-page .inside-content .left-content .product-box .cover-box .cover-s .swiper-container .swiper-button-next:hover,#product-detail-page .inside-content .left-content .product-box .cover-box .cover-s .swiper-container .swiper-button-prev:hover{
    background-color:rgba(0,0,0,.6)
}
 #product-detail-page .inside-content .left-content .product-box .cover-box .cover-s .swiper-container .swiper-button-next{
    right:2px
}
 #product-detail-page .inside-content .left-content .product-box .cover-box .cover-s .swiper-container .swiper-button-prev{
    left:2px
}
 #product-detail-page .inside-content .left-content .product-box .cover-box .cover-s .swiper-container .swiper-wrapper .swiper-slide a{
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    overflow:hidden;
    height:85px;
    margin:0 auto
}
 #product-detail-page .inside-content .left-content .product-box .cover-box .cover-s .swiper-container .swiper-wrapper .swiper-slide a img{
    width:100%;
    object-fit:cover
}
 @media (max-width:1199.98px){
    #product-detail-page .inside-content .left-content .product-box .cover-box .cover-s .swiper-container .swiper-wrapper .swiper-slide a{
        height:62px
    }
}
 @media (max-width:991.98px){
    #product-detail-page .inside-content .left-content .product-box .cover-box .cover-s .swiper-container .swiper-wrapper .swiper-slide a{
        height:65px
    }
}
 @media (max-width:767.98px){
    #product-detail-page .inside-content .left-content .product-box .cover-box .cover-s .swiper-container .swiper-wrapper .swiper-slide a{
        height:57px;
        border:none!important
    }
}
 @media (max-width:599.98px){
    #product-detail-page .inside-content .left-content .product-box .cover-box .cover-s .swiper-container .swiper-wrapper .swiper-slide a{
        height:54px
    }
     #product-detail-page .inside-content .left-content .product-box .cover-box .cover-s .swiper-container .swiper-wrapper .swiper-slide a img{
        width:80%
    }
}
 @media (max-width:499.98px){
    #product-detail-page .inside-content .left-content .product-box .cover-box .cover-s .swiper-container .swiper-wrapper .swiper-slide a{
        height:54px
    }
}
 @media (max-width:399.98px){
    #product-detail-page .inside-content .left-content .product-box .cover-box .cover-s .swiper-container .swiper-wrapper .swiper-slide a{
        height:59px
    }
}
 @media (max-width:325px){
    #product-detail-page .inside-content .left-content .product-box .cover-box .cover-s .swiper-container .swiper-wrapper .swiper-slide a{
        height:54px
    }
     #product-detail-page .inside-content .left-content .product-box .cover-box .cover-s .swiper-container .swiper-wrapper .swiper-slide a img{
        width:90%
    }
}
 #product-detail-page .inside-content .left-content .product-box .detail-box{
    float:right;
    width:420px
}
 #product-detail-page .inside-content .left-content .product-box .detail-box>h6{
    font-size:24px;
    color:#000;
    margin-bottom:60px;
    line-height:34px
}
 @media (max-width:767.98px){
    #product-detail-page .inside-content .left-content .product-box .detail-box>h6{
        font-size:20px;
        margin-bottom:10px
    }
}
 #product-detail-page .inside-content .left-content .product-box .detail-box>p{
    margin-top:14px;
    font-size:16px;
    color:grey;
    line-height:28px;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical
}
 #product-detail-page .inside-content .left-content .product-box .detail-box>p:after{
    content:'';
    display:block;
    width:100%;
    height:1px;
    margin-top:24px;
    background-color:#ddd
}
 #product-detail-page .inside-content .left-content .product-box .detail-box>span{
    display:block;
    font-size:16px;
    font-weight:700
}
 #product-detail-page .inside-content .left-content .product-box .detail-box>ul li{
    padding:11px 10px 11px 20px;
    margin:5px 0;
    font-size:16px
}
 #product-detail-page .inside-content .left-content .product-box .detail-box>ul li:nth-child(odd){
    background-color:#f2f2f2
}
 #product-detail-page .inside-content .left-content .product-box .detail-box>ul li>span{
    display:block;
    color:#323232;
    overflow:hidden;
    line-height:18px
}
 #product-detail-page .inside-content .left-content .product-box .detail-box>ul li>span span{
    font-weight:700
}
 #product-detail-page .inside-content .left-content .product-box .detail-box>ul li>span span:last-child{
    margin-left:4px;
    font-weight:400
}
 #product-detail-page .inside-content .left-content .product-box .detail-box>ul li>span:hover{
    color:#d30000
}
 #product-detail-page .inside-content .left-content .product-box .detail-box>a{
    display:block;
    width:193px;
    height:49px;
    margin-top:54px;
    text-align:center;
    line-height:49px;
    font-size:18px;
    color:#f2f2f2;
    background:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/product_detail/btnbg.png) center no-repeat;
    background-size:contain
}
 #product-detail-page .inside-content .left-content .product-box .detail-box>a:hover{
    color:#ccc
}
 @media (max-width:1249.98px){
    #product-detail-page .inside-content .left-content .product-box .detail-box{
        width:54%
    }
}
 @media (max-width:1199.98px){
    #product-detail-page .inside-content .left-content .product-box .detail-box>p{
        margin-top:10px;
        line-height:24px
    }
     #product-detail-page .inside-content .left-content .product-box .detail-box>p:after{
        margin-top:10px
    }
     #product-detail-page .inside-content .left-content .product-box .detail-box>span{
        padding:20px 0 10px
    }
     #product-detail-page .inside-content .left-content .product-box .detail-box>ul li{
        padding:10px;
        margin:0
    }
     #product-detail-page .inside-content .left-content .product-box .detail-box>a{
        margin-top:20px
    }
}
 @media (max-width:991.98px){
    #product-detail-page .inside-content .left-content .product-box .detail-box>span{
        padding:10px 0 10px
    }
     #product-detail-page .inside-content .left-content .product-box .detail-box>ul li{
        padding:6px;
        margin:0
    }
     #product-detail-page .inside-content .left-content .product-box .detail-box>a{
        margin-top:20px
    }
}
 @media (max-width:991.98px) and (min-width:768px){
    #product-detail-page .inside-content .left-content .product-box .detail-box{
        width:100%;
        margin-top:10px
    }
}
 @media (max-width:499.98px){
    #product-detail-page .inside-content .left-content .product-box .detail-box{
        width:100%;
        margin-top:10px
    }
     #product-detail-page .inside-content .left-content .product-box .detail-box>a{
        margin-left:auto;
        margin-right:auto
    }
}
 #product-detail-page .inside-content .left-content .divider{
    width:100%;
    height:1px;
    margin:20px 0 20px;
    background-color:#ddd
}
 @media (max-width:1199.98px){
    #product-detail-page .inside-content .left-content .divider{
        margin:20px 0
    }
}
 #product-detail-page .inside-content .left-content .like-box{
    margin:0 20px
}
 @media (max-width:1199.98px){
    #product-detail-page .inside-content .left-content .like-box{
        margin:0
    }
}
 #product-detail-page .inside-content .left-content .like-box>h6{
    font-size:28px
}
 #product-detail-page .inside-content .left-content .like-box>h6 img{
    margin-right:16px;
    vertical-align:middle
}
 @media (max-width:991.98px){
    #product-detail-page .inside-content .left-content .like-box>h6{
        font-size:24px
    }
     #product-detail-page .inside-content .left-content .like-box>h6 img{
        margin-right:10px
    }
}
 @media (max-width:767.98px){
    #product-detail-page .inside-content .left-content .like-box>h6{
        font-size:20px
    }
}
 #product-detail-page .inside-content .left-content .like-box .item-box{
    position:relative
}
 #product-detail-page .inside-content .left-content .like-box .item-box .like-nav{
    width:50px;
    height:100%;
    position:absolute;
    top:0;
    cursor:pointer;
    outline:0;
    background-size:contain
}
 #product-detail-page .inside-content .left-content .like-box .item-box .like-nav.nav-next{
    right:0;
    background:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/product_detail/icon-next.png) right center no-repeat
}
 #product-detail-page .inside-content .left-content .like-box .item-box .like-nav.nav-prev{
    left:0;
    background:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/product_detail/icon-prev.png) left center no-repeat
}
 @media (max-width:1199.98px){
    #product-detail-page .inside-content .left-content .like-box .item-box .like-nav{
        width:30px
    }
}
 @media (max-width:767.98px){
    #product-detail-page .inside-content .left-content .like-box .item-box .swiper-container .swiper-wrapper .swiper-slide{
        width:100%!important
    }
}
 #product-detail-page .inside-content .left-content .like-box .item-box .swiper-container .swiper-wrapper .swiper-slide a .item-cv img{
    max-height:100%;
    transition:all .3s;
    -webkit-transition:all .3s;
    -moz-transition:all .3s;
    -o-transition:all .3s;
    -ms-transition:all .3s
}
 #product-detail-page .inside-content .left-content .like-box .item-box .swiper-container .swiper-wrapper .swiper-slide{
    background-color:#fff
}
 #product-detail-page .inside-content .left-content .like-box .item-box .swiper-container .swiper-wrapper .swiper-slide a{
    display:block
}
 #product-detail-page .inside-content .left-content .like-box .item-box .swiper-container .swiper-wrapper .swiper-slide a .item-cv{
    width:100%;
    height:169px;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden
}
 #product-detail-page .inside-content .left-content .like-box .item-box .swiper-container .swiper-wrapper .swiper-slide a .item-cv img{
    max-height:100%;
    transition:all .3s;
    -webkit-transition:all .3s;
    -moz-transition:all .3s;
    -o-transition:all .3s;
    -ms-transition:all .3s
}
 #product-detail-page .inside-content .left-content .like-box .item-box .swiper-container .swiper-wrapper .swiper-slide a .item-name{
    margin:12px 10px 20px 10px;
    line-height:1.2;
    font-size:16px;
    color:#323232;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:1;
    text-align:center
}
 @media (max-width:1249.98px){
    #product-detail-page .inside-content .left-content .like-box .item-box .swiper-container .swiper-wrapper .swiper-slide a .item-cv{
        width:100%;
        height:158px
    }
}
 @media (max-width:1199.98px){
    #product-detail-page .inside-content .left-content .like-box .item-box .swiper-container .swiper-wrapper .swiper-slide a .item-cv{
        height:154px
    }
     #product-detail-page .inside-content .left-content .like-box .item-box .swiper-container .swiper-wrapper .swiper-slide a .item-name{
        margin:20px
    }
}
 @media (max-width:991.98px){
    #product-detail-page .inside-content .left-content .like-box .item-box .swiper-container .swiper-wrapper .swiper-slide a .item-cv{
        height:134px
    }
}
 @media (max-width:699.98px){
    #product-detail-page .inside-content .left-content .like-box .item-box .swiper-container .swiper-wrapper .swiper-slide a .item-cv{
        height:128px
    }
     #product-detail-page .inside-content .left-content .like-box .item-box .swiper-container .swiper-wrapper .swiper-slide a .item-cv img{
        width:120%;
        margin-left:20%
    }
}
 @media (max-width:599.98px){
    #product-detail-page .inside-content .left-content .like-box .item-box .swiper-container .swiper-wrapper .swiper-slide a .item-cv{
        height:144px
    }
}
 @media (max-width:499.98px){
    #product-detail-page .inside-content .left-content .like-box .item-box .swiper-container .swiper-wrapper .swiper-slide a .item-cv{
        height:auto;
        width:89%
    }
}
 @media (max-width:399.98px){
    #product-detail-page .inside-content .left-content .like-box .item-box .swiper-container .swiper-wrapper .swiper-slide a .item-name{
        text-align:center
    }
}
 #product-detail-page .inside-content .left-content .like-box .item-box .swiper-container .swiper-wrapper .swiper-slide a:hover .item-cv img{
    transform:scale(1.1)
}
 #product-detail-page .inside-content .left-content .like-box .item-box .swiper-container .swiper-wrapper .swiper-slide a:hover .item-name{
    color:#d30000
}
 #product-detail-page .inside-content .left-content .select-box{
    margin-top:65px
}
 @media (max-width:1199.98px){
    #product-detail-page .inside-content .left-content .select-box{
        margin-top:20px
    }
}
 #product-detail-page .inside-content .left-content .select-box .sel-pagi-box{
    position:relative;
    white-space:nowrap;
    display:flex;
    justify-content:initial
}
 @media (max-width:1199.98px){
    #product-detail-page .inside-content .left-content .select-box .sel-pagi-box{
        overflow-x:auto
    }
}
 #product-detail-page .inside-content .left-content .select-box .sel-pagi-box .pagi{
    position:relative;
    padding:0 40px;
    font-size:18px;
    line-height:56px;
    color:#fff;
    text-align:center;
    cursor:pointer;
    background-color:#393e41;
    z-index:2;
    border-left:1px solid rgba(230,230,230,.15);
    border-right:1px solid transparent
}
 #product-detail-page .inside-content .left-content .select-box .sel-pagi-box .pagi.active,#product-detail-page .inside-content .left-content .select-box .sel-pagi-box .pagi:hover{
    background:#e70010
}
 @media (max-width:1199.98px) and (min-width:992px){
    #product-detail-page .inside-content .left-content .select-box .sel-pagi-box .pagi{
        padding:0 30px
    }
}
 @media (max-width:991.98px){
    #product-detail-page .inside-content .left-content .select-box .sel-pagi-box .pagi{
        line-height:40px;
        padding:0 20px
    }
}
 #product-detail-page .inside-content .left-content .select-box .sel-content-box{
    position:relative;
    background-color:#fff;
    overflow:hidden
}
 #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-item{
    position:absolute;
    left:-200%;
    top:0;
    width:100%;
    min-height:500px;
    padding-bottom:90px;
    opacity:0;
    font-family:sans-serif,Arial,Verdana,"Trebuchet MS";
    font-size:16px;
    line-height:1.6;
    transition:opacity .3s;
    -webkit-transition:opacity .3s;
    padding:15px
}
 #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-item.active{
    position:static;
    left:unset;
    top:unset;
    opacity:1
}
 @media (max-width:1199.98px){
    #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-item{
        padding-bottom:20px
    }
}
 @media (max-width:767.98px){
    #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-item{
        padding-bottom:10px
    }
}
 #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .item-banner img{
    width:100%
}
 #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list{
    margin-top:28px
}
 #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li{
    overflow:hidden
}
 @media (max-width:991.98px){
    #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li+li{
        margin-top:40px
    }
}
 @media (max-width:767.98px){
    #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li+li{
        margin-top:20px
    }
}
 #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li>div{
    width:50%
}
 #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-l{
    float:left
}
 #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-r{
    float:right
}
 @media (max-width:991.98px){
    #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li>div{
        width:100%
    }
     #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-l{
        float:none
    }
     #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-r{
        float:none
    }
}
 #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-content-box{
    padding:20px 20px 0 25px
}
 @media (max-width:1199.98px){
    #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-content-box{
        padding:10px 10px 0
    }
}
 @media (max-width:991.98px){
    #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-content-box{
        padding:0 10px
    }
}
 #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-cv-box{
    text-align:center
}
 #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-title{
    font-size:22px;
    line-height:40px;
    height:40px;
    color:#000;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:1;
    overflow:hidden;
    text-overflow:ellipsis
}
 #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-title img{
    vertical-align:middle;
    margin-right:10px
}
 #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-title span{
    vertical-align:middle
}
 @media (max-width:1199.98px){
    #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-title{
        font-size:20px
    }
}
 @media (max-width:991.98px){
    #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-title{
        line-height:28px;
        height:30px
    }
     #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-title img{
        height:70%
    }
}
 #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-info{
    margin-top:10px;
    line-height:28px;
    font-size:18px
}
 @media (max-width:1199.98px){
    #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-info{
        line-height:24px;
        font-size:16px
    }
}
 @media (max-width:991.98px){
    #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-info{
        line-height:22px;
        font-size:16px
    }
}
 @media (max-width:767.98px){
    #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-info{
        line-height:20px;
        font-size:14px
    }
}
 #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-cv{
    width:100%
}
 #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-1-info{
    margin-top:40px;
    text-align:center
}
 #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-1-info>li{
    display:inline-block
}
 #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-1-info>li:first-child{
    margin-right:34px
}
 #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-1-info>li h6{
    margin-top:8px;
    font-size:14px;
    color:#000
}
 @media (max-width:991.98px){
    #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-1-info{
        margin-top:20px
    }
     #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-1-info>li:first-child{
        margin-right:20px
    }
}
 @media (max-width:374.98px){
    #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-1-info>li{
        display:block
    }
     #product-detail-page .inside-content .left-content .select-box .sel-content-box .content-product-details .detail-list>li .list-1-info>li:first-child{
        margin-right:0;
        margin-bottom:10px
    }
}
 .inside-content .left-content .message-box{
    position:relative;
    margin:80px 0;
    overflow:hidden
}
 .inside-content .left-content .message-box #message-box{
    position:absolute;
    top:-100px;
    left:0
}
 @media (max-width:1199.98px){
    .inside-content .left-content .message-box{
        margin-top:20px;
        padding-bottom:20px
    }
}
 @media (max-width:767.98px){
    .inside-content .left-content .message-box{
        margin-top:0;
        margin-bottom:40px
    }
}
 .inside-content .left-content .message-box .message-l{
    float:left;
    width:288px
}
 .inside-content .left-content .message-box .message-l h6{
    font-size:26px;
    font-weight:700;
    color:#000
}
 @media (max-width:767.98px){
    .inside-content .left-content .message-box .message-l h6{
        font-size:20px
    }
}
 .inside-content .left-content .message-box .message-l p{
    margin-top:25px;
    font-size:16px;
    line-height:24px;
    color:#6c6c6c
}
 @media (max-width:1249.98px){
    .inside-content .left-content .message-box .message-l{
        width:32%
    }
}
 @media (max-width:1199.98px){
    .inside-content .left-content .message-box .message-l p{
        margin-top:10px;
        line-height:22px
    }
}
 @media (max-width:549.98px){
    .inside-content .left-content .message-box .message-l{
        width:100%
    }
}
 .inside-content .left-content .message-box .message-r{
    float:right;
    width:100%
}
 @media (max-width:1249.98px){
    .inside-content .left-content .message-box .message-r{
        width:62%
    }
}
 @media (max-width:549.98px){
    .inside-content .left-content .message-box .message-r{
        width:100%
    }
}
 .inside-content .left-content .message-box .message-r form .input-wrapper{
    position:relative
}
 .inside-content .left-content .message-box .message-r form .input-wrapper i{
    display:none;
    width:9px;
    height:8px;
    position:absolute;
    right:24px;
    top:50%;
    margin-top:-4px;
    background:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/product_detail/icon-tri.png) center no-repeat
}
 @media (max-width:549.98px){
    .inside-content .left-content .message-box .message-r form .input-wrapper i{
        right:10px
    }
}
 .inside-content .left-content .message-box .message-r form input[type=text]{
    width:49%;
    padding:0 14px;
    margin-bottom:10px;
    line-height:44px;
    height:44px;
    font-size:14px;
    color:#484848;
    border:1px solid #bfbfbf;
    outline:0;
    background-color:#f5f7f8
}
 .inside-content .left-content .message-box .message-r form input[type=text]::-webkit-input-placeholder{
    color:#484848
}
 .inside-content .left-content .message-box .message-r form input[type=text]:-moz-placeholder{
    color:#484848
}
 .inside-content .left-content .message-box .message-r form input[type=text]::-moz-placeholder{
    color:#484848
}
 .inside-content .left-content .message-box .message-r form input[type=text]:-ms-input-placeholder{
    color:#484848
}
 .inside-content .left-content .message-box .message-r form textarea{
    width:100%;
    height:88px;
    padding:8px 14px;
    font-size:14px;
    line-height:24px;
    color:#484848;
    border:1px solid #bfbfbf;
    background-color:#f5f7f8;
    outline:0;
    resize:none
}
 @media (max-width:991.98px){
    .inside-content .left-content .message-box .message-r form textarea{
        width:98%
    }
}
 .inside-content .left-content .message-box .message-r form textarea::-webkit-input-placeholder{
    color:#484848
}
 .inside-content .left-content .message-box .message-r form textarea:-moz-placeholder{
    color:#484848
}
 .inside-content .left-content .message-box .message-r form textarea::-moz-placeholder{
    color:#484848
}
 .inside-content .left-content .message-box .message-r form textarea:-ms-input-placeholder{
    color:#484848
}
 .inside-content .left-content .message-box .message-r form .sub-box{
    margin-top:15px
}
 .inside-content .left-content .message-box .message-r form input[type=submit]{
    width:154px;
    border:none;
    padding:0;
    text-align:center;
    font-size:14px;
    color:#fff;
    line-height:42px;
    height:42px;
    background:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/product_detail/btnbg.png) center no-repeat;
    background-size:contain
}
 .inside-content .left-content .message-box .message-r form input[type=submit]:hover{
    color:#ccc
}
 @media (max-width:991.98px){
    .inside-content .left-content .message-box .message-r form input[type=text]{
        width:48%
    }
     .inside-content .left-content .message-box .message-r form input[type=submit]{
        display:block;
        width:140px;
        margin-left:auto;
        margin-right:auto
    }
}
 #product-detail-page #slider{
    float:left;
    margin:0 50px 0 0!important;
    width:280px;
    height:42px;
    position:relative;
    border-radius:2px;
    background-color:#bbb;
    overflow:hidden;
    text-align:center;
    user-select:none;
    -moz-user-select:none;
    -webkit-user-select:none;
    vertical-align:middle
}
 @media (max-width:1199.98px){
    #product-detail-page #slider{
        width:240px;
        margin:0 24px 0 0!important
    }
}
 @media (max-width:991.98px){
    #product-detail-page #slider{
        display:block;
        width:240px;
        float:none;
        margin:0 auto 10px!important
    }
}
 #product-detail-page #slider .slider_bg{
    position:absolute;
    left:0;
    top:0;
    height:100%;
    background-color:#d30000;
    z-index:1
}
 #product-detail-page #slider .label{
    width:48px;
    position:absolute;
    left:0;
    top:0;
    height:100%;
    padding:0;
    line-height:42px;
    border:1px solid #ccc;
    background:#fff;
    z-index:3;
    border-radius:0;
    cursor:move;
    color:#40647f;
    font-size:14px;
    font-weight:900
}
 @media (max-width:767.98px){
    #product-detail-page #slider .label{
        width:40px;
        line-height:40px
    }
}
 #product-detail-page #slider .labelTip{
    position:absolute;
    left:0;
    width:100%;
    height:100%;
    font-size:13px;
    font-family:'Microsoft Yahei',serif;
    color:#fff!important;
    line-height:42px;
    text-align:center;
    z-index:2
}
 @media (max-width:767.98px){
    #product-detail-page #slider .labelTip{
        line-height:40px
    }
}
 #about-page .inside-content .left-content .about-box{
    margin-top:50px;
    padding-right:18px;
    overflow:hidden;
    font-family:sans-serif,Arial,Verdana,"Trebuchet MS";
    font-size:16px;
    line-height:1.6
}
 @media (max-width:1199.98px){
    #about-page .inside-content .left-content .about-box{
        margin-top:20px
    }
}
 @media (max-width:767.98px){
    #about-page .inside-content .left-content .about-box{
        margin-top:10px;
        padding-right:0
    }
}
 #about-page .inside-content .left-content .about-box .video-box img{
    width:100%
}
 #about-page .inside-content .left-content .about-box h6{
    margin:50px 0 40px;
    font-size:24px;
    color:#000
}
 #about-page .inside-content .left-content .about-box p{
    margin:1em 0;
    font-size:16px;
    color:#000;
    line-height:28px
}
 #about-page .inside-content .left-content .about-box p i{
    color:#383d50
}
 #about-page .inside-content .left-content .about-box .icon-box-1{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    padding:20px 0
}
 #about-page .inside-content .left-content .about-box .icon-box-1>div{
    text-align:center
}
 #about-page .inside-content .left-content .about-box .icon-box-1>div img{
    max-width:100%
}
 #about-page .inside-content .left-content .about-box .map-box{
    text-align:center
}
 #about-page .inside-content .left-content .about-box .map-box img{
    max-width:100%
}
 #about-page .inside-content .left-content .about-box .qua-box{
    overflow:hidden
}
 #about-page .inside-content .left-content .about-box .qua-box img{
    float:right
}
 #about-page .inside-content .left-content .about-box .qua-box img:first-child{
    float:left
}
 #about-page .inside-content .left-content .about-box .qua-desc{
    padding:0 20px 0;
    text-align:center;
    font-size:18px;
    line-height:28px;
    color:#e70010
}
 @media (max-width:1199.98px){
    #about-page .inside-content .left-content .about-box h6{
        margin:20px 0
    }
     #about-page .inside-content .left-content .about-box p{
        margin:20px 0
    }
     #about-page .inside-content .left-content .about-box .icon-box-1{
        padding:10px 0
    }
     #about-page .inside-content .left-content .about-box .qua-box img{
        width:46%
    }
}
 @media (max-width:767.98px){
    #about-page .inside-content .left-content .about-box h6{
        font-size:20px
    }
     #about-page .inside-content .left-content .about-box p{
        line-height:24px
    }
     #about-page .inside-content .left-content .about-box .icon-box-1{
        padding:0
    }
     #about-page .inside-content .left-content .about-box .icon-box-1>div img{
        width:90%
    }
     #about-page .inside-content .left-content .about-box .qua-desc{
        padding:0 10px;
        font-size:16px;
        line-height:24px
    }
}
 #video-modal-about .modal-dialog{
    margin-top:200px;
    z-index:1060
}
 @media (max-width:1199.98px){
    #video-modal-about .modal-dialog{
        margin-top:50px
    }
}
 @media (max-width:767.98px){
    #video-modal-about .modal-dialog{
        margin-top:10px
    }
}
 #news-detail-page .inside-content .left-content .news-box{
    margin-top:10px;
    padding-right:18px
}
 @media (max-width:1199.98px){
    #news-detail-page .inside-content .left-content .news-box{
        margin-top:0;
        padding-right:0
    }
}
 #news-detail-page .inside-content .left-content .news-box .news-header{
    text-align:center
}
 #news-detail-page .inside-content .left-content .news-box .news-header .title{
    font-size:24px;
    line-height:30px;
    color:#000
}
 #news-detail-page .inside-content .left-content .news-box .news-header .info-box{
    display:flex;
    padding-top:10px;
    flex-direction:row-reverse;
    align-items:center;
    justify-content:center
}
 #news-detail-page .inside-content .left-content .news-box .news-header .info-box .like{
    vertical-align:middle
}
 #news-detail-page .inside-content .left-content .news-box .news-header .info-box .like i{
    font-style:normal;
    color:#d30000;
    cursor:pointer
}
 #news-detail-page .inside-content .left-content .news-box .news-header .info-box .like i img{
    margin-right:8px;
    vertical-align:middle
}
 #news-detail-page .inside-content .left-content .news-box .news-header .info-box .like i span{
    vertical-align:middle
}
 #news-detail-page .inside-content .left-content .news-box .news-header .info-box .like i .icon-h{
    display:none
}
 @media (min-width:1200px){
    #news-detail-page .inside-content .left-content .news-box .news-header .info-box .like i:hover .icon-h{
        display:inline
    }
     #news-detail-page .inside-content .left-content .news-box .news-header .info-box .like i:hover .icon-n{
        display:none
    }
}
 #news-detail-page .inside-content .left-content .news-box .news-header .info-box>i{
    display:inline-block;
    width:1px;
    height:15px;
    margin:0 22px;
    background-color:#b4b4b4;
    vertical-align:middle
}
 #news-detail-page .inside-content .left-content .news-box .news-header .info-box .info{
    font-size:14px;
    color:#6c6c6c;
    vertical-align:middle;
    display:flex;
    align-items:center
}
 #news-detail-page .inside-content .left-content .news-box .news-header .info-box .info img{
    margin:0 4px;
    vertical-align:middle
}
 #news-detail-page .inside-content .left-content .news-box .news-header .info-box .info span{
    vertical-align:middle
}
 @media (max-width:1199.98px){
    #news-detail-page .inside-content .left-content .news-box .news-header .title{
        font-size:22px;
        line-height:28px
    }
     #news-detail-page .inside-content .left-content .news-box .news-header .info-box{
        padding-top:8px
    }
}
 @media (max-width:991.98px){
    #news-detail-page .inside-content .left-content .news-box .news-header .title{
        font-size:20px;
        line-height:24px
    }
     #news-detail-page .inside-content .left-content .news-box .news-header .info-box{
        padding-top:6px;
        align-items:flex-start;
        gap:8px
    }
     #news-detail-page .inside-content .left-content .news-box .news-header .info-box .like i img{
        margin-right:5px
    }
     #news-detail-page .inside-content .left-content .news-box .news-header .info-box>i{
        margin:0 10px
    }
     #news-detail-page .inside-content .left-content .news-box .news-header .info-box .info .addthis-box{
        width:100%;
        margin-left:0!important
    }
}
 @media (max-width:399.98px){
    #news-detail-page .inside-content .left-content .news-box .news-header .info-box>i{
        display:none
    }
     #news-detail-page .inside-content .left-content .news-box .news-header .info-box .info{
        flex-wrap:wrap;
        width:85%;
        gap:15px 0;
        justify-content:space-between
    }
}
 #news-detail-page .inside-content .left-content .news-box .news-content{
    min-height:150px;
    padding-top:15px;
    padding-bottom:15px;
    font-family:sans-serif,Arial,Verdana,"Trebuchet MS";
    font-size:16px;
    line-height:1.6;
    overflow:hidden
}
 @media (max-width:767px){
    #news-detail-page .inside-content .left-content .news-box .news-content{
        padding-top:10px;
        padding-bottom:10px;
        min-height:100px;
    }
    #news-detail-page .inside-content .left-content .news-box .news-content p img{
        width:100%;
        max-width:100%!important
    }
}
 #news-detail-page .inside-content .left-content .news-box .news-pagination{
    overflow:hidden
}
 #news-detail-page .inside-content .left-content .news-box .news-pagination>a{
    display:block;
    float:right;
    width:90px;
    height:56px;
    cursor:pointer;
    line-height:56px;
    text-indent:15px;
    color:#6b6b6b
}
 #news-detail-page .inside-content .left-content .news-box .news-pagination>a:hover{
    text-decoration:none
}
 #news-detail-page .inside-content .left-content .news-box .news-pagination .next-page{
    margin-left:10px;
    background:#ececec url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/news_detail/next.png) right no-repeat
}
 #news-detail-page .inside-content .left-content .news-box .news-pagination .prev-page{
    background:#ececec url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/news_detail/prev.png) left no-repeat
}
 @media (max-width:767.98px){
    #news-detail-page .inside-content .left-content .news-box .news-pagination>a{
        width:50px;
        height:50px
    }
}
 #news-detail-page .inside-content .left-content .divider{
    width:100%;
    height:1px;
    margin:65px 0 40px;
    background-color:#b0b0b0
}
 @media (max-width:1199.98px){
    #news-detail-page .inside-content .left-content .divider{
        margin:20px 0
    }
}
 @media (max-width:767.98px){
    #news-detail-page .inside-content .left-content .divider{
        margin:10px 0
    }
}
 #news-detail-page .inside-content .left-content .latest-box>h6{
    font-size:26px;
    color:#000;
    font-weight:700
}
 @media (max-width:1199.98px){
    #news-detail-page .inside-content .left-content .latest-box>h6{
        font-size:22px
    }
}
 @media (max-width:767.98px){
    #news-detail-page .inside-content .left-content .latest-box>h6{
        font-size:18px
    }
}
 #news-detail-page .inside-content .left-content .latest-box .latest-list{
    margin-top:30px;
    padding-bottom:100px
}
 @media (min-width:1250px){
    #news-detail-page .inside-content .left-content .latest-box .latest-list{
        padding-right:20px
    }
}
 @media (max-width:1199.98px){
    #news-detail-page .inside-content .left-content .latest-box .latest-list{
        margin-top:20px;
        padding-bottom:20px
    }
}
 @media (max-width:767.98px){
    #news-detail-page .inside-content .left-content .latest-box .latest-list{
        margin-top:10px;
        padding-bottom:10px
    }
}
 #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .cv{
    width:100%
}
 #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .cv a{
    display:flex;
    width:100%;
    height:100%;
    justify-content:center;
    align-items:center;
    overflow:hidden
}
 #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .cv img{
    width:100%
}
 @media (max-width:1199.98px){
    #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .cv{
        height:184px
    }
}
 @media (max-width:991.98px){
    #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .cv{
        height:140px
    }
}
 @media (max-width:599.98px){
    #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .cv{
        height:160px
    }
}
 @media (max-width:399.98px){
    #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .cv{
        height:140px
    }
}
 #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail{
    padding-top:24px
}
 #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail h6{
    font-size:18px;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:1;
    line-height:normal
}
 #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail h6 a{
    color:#000
}
 #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail h6 a:hover{
    color:#d30000
}
 #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail p{
    margin:15px 0 20px;
    font-size:16px;
    line-height:28px;
    max-height:56px;
    color:#6c6c6c;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2
}
 @media (max-width:1199.98px){
    #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail{
        padding-top:20px
    }
     #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail p{
        margin:10px 0 15px;
        line-height:24px;
        min-height:48px
    }
     .header-top.scrollHead{
        margin-top:0!important
    }
}
 @media (max-width:767.98px){
    #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail{
        padding-top:10px
    }
     #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail h6{
        font-size:16px
    }
     #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail p{
        margin:10px 0 10px;
        font-size:14px;
        line-height:20px;
        min-height:40px
    }
}
 #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line{
    height:42px;
    line-height:42px;
    color:#6c6c6c;
    font-size:12px;
    background-color:#f1f3f4;
    overflow:hidden
}
 #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .icon-h{
    display:none
}
 #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .like-box{
    float:left;
    padding-left:14px
}
 #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .like-box i{
    margin-left:8px;
    font-style:normal;
    color:#d30000;
    cursor:pointer
}
 #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .like-box i img{
    margin-right:4px;
    vertical-align:middle
}
 #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .like-box i span{
    vertical-align:middle
}
 @media (min-width:1200px){
    #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .like-box i:hover .icon-h{
        display:inline
    }
     #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .like-box i:hover .icon-n{
        display:none
    }
}
 #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .more-box{
    float:right;
    padding:0 23px 0 13px;
    border-left:1px solid #dee0e0
}
 #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .more-box a{
    color:#d30000
}
 #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .more-box a img{
    margin-right:8px;
    vertical-align:middle
}
 #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .more-box a span{
    vertical-align:middle
}
 @media (min-width:1200px){
    #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .more-box a:hover .icon-h{
        display:inline
    }
     #news-detail-page .inside-content .left-content .latest-box .latest-list .swiper-container .swiper-wrapper .swiper-slide .item .detail .more-line .more-box a:hover .icon-n{
        display:none
    }
}
 #driver-software-page .inside-content .left-content .download-box{
    padding-top:47px
}
 #driver-software-page .inside-content .left-content .download-box .box-title h4{
    text-align:center;
    font-size:24px;
    font-weight:400;
    line-height:28px;
    letter-spacing:0;
    color:#000
}
 #driver-software-page .inside-content .left-content .download-box .box-banner{
    margin-top:32px
}
 #driver-software-page .inside-content .left-content .download-box .box-banner img{
    width:100%
}
 #driver-software-page .inside-content .left-content .download-box .box-tips{
    margin-top:23px
}
 #driver-software-page .inside-content .left-content .download-box .box-tips .tips{
    font-size:14px;
    font-weight:400;
    font-style:italic;
    line-height:24px;
    letter-spacing:0;
    color:#393e41
}
 #driver-software-page .inside-content .left-content .download-box .box-download{
    margin-top:69px
}
 #driver-software-page .inside-content .left-content .download-box .box-download::after{
    content:'';
    display:block;
    clear:both
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item{
    width:calc((100% - 27px)/ 2);
    float:left;
    margin-bottom:25px;
    cursor:pointer
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item:nth-of-type(odd){
    margin-right:27px
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item .item-inner{
    position:relative;
    display:block
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item .item-inner .file-img{
    position:relative;
    width:100%;
    overflow:hidden
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item .item-inner .file-img::before{
    content:'';
    display:block;
    padding-top:62.7%
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item .item-inner .file-img img{
    position:absolute;
    top:0;
    width:100%
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item .item-inner .download-bottom{
    position:relative;
    margin-top:28px
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item .item-inner .download-bottom .file-name{
    padding-right:32px
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item .item-inner .download-bottom .file-name p{
    font-size:20px;
    font-weight:400;
    line-height:24px;
    letter-spacing:0;
    color:#000;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item .item-inner .download-bottom .download-button{
    position:absolute;
    top:0;
    right:0
}
 #driver-software-page .inside-content .left-content .download-box .box-download .download-item .item-inner .download-bottom .download-button img{
    width:22px;
    height:22px
}
 @media (max-width:767px){
    #driver-software-page .inside-content .left-content .download-box .box-download .download-item{
        width:100%;
        float:none
    }
     #driver-software-page .inside-content .left-content .download-box .box-download .download-item:nth-of-type(odd){
        margin-right:0
    }
}
 @media (max-width:767px){
    #driver-software-page .inside-content .left-content .download-box{
        padding-top:20px
    }
     #driver-software-page .inside-content .left-content .download-box .box-title h4{
        text-align:left
    }
     #driver-software-page .inside-content .left-content .download-box .box-download{
        margin-top:30px
    }
}
 #faq-page .inside-content .left-content .faq-box{
    padding-top:50px;
    padding-bottom:120px
}
 #faq-page .inside-content .left-content .faq-box .faq-list .faq-item{
    padding:28px 26px 26px 31px;
    background:#fff;
    margin-bottom:38px;
    cursor:pointer
}
 #faq-page .inside-content .left-content .faq-box .faq-list .faq-item:last-of-type{
    margin-bottom:0
}
 #faq-page .inside-content .left-content .faq-box .faq-list .faq-item:hover .question{
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/faq/question_on.png)
}
 #faq-page .inside-content .left-content .faq-box .faq-list .faq-item:hover .question p{
    color:#e70011
}
 #faq-page .inside-content .left-content .faq-box .faq-list .faq-item:hover .answer{
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/faq/answer_on.png)
}
 #faq-page .inside-content .left-content .faq-box .faq-list .faq-item .faq-bg{
    padding-left:54px;
    background-repeat:no-repeat;
    background-size:40px;
    background-position:top left
}
 #faq-page .inside-content .left-content .faq-box .faq-list .faq-item .question{
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/faq/question.png);
    padding-bottom:13px;
    border-bottom:1px solid #ccc;
    transition:all .3s
}
 #faq-page .inside-content .left-content .faq-box .faq-list .faq-item .question p{
    font-size:22px;
    font-weight:400;
    font-stretch:normal;
    padding:9px 0;
    line-height:28px;
    letter-spacing:0;
    color:#000;
    transition:all .3s
}
 #faq-page .inside-content .left-content .faq-box .faq-list .faq-item .answer{
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/faq/answer.png);
    margin-top:20px;
    transition:all .3s
}
 #faq-page .inside-content .left-content .faq-box .faq-list .faq-item .answer p{
    font-size:16px;
    font-weight:400;
    line-height:28px;
    letter-spacing:0;
    color:#5a5a5a;
    min-height:56px
}
 @media (max-width:767px){
    #faq-page .inside-content .left-content .faq-box .faq-list .faq-item{
        margin-bottom:28px;
        padding:18px 16px 16px 21px
    }
     #faq-page .inside-content .left-content .faq-box .faq-list .faq-item .faq-bg{
        padding-left:36px;
        background-size:24px
    }
     #faq-page .inside-content .left-content .faq-box .faq-list .faq-item .question p{
        font-size:16px;
        line-height:24px;
        padding:0
    }
     #faq-page .inside-content .left-content .faq-box .faq-list .faq-item .answer p{
        line-height:24px
    }
}
 #faq-page .inside-content .left-content .faq-box .page-pagination{
    margin-top:58px
}
 #faq-page .inside-content .left-content .faq-box .page-pagination .pagination-list{
    padding-left:0;
    list-style:none;
    text-align:center
}
 #faq-page .inside-content .left-content .faq-box .page-pagination .pagination-list li{
    display:inline-block;
    vertical-align:middle
}
 #faq-page .inside-content .left-content .faq-box .page-pagination .pagination-list li:first-of-type>a{
    margin-left:0
}
 #faq-page .inside-content .left-content .faq-box .page-pagination .pagination-list li>a,#faq-page .inside-content .left-content .faq-box .page-pagination .pagination-list li>span{
    font-size:18px;
    font-weight:400;
    font-stretch:normal;
    line-height:40px;
    letter-spacing:0;
    color:#828283;
    padding:0 3px;
    margin-left:5px
}
 #faq-page .inside-content .left-content .faq-box .page-pagination .pagination-list li>a.active,#faq-page .inside-content .left-content .faq-box .page-pagination .pagination-list li>a:hover{
    color:#d30000;
    border-bottom:1px solid #d30000
}
 #faq-page .inside-content .left-content .faq-box .page-pagination .pagination-list li .ellipse{
    padding:0
}
 #faq-page .inside-content .left-content .faq-box .page-pagination .pagination-list li .next{
    margin-left:0;
    padding:0
}
 @media (max-width:767px){
    #faq-page .inside-content .left-content .faq-box .page-pagination{
        margin-top:28px
    }
}
 @media (max-width:767px){
    #faq-page .inside-content .left-content .faq-box{
        padding-top:20px;
        padding-bottom:30px
    }
}
 #knowledge-page .inside-content .left-content .knowledge-box{
    padding-top:65px
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder{
    margin-bottom:84px
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-title{
    padding-left:44px;
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/knowledge/title_book.png);
    background-repeat:no-repeat;
    background-size:28px auto;
    background-position:center left
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-title h4{
    font-size:24px;
    font-weight:400;
    line-height:28px;
    letter-spacing:0;
    color:#000
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list{
    margin-top:28px
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item{
    background-color:#fff;
    padding:20px 29px 20px 16px;
    margin-bottom:15px
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item.active .item-title{
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/knowledge/book_on.png)
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item.active .item-title .arrow{
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/knowledge/arrow_on.png)
}
 @media (max-width:767px){
    #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item.active .item-title{
        background-position:top 6px left
    }
     #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item.active .item-title .arrow{
        top:6px;
        bottom:auto
    }
     #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item.active .item-title>p{
        white-space:normal;
        overflow:visible;
        text-overflow:initial
    }
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item .item-title{
    position:relative;
    padding:0 32px;
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/knowledge/book.png);
    background-repeat:no-repeat;
    background-size:14px auto;
    background-position:center left;
    cursor:pointer
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item .item-title>p{
    font-size:18px;
    font-weight:400;
    font-stretch:normal;
    line-height:24px;
    letter-spacing:0;
    color:#000;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item .item-title .arrow{
    position:absolute;
    top:0;
    bottom:0;
    right:0;
    margin:auto;
    display:block;
    width:12px;
    height:12px;
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/knowledge/arrow.png);
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item .item-content{
    margin-top:20px;
    padding-left:32px;
    padding-bottom:16px;
    display:none
}
 #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder .knowledge-list .knowledge-item .item-content p{
    font-family:OpenSans;
    font-size:14px;
    font-weight:400;
    font-stretch:normal;
    line-height:24px;
    letter-spacing:0;
    color:#393e41
}
 @media (max-width:767px){
    #knowledge-page .inside-content .left-content .knowledge-box{
        padding-top:20px
    }
     #knowledge-page .inside-content .left-content .knowledge-box .knowledge-holder{
        margin-bottom:30px
    }
}
 #manual-page .inside-content .left-content .download-box{
    padding-top:47px
}
 #manual-page .inside-content .left-content .download-box .box-title h4{
    text-align:center;
    font-size:24px;
    font-weight:400;
    line-height:28px;
    letter-spacing:0;
    color:#000
}
 #manual-page .inside-content .left-content .download-box .box-banner{
    margin-top:32px
}
 #manual-page .inside-content .left-content .download-box .box-banner img{
    width:100%
}
 #manual-page .inside-content .left-content .download-box .box-tips{
    margin-top:23px
}
 #manual-page .inside-content .left-content .download-box .box-tips .tips{
    font-size:14px;
    font-weight:400;
    font-style:italic;
    line-height:24px;
    letter-spacing:0;
    color:#393e41
}
 #manual-page .inside-content .left-content .download-box .box-tips .tips:nth-of-type(n+1){
    margin-top:25px
}
 #manual-page .inside-content .left-content .download-box .box-download{
    margin-top:75px
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner{
    width:calc((100% - 27px)/ 2);
    float:left;
    margin-bottom:25px
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner:nth-of-type(odd){
    margin-right:27px
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner .inner-title{
    padding-left:44px;
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/manual/list_icon.png);
    background-repeat:no-repeat;
    background-size:25px auto;
    background-position:center left
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner .inner-title h4{
    font-size:20px;
    font-weight:400;
    line-height:40px;
    letter-spacing:0;
    color:#000
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner .download-list{
    height:310px;
    margin-top:15px;
    background-color:#fff;
    border:solid 1px #e5e5e5
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner .download-list .download-item{
    cursor:pointer;
    border-bottom:solid 1px #e5e5e5
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner .download-list .download-item:nth-of-type(5){
    border-bottom:none
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner .download-list .download-item:hover .item .file-name{
    color:#020c98
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner .download-list .download-item .item{
    position:relative;
    display:block;
    padding:18px 23px 18px 25px
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner .download-list .download-item .item .file-name{
    position:relative;
    display:block;
    padding-right:33px;
    font-size:16px;
    font-weight:400;
    line-height:24px;
    letter-spacing:0;
    color:#000;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    transition:all .3s
}
 #manual-page .inside-content .left-content .download-box .box-download .download-inner .download-list .download-item .item .file-name .file-icon{
    display:block;
    position:absolute;
    right:0;
    top:0;
    bottom:0;
    margin:auto;
    width:23px;
    height:23px;
    background-image:url(//www.shaperfactory.com/wp-content/themes/shaperfactory.com/assets/images/manual/pdf.png);
    background-repeat:no-repeat;
    background-size:contain;
    background-position:center
}
 @media (max-width:767px){
    #manual-page .inside-content .left-content .download-box .box-download .download-inner{
        width:100%;
        float:none
    }
     #manual-page .inside-content .left-content .download-box .box-download .download-inner:nth-of-type(odd){
        margin-right:0
    }
}
 @media (max-width:767px){
    #manual-page .inside-content .left-content .download-box{
        padding-top:20px
    }
     #manual-page .inside-content .left-content .download-box .box-title h4{
        text-align:left
    }
     #manual-page .inside-content .left-content .download-box .box-download{
        margin-top:30px
    }
}
 .home-footer{
    background-size:auto!important
}
 @media (max-width:1199px){
    .home-footer{
        background-image:none;
        background-color:#202539
    }
}
 @media (max-width:600px){
    .home-footer{
        padding:10px 0
    }
}
 .home-footer .foo-container .foo-b{
    margin-top:400px!important
}
 @media (max-width:1199px){
    .home-footer .foo-container .foo-b{
        margin:0!important
    }
}
 @media (max-width:1199px){
    .home-footer .foo-container{
        margin:0!important
    }
}
 @media (max-width:600px){
    .home-footer .foo-container .foo-b .left-box{
        margin-top:0
    }
}
 .modal-content p{
    margin:0!important;
    line-height:0!important
}
 .modal-content iframe{
    width:100%
}
 .video-box{
    cursor:pointer
}
/* Support 页面 - 容器宽度 1200px */
#news-detail-page .inside-content.page_about .container{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

#news-detail-page .page_about .left-content{
    width: inherit;
    max-width: 1200px;
    margin: 0 auto;
}

#news-detail-page .inside-content.page_about .left-content .news-content{
    padding-top: 0px;
}
#news-detail-page .inside-content.page_about .left-content .news-box{
    margin-top: 0;
    padding: 0;
}
#news-detail-page .inside-content.page_about .left-content .news-content p{margin-top: 0;margin-bottom: 10px;}

/* ==================== Terms of Service / Legal Pages ==================== */
.page-id-14419 .inside-content .container,
.privacy-policy .inside-content .container,
.terms-service .inside-content .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}
.page-id-14419 .inside-content .container h2.wp-block-heading,
.privacy-policy .inside-content .container h2.wp-block-heading,
.terms-service .inside-content .container h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}
.page-id-14419 .inside-content .container h3.wp-block-heading,
.privacy-policy .inside-content .container h3.wp-block-heading,
.terms-service .inside-content .container h3 {
    font-size: 19px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 28px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eee;
}
.page-id-14419 .inside-content .container h4.wp-block-heading,
.privacy-policy .inside-content .container h4.wp-block-heading,
.terms-service .inside-content .container h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 20px;
    margin-bottom: 10px;
}
.page-id-14419 .inside-content .container p.wp-block-paragraph,
.privacy-policy .inside-content .container p.wp-block-paragraph,
.terms-service .inside-content .container p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 12px;
}
.page-id-14419 .inside-content .container ul.wp-block-list,
.privacy-policy .inside-content .container ul.wp-block-list,
.terms-service .inside-content .container ul {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 14px;
    padding-left: 24px;
}
.page-id-14419 .inside-content .container ul.wp-block-list li,
.privacy-policy .inside-content .container ul.wp-block-list li,
.terms-service .inside-content .container ul li {
    margin-bottom: 6px;
    list-style: disc;
}
.page-id-14419 .inside-content .container hr.wp-block-separator,
.privacy-policy .inside-content .container hr.wp-block-separator,
.terms-service .inside-content .container hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 24px 0;
}
.page-id-14419 .inside-content .container a,
.privacy-policy .inside-content .container a,
.terms-service .inside-content .container a {
    color: #0f0c5b;
    text-decoration: underline;
}
@media (max-width: 767px) {
    .page-id-14419 .inside-content .container,
    .privacy-policy .inside-content .container,
    .terms-service .inside-content .container {
        padding: 30px 16px 50px;
    }
    .page-id-14419 .inside-content .container h2.wp-block-heading,
    .privacy-policy .inside-content .container h2.wp-block-heading,
    .terms-service .inside-content .container h2 {
        font-size: 20px;
    }
    .page-id-14419 .inside-content .container h3.wp-block-heading,
    .privacy-policy .inside-content .container h3.wp-block-heading,
    .terms-service .inside-content .container h3 {
        font-size: 17px;
        margin-top: 20px;
    }
}/* Mobile sidebar accordion submenu */
@media (max-width: 1279px) {
  /* Top-level list */
  #sidebar-nav .sidebar-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
  }

  #sidebar-nav .sidebar-menu > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  #sidebar-nav .sidebar-menu > li > a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: var(--nav-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* 没有子菜单的链接不需要右侧padding */
  #sidebar-nav .sidebar-menu > li:not(.menu-item-has-children) > a {
    padding-right: 20px;
  }

  #sidebar-nav .sidebar-menu > li > a:hover {
    background-color: rgba(124, 179, 66, 0.1);
    color: var(--nav-hover);
    padding-left: 24px;
  }

  /* Submenu accordion (must beat mega-menu mobile hide) */
  #sidebar-nav .sidebar-menu .sub-menu {
    display: none !important;
    flex: 0 0 100%;
    width: 100% !important;
    background-color: rgba(0, 0, 0, 0.02);
    padding: 6px 0;
    margin: 0;
    list-style: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.25s ease;
  }

  /* Submenu open state — must override ALL .sub-menu display:none!important rules */
  #sidebar-nav .sidebar-menu li.menu-item-has-children.open > .sub-menu,
  #sidebar-nav .sidebar-menu li.menu-item-has-children.\!open > .sub-menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 2000px !important;
    height: auto !important;
    overflow: visible !important;
    pointer-events: auto !important;
  }

  /* Expand/collapse indicator is now provided by .hd-menu-toggle button */
  #sidebar-nav .sidebar-menu li.menu-item-has-children > a {
    flex: 1;
    padding-right: 4px;
  }

  /* 箭头按钮放在链接右侧（flex 行内布局，覆盖 header-nav.css 的 block !important） */
  #sidebar-nav .sidebar-menu > li.menu-item.menu-item-has-children {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center;
  }

  #sidebar-nav .sidebar-menu .hd-menu-toggle {
    flex-shrink: 0;
    background: transparent;
    border: none;
    padding: 14px 18px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #sidebar-nav .sidebar-menu .hd-menu-toggle__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 12px;
    color: var(--nav-text, #1a1a1a);
  }

  #sidebar-nav .sidebar-menu .hd-menu-toggle__icon svg {
    display: block;
    width: 16px;
    height: 12px;
  }

  #sidebar-nav .sidebar-menu .hd-menu-toggle__icon path {
    stroke: currentColor;
    stroke-width: 7;
    fill: none;
    stroke-linecap: butt;
    stroke-linejoin: miter;
    transition: transform 0.2s ease;
    transform-origin: 50% 50%;
  }

  /* 展开时箭头旋转180度 */
  #sidebar-nav .sidebar-menu li.menu-item-has-children.open .hd-menu-toggle__icon path {
    transform: rotate(180deg);
  }

  /* Submenu items */
  #sidebar-nav .sidebar-menu .sub-menu > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  }

  #sidebar-nav .sidebar-menu .sub-menu > li > a {
    display: flex;
    align-items: center;
    padding: 12px 20px 12px 44px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    line-height: 1.4;
    color: rgba(27, 58, 95, 0.85);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  }

  #sidebar-nav .sidebar-menu .sub-menu > li > a:hover {
    background-color: rgba(124, 179, 66, 0.08);
    color: var(--nav-hover);
    padding-left: 48px;
  }

  /* Drawer padding: give content breathing room */
  .hd-drawer__content {
    padding: 10px 0;
  }
}
/* 隐藏桌面端汉堡菜单按钮 */
@media (min-width: 992px) {
  .hd-header .hd-header__hamburger,
  .hd-header__hamburger,
  button.hd-header__hamburger,
  button#menu-toggle,
  #menu-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}
/* Header Component Styles */
/* ! tailwindcss v3.3.1 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/
html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.hd-header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100000;
  border-bottom-width: 1px;
  border-color: var(--nav-border);
  background-color: var(--nav-bg);
}
.hd-header__container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  padding-left: 2rem;
  padding-right: 2rem;
}
.hd-header__inner {
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: space-between;
}
.hd-header__logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 800;
  color: var(--nav-text);
  text-decoration-line: none;
}
.hd-header__logo-img {
  height: auto;
  max-height: 3rem;
  width: auto;
}
.hd-header__nav {
  display: none;
  height: 100%;
  flex: 1 1 0%;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .hd-header__nav {
    display: flex;
  }
}
.hd-header__tools {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 15px;
}
.hd-icon-btn {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border-style: none;
  background-color: transparent;
  padding: 0.5rem;
  color: var(--nav-text);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.hd-icon-btn:hover {
  background-color: rgba(124,179,66,0.1);
  color: var(--nav-hover);
}
.hd-search {
  position: fixed;
  top: 5rem;
  right: 0px;
  z-index: 999;
  display: flex;
  height: 70px;
  width: 0px;
  align-items: center;
  overflow: hidden;
  border-bottom-width: 1px;
  border-color: var(--nav-border);
  background-color: var(--nav-bg);
  --tw-shadow: 0 4px 20px rgba(0,0,0,0.1);
  --tw-shadow-colored: 0 4px 20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  transition-property: width;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.hd-search__container {
  display: flex;
  width: 100%;
  align-items: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  opacity: 0;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.hd-search__form {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.625rem;
}
.hd-search__input {
  flex: 1 1 0%;
  border-radius: 0.5rem;
  border-width: 2px;
  border-color: var(--nav-border);
  background-color: var(--nav-bg);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 15px;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.hd-search__input:focus {
  border-color: var(--nav-hover);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.hd-header__hamburger {
  position: relative;
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-style: none;
  background-color: transparent;
  padding: 0px;
}
@media (min-width: 1024px) {
  .hd-header__hamburger {
    display: none;
  }
}
.hd-hamburger {
  display: flex;
  height: 18px;
  width: 1.5rem;
  flex-direction: column;
  justify-content: space-between;
}
.hd-hamburger__line {
  display: block;
  height: 0.125rem;
  width: 100%;
  border-radius: 0.125rem;
  background-color: var(--nav-text);
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.hd-drawer__header {
  position: sticky;
  top: 0px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom-width: 1px;
  border-color: var(--nav-border);
  background-color: var(--nav-bg);
  padding: 1.25rem;
}
.hd-drawer__title {
  margin: 0px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--nav-text);
}
.hd-drawer__content {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
/* Desktop dropdown base */
@media (min-width: 1024px) {
    /* Hover bridge: prevent dropdown from disappearing when moving mouse from top menu to dropdown */
    header .menu-item-has-children {
      position: relative;
    }

    /* Bridge元素已不再需要（改为点击方式），但保留代码以防将来需要 */
    /*
    header .menu-item-has-children::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      height: 40px;
      background: transparent;
      display: none;
      z-index: 9999;
      pointer-events: auto;
    }
    
    header .menu-item-has-children:hover::after,
    header .menu-item-has-children:has(> .sub-menu:hover)::after {
      display: block;
    }
    */
    
    /* 菜单项布局：链接和箭头在同一行 */
    header .menu-item-has-children,
    header .page_item_has_children {
      display: flex;
      align-items: center;
      position: relative;
    }
    
    header .menu-item-has-children > a,
    header .page_item_has_children > a {
      flex: 1;
    }
    
    /* 箭头按钮样式（B方案：更大、更清晰、企业站风格，白色） */
    header .hd-menu-toggle {
      background: transparent;
      border: none;
      padding: 0;
      margin-left: 0.45rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      opacity: 0.92;
      transition: opacity 0.18s ease;
      line-height: 1;
      width: 20px;
      height: 20px;
      min-width: 20px;
      border-radius: 3px;
    }
    
    header .hd-menu-toggle:hover {
      opacity: 1;
    }
    
    header .hd-menu-toggle:focus {
      outline: 2px solid rgba(255, 255, 255, 0.72);
      outline-offset: 2px;
      border-radius: 3px;
    }
    
    header .hd-menu-toggle__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 16px;
      height: 12px;
      -webkit-user-select: none;
         -moz-user-select: none;
              user-select: none;
      line-height: 1;
      color: #ffffff;
    }

    header .hd-menu-toggle__icon svg {
      display: block;
      width: 16px;
      height: 12px;
    }

    header .hd-menu-toggle__icon path {
      stroke: currentColor;
      stroke-width: 7;
      fill: none;
      stroke-linecap: butt;
      stroke-linejoin: miter;
      stroke-miterlimit: 4;
      transition: transform 0.2s ease;
      transform-origin: 50% 50%;
    }
    
    /* 打开时向上（旋转180度） */
    header .menu-item-has-children.hd-dropdown-open .hd-menu-toggle__icon path,
    header .page_item_has_children.hd-dropdown-open .hd-menu-toggle__icon path {
      transform: rotate(180deg);
    }

    header .menu-item-has-children.hd-dropdown-open .hd-menu-toggle,
    header .page_item_has_children.hd-dropdown-open .hd-menu-toggle {
      opacity: 1;
    }

    header .sub-menu {
      position: fixed;
      top: 81px;
      background-color: var(--sub-menu-bg);
      border: 1px solid var(--nav-border);
      padding: 1.5rem 2.5rem;
      display: none;
      list-style: none;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      z-index: 100000;
      gap: 2rem;
      overflow-y: auto;
      pointer-events: none; /* 默认禁用交互，防止hover触发 */
    }
    
    /* 只有通过点击箭头打开时才允许交互 */
    header .menu-item.hd-dropdown-open > .sub-menu,
    header .page_item_has_children.hd-dropdown-open > .sub-menu {
      pointer-events: auto;
    }

    /* 点击显示下拉菜单 - 使用hd-dropdown-open类控制 */
    header .menu-item.hd-dropdown-open > .sub-menu,
    header .page_item_has_children.hd-dropdown-open > .sub-menu {
      display: grid;
    }
    
    /* CRITICAL: 产品分类菜单特殊处理 - 使用block而不是grid */
    header .menu-item.product-category.hd-dropdown-open > .sub-menu.sub-menu-product-category {
      display: block !important;
    }
    
    /* CRITICAL: 完全禁用hover显示 - 只使用点击箭头方式 */
    /* 确保hover不会触发下拉菜单显示 */
    header .menu-item:not(.hd-dropdown-open):hover > .sub-menu,
    header .menu-item.product-category:not(.hd-dropdown-open):hover > .sub-menu.sub-menu-product-category {
      display: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }

    header .sub-menu-product-category {
      width: 1300px;
      max-width: 95vw;
      left: 50%;
      transform: translateX(-50%);
      height: 500px;
      grid-template-columns: repeat(5, 1fr);
    }

    header .sub-menu-single-column {
      width: auto;
      max-width: 230px;
      min-height: 300px;
      max-height: 500px;
      height: auto;
      grid-template-columns: 1fr;
      /* 具体 left/top 由 bridge-components.css + JS 决定 */
    }
    
    header .sub-menu-support-block {
      width: 1300px;
      max-width: 95vw;
      left: 50%;
      transform: translateX(-50%);
      height: auto;
      min-height: 300px;
      max-height: 500px;
      grid-template-columns: 1fr;
      /* 具体 left/top 由 bridge-components.css + JS 决定 */
    }

    header .sub-menu-support-block .sub-column {
      padding: 2rem;
    }

    header .sub-menu-support-block .sub-column ul {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    header .sub-menu-support-block .sub-column ul li {
      margin: 0;
    }

    header .sub-menu-support-block .sub-column ul li a {
      display: block;
      padding: 0.8rem 1rem;
      color: var(--nav-text);
      text-decoration: none;
      border-radius: 4px;
      transition: all 0.3s ease;
    }

    header .sub-menu-support-block .sub-column ul li a:hover {
      background-color: var(--nav-bg, var(--bg-light, #f5f5f5));
      color: var(--nav-hover);
    }

    header .sub-column {
      display: flex;
      flex-direction: column;
    }

    header .sub-column h4 {
      font-size: 15px;
      font-weight: 700;
      margin: 0 0 1.5rem 0;
      color: var(--nav-text);
      border-bottom: 2px solid #eeeeee;
      padding-bottom: 0.8rem;
      text-transform: uppercase;
      display: block;
      width: 100%;
      white-space: nowrap;
    }

    header .sub-column:hover h4 {
      border-bottom-color: var(--nav-hover);
    }

    header .sub-column ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    header .sub-column ul a {
      font-size: 14px;
      color: #666666;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    header .sub-column ul a:hover {
      color: var(--nav-hover);
      padding-left: 5px;
    }
  }
/* Mobile: never show desktop hover dropdowns */
@media (max-width: 1023px) {
    .hd-header__nav .sub-menu,
    .hd-header__nav .sub-menu-product-category,
    .hd-header__nav .sub-menu-single-column,
    .hd-header__nav .sub-menu-support-block {
      display: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
    }
  }
.contact-modern-page .container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
  padding-left: 1rem;
  padding-right: 1rem;
}
.contact-modern-page .row {
  margin-left: -1rem;
  margin-right: -1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
/* WPForms Overrides */
.contact-modern__form-card .wpforms-field input[type="text"],
  .contact-modern__form-card .wpforms-field input[type="email"],
  .contact-modern__form-card .wpforms-field textarea {
  width: 100%;
  border-radius: 0.5rem;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.contact-modern__form-card .wpforms-field input[type="text"]:focus,
  .contact-modern__form-card .wpforms-field input[type="email"]:focus,
  .contact-modern__form-card .wpforms-field textarea:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.contact-modern__form-card .wpforms-field input[type="text"],
  .contact-modern__form-card .wpforms-field input[type="email"],
  .contact-modern__form-card .wpforms-field textarea {
    --tw-border-opacity: 1;
    border-color: var(--accent-color, #E91E8C);
  }
.contact-modern__form-card .wpforms-field-container > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.contact-modern__form-card .wpforms-submit {
  width: 100%;
  cursor: pointer;
  border-radius: 0.5rem;
  border-style: none;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
    background: var(--accent-color, #E91E8C);
}
.contact-modern__form-card .wpforms-submit:hover {
  --tw-translate-y: -2px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hd-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100000;
    background-color: var(--nav-bg, #FFFEF9);
    border-bottom: 1px solid var(--nav-border, rgba(27, 58, 95, 0.08));
  }
.hd-header__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
  }
.hd-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
  }
.hd-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--nav-text, #1B3A5F);
    flex-shrink: 0;
  }
.hd-header__logo-img {
    max-height: 2.5rem;
    width: auto;
  }
.hd-header__nav {
    display: none;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
  }
@media (min-width: 1024px) {
    .hd-header__nav {
      display: flex;
    }
  }
.hd-header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 3rem;
  }
.hd-header__tools {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
.hd-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--nav-text, #1B3A5F);
    transition: color 0.2s ease, background-color 0.2s ease;
    border-radius: 0.25rem;
  }
.hd-icon-btn:hover {
    color: var(--nav-hover, #FF9933);
    background-color: rgba(124, 179, 66, 0.1);
  }
/* Search */
.hd-search {
    position: fixed;
    top: 80px;
    right: 0;
    width: 0;
    height: 70px;
    background: var(--nav-bg, #FFFEF9);
    border-bottom: 1px solid var(--nav-border, rgba(27, 58, 95, 0.08));
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
  }
.hd-search.active {
    width: 500px;
    max-width: 90vw;
  }
.hd-search__container {
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
  }
.hd-search.active .hd-search__container {
    opacity: 1;
  }
.hd-search__form {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0.625rem;
    position: relative;
  }
.hd-search__input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--nav-border, rgba(27, 58, 95, 0.08));
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    background-color: var(--nav-bg, #f8f8f8);
  }
.hd-search__input:focus {
    border-color: var(--nav-hover, #FF9933);
    background-color: #fff;
  }
/* Mobile menu button */
.hd-header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 0.5rem;
  }
.hd-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
  }
.hd-hamburger__line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--nav-text, #1B3A5F);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
.hd-header__hamburger.active .hd-hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
.hd-header__hamburger.active .hd-hamburger__line:nth-child(2) {
    opacity: 0;
  }
.hd-header__hamburger.active .hd-hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
/* Mobile drawer */
.hd-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--nav-bg, #FFFEF9);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
  }
/* Desktop: hide drawer entirely */
@media (min-width: 992px) {
    .hd-drawer {
      display: none;
    }
  }
/* Mobile: ensure drawer is renderable */
@media (max-width: 991px) {
    .hd-drawer {
      display: block;
    }
  }
.hd-drawer.open {
    transform: translateX(0);
  }
.hd-drawer.\!open {
    transform: translateX(0) !important;
  }
.hd-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-bottom: 1px solid var(--nav-border, rgba(0, 0, 0, 0.08));
    background-color: var(--nav-bg, #FFFEF9);
    position: sticky;
    top: 0;
    z-index: 10;
  }
.hd-drawer__title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--nav-text, #1B3A5F);
    text-transform: uppercase;
  }
.hd-drawer__content {
    padding: 1.25rem 0;
  }
/* Overlay */
.hd-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
/* Desktop: hide overlay entirely */
@media (min-width: 992px) {
    .hd-overlay {
      display: none;
    }
  }
/* Mobile: ensure overlay is renderable */
@media (max-width: 991px) {
    .hd-overlay {
      display: block;
    }
  }
.hd-overlay.active {
    opacity: 1;
    visibility: visible;
  }
/* Responsive */
@media (max-width: 991px) {
    .hd-drawer {
      display: block;
    }

    .hd-overlay {
      display: block;
    }
  }
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.m-0 {
  margin: 0px;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.h-1 {
  height: 0.25rem;
}
.w-0 {
  width: 0px;
}
.w-\[500px\] {
  width: 500px;
}
.flex-shrink {
  flex-shrink: 1;
}
.grow {
  flex-grow: 1;
}
.border-collapse {
  border-collapse: collapse;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.resize {
  resize: both;
}
.list-none {
  list-style-type: none;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rounded {
  border-radius: 0.25rem;
}
.border {
  border-width: 1px;
}
.p-0 {
  padding: 0px;
}
.text-center {
  text-align: center;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.italic {
  font-style: italic;
}
.ordinal {
  --tw-ordinal: ordinal;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline {
  outline-style: solid;
}
.ring {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.invert {
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.\[hostname\:port\] {
  hostname: port;
}/* Child Theme - Base Layer
   Design tokens + global components (SF-SPEC v3.0)
*/

:root {
  /* Brand */
  --brand:           #E91E8C;
  --brand-dark:      #B8176F;
  --brand-light:     #FCE4F1;
  --brand-text:      #C41A6E;

  /* Text */
  --text-primary:    #111111;
  --text-secondary:  #555555;
  --text-muted:      #888888;
  --text-hint:       #AAAAAA;
  --text-apple:      #1D1D1F;
  --text-apple-mid:  #6E6E73;

  /* Backgrounds */
  --bg-white:        #FFFFFF;
  --bg-faint:        #FAFAFA;
  --bg-gray:         #F5F5F7;
  --bg-dark:         #111111;
  --bg-input:        #F5F5F7;
  --bg-card:         #F9F9F9;

  /* Borders */
  --border:          #EEEEEE;
  --border-light:    #F0F0F0;
  --border-focus:    #E91E8C;

  /* Semantic tags */
  --tag-teal-bg:  #E1F5EE; --tag-teal-text:  #085041;
  --tag-blue-bg:  #E6F1FB; --tag-blue-text:  #0C447C;
  --tag-amber-bg: #FAEEDA; --tag-amber-text: #633806;
  --tag-green-bg: #EAF3DE; --tag-green-text: #27500A;
  --tag-pink-bg:  #FCE4F1; --tag-pink-text:  #C41A6E;

  /* Radius */
  --radius-btn:    7px;
  --radius-input:  9px;
  --radius-card:   12px;
  --radius-card-lg:16px;
  --radius-card-xl:18px;
  --radius-img:    14px;
  --radius-pill:   999px;

  /* Shadows */
  --shadow-card:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-hover:    0 10px 28px rgba(0,0,0,0.10);
  --shadow-hover-lg: 0 14px 40px rgba(0,0,0,0.12);
  --shadow-modal:    0 24px 64px rgba(0,0,0,0.18);

  /* Transitions */
  --ease:           0.20s ease;
  --ease-img:       0.40s ease;

  /* Container */
  --container:      1400px;
  --container-wide: 1500px;
  --container-pad:  48px;
  --container-pad-sm: 20px;

  /* Spacing */
  --section-pad:    80px;
  --section-pad-sm: 56px;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar {
  display: none;
}

/* ==================== Global Typography ==================== */
p {
  font-size: 16px;
  text-align: left;
  line-height: 1.6;
  margin: 0 0 1em 0;
}

/* ==================== Global Components (SF-SPEC) ==================== */

/* Containers */
.w        { max-width: var(--container);      margin: 0 auto; padding: 0 var(--container-pad); box-sizing: border-box; }
.w-wide   { max-width: var(--container-wide);  margin: 0 auto; padding: 0 var(--container-pad); box-sizing: border-box; width: 100%; }
.w-narrow { max-width: 800px;                  margin: 0 auto; padding: 0 var(--container-pad); box-sizing: border-box; }

/* Section */
.sec          { padding: var(--section-pad) 0; }
.sec-head     { margin-bottom: 40px; text-align: center; }
.sec-title    { font-size: 32px; font-weight: 700; color: var(--text-primary); text-align: center; margin-bottom: 12px; }
.sec-sub      { font-size: 16px; color: var(--text-secondary); text-align: center; max-width: 600px; margin: 0 auto 48px; line-height: 1.6; }
.sec-foot     { text-align: center; margin-top: 40px; }

/* Eyebrow */
.eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase; color: var(--brand); }

/* Divider */
.div-line { height: 1px; background: var(--border-light); }

/* Buttons */
.btn-p    { display: inline-block; padding: 13px 26px; background: var(--brand); color: var(--bg-white); border: none; border-radius: var(--radius-btn); font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer; transition: background var(--ease); }
.btn-p:hover { background: var(--brand-dark); }
.btn-g    { display: inline-block; padding: 12px 26px; background: transparent; color: var(--bg-white); border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-btn); font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer; transition: border-color var(--ease); }
.btn-g:hover { border-color: rgba(255,255,255,0.7); }
.btn-out  { display: inline-block; padding: 12px 26px; background: var(--bg-white); color: var(--text-primary); border: 1px solid rgba(0,0,0,0.14); border-radius: var(--radius-btn); font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer; transition: border-color var(--ease); }
.btn-out:hover { border-color: var(--brand); color: var(--brand); }
.btn-link { display: inline-block; color: var(--brand); font-size: 15px; font-weight: 600; text-decoration: none; transition: color var(--ease); }
.btn-link:hover { color: var(--brand-dark); }

/* Semantic tag pills (global) */
.tag-teal  { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: var(--radius-pill); background: var(--tag-teal-bg);  color: var(--tag-teal-text); }
.tag-blue  { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: var(--radius-pill); background: var(--tag-blue-bg);  color: var(--tag-blue-text); }
.tag-amber { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: var(--radius-pill); background: var(--tag-amber-bg); color: var(--tag-amber-text); }
.tag-green { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: var(--radius-pill); background: var(--tag-green-bg); color: var(--tag-green-text); }

/* Responsive containers */
@media (max-width: 834px) {
  .w, .w-wide, .w-narrow { padding: 0 var(--container-pad-sm); }
}
@media (max-width: 767px) {
  .sec { padding: var(--section-pad-sm) 0; }
  .sec-title { font-size: 26px; }
}
/* ==================== Child Theme - Components Layer ==================== */
/*
 * Purpose: Global, reusable components that can be used across all pages
 *
 * Rules:
 * - All reusable components should use ss-* prefix
 * - Keep components generic and page-agnostic
 * - Define utility classes (section-padding, section-bg-light, etc.)
 * - Include responsive rules for global components
 *
 * DO NOT:
 * - Add page-specific styles (use pages/*.css instead)
 * - Use body.home or other page-specific selectors
 */

/* Homepage paragraph text — desktop & iPad: 15px, mobile: 13px
   Note: sf-section__subtitle uses 18px in home.css, excluded via :not() */
body.home .sf-section p:not(.sf-section__subtitle),
body.home .sf-section__desc,
body.home .sf-section__text,
body.home .sf-wwa__body {
    font-size: 15px;
}

@media (max-width: 768px) {
    body.home .sf-section p:not(.sf-section__subtitle),
    body.home .sf-section__desc,
    body.home .sf-section__text,
    body.home .sf-wwa__body {
        font-size: 13px;
    }
}

.ss-container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  width: 100%;
  background-color: var(--container-bg-color, #ffffff);
}

/* Optional: a narrower container variant for content-heavy pages */
.ss-container--narrow {
  max-width: 700px;
}

/* Home uses a narrower site container than the global 1400px */
.ss-container--home {
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  width: 100%;
  background-color: var(--container-bg-color, #ffffff);
}

.ss-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* ==================== Section Utilities - Child Theme Controlled ==================== */
/* These classes are fully controlled by child theme, no parent theme dependency */

/* Section Padding Variants（桌面端统一 40px） */
.section-padding {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-padding-small {
  padding-top: 40px;
  padding-bottom: 40px;
  height: auto;
  max-height: none;
  min-height: 0;
}

.section-padding-medium {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* 覆盖 main.css 的 body.home section[class*="section-"] { padding: 30px 20px }，优先级与其一致，靠后加载生效 */
body.home section.section-padding,
body.home section.section-padding-small,
body.home section.section-padding-medium {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Section Background */
.section-bg-light {
  background-color: var(--section-bg-light, #f8f9fa);
}

/* Default section background - only apply to sections with section-* class */
section[class*="section-"]:not(.section-bg-light) {
  background-color: var(--section-bg-default, #ffffff);
}

/* Breadcrumb: ensure it's visible under fixed header */
.page-breadcrumb-container{
  position: relative;
  z-index: 1000; /* 提高 z-index，确保在搜索框之上 */
  margin-top: 80px !important;
  height: 60px;
  padding-top: 0 !important;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}

/* NOTE: Header nav overrides (desktop hamburger hide, arrow color, mega menu layout, hover policy)
 * were migrated to `assets/css/header-nav.css` and are now enqueued globally as the LAST stylesheet.
 * Keep this file focused on reusable components and non-header concerns.
 */

/* Align breadcrumb to the same content width as the navigation (1190px) */
.page-breadcrumb-container > .container{
  max-width: 1190px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-breadcrumb{
  justify-content: flex-start;
}

/* Breadcrumb spacing: make separator feel like " / " */
.page-breadcrumb a,
.page-breadcrumb span{
  margin: 0 6px;
}

@media (max-width: 768px){
  .page-breadcrumb-container{
    margin-top: 80px !important;
    height: 60px;
    padding-top: 0 !important;
    padding-bottom: 0;
  }

  .page-breadcrumb-container > .container{
    max-width: 1190px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Section Margin */
.section-margin-top {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section-padding-small {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .section-padding-medium {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

.ss-card {
  background: var(--bg-light, #fff);
  border-radius: var(--card-radius, 12px);
  border: var(--card-border);
  box-shadow: var(--card-shadow-hover);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.ss-card:hover {
  transform: translateY(var(--card-lift, -4px));
  box-shadow: var(--card-shadow-hover);
}

.ss-section-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin: 15px 0 20px;
  text-transform: capitalize;
  color: var(--heading-primary-color, var(--primary-color, #000e4f));
}

.ss-section-subtitle {
  text-align: left;
  color: var(--body-text-color, #333);
  margin-bottom: 40px;
  font-size: 16px;
}

/* Grid Components */
.ss-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

@media (max-width: 640px) {
  .ss-grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.ss-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

@media (max-width: 1024px) {
  .ss-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ss-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ==================== Header Mega Menu (Product Categories) ==================== */
/* 使用CSS类选择器替代硬编码的菜单项ID，提高可维护性 */
.menu-item.product-category {
  position: relative;
}

/* Bridge 元素已删除 - 现在使用点击方式控制下拉菜单，不需要 bridge */

/* B: center dropdown relative to the whole nav list */
.tw-header__nav > ul,
.tw-header__nav-menu {
  position: relative;
}

.menu-item.product-category > .sub-menu.sub-menu-product-category {
  display: none !important;
  /* CRITICAL: 禁用所有hover显示，只使用点击箭头方式 */
  pointer-events: none; /* 防止hover时意外触发 */
  position: fixed;
  left: 0;
  right: 0;
  top: 81px; /* 导航高度为 81px，下拉框顶部紧贴导航栏底部 */
  transform: none;
  z-index: 9999;
  margin-top: 0;      /* 不再额外偏移，直接贴着导航底部 */
  padding-top: 0;     /* 顶部由内部内容自身的 margin 控制 */
  box-sizing: border-box; /* CRITICAL: Include padding in width calculation */

  /* 背景全宽 - 修复溢出问题 */
  width: 100%; /* Changed from 100vw to 100% to prevent horizontal scrollbar */
  max-width: 100%; /* Changed from 1920px to prevent overflow */
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 20px;
  padding-left: 0;
  padding-right: 0;

  /* Override parent theme mega-menu defaults
   * 按照 navigation-menu-selector-guide 规范：
   * - 高度随内容自适应（height: auto）
   * - 最大高度 400px，超出时内部滚动（max-height: 400px; overflow-y: auto）
   */
  height: auto !important;
  min-height: 0 !important;
  max-height: 400px !important;
  overflow-x: hidden !important; /* CRITICAL: Prevent horizontal overflow */
  overflow-y: auto !important;

  border-radius: 0;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.14);
  border: 1px solid rgba(0,0,0,.06);
  border-left: none; /* Remove left border to prevent overflow */
  border-right: none; /* Remove right border to prevent overflow */
}

/* 点击显示下拉菜单 - 产品分类菜单（只通过点击箭头按钮控制） */
.menu-item.product-category.hd-dropdown-open > .sub-menu.sub-menu-product-category,
header .menu-item.product-category.hd-dropdown-open > .sub-menu.sub-menu-product-category,
.tw-header__nav .menu-item.product-category.hd-dropdown-open > .sub-menu.sub-menu-product-category,
.tw-header__nav-menu .menu-item.product-category.hd-dropdown-open > .sub-menu.sub-menu-product-category {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important; /* 打开时允许交互 */
  height: auto !important;
  max-height: 400px !important;
  overflow-y: auto !important;
  /* 移除 transition，避免鼠标移动时触发闪屏 */
  transition: none !important;
}

/* 通用兜底：任何带 .hd-dropdown-open 的菜单项，其直接子级 .sub-menu 必须显示
 * （保证“箭头向上”时，无论是哪种布局类型，下拉都能稳定出现） */
header .menu-item.hd-dropdown-open > .sub-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* NOTE: Hover-open disabling policy was migrated to `assets/css/header-nav.css`
 * (enqueued globally as the LAST stylesheet) to ensure consistent behavior site-wide.
 */

/* Inner: fixed content width + layout - 修复溢出问题 */
.menu-item.product-category > .sub-menu.sub-menu-product-category .hd-mega__inner {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  overflow-x: hidden;
}

/* Left area: treat all left columns as one group that fills remaining width */
.menu-item.product-category > .sub-menu.sub-menu-product-category .hd-mega__inner {
  flex-wrap: nowrap;
}

.menu-item.product-category > .sub-menu.sub-menu-product-category .hd-mega__inner > .hd-mega__cards {
  margin-left: 0; /* 不再推到最右侧，位置由 flex gap 控制 */
}

.menu-item.product-category > .sub-menu.sub-menu-product-category .hd-mega__inner > .sub-column {
  width: 220px;
  flex: 0 0 220px;
  min-width: 0;
}

.menu-item.product-category > .sub-menu.sub-menu-product-category .hd-mega__inner {
  gap: 5px;
}

/* 限制左侧最多显示一个列表（超出1个时不显示，给右侧卡片留更多空间） */
.menu-item.product-category > .sub-menu.sub-menu-product-category .hd-mega__inner > .sub-column:nth-of-type(n+2) {
  display: none;
}

/* 自动隐藏空的列表（如果第二个列表没有内容，PHP不会输出HTML，但CSS也做双重保险） */
.menu-item.product-category > .sub-menu.sub-menu-product-category .hd-mega__inner > .sub-column:empty {
  display: none;
}

/* 确保第一个和第二个列表正常显示（如果有内容） */
.menu-item.product-category > .sub-menu.sub-menu-product-category .hd-mega__inner > .sub-column:nth-of-type(1),
.menu-item.product-category > .sub-menu.sub-menu-product-category .hd-mega__inner > .sub-column:nth-of-type(2) {
  display: flex;
  flex-direction: column;
}

.menu-item.product-category > .sub-menu.sub-menu-product-category .hd-mega__inner > .sub-column ul {
  width: 100%;
}

.menu-item.product-category > .sub-menu.sub-menu-product-category .sub-column h4 {
    margin: 0 0 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--heading-primary-color, #1B3A5F);
}

/* 移除：不再需要把单个列表内部分成两列，用户要的是两个独立的列表盒子 */

/* Remove default menu indentation on first column (left edge gap) */
.menu-item.product-category > .sub-menu.sub-menu-product-category {
  padding-left: 0;
  padding-right: 0;
}

.menu-item.product-category > .sub-menu.sub-menu-product-category .hd-mega__inner {
  padding-left: 0;
  padding-right: 0;
}

.menu-item.product-category > .sub-menu.sub-menu-product-category .sub-column {
  padding-left: 0;
}

.menu-item.product-category > .sub-menu.sub-menu-product-category .sub-column ul {
  padding-left: 0;
  margin-left: 0;
}

.menu-item.product-category > .sub-menu.sub-menu-product-category .sub-column a {
  display: block;
  padding: 5px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background .15s ease, transform .15s ease;
}

.menu-item.product-category > .sub-menu.sub-menu-product-category .sub-column a:hover {
  background: rgba(0,0,0,.04);
}

/* Right: cards (up to 4) */
.menu-item.product-category > .sub-menu.sub-menu-product-category .hd-mega__cards {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;

  /* 2-column cards within 1230px container
     Left: 220px
     Right available: 1230 - 220 = 1010px
     Layout: 40px left padding + 470 + 20 gap + 470 + 0 right padding = 1000px (fits)
  */
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;

  /* 右侧 4 张卡片（200px * 4 + 3*16 = 848px），配合左侧一列可在 1230px 内容宽度内排布 */
  width: auto;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 200px);
  gap: 16px;
  align-content: start;
}

.menu-item.product-category > .sub-menu.sub-menu-product-category .hd-mega__card {
  width: 100%;
  height: 255px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  box-sizing: border-box;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  transition: transform .18s ease, box-shadow .18s ease;
  overflow: hidden;
}

.menu-item.product-category > .sub-menu.sub-menu-product-category .hd-mega__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,.14);
}

.menu-item.product-category > .sub-menu.sub-menu-product-category .hd-mega__card-img {
  width: 100%;
  height: 170px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  background: rgba(0,0,0,.03);
}

.menu-item.product-category > .sub-menu.sub-menu-product-category .hd-mega__card-body {
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.menu-item.product-category > .sub-menu.sub-menu-product-category .hd-mega__card-badge {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-color, #E91E8C);
  margin-bottom: 6px;
}

.menu-item.product-category > .sub-menu.sub-menu-product-category .hd-mega__card-subtitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-primary-color, #1B3A5F);
  line-height: 1.35;
}

@media (max-width: 1024px){
  .menu-item.product-category > .sub-menu.sub-menu-product-category {
    width: calc(100vw - 20px);
    left: 50%;
    transform: translateX(-50%);
  }

  /* Tablet: cards go 1 column to avoid overflow */
  .menu-item.product-category > .sub-menu.sub-menu-product-category .hd-mega__cards {
    width: auto;
    flex: 0 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    grid-template-columns: 1fr;
  }

  .menu-item.product-category > .sub-menu.sub-menu-product-category .hd-mega__card {
    width: 100%;
    max-width: 470px;
    height: auto;
  }
}

/* 移动端 hover 规则已删除 - 移动端使用侧边栏导航，不需要下拉菜单 */

/* ============================================================================
 * FIX: 确保产品分类 Mega Menu 右侧两张图片始终在列表右边，而不是掉到下面
 * 通过降低选择器依赖（仅依赖 .sub-menu-product-category 结构）并在文件后方覆盖
 * ============================================================================ */
@media (min-width: 1024px) {
  /* 整体容器：左侧列表 + 右侧图片，并排排列 */
  header .sub-menu-product-category .hd-mega__inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  /* 左侧列：最多两列，固定宽度，防止把右侧图片挤到下面 */
  header .sub-menu-product-category .hd-mega__inner > .sub-column {
    flex: 0 0 220px;
    width: 220px;
    min-width: 0;
  }

  header .sub-menu-product-category .hd-mega__inner > .sub-column:nth-of-type(n+3) {
    display: none;
  }

  /* 右侧卡片区域：固定在最右边，顶部对齐 */
  header .sub-menu-product-category .hd-mega__inner > .hd-mega__cards {
    margin-left: auto;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    flex: 1 1 auto;
    min-width: 0;
  }

  header .sub-menu-product-category .hd-mega__card {
    width: 100%;
    max-width: 100%;
  }
}

.ss-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

@media (max-width: 1023px) {
  .ss-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ss-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
 * 强制统一 Mega Menu 右侧卡片尺寸（桌面端）
 * 目标尺寸：200px * 255px
 * ============================================================================ */
@media (min-width: 1024px) {
  header .hd-mega__card-img {
    width: 200px !important;
    height: 170px !important;
    display: block;
    object-fit: cover;
    object-position: center;
  }

  /* 右侧 4 张卡片：固定列数 + 标题居中 */
  header .sub-menu-product-category .hd-mega__inner > .hd-mega__cards {
    grid-template-columns: repeat(4, 200px) !important;
    gap: 16px !important;
  }

  header .sub-menu-product-category .hd-mega__card {
    width: 200px !important;
    height: 255px !important;
  }

  header .sub-menu-product-category .hd-mega__card-body,
  header .sub-menu-product-category .hd-mega__card-subtitle {
    text-align: center !important;
  }
}

.ss-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 1200px) {
  .ss-grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 834px) {
  .ss-grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .ss-grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .ss-grid-5 {
    grid-template-columns: 1fr;
  }
}

.ss-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1024px) {
  .ss-grid-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ss-grid-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .ss-section-title {
    font-size: 22px;
    margin: 20px 0 10px;
  }

  .ss-section-subtitle {
    margin-bottom: 24px;
  }
}

/* ==================== FAQ Component (Global) ==================== */
.ss-faq {
  max-width: 980px;
  margin: 0 auto;
}

.ss-faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ss-faq__question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 18px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  color: var(--heading-primary-color, #1f2d3d);
  transition: color 0.3s ease;
}

.ss-faq__question:hover {
  color: var(--accent-color, #E91E8C);
}

.ss-faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--heading-primary-color, #1f2d3d);
  transition: transform 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}

.ss-faq__question[aria-expanded="true"] .ss-faq__icon {
  transform: rotate(45deg);
  border-color: var(--accent-color, #E91E8C);
}

.ss-faq__answer {
  padding: 0 10px 18px;
  color: var(--body-text-color, #5a6c7d);
  line-height: 1.7;
}

.ss-faq__answer p {
  margin: 0;
}

@media (max-width: 768px) {
  .ss-faq__question {
    padding: 16px 10px;
    font-size: 15px;
  }

  .ss-faq__answer {
    padding: 0 10px 16px;
    font-size: 14px;
  }
}

.ss-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  min-height: 44px;
  line-height: 1.2;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition, all 0.2s ease);
  white-space: nowrap;
}

.ss-btn--primary {
  background: var(--accent-color, #E91E8C);
  color: #fff;
}

.ss-btn--primary:hover {
  background: var(--accent-hover, #B8176F);
}

.ss-btn--secondary {
  background: transparent;
  color: var(--primary-color, #000e4f);
  border: 2px solid var(--primary-color, #000e4f);
}

.ss-btn--secondary:hover {
  background: var(--primary-color, #000e4f);
  color: #fff;
}

/* Generic icon wrapper: keep images from being squished */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ==================== Legacy .btn Buttons (Child-controlled) ==================== */
/* Some templates still use Bootstrap-like .btn/.btn-primary classes.
   Define them here so sizing/behavior is controlled by the child theme. */
.btn {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition, all 0.2s ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-color, #E91E8C);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover, #B8176F);
  transform: translateY(-2px);
}

/* Migration color lock removed — --accent-color now defaults to #E91E8C via theme-colors.php */

/* Mobile defaults: buttons full width, but allow hero buttons to auto size */
@media (max-width: 768px) {
  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-buttons .btn {
    width: auto !important;
    max-width: 90% !important;
    min-width: 0 !important;
  }
}

/* Arrow UI (style) */
.ss-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color, #000e4f);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: var(--transition, all 0.2s ease);
}

.ss-arrow-btn:hover {
  background: var(--primary-color, #000e4f);
  color: #fff;
}

/* Floating actions (WhatsApp + BackTop) - global */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.floating-whatsapp {
  background: #25D366;
  text-decoration: none;
}

.floating-whatsapp-icon {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}

.floating-backtop {
  background: var(--primary-color, #e54b4d);
  border: none;
  display: none;
  font-size: 24px;
  font-weight: 700;
}

.floating-backtop.show {
  display: inline-flex !important;
  background-color: var(--primary-color, #e54b4d) !important;
}

/* Quote Modal: restore full styling + keep it centered and scrollable (max 700px height) */
#quote-modal.quote-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1000000 !important;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

#quote-modal.quote-modal.is-open {
  display: flex;
}

#quote-modal .quote-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

#quote-modal .quote-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  width: min(600px, 92vw);
  max-height: min(700px, 88vh);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  z-index: 1000001;
}

#quote-modal .quote-modal-content::-webkit-scrollbar {
  display: none;
}

#quote-modal .quote-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
  line-height: 1;
}

#quote-modal .quote-modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

#quote-modal .quote-modal-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  text-align: center;
}

#quote-modal .quote-modal-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  text-align: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==================== Gutenberg Alignments (Default Pages) ==================== */
.page__editor-content .alignwide {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.page__editor-content .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* ==================== Gutenberg Alignments (Block Editor Frontend) ==================== */
/* Apply consistent content/wide/full behaviors across Gutenberg-driven templates */
.page__editor-content .alignwide,
.service__editor-content .alignwide,
.support__editor-content .alignwide {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.page__editor-content .alignfull,
.service__editor-content .alignfull,
.support__editor-content .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.page__editor-content [data-align="wide"],
.service__editor-content [data-align="wide"],
.support__editor-content [data-align="wide"] {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.page__editor-content [data-align="full"],
.service__editor-content [data-align="full"],
.support__editor-content [data-align="full"] {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* ==================== Navigation Menu Overrides ==================== */
/* Ensure parent items have relative positioning for dropdowns to align correctly */
.tw-header__nav-menu > li {
  position: relative !important;
}

@media (min-width: 1024px) {
  /* Bridge 元素已删除 - 现在使用点击方式控制下拉菜单，不需要 bridge */

  /* Override mega menu styles for Service, Support, About Us, and Blog menus */
  header .menu-item-support > .sub-menu-support-block,
  header .menu-item-service > .sub-menu-support-block,
  header .menu-item-about > .sub-menu-support-block,
  header .menu-item-has-children > .sub-menu-single-column {
    /* 和 shapewear 一样，贴着导航栏下边（fixed定位，top: 81px） */
    position: fixed !important;
    top: 81px !important; /* 和 shapewear 下拉菜单一样，贴着导航栏下边 */
    /* left / transform 由 JS 负责计算，避免强制贴左侧 */
    margin-top: 0 !important;
    padding-top: 1.5rem !important; /* 恢复顶部padding，保持和shapewear一致 */

    /* Use single column layout instead of wide block layout */
    width: auto !important;
    max-width: 260px !important;
    min-width: 200px;
    min-height: auto !important;
    max-height: 500px !important;
    height: auto !important;
    grid-template-columns: 1fr !important;
    padding: 1.5rem !important;
    padding-top: 0 !important;
    
    /* 默认隐藏状态 - 不使用过渡动画，避免闪屏 */
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    /* 移除 transition，避免鼠标移动时触发闪屏 */
    transition: none !important;
  }

  /* 点击显示下拉菜单 - 使用hd-dropdown-open类控制（最高优先级，确保立即显示） */
  header .menu-item-has-children.hd-dropdown-open > .sub-menu-single-column,
  header .menu-item-support.hd-dropdown-open > .sub-menu-support-block,
  header .menu-item-service.hd-dropdown-open > .sub-menu-support-block,
  header .menu-item-about.hd-dropdown-open > .sub-menu-support-block,
  header .menu-item-oem.hd-dropdown-open > .sub-menu-single-column,
  header .menu-item-blog-guides.hd-dropdown-open > .sub-menu-single-column,
  header .menu-layout-single.hd-dropdown-open > .sub-menu-single-column,
  header .menu-layout-block.hd-dropdown-open > .sub-menu-support-block,
  header .menu-layout-mega.hd-dropdown-open > .sub-menu,
  .tw-header__nav .menu-item.hd-dropdown-open > .sub-menu,
  .tw-header__nav-menu .menu-item.hd-dropdown-open > .sub-menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    height: auto !important;
    max-height: none !important;
    /* 移除 transition，避免鼠标移动时触发闪屏 */
    transition: none !important;
  }

  /* Remove grid layout for sub-column ul in these menus */
  header .menu-item-support > .sub-menu-support-block .sub-column ul,
  header .menu-item-service > .sub-menu-support-block .sub-column ul,
  header .menu-item-about > .sub-menu-support-block .sub-column ul {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 0.8rem !important;
  }

  /* Adjust sub-column padding */
  header .menu-item-support > .sub-menu-support-block .sub-column,
  header .menu-item-service > .sub-menu-support-block .sub-column,
  header .menu-item-about > .sub-menu-support-block .sub-column {
    padding: 0 !important;
  }

  /* Ensure links use single column style */
  header .menu-item-support > .sub-menu-support-block .sub-column ul li a,
  header .menu-item-service > .sub-menu-support-block .sub-column ul li a,
  header .menu-item-about > .sub-menu-support-block .sub-column ul li a {
    padding: 0.5rem 0 !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    color: #000 !important;
  }

  header .menu-item-support > .sub-menu-support-block .sub-column ul li a:hover,
  header .menu-item-service > .sub-menu-support-block .sub-column ul li a:hover,
  header .menu-item-about > .sub-menu-support-block .sub-column ul li a:hover {
    background-color: transparent !important;
    padding-left: 5px !important;
    color: var(--nav-hover, var(--accent-color, #E91E8C)) !important;
  }

  /* 三种布局类统一：顶部内边距 20px */
  header .menu-layout-single > .sub-menu-single-column,
  header .menu-layout-block > .sub-menu-support-block,
  header .menu-layout-mega > .sub-menu.sub-menu-product-category {
    padding-top: 20px !important;
  }

  /* NOTE: Header-specific arrow color + arrow rotation + OEM/Blog dropdown spacing
   * were migrated to `assets/css/header-nav.css` (enqueued globally LAST).
   * Keep this file focused on shared components.
   */
}

/* NOTE: The following header-specific override blocks were migrated to
 * `assets/css/header-nav.css` (global + enqueued LAST):
 * - Non-home arrow color overrides
 * - Mega-menu card-right layout guards (OEM/ODM, Blog, etc.)
 * - Hover-open disabling policy (desktop & mobile)
 */
/* ============================================================
   Shaperfactory — Home Page Styles (Nanbin Design System)
   Scope: body.home
   ============================================================ */

/* ----- Design Tokens ----- */
body.home {
  --nb-brand: #e91e8c;
  --nb-brand-dark: #c4166f;
  --nb-brand-light: #fff0f6;
  --nb-black: #1d1d1f;
  --nb-white: #ffffff;
  --nb-bg-faint: #f5f5f7;
  --nb-bg-gray: #edeef0;
  --nb-border: #e8e4de;
  --nb-text: #1d1d1f;
  --nb-text-mid: #515154;
  --nb-text-muted: #86868b;
  --nb-radius: 8px;
  --nb-radius-lg: 12px;
  --nb-max-w: 1400px;
  --nb-shadow-sm: 0 2px 12px rgba(0,0,0,.04);
  --nb-shadow-md: 0 8px 30px rgba(0,0,0,.07);
}

/* ----- Reset & Base ----- */
body.home {
  font-family: 'Roboto', sans-serif;
  color: var(--nb-text);
  background: var(--nb-white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ----- Nav Overrides (global nav adapts to new design) ----- */
body.home .tw-header {
  background: var(--nb-white);
  border-bottom: 1px solid var(--nb-border);
}

/* ----- Container ----- */
body.home .hp-w {
  max-width: var(--nb-max-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ----- Section Defaults ----- */
body.home .hp-section {
  padding: 90px 0;
}
body.home .hp-divider {
  height: 1px;
  background: var(--nb-border);
}

/* ----- Section Header ----- */
body.home .hp-sec-head {
  margin-bottom: 56px;
}
body.home .hp-sec-kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--nb-brand);
  margin-bottom: 12px;
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-sec-title {
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--nb-black);
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -.5px;
}
body.home .hp-sec-sub {
  font-size: 16px;
  color: var(--nb-text-mid);
  line-height: 1.75;
  max-width: 580px;
}
body.home .hp-sec-foot {
  text-align: center;
  margin-top: 48px;
}

/* ----- Buttons ----- */
body.home .hp-btn--pri {
  background: var(--nb-brand);
  color: var(--nb-white);
  padding: 15px 35px;
  border-radius: var(--nb-radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  cursor: pointer;
  border: none;
  font-family: 'Roboto Condensed', sans-serif;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}
body.home .hp-btn--pri:hover {
  background: var(--nb-brand-dark);
  transform: translateY(-1px);
  color: var(--nb-white);
}
body.home .hp-btn--ghost {
  background: transparent;
  color: var(--nb-black);
  padding: 15px 29px;
  border-radius: var(--nb-radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  cursor: pointer;
  border: 1.5px solid var(--nb-black);
  font-family: 'Roboto Condensed', sans-serif;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}
body.home .hp-btn--ghost:hover {
  background: var(--nb-black);
  color: var(--nb-white);
}
body.home .hp-btn--outline {
  background: transparent;
  border: 1.5px solid var(--nb-black);
  color: var(--nb-black);
  padding: 14px 29px;
  border-radius: var(--nb-radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
  cursor: pointer;
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-btn--outline:hover {
  background: var(--nb-black);
  color: var(--nb-white);
}
body.home .hp-btn--link {
  font-size: 14px;
  color: var(--nb-brand);
  text-decoration: none;
  font-weight: 700;
}
body.home .hp-btn--link:hover {
  text-decoration: underline;
}

/* ============================================================
   HERO
   ============================================================ */
body.home .hp-hero {
  position: relative;
  height: 800px;
  margin-top: 80px;
  background: var(--nb-bg-faint);
  overflow: hidden;
  display: grid;
  grid-template-columns: 52% 48%;
  border-bottom: 1px solid var(--nb-border);
}
body.home .hp-hero__left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 64px 80px 80px;
}
body.home .hp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--nb-brand);
  margin-bottom: 24px;
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-hero__eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--nb-brand);
  flex-shrink: 0;
}
body.home .hp-hero__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--nb-black);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
body.home .hp-hero__title em {
  color: var(--nb-brand);
  font-style: normal;
}
body.home .hp-hero__sub {
  font-size: 16px;
  color: var(--nb-text-mid);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
}
body.home .hp-hero__btns {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 56px;
}
body.home .hp-hero__stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--nb-border);
}
body.home .hp-hero__stat strong {
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--nb-black);
  line-height: 1;
  margin-bottom: 4px;
}
body.home .hp-hero__stat strong span {
  color: var(--nb-brand);
}
body.home .hp-hero__stat small {
  font-size: 11px;
  color: var(--nb-text-muted);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 700;
}
body.home .hp-hero__right {
  position: relative;
  overflow: hidden;
}
body.home .hp-hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}
body.home .hp-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}
body.home .hp-hero__slide.active {
  opacity: 1;
  z-index: 1;
}
body.home .hp-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
body.home .hp-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--nb-bg-faint) 0%, rgba(245,245,247,.05) 35%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
body.home .hp-hero__cert-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,.92);
  border-top: 1px solid var(--nb-border);
  height: 56px;
  z-index: 10;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}
body.home .hp-hero__cert-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--nb-text-mid);
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-hero__cert-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--nb-brand);
  opacity: .8;
  flex-shrink: 0;
}
body.home .hp-hero__scroll-arrow {
  position: absolute;
  right: 20px;
  bottom: 72px;
  z-index: 15;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(0,0,0,.35);
  color: var(--nb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
  backdrop-filter: blur(4px);
}
body.home .hp-hero__scroll-arrow:hover {
  background: rgba(0,0,0,.55);
  border-color: rgba(255,255,255,.8);
}

/* ============================================================
   CATEGORY NAV
   ============================================================ */
body.home .hp-cat-nav {
  background: var(--nb-white);
  border-bottom: 1px solid var(--nb-border);
  position: sticky;
  top: 70px;
  z-index: 90;
  box-shadow: var(--nb-shadow-sm);
}
body.home .hp-cat-nav__inner {
  max-width: var(--nb-max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: stretch;
}
body.home .hp-cat-nav__item {
  display: flex;
  align-items: center;
  padding: 0 24px;
  height: 56px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  color: var(--nb-text-muted);
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-cat-nav__item:hover {
  color: var(--nb-black);
}
body.home .hp-cat-nav__item.active {
  color: var(--nb-brand);
  border-bottom-color: var(--nb-brand);
}
body.home .hp-cat-nav__divider {
  width: 1px;
  background: var(--nb-border);
  margin: 14px 0;
  flex-shrink: 0;
}
body.home .hp-cat-nav__cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  padding-left: 24px;
  border-left: 1px solid var(--nb-border);
}
body.home .hp-cat-nav__cta button {
  background: var(--nb-brand);
  color: var(--nb-white);
  border: none;
  padding: 8px 22px;
  border-radius: var(--nb-radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  transition: background .2s;
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-cat-nav__cta button:hover {
  background: var(--nb-brand-dark);
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
body.home .hp-cat-cards__section {
  background: var(--nb-white);
}
body.home .hp-cat-cards__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}
body.home .hp-cat-card {
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all .25s;
  display: block;
  box-shadow: var(--nb-shadow-sm);
}
body.home .hp-cat-card:hover {
  box-shadow: var(--nb-shadow-md);
  transform: translateY(-3px);
  border-color: var(--nb-brand);
}
body.home .hp-cat-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--nb-bg-faint);
  position: relative;
}
body.home .hp-cat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .4s ease;
}
body.home .hp-cat-card:hover .hp-cat-card__img img {
  transform: scale(1.04);
}
body.home .hp-cat-card__body {
  padding: 14px 16px;
  text-align: center;
  border-top: 1px solid var(--nb-border);
}
body.home .hp-cat-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--nb-black);
}

/* ============================================================
   WHAT WE DO (WWD)
   ============================================================ */
body.home .hp-wwd__section {
  background: var(--nb-bg-faint);
}
body.home .hp-wwd__wrap {
  max-width: var(--nb-max-w);
  margin: 0 auto;
  padding: 90px 48px;
}
body.home .hp-wwd__head {
  margin-bottom: 56px;
}
body.home .hp-wwd__row {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-bottom: 80px;
}
body.home .hp-wwd__row:last-child {
  margin-bottom: 0;
}
body.home .hp-wwd__row.reverse {
  flex-direction: row-reverse;
}
body.home .hp-wwd__img {
  width: 42%;
  flex-shrink: 0;
  height: 320px;
  border-radius: var(--nb-radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--nb-shadow-sm);
}
body.home .hp-wwd__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
body.home .hp-wwd__img:hover img {
  transform: scale(1.03);
}
body.home .hp-wwd__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--nb-border);
  border-radius: 6px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--nb-shadow-sm);
  z-index: 2;
}
body.home .hp-wwd__badge-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--nb-brand);
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-wwd__badge-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--nb-black);
  letter-spacing: .4px;
  text-transform: uppercase;
}
body.home .hp-wwd__cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
body.home .hp-wwd__card {
  background: var(--nb-white);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius-lg);
  padding: 24px 20px;
  transition: all .25s;
  box-shadow: var(--nb-shadow-sm);
}
body.home .hp-wwd__card:hover {
  box-shadow: var(--nb-shadow-md);
  transform: translateY(-2px);
  border-color: var(--nb-brand);
}
body.home .hp-wwd__bar {
  width: 20px;
  height: 2px;
  background: var(--nb-brand);
  margin-bottom: 14px;
}
body.home .hp-wwd__ct {
  font-size: 15px;
  font-weight: 600;
  color: var(--nb-black);
  margin-bottom: 8px;
}
body.home .hp-wwd__cd {
  font-size: 14px;
  color: var(--nb-text-mid);
  line-height: 1.65;
}

/* ============================================================
   SERVICES
   ============================================================ */
body.home .hp-services__section {
  background: var(--nb-white);
}
body.home .hp-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 29px;
  margin-top: 40px;
}
body.home .hp-service-card {
  background: var(--nb-bg-faint);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius-lg);
  padding: 40px 32px;
  transition: all .3s;
  box-shadow: var(--nb-shadow-sm);
  display: flex;
  flex-direction: column;
}
body.home .hp-service-card:hover {
  border-color: var(--nb-brand);
  transform: translateY(-3px);
  box-shadow: var(--nb-shadow-md);
}
body.home .hp-service-card__num {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--nb-brand-dark);
  line-height: 1;
  margin-bottom: 16px;
}
body.home .hp-service-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--nb-black);
  margin-bottom: 6px;
}
body.home .hp-service-card__sub {
  font-size: 12px;
  color: var(--nb-brand);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
body.home .hp-service-card__desc {
  font-size: 15px;
  color: var(--nb-text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}
body.home .hp-service-card__features {
  list-style: none;
  flex: 1;
  padding: 0;
  margin: 0;
}
body.home .hp-service-card__features li {
  font-size: 14px;
  color: var(--nb-text-mid);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--nb-border);
}
body.home .hp-service-card__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--nb-brand);
  flex-shrink: 0;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
body.home .hp-why__section {
  background: var(--nb-bg-faint);
}
body.home .hp-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
body.home .hp-why-card {
  background: var(--nb-white);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius-lg);
  padding: 32px 28px;
  transition: all .25s;
  box-shadow: var(--nb-shadow-sm);
}
body.home .hp-why-card:hover {
  box-shadow: var(--nb-shadow-md);
  transform: translateY(-2px);
  border-color: var(--nb-brand);
}
body.home .hp-why-card__icon {
  width: 44px;
  height: 44px;
  background: var(--nb-brand-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
body.home .hp-why-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--nb-black);
  margin-bottom: 10px;
  line-height: 1.35;
}
body.home .hp-why-card p {
  font-size: 14px;
  color: var(--nb-text-mid);
  line-height: 1.75;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
body.home .hp-products__section {
  background: var(--nb-bg-faint);
}
body.home .hp-featured-cat {
  margin-bottom: 48px;
}
body.home .hp-featured-cat:last-child {
  margin-bottom: 0;
}
body.home .hp-featured-cat__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--nb-border);
}
body.home .hp-featured-cat__title {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--nb-black);
}
body.home .hp-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
body.home .hp-featured-cat .hp-products__grid {
  margin-top: 16px;
}
body.home .hp-product-card {
  background: var(--nb-white);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius-lg);
  overflow: hidden;
  transition: all .3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  box-shadow: var(--nb-shadow-sm);
}
body.home .hp-product-card:hover {
  box-shadow: var(--nb-shadow-md);
  transform: translateY(-3px);
  border-color: var(--nb-brand);
}
body.home .hp-product-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--nb-bg-faint);
  position: relative;
  flex-shrink: 0;
  border-bottom: 1px solid var(--nb-border);
}
body.home .hp-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s ease;
}
body.home .hp-product-card:hover .hp-product-card__img img {
  transform: scale(1.04);
}
body.home .hp-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background: var(--nb-brand);
  color: var(--nb-white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-product-card__body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
body.home .hp-product-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--nb-black);
  line-height: 1.4;
  margin-bottom: 8px;
}
body.home .hp-product-card__meta {
  font-size: 13px;
  color: var(--nb-text-muted);
  margin-bottom: 20px;
  flex: 1;
  line-height: 1.6;
}
body.home .hp-product-card__footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--nb-border);
}
body.home .hp-product-card__moq {
  font-size: 11px;
  font-weight: 700;
  color: var(--nb-text-mid);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 1.5;
  flex: 1;
}
body.home .hp-product-card__cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--nb-brand);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   FABRICS
   ============================================================ */
body.home .hp-fabrics__section {
  background: var(--nb-white);
}
body.home .hp-fabrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
body.home .hp-fabric-card {
  background: var(--nb-white);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius-lg);
  overflow: hidden;
  transition: all .25s;
  box-shadow: var(--nb-shadow-sm);
  display: flex;
  flex-direction: column;
}
body.home .hp-fabric-card:hover {
  box-shadow: var(--nb-shadow-md);
  transform: translateY(-2px);
  border-color: var(--nb-brand);
}
body.home .hp-fabric-card__img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--nb-bg-faint);
  border-bottom: 1px solid var(--nb-border);
}
body.home .hp-fabric-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
body.home .hp-fabric-card:hover .hp-fabric-card__img img {
  transform: scale(1.04);
}
body.home .hp-fabric-card__body {
  padding: 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
body.home .hp-fabric-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--nb-black);
  margin-bottom: 8px;
}
body.home .hp-fabric-card__desc {
  font-size: 13px;
  color: var(--nb-text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}
body.home .hp-fabric-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
body.home .hp-fabric-card__tag {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--nb-brand-light);
  color: var(--nb-brand-dark);
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-fabric-card__read-more,
body.home .hp-fabrics__section .hp-sec-foot {
  display: none;
}

/* ============================================================
   TECHNOLOGY
   ============================================================ */
body.home .hp-tech__section {
  background: var(--nb-bg-faint);
}
body.home .hp-tech__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
body.home .hp-tech__visual {
  border-radius: var(--nb-radius-lg);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--nb-shadow-md);
}
body.home .hp-tech__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.home .hp-tech__points {
  display: flex;
  flex-direction: column;
}
body.home .hp-tech__point {
  padding: 24px 0;
  border-bottom: 1px solid var(--nb-border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
body.home .hp-tech__point:first-child {
  padding-top: 0;
}
body.home .hp-tech__point:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
body.home .hp-tech__point-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--nb-brand-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.home .hp-tech__point-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--nb-black);
  margin-bottom: 6px;
  letter-spacing: .2px;
  text-transform: uppercase;
}
body.home .hp-tech__point-body p {
  font-size: 14px;
  color: var(--nb-text-mid);
  line-height: 1.75;
}
body.home .hp-tech__cta {
  margin-top: 40px;
}

body.home .hp-tech__sourcing-link {
  margin-top: 20px;
  font-size: 14px;
  color: var(--nb-text-muted);
}
body.home .hp-tech__sourcing-link a {
  color: var(--nb-text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--nb-border);
  transition: border-color .2s ease;
}
body.home .hp-tech__sourcing-link a:hover {
  border-color: var(--nb-brand);
  color: var(--nb-brand);
}

/* ============================================================
   QUALITY
   ============================================================ */
body.home .hp-quality__section {
  background: var(--nb-white);
}
body.home .hp-quality__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
body.home .hp-quality-card {
  background: var(--nb-bg-faint);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius-lg);
  padding: 40px 32px;
  box-shadow: var(--nb-shadow-sm);
}
body.home .hp-quality-card__step-num {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--nb-brand-light);
  line-height: 1;
  margin-bottom: 12px;
  -webkit-text-stroke: 1.5px var(--nb-brand);
}
body.home .hp-quality-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--nb-black);
  margin-bottom: 10px;
  letter-spacing: .2px;
  text-transform: uppercase;
}
body.home .hp-quality-card p {
  font-size: 14px;
  color: var(--nb-text-mid);
  line-height: 1.75;
}
body.home .hp-quality-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  background: var(--nb-brand-light);
  color: var(--nb-brand);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 3px;
}
body.home .hp-quality__guarantee {
  margin-top: 40px;
  background: var(--nb-white);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: var(--nb-shadow-sm);
}
body.home .hp-quality__guarantee-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--nb-brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.home .hp-quality__guarantee-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--nb-black);
  margin-bottom: 6px;
}
body.home .hp-quality__guarantee-text p {
  font-size: 15px;
  color: var(--nb-text-mid);
  line-height: 1.75;
}

/* ============================================================
   ABOUT (WWA)
   ============================================================ */
body.home .hp-about__section {
  background: var(--nb-bg-faint);
}
body.home .hp-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
body.home .hp-about__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--nb-brand);
  margin-bottom: 16px;
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-about__title {
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--nb-black);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -.5px;
}
body.home .hp-about__body {
  font-size: 16px;
  color: var(--nb-text-mid);
  line-height: 1.85;
  margin-bottom: 32px;
}
body.home .hp-about__btns {
  display: flex;
  gap: 16px;
}
body.home .hp-about__img {
  height: 440px;
  border-radius: var(--nb-radius-lg);
  overflow: hidden;
  box-shadow: var(--nb-shadow-md);
}
body.home .hp-about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.home .hp-about__video-cover {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
body.home .hp-about__play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.65);
  color: var(--nb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
body.home .hp-about__video-cover:hover .hp-about__play-btn {
  background: rgba(0,0,0,.85);
  transform: scale(1.08);
}

/* ============================================================
   PROCESS
   ============================================================ */
body.home .hp-process__section {
  background: var(--nb-white);
}
body.home .hp-process__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  margin-top: 48px;
}
body.home .hp-process__grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--nb-border);
  z-index: 0;
}
body.home .hp-process__step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}
body.home .hp-process__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--nb-bg-faint);
  border: 1px solid var(--nb-border);
  margin-bottom: 14px;
  box-shadow: var(--nb-shadow-sm);
}
body.home .hp-process__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.home .hp-process__dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--nb-white);
  border: 1.5px solid var(--nb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--nb-black);
  margin: 0 auto 12px;
  transition: all .25s;
  box-shadow: var(--nb-shadow-sm);
}
body.home .hp-process__step:hover .hp-process__dot {
  background: var(--nb-brand);
  border-color: var(--nb-brand);
  color: var(--nb-white);
}
body.home .hp-process__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--nb-black);
  margin-bottom: 5px;
}
body.home .hp-process__desc {
  font-size: 12px;
  color: var(--nb-text-muted);
  line-height: 1.55;
}
body.home .hp-process__time {
  font-size: 11px;
  color: var(--nb-brand);
  font-weight: 700;
  margin-top: 6px;
}

/* ============================================================
   FAQ + CTA
   ============================================================ */
body.home .hp-faq__section {
  background: var(--nb-bg-faint);
}
body.home .hp-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
body.home .hp-faq__list {
  display: flex;
  flex-direction: column;
}
body.home .hp-faq__item {
  border-bottom: 1px solid var(--nb-border);
}
body.home .hp-faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: 'Roboto', sans-serif;
}
body.home .hp-faq__q span:first-child {
  font-size: 15px;
  font-weight: 600;
  color: var(--nb-black);
  flex: 1;
  line-height: 1.4;
}
body.home .hp-faq__plus {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
body.home .hp-faq__plus::before,
body.home .hp-faq__plus::after {
  content: '';
  position: absolute;
  background: var(--nb-brand);
  border-radius: 1px;
  transition: transform .2s, opacity .2s;
}
body.home .hp-faq__plus::before {
  width: 2px;
  height: 12px;
  top: 4px;
  left: 9px;
}
body.home .hp-faq__plus::after {
  width: 12px;
  height: 2px;
  top: 9px;
  left: 4px;
}
body.home .hp-faq__q[aria-expanded="true"] .hp-faq__plus::before {
  transform: rotate(90deg);
  opacity: 0;
}
body.home .hp-faq__a {
  padding: 0 0 22px;
}
body.home .hp-faq__a p {
  font-size: 15px;
  color: var(--nb-text-mid);
  line-height: 1.8;
}
body.home .hp-cta-box {
  background: var(--nb-white);
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius-lg);
  padding: 40px;
  position: sticky;
  top: 112px;
  box-shadow: var(--nb-shadow-md);
}
body.home .hp-cta-box__kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--nb-brand);
  margin-bottom: 12px;
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-cta-box h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--nb-black);
  margin-bottom: 8px;
  letter-spacing: -.5px;
}
body.home .hp-cta-box > p {
  color: var(--nb-text-mid);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.7;
}
body.home .hp-cta-box__points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
body.home .hp-cta-box__point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--nb-text-mid);
  font-size: 14px;
  font-weight: 500;
}
body.home .hp-cta-box__point-dot {
  width: 6px;
  height: 6px;
  background: var(--nb-brand);
  border-radius: 50%;
  flex-shrink: 0;
}
body.home .hp-btn--pink-full {
  background: var(--nb-brand);
  color: var(--nb-white);
  border: none;
  width: 100%;
  padding: 16px;
  border-radius: var(--nb-radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  font-family: 'Roboto Condensed', sans-serif;
  margin-bottom: 12px;
  transition: background .2s;
  display: block;
  text-align: center;
  text-decoration: none;
}
body.home .hp-btn--pink-full:hover {
  background: var(--nb-brand-dark);
  color: var(--nb-white);
}
body.home .hp-cta-box__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border-radius: var(--nb-radius);
  background: #25d366;
  color: var(--nb-white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s;
}
body.home .hp-cta-box__wa:hover {
  opacity: .9;
  color: var(--nb-white);
}
body.home .hp-cta-box__note {
  text-align: center;
  font-size: 12px;
  color: var(--nb-text-muted);
  margin-top: 12px;
}

/* ============================================================
   MODAL
   ============================================================ */
body.home .hp-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
body.home .hp-modal__overlay.hp-modal--open {
  display: flex;
}
body.home .hp-modal__box {
  background: var(--nb-white);
  border-radius: var(--nb-radius-lg);
  width: 100%;
  max-width: 540px;
  box-shadow: 0 24px 60px rgba(0,0,0,.15);
  border: 1px solid var(--nb-border);
  position: relative;
  animation: nbModalSlide .35s cubic-bezier(.16,1,.3,1);
}
@keyframes nbModalSlide {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
body.home .hp-modal__header {
  padding: 24px 32px 18px;
  border-bottom: 1px solid var(--nb-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.home .hp-modal__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--nb-black);
}
body.home .hp-modal__close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--nb-text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .2s;
}
body.home .hp-modal__close:hover {
  background: var(--nb-bg-faint);
  color: var(--nb-black);
}
body.home .hp-modal__body {
  padding: 24px 32px 32px;
}
/* WPForms styling inside inquiry modal & CTA box */
body.home .hp-modal__body .wpforms-container,
body.home .hp-cta-box .wpforms-container { margin: 0; }
body.home .hp-modal__body .wpforms-field,
body.home .hp-cta-box .wpforms-field {
  margin-bottom: 20px;
  padding: 0;
}
body.home .hp-modal__body .wpforms-field-label,
body.home .hp-cta-box .wpforms-field-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--nb-black);
  font-family: 'Roboto Condensed', sans-serif;
}
body.home .hp-modal__body .wpforms-required-label,
body.home .hp-cta-box .wpforms-required-label { color: var(--nb-brand); }
body.home .hp-modal__body .wpforms-field input[type="text"],
body.home .hp-modal__body .wpforms-field input[type="email"],
body.home .hp-modal__body .wpforms-field input[type="tel"],
body.home .hp-modal__body .wpforms-field textarea,
body.home .hp-modal__body .wpforms-field select,
body.home .hp-cta-box .wpforms-field input[type="text"],
body.home .hp-cta-box .wpforms-field input[type="email"],
body.home .hp-cta-box .wpforms-field input[type="tel"],
body.home .hp-cta-box .wpforms-field textarea,
body.home .hp-cta-box .wpforms-field select {
  width: 100%;
  max-width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--nb-border);
  border-radius: var(--nb-radius);
  font-family: inherit;
  font-size: 14px;
  transition: all .2s;
  background: var(--nb-bg-faint);
  color: var(--nb-text);
  height: auto;
}
body.home .hp-modal__body .wpforms-field input:focus,
body.home .hp-modal__body .wpforms-field textarea:focus,
body.home .hp-modal__body .wpforms-field select:focus,
body.home .hp-cta-box .wpforms-field input:focus,
body.home .hp-cta-box .wpforms-field textarea:focus,
body.home .hp-cta-box .wpforms-field select:focus {
  outline: none;
  border-color: var(--nb-brand);
  background: var(--nb-white);
  box-shadow: 0 0 0 3px var(--nb-brand-light);
}
body.home .hp-modal__body .wpforms-submit,
body.home .hp-cta-box .wpforms-submit {
  background: var(--nb-black);
  color: var(--nb-white);
  border: none;
  width: 100%;
  padding: 13px;
  border-radius: var(--nb-radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  font-family: 'Roboto Condensed', sans-serif;
  transition: all .2s;
  text-transform: uppercase;
}
body.home .hp-modal__body .wpforms-submit:hover,
body.home .hp-cta-box .wpforms-submit:hover {
  background: var(--nb-brand);
}
body.home .hp-modal__body .wpforms-submit-container,
body.home .hp-cta-box .wpforms-submit-container { padding: 0; }
body.home .hp-modal__body .wpforms-submit-spinner,
body.home .hp-cta-box .wpforms-submit-spinner { display: none; }
body.home .hp-modal__body .wpforms-error-noscript,
body.home .hp-modal__body #wpforms-error-noscript,
body.home .hp-cta-box .wpforms-error-noscript,
body.home .hp-cta-box #wpforms-error-noscript { display: none; }
body.home .hp-modal__body .wpforms-confirmation-container,
body.home .hp-cta-box .wpforms-confirmation-container,
body.home .hp-modal__body .wpforms-confirmation,
body.home .hp-cta-box .wpforms-confirmation {
  color: var(--nb-black);
  background: transparent;
  border: none;
  padding: 0;
}
body.home .hp-modal__body .wpforms-confirmation-container p,
body.home .hp-cta-box .wpforms-confirmation-container p,
body.home .hp-modal__body .wpforms-confirmation p,
body.home .hp-cta-box .wpforms-confirmation p {
  color: var(--nb-black);
}

/* ============================================================
   TOAST
   ============================================================ */
body.home .hp-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--nb-black);
  color: var(--nb-white);
  padding: 14px 24px;
  border-radius: var(--nb-radius);
  box-shadow: var(--nb-shadow-md);
  font-weight: 600;
  font-size: 13px;
  z-index: 1000;
  display: none;
  border-left: 3px solid var(--nb-brand);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
body.home .hp-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
body.home .hp-fade-up.hp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  body.home .hp-hero {
    grid-template-columns: 1fr;
    height: 420px;
  }
  body.home .hp-hero__left {
    padding: 48px 24px;
  }
  body.home .hp-hero__right {
    height: 420px;

  }
  body.home .hp-hero__cert-bar {
    position: static;
    flex-wrap: wrap;
    gap: 24px;
    padding: 16px 24px;
    height: 420px;
  }
  body.home .hp-hero__title {
    font-size: 40px;
  }
  body.home .hp-cat-nav__inner {
    overflow-x: auto;
    padding: 0 24px;
  }
  body.home .hp-wwd__row,
  body.home .hp-wwd__row.reverse {
    flex-direction: column;
  }
  body.home .hp-wwd__img {
    width: 100%;
    height: auto; aspect-ratio: 4/3;
  }
  body.home .hp-wwd__cards {
    grid-template-columns: 1fr;
  }
  body.home .hp-tech__grid {
    grid-template-columns: 1fr;
  }
  body.home .hp-tech__visual {
    height: 300px;
  }
  body.home .hp-process__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  body.home .hp-faq__grid {
    grid-template-columns: 1fr;
  }
  body.home .hp-cat-cards__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1023px) {
  body.home .hp-cat-cards__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  body.home .hp-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-fabrics__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-process__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 834px) {
  body.home .hp-hero__right {
    height: 360px;
  }
  body.home .hp-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 32px;
  }
  body.home .hp-hero__title {
    font-size: 36px;
  }
  body.home .hp-hero__btns {
    flex-direction: column;
    align-items: stretch;
  }
  body.home .hp-cat-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-fabrics__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-quality__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-about__inner {
    grid-template-columns: 1fr;
  }
  body.home .hp-faq__grid {
    grid-template-columns: 1fr;
  }
  body.home .hp-wwd__row,
  body.home .hp-wwd__row.reverse {
    flex-direction: column;
  }
  body.home .hp-wwd__img {
    width: 100%;
    height: auto; aspect-ratio: 4/3;
  }
  body.home .hp-product-card__img {
    aspect-ratio: 3/4;
  }
}

@media (max-width: 767px) {
  body.home .hp-w {
    padding: 0 20px;
  }
  body.home .hp-section {
    padding: 56px 0;
  }
  body.home .hp-hero__left {
    padding: 32px 20px;
  }
  body.home .hp-hero__title {
    font-size: 32px;
  }
  body.home .hp-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
  }
  body.home .hp-hero__stat strong {
    font-size: 29px;
  }
  body.home .hp-hero__right {
    height: 260px;
  }
  body.home .hp-services__grid {
    grid-template-columns: 1fr;
  }
  body.home .hp-why__grid {
    grid-template-columns: 1fr;
  }
  body.home .hp-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  body.home .hp-fabrics__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-quality__grid {
    grid-template-columns: 1fr;
  }
  body.home .hp-about__inner {
    grid-template-columns: 1fr;
  }
  body.home .hp-about__img {
    height: 280px;
  }
  body.home .hp-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-cat-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home .hp-cat-nav__item {
    padding: 0 13px;
    font-size: 12px;
  }
  body.home .hp-sec-title {
    font-size: 26px;
  }
  body.home .hp-product-card__img {
    aspect-ratio: 4/5;
  }
}