/**
 * 主题覆盖样式 - 原在 functions.php 中通过 wp_add_inline_style 注入
 * 移入此文件便于维护
 */

/* ============================================
   首页视频模块
   ============================================ */
.home-video-module {
    padding: 56px 0 64px;
    background: #eef0f2;
    position: relative;
}
.home-video-module.home-video-short-style .home-video-inner {
    width: 94% !important;
    max-width: 1600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0;
    box-sizing: border-box;
}
.home-video-module .home-video-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px;
}
.home-video-module .home-video-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.02em;
}
.home-video-module .home-video-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.home-video-module .home-video-prev::after,
.home-video-module .home-video-next::after {
    content: none !important;
    display: none !important;
}
.home-video-module .home-video-prev,
.home-video-module .home-video-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(7, 90, 97, 0.25);
    background: var(--primary-color, #075a61);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
    box-shadow: 0 2px 12px rgba(7, 90, 97, 0.2), 0 1px 3px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}
.home-video-module .home-video-prev:focus,
.home-video-module .home-video-next:focus {
    outline: none;
}
.home-video-module .home-video-prev:focus-visible,
.home-video-module .home-video-next:focus-visible {
    outline: 2px solid var(--primary-color, #075a61);
    outline-offset: 2px;
}
.home-video-module .home-video-prev svg,
.home-video-module .home-video-next svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.2;
    transition: transform 0.2s ease;
}
.home-video-module .home-video-prev:hover,
.home-video-module .home-video-next:hover {
    background: #054248;
    border-color: rgba(7, 90, 97, 0.4);
    transform: scale(1.06);
    box-shadow: 0 4px 20px rgba(7, 90, 97, 0.3), 0 2px 6px rgba(0, 0, 0, 0.08);
}
.home-video-module .home-video-prev:active,
.home-video-module .home-video-next:active {
    transform: scale(0.97);
}
.home-video-module .home-video-prev.swiper-button-disabled,
.home-video-module .home-video-next.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}
.home-video-module .home-video-carousel {
    overflow: hidden;
    padding: 4px 0;
}
.home-video-module .home-video-carousel .swiper-wrapper {
    align-items: stretch;
}
.home-video-module .home-video-carousel .swiper-slide {
    width: 300px !important;
    flex-shrink: 0 !important;
    height: auto;
}
.home-video-module .home-video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 9/16;
    max-height: 500px;
    width: 100%;
    background: #1a1a1a;
    cursor: pointer;
}
.home-video-module .home-video-card .p_video {
    position: relative;
    height: 100%;
}
.home-video-module .home-video-card .p_video .cover {
    position: absolute;
    inset: 0;
    display: block;
}
.home-video-module .home-video-card .coverImage {
    position: absolute;
    inset: 0;
}
.home-video-module .home-video-card .coverImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.home-video-module .home-video-card .cover-gradient {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 35%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    pointer-events: none;
}
.home-video-module .home-video-card .cover-play {
    position: absolute;
    right: 10px;
    top: 10px;
    left: auto;
    z-index: 2;
    opacity: 0.95;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    backdrop-filter: blur(4px);
}
.home-video-module .home-video-card .cover-play svg {
    width: 20px;
    height: 20px;
    display: block;
    margin-left: 2px;
}
.home-video-module .home-video-card:hover .cover-play {
    transform: scale(1.06);
    background: rgba(255, 255, 255, 0.55);
}
.home-video-module .home-video-card .cover-title {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 25px;
    z-index: 2;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    padding: 20px 12px 14px;
}
.home-video-module .home-video-more {
    display: inline-block;
    margin-top: 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color, #075a61);
    text-decoration: none;
}
.home-video-module .home-video-more:hover {
    text-decoration: underline;
}
.home-video-module .videoBox {
    position: absolute !important;
    inset: 0 !important;
    background: #000 !important;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.home-video-module .videoBox.show {
    opacity: 1;
    pointer-events: auto;
}
.home-video-module .home-video-card.playing .cover {
    opacity: 0;
    pointer-events: none;
}
.home-video-module .videoBox iframe,
.home-video-module .videoBox video {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: contain;
    display: block !important;
}
.home-video-module .closeVideo {
    position: absolute;
    top: 8px;
    right: 8px;
    margin: 0;
    border: none;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
}
.home-video-module .closeVideo:hover {
    background: rgba(0, 0, 0, 0.9);
}
@media (max-width: 640px) {
    .home-video-module .home-video-carousel .swiper-slide {
        width: 200px !important;
    }
    .home-video-module .home-video-card {
        max-height: 400px;
    }
    .home-video-module .home-video-card .cover-title {
        font-size: 13px;
    }
}

/* ============================================
   产品列表页 - 侧边栏询盘表单
   ============================================ */
#c_grid-1688528391769 .product-sidebar-inquiry {
    margin-top: 16px !important;
    padding: 0 !important;
    border: none !important;
    background: #fff !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
}
#c_grid-1688528391769 .product-sidebar-inquiry .cbox-4-0 {
    padding: 0 !important;
    background: transparent !important;
}
#c_grid-1688528391769 .product-sidebar-inquiry .e_text-18 {
    margin: 0 !important;
    padding: 10px 15px !important;
    background: var(--primary-color, #075a61) !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    border-radius: 10px 10px 0 0 !important;
    text-align: left !important;
}
#c_grid-1688528391769 .product-sidebar-inquiry .sidebar-inquiry-form {
    margin: 0 !important;
    padding: 14px 15px 16px !important;
    background: #fff !important;
}
#c_grid-1688528391769 .product-sidebar-inquiry .sidebar-inquiry-form .form-field-wrapper,
#c_grid-1688528391769 .product-sidebar-inquiry .sidebar-inquiry-form .form-group,
#c_grid-1688528391769 .product-sidebar-inquiry .sidebar-inquiry-form p {
    margin-bottom: 10px !important;
}
#c_grid-1688528391769 .product-sidebar-inquiry .sidebar-inquiry-form .form-field-wrapper:last-child,
#c_grid-1688528391769 .product-sidebar-inquiry .sidebar-inquiry-form .form-group:last-child,
#c_grid-1688528391769 .product-sidebar-inquiry .sidebar-inquiry-form p:last-child {
    margin-bottom: 0 !important;
}
#c_grid-1688528391769 .product-sidebar-inquiry .sidebar-inquiry-form label {
    margin-bottom: 4px !important;
}
#c_grid-1688528391769 .product-sidebar-inquiry .sidebar-inquiry-form input,
#c_grid-1688528391769 .product-sidebar-inquiry .sidebar-inquiry-form textarea,
#c_grid-1688528391769 .product-sidebar-inquiry .sidebar-inquiry-form select {
    width: 100% !important;
    max-width: 100% !important;
    padding: 8px 12px !important;
    margin: 0 !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    box-sizing: border-box !important;
}
#c_grid-1688528391769 .product-sidebar-inquiry .sidebar-inquiry-form .btn,
#c_grid-1688528391769 .product-sidebar-inquiry .sidebar-inquiry-form button[type="submit"],
#c_grid-1688528391769 .product-sidebar-inquiry .sidebar-inquiry-form input[type="submit"] {
    width: 100% !important;
    margin-top: 6px !important;
    padding: 10px 14px !important;
    background: var(--primary-color, #075a61) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-size: 14px !important;
}

/* ============================================
   表单 radio-group 单选组样式（询价/联系表单通用）
   ============================================ */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin: 0;
    padding: 0;
}
.radio-group .radio-item {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    transition: all 0.25s ease;
    position: relative;
    padding-left: 32px;
}
.radio-group .radio-item::before {
    content: '';
    position: absolute;
    left: 12px;
    width: 14px;
    height: 14px;
    border: 2px solid #bbb;
    border-radius: 50%;
    background: #fff;
    transition: all 0.2s ease;
}
.radio-group .radio-item:has(input[type="radio"]:checked)::before {
    border-color: var(--primary-color, #075a61);
    border-width: 2px;
    background: #fff;
}
.radio-group .radio-item:has(input[type="radio"]:checked)::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color, #075a61);
}
.radio-group .radio-item:hover {
    border-color: rgba(var(--primary-rgb, 7, 90, 97), 0.5);
    background: rgba(var(--primary-rgb, 7, 90, 97), 0.04);
}
.radio-group .radio-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}
.radio-group .radio-item input[type="radio"]:checked + .radio-label,
.radio-group .radio-item:has(input[type="radio"]:checked) .radio-label {
    color: var(--primary-color, #075a61);
    font-weight: 600;
}
.radio-group .radio-item:has(input[type="radio"]:checked) {
    border-color: var(--primary-color, #075a61);
    background: rgba(var(--primary-rgb, 7, 90, 97), 0.08);
}
.radio-group .radio-label {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    user-select: none;
}
.radio-group .radio-item input[type="radio"]:focus-visible + .radio-label {
    outline: 2px solid var(--primary-color, #075a61);
    outline-offset: 2px;
    border-radius: 2px;
}

/* ============================================
   产品详情页 - 主图与布局
   ============================================ */
.magnifier-container .images-cover {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    display: block !important;
}
.magnifier-container .images-cover .image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.magnifier-container .images-cover .image-item:first-child {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}
.magnifier-container .images-cover:has(.active) .image-item {
    opacity: 0;
}
.magnifier-container .images-cover:has(.active) .image-item.active {
    opacity: 1 !important;
    pointer-events: auto;
    z-index: 1;
    visibility: visible;
}
.magnifier-container .images-cover .image-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    vertical-align: top;
}
.product-detail-page .thumbnail_box li.cur .small-img,
.product-detail-page .thumbnail_box li.is-active .small-img {
    border: 2px solid #0056b3;
    box-sizing: border-box;
    cursor: pointer;
}
.product-detail-page .thumbnail_box .small-img {
    cursor: pointer;
}
.product-detail-page #c_static_001_P_31422-17097199125140 {
    padding-top: 90px !important;
}
.product-detail-page #c_grid-1698308742280 {
    padding-top: 40px !important;
}
@media screen and (max-width: 768px) {
    .product-detail-page #c_static_001_P_31422-17097199125140 {
        padding-top: 20px !important;
    }
    .product-detail-page #c_grid-1698308742280 {
        padding-top: 24px !important;
    }
    .product-detail-page #c_grid-1698308758893 {
        width: 100% !important;
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }
    .product-detail-page #magnifierWrapper .images-cover,
    .product-detail-page #magnifierWrapper2 .images-cover {
        min-height: 260px !important;
    }
    .product-detail-page #c_product_detail_081_P_012-16983086324570 .e_container-79 {
        display: flex !important;
        flex-direction: column !important;
    }
    .product-detail-page #c_product_detail_081_P_012-16983086324570 .e_container-79 .cbox-79-0 {
        display: block !important;
    }
    .product-detail-page #c_product_detail_081_P_012-16983086324570 .e_magnifier-80 {
        min-height: 280px !important;
    }
}

/* 产品相册 - 鼠标悬停放大镜 */
.product-detail-page .magnifier-container {
    position: relative;
    cursor: crosshair;
}
.product-detail-page .magnifier-container .move-view {
    display: none;
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
    pointer-events: none;
}
.product-detail-page .magnifier {
    position: relative;
}
.product-detail-page .magnifier .magnifier-view {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 12px;
    width: 420px;
    height: 420px;
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    z-index: 11;
}
/* 右侧栏相册：放大镜显示在左侧，宽度紧贴列宽 */
.product-detail-page #magnifierWrapper2 .magnifier-view {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 12px;
    width: 100%;
    max-width: 320px;
    height: 320px;
}
.product-detail-page .magnifier .magnifier-view img {
    position: absolute;
    display: block;
    max-width: none;
}
@media (max-width: 1024px) {
    .product-detail-page .magnifier .magnifier-view {
        left: 50%;
        right: auto;
        top: 100%;
        margin-left: -160px;
        margin-right: 0;
        margin-top: 12px;
    }
}
@media (max-width: 768px) {
    .product-detail-page .magnifier .magnifier-view,
    #magnifierWrapper .magnifier-view,
    #magnifierWrapper2 .magnifier-view {
        width: 280px !important;
        max-width: 280px !important;
        height: 280px !important;
        margin-left: -140px;
    }
}

/* ============================================
   首页关于我们 - 背景图由后台控制，覆盖 min 中的硬编码
   ============================================ */
#c_static_001-1709520661508 {
    background-image: none;
    min-height: 300px;
    background-repeat: no-repeat;
    background-position: top center;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f2f2f2;
}

/* ============================================
   Join 页面 - 主体内容上下边距
   ============================================ */
.join-page-content {
    padding-top: 48px;
    padding-bottom: 64px;
}
@media (max-width: 768px) {
    .join-page-content {
        padding-top: 32px;
        padding-bottom: 40px;
    }
}

/* ============================================
   Solutions/Capacity 页面
   ============================================ */
#c_grid-1663898732345 {
    width: 94% !important;
    max-width: 1640px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.solution-recommend-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #eee;
}
.solution-recommend-section .e_loop-11 .p_list {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}
@media (max-width: 1024px) {
    .solution-recommend-section .e_loop-11 .p_list {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 768px) {
    .solution-recommend-section .e_loop-11 .p_list {
        grid-template-columns: 1fr !important;
    }
}
.solution-cta-section {
    margin-top: 48px;
    margin-bottom: 0 !important;
    padding: 56px 40px !important;
    background: linear-gradient(135deg, rgba(var(--primary-rgb, 7, 90, 97), 0.1), rgba(var(--primary-rgb, 7, 90, 97), 0.03)) !important;
    text-align: center;
}
.solution-cta-section .e_text-5 {
    font-size: 28px !important;
    font-weight: 700 !important;
    margin: 0 0 16px !important;
    color: #1a1a1a !important;
    letter-spacing: 0.02em;
}
.solution-cta-section .e_richText-6 p {
    margin: 0 0 24px !important;
    color: #444 !important;
    line-height: 1.8 !important;
    font-size: 16px;
}
.solution-cta-section .e_button-18 {
    display: inline-block;
    padding: 14px 36px !important;
    background: var(--primary-color, #075a61) !important;
    color: #fff !important;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.25s;
    box-shadow: 0 4px 14px rgba(var(--primary-rgb, 7, 90, 97), 0.3);
}
.solution-cta-section .e_button-18:hover {
    background: var(--primary-color-dark, #054248) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb, 7, 90, 97), 0.4);
}

/* ============================================
   Factory Center 页面
   ============================================ */
#c_static_001_P_45884-1716879409687 .e_loop-11 .p_loopitem .e_image-13 img,
#c_static_001_P_45884-1716879409687 .e_loop-11 .p_loopitem:hover .e_image-13 img {
    transform: none !important;
    transition: none !important;
}
#c_static_001_P_45884-1716879409687 .e_loop-11 .p_loopitem .e_container-12::before,
#c_static_001_P_45884-1716879409687 .e_loop-11 .p_loopitem .e_container-12::after,
#c_static_001_P_45884-1716879409687 .e_loop-11 .p_loopitem .e_image-13::before,
#c_static_001_P_45884-1716879409687 .e_loop-11 .p_loopitem .e_image-13::after,
#c_static_001_P_45884-1716879409687 .e_loop-11 .p_loopitem .cbox-12-0::before,
#c_static_001_P_45884-1716879409687 .e_loop-11 .p_loopitem .cbox-12-0::after {
    display: none !important;
    background: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* ============================================
   响应式 - TN_Nav 移动菜单
   ============================================ */
@media screen and (max-width: 768px) {
    #c_navigation_006_P_2439-17048588756570 .e_navigationF-30 .p_navBox1.pkcclb {
        height: calc(100vh);
    }
    #c_navigation_006_P_2439-17048588756570 .e_navigationF-30 .p_navItem1.is-open .p_navBox2 {
        display: block !important;
    }
}
@media screen and (max-width: 1024px) {
    .TN_Nav .p_navBox1 {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        max-width: 85vw;
        background: #fff;
        box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
        z-index: 100002;
        overflow-y: auto;
        transition: right 0.3s ease;
        pointer-events: auto;
    }
    .TN_Nav .p_navBox1.pkcclb {
        height: calc(100vh);
    }
    .TN_Nav.nav-open .p_navBox1 {
        right: 0;
        pointer-events: auto;
    }
    .TN_Nav.nav-open .p_navBox1 a,
    .TN_Nav.nav-open .p_navBox1 .p_navCon {
        pointer-events: auto;
        cursor: pointer;
    }
    .TN_Nav.nav-open .p_navButton {
        position: relative;
        z-index: 100003;
        pointer-events: auto;
    }
    .TN_Nav .p_navItem1 .p_navBox2 {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }
    .TN_Nav .p_navItem1.is-open .p_navBox2 {
        max-height: 500px;
    }
    .TN_Nav .p_navCon .p_jtIcon {
        transition: transform 0.25s ease;
    }
    .TN_Nav .p_navItem1.is-open .p_jtIcon {
        transform: rotate(90deg);
    }
}
@media screen and (min-width: 1025px) {
    .TN_Nav .p_navItem1 .p_navBox2 {
        max-height: none;
    }
}
.p_haveNav.fix {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100001;
    background: #fff;
}
body.mobile-nav-open {
    overflow: hidden;
}
#c_navigation_006_P_2439-17048588756570 .e_navigationD-31 .p_level1Item {
    position: relative;
}
#c_navigation_006_P_2439-17048588756570 .e_navigationD-31 .p_level1Item:hover .p_level2Box,
#c_navigation_006_P_2439-17048588756570 .e_navigationD-31 .p_level1Item.is-open .p_level2Box {
    display: block !important;
}
@media screen and (min-width: 1025px) {
    #c_navigation_006_P_2439-17048588756570 .e_navigationF-30 .p_navItem2-has-children {
        position: relative;
    }
    #c_navigation_006_P_2439-17048588756570 .e_navigationF-30 .p_navItem2-has-children > .p_navBox2 {
        position: absolute;
        left: 100%;
        top: 0;
        margin-left: 0;
        min-width: 200px;
        padding: 15px 0;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.2s, visibility 0.2s;
    }
    #c_navigation_006_P_2439-17048588756570 .e_navigationF-30 .p_navItem2-has-children:hover > .p_navBox2 {
        opacity: 1 !important;
        visibility: visible !important;
    }
    #c_navigation_006_P_2439-17048588756570 .e_navigationF-30 .p_navItem2-has-children .p_navCon2 {
        align-items: center;
        padding-right: 8px;
    }
    #c_navigation_006_P_2439-17048588756570 .e_navigationF-30 .p_navItem2-has-children .p_navCon2 > a {
        flex: 1;
        min-width: 0;
    }
    #c_navigation_006_P_2439-17048588756570 .e_navigationF-30 .p_navItem2-has-children .p_navArrow3 {
        flex-shrink: 0;
        margin-left: 8px;
        margin-right: 12px;
        font-size: 16px;
        opacity: 0.7;
    }
}
@media screen and (max-width: 1024px) {
    #c_navigation_006_P_2439-17048588756570 .e_navigationF-30 .p_navItem2-has-children > .p_navBox2 {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }
    #c_navigation_006_P_2439-17048588756570 .e_navigationF-30 .p_navItem2-has-children.is-open > .p_navBox2 {
        max-height: 500px;
    }
    #c_navigation_006_P_2439-17048588756570 .e_navigationF-30 .p_navItem2-has-children .p_navArrow3 {
        transition: transform 0.25s;
    }
    #c_navigation_006_P_2439-17048588756570 .e_navigationF-30 .p_navItem2-has-children.is-open .p_navArrow3 {
        transform: rotate(90deg);
    }
}

/* ============================================
   页脚联系方式图标（支持 Font Awesome 自定义）
   ============================================ */
#c_static_001_P_39684-1709381537476 .e_container-44 .e_richText-56 i[class*="fa-"],
#c_static_001_P_39684-1709381537476 .e_container-44 .e_richText-56 i.fa {
    flex-shrink: 0;
    margin-right: 14px;
    width: 1.4em;
    font-size: 1.25em;
    text-align: center;
}

/* ============================================
   页脚分享图标
   ============================================ */
.e_websiteShareNew-50 .p_shareItem {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    color: #fff !important;
    margin-right: 10px;
    transition: opacity 0.2s;
}
.e_websiteShareNew-50 .p_shareItem:hover {
    opacity: 0.85;
}
.e_websiteShareNew-50 .p_shareItem i.fa {
    font-size: 16px;
}
.e_websiteShareNew-50 .p_shareItem[key="facebook"] {
    background: #3b5998;
}
.e_websiteShareNew-50 .p_shareItem[key="linkedin"] {
    background: #0a66c2;
}
.e_websiteShareNew-50 .p_shareItem[key="twitter"] {
    background: #1da1f2;
}
.e_websiteShareNew-50 .p_shareItem[key="tumblr"] {
    background: #35465c;
}
.e_websiteShareNew-50 .p_shareItem[key="pinterest"] {
    background: #bd081c;
}
.e_websiteShareNew-50 .p_share.horizontal .p_shareItem:last-child {
    margin-right: 0;
}

/* 页脚自定义社交媒体链接（后台设置） */
.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}
.footer-social-links .footer-social-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: var(--primary-color, #075a61);
    color: #fff !important;
    transition: opacity 0.2s, transform 0.2s;
    text-decoration: none;
}
.footer-social-links .footer-social-item:hover {
    opacity: 0.9;
    transform: scale(1.05);
}
.footer-social-links .footer-social-item i,
.footer-social-links .footer-social-item i.fab,
.footer-social-links .footer-social-item i.fas,
.footer-social-links .footer-social-item i.far {
    font-size: 18px !important;
    display: inline-block !important;
    width: 1em;
    text-align: center;
    color: inherit !important;
    font-style: normal;
}
.footer-social-links .footer-social-item[key="facebook"] {
    background: #3b5998;
}
.footer-social-links .footer-social-item[key="linkedin"] {
    background: #0a66c2;
}
.footer-social-links .footer-social-item[key="twitter"] {
    background: #1da1f2;
}
.footer-social-links .footer-social-item[key="youtube"] {
    background: #ff0000;
}
.footer-social-links .footer-social-item[key="instagram"] {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.footer-social-links .footer-social-item[key="pinterest"] {
    background: #bd081c;
}
.footer-social-links .footer-social-item[key="wechat"] {
    background: #07c160;
}
.footer-social-links .footer-social-item[key="whatsapp"] {
    background: #25d366;
}

/* ============================================
   产品详情页 - 产品简介富文本样式（ul/li/ol/strong 等）
   ============================================ */
#c_product_detail_081_P_012-16983086324570 .e_richText-56,
#c_product_detail_081_P_012-16983087824580 .e_richText-56 {
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
    display: block !important;
    -webkit-box-orient: unset !important;
}
#c_product_detail_081_P_012-16983086324570 .e_richText-56 ul,
#c_product_detail_081_P_012-16983086324570 .e_richText-56 ol,
#c_product_detail_081_P_012-16983087824580 .e_richText-56 ul,
#c_product_detail_081_P_012-16983087824580 .e_richText-56 ol {
    display: block;
    list-style-position: outside;
    margin: 0.5em 0;
    padding-left: 1.5em;
}
#c_product_detail_081_P_012-16983086324570 .e_richText-56 ul,
#c_product_detail_081_P_012-16983087824580 .e_richText-56 ul {
    list-style-type: disc;
}
#c_product_detail_081_P_012-16983086324570 .e_richText-56 ol,
#c_product_detail_081_P_012-16983087824580 .e_richText-56 ol {
    list-style-type: decimal;
}
#c_product_detail_081_P_012-16983086324570 .e_richText-56 li,
#c_product_detail_081_P_012-16983087824580 .e_richText-56 li {
    display: list-item;
    margin-bottom: 0.35em;
}
#c_product_detail_081_P_012-16983086324570 .e_richText-56 strong,
#c_product_detail_081_P_012-16983087824580 .e_richText-56 strong {
    font-weight: bold;
}

/* ============================================
   产品详情页 - 表格样式与响应式
   ============================================ */
#c_product_detail_081_P_012-16983086324570 .e_richText-85 table {
    width: 100%;
    min-width: 320px;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.5;
}
#c_product_detail_081_P_012-16983086324570 .e_richText-85 thead {
    background: var(--primary-color, #075a61);
    color: #fff;
}
#c_product_detail_081_P_012-16983086324570 .e_richText-85 thead th,
#c_product_detail_081_P_012-16983086324570 .e_richText-85 thead td {
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
#c_product_detail_081_P_012-16983086324570 .e_richText-85 tbody tr {
    transition: background-color 0.2s;
}
#c_product_detail_081_P_012-16983086324570 .e_richText-85 tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.03);
}
#c_product_detail_081_P_012-16983086324570 .e_richText-85 tbody tr:hover {
    background: rgba(var(--primary-rgb, 7, 90, 97), 0.06);
}
#c_product_detail_081_P_012-16983086324570 .e_richText-85 tbody td,
#c_product_detail_081_P_012-16983086324570 .e_richText-85 tbody th {
    padding: 10px 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
}
/* 表格横向滚动容器（table-wrapper 由 functions.php 自动添加） */
#c_product_detail_081_P_012-16983086324570 .e_richText-85 .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}
#c_product_detail_081_P_012-16983086324570 .e_richText-85 .table-wrapper table {
    margin: 0;
}
/* 移动端表格优化 */
@media screen and (max-width: 768px) {
    #c_product_detail_081_P_012-16983086324570 .e_richText-85 .table-wrapper {
        margin: 16px 0;
        border-radius: 4px;
    }
    #c_product_detail_081_P_012-16983086324570 .e_richText-85 thead th,
    #c_product_detail_081_P_012-16983086324570 .e_richText-85 thead td {
        padding: 10px 12px;
        font-size: 13px;
    }
    #c_product_detail_081_P_012-16983086324570 .e_richText-85 tbody td,
    #c_product_detail_081_P_012-16983086324570 .e_richText-85 tbody th {
        padding: 8px 12px;
        font-size: 13px;
    }
    #c_product_detail_081_P_012-16983086324570 .e_richText-85 table {
        margin: 0;
        font-size: 13px;
        display: table !important;
        overflow: visible !important;
    }
}
