/* ========== 全局与布局 ========== */
.product-catalog-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.filter-sidebar {
    flex: 0 0 280px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    align-self: start;
}

.filter-sidebar h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
    font-weight: 600;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.filter-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
    font-size: 0.9rem;
}
.filter-options input[type="radio"],
.filter-options input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.filter-submit {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}
.filter-submit button,
.reset-btn {
    background: #007cba;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.filter-submit button:hover {
    background: #005a87;
}
.reset-btn {
    background: #aaa;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}
.reset-btn:hover {
    background: #777;
    color: white;
}

.product-list-main {
    flex: 1;
    min-width: 0;
}

/* ========== 产品网格 ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    row-gap: 35px;
}

.product-item {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.product-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: #ddd;
}

.product-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background: #f4f4f4;
    overflow: hidden;
}
.product-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-item:hover .product-thumbnail img {
    transform: scale(1.02);
}

.product-title {
    font-size: 1rem;
    margin: 12px 12px 6px;
    color: #1a1a1a;
}
.product-title a {
    text-decoration: none;
    color: inherit;
}

.product-description {
    font-size: 0.85rem;
    color: #666;
    margin: 0 12px 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pagination-wrap {
    margin-top: 45px;
    text-align: center;
}
.pagination-wrap .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 3px;
    background: #f0f0f0;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
}
.pagination-wrap .page-numbers.current {
    background: #007cba;
    color: white;
}
.pagination-wrap .page-numbers:hover:not(.current) {
    background: #e0e0e0;
}

/* ========== 面包屑 ========== */
.custom-breadcrumb {
    background: #f0f0f0;
    padding: 12px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.custom-breadcrumb .breadcrumb-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}
.custom-breadcrumb a {
    color: #007cba;
    text-decoration: none;
}
.custom-breadcrumb span {
    font-weight: 500;
    color: #444;
}

/* ========== 其他通用 ========== */
.no-products {
    text-align: center;
    padding: 50px 20px;
    border-radius: 8px;
    color: #777;
}

.container,
.grid-container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== 产品分类导航 ========== */
.product-cat-nav ul,
.product-cat-nav li {
    list-style: none;
}
.product-cat-nav ul {
    margin: 0;
    padding: 0;
}
.product-cat-nav li {
    margin-bottom: 8px;
    line-height: 1.4;
}
.product-cat-nav li a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
}
.product-cat-nav li a:hover {
    color: #007cba;
}
.product-cat-nav li.current-cat>a {
    font-weight: bold;
    color: #007cba;
}
.product-cat-nav ul ul {
    margin-top: 5px;
}
.product-cat-nav .sub-menu,
.product-cat-nav .children {
    margin-left: 20px;
    padding-left: 0;
}

/* ========== 筛选表单样式 ========== */
.filter-form-wrapper {
    background: #f9f9f9;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}
.filter-form-wrapper h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.filter-group-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 15px;
}
.filter-group-inline>label {
    font-weight: 600;
    min-width: 130px;
    margin-bottom: 0;
}
.filter-options-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.filter-options-inline label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
}

/* ========== 背景与间距重置 ========== */
body,
.site,
.site-content,
.grid-container,
.inside-article {
    background-color: #ffffff !important;
}

#custom-site-header,
.site-header,
.header-wrap,
.header-row {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
.header-row:last-child {
    padding-bottom: 0;
}

.site-content,
.inside-article,
.grid-container {
    padding-top: 0 !important;
}

.grid-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.inside-article {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.custom-breadcrumb {
    margin-top: 0 !important;
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.product-catalog-wrapper {
    width: 100% !important;
    max-width: 100% !important;
}
.product-list-main {
    width: auto !important;
    flex: 1 !important;
}
.grid-container,
.site-content,
.inside-article {
    width: 100% !important;
    max-width: 1440px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.filter-sidebar {
    background: transparent !important;
    box-shadow: none;
    padding-left: 0;
}
.filter-sidebar h3,
.filter-sidebar h4 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    margin-bottom: 15px;
}
.filter-form-wrapper {
    background: transparent !important;
    box-shadow: none;
    padding: 0 0 15px 0;
}
.filter-form-wrapper h3 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.filter-sidebar h4,
.filter-form-wrapper h3 {
    margin-top: 0 !important;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    min-height: 40px;
}
.filter-sidebar .filter-group:first-child {
    margin-top: 0;
}
.filter-form-wrapper {
    padding-top: 0;
}

/* ========== 文章列表样式 ========== */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.article-item {
    display: flex;
    gap: 40px;
    background: #fff;
    align-items: flex-start;
}
.article-thumbnail {
    flex: 0 0 40%;
    max-width: 40%;
}
.article-thumbnail img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 6px;
}
.article-content {
    flex: 1;
}
.article-title {
    font-size: 2.4rem;
    margin: 0 0 20px;
}
.article-title a {
    text-decoration: none;
    color: #1a1a1a;
}
.article-title a:hover {
    color: #007cba;
}
.article-meta {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 12px;
}
.article-excerpt {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 15px;
}
.article-read-more {
    display: inline-block;
    color: #222222;
    padding: 10px 32px;
    border: 1px solid #5f5318;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s;
    font-weight: bold;
}
.article-read-more:hover {
    color: #007cba;
}

/* ========== 产品单页独立样式 ========== */
.product-single-wrapper {
    align-items: flex-start;
}

.product-hero-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: url('/wp-content/uploads/2026/06/10-inch-High-Speed-AI-Drone-bg.jpg') center center / cover no-repeat;
    padding: 40px 0;
    margin-top: 0;
    margin-bottom: 40px;
}

.product-hero-fullwidth .product-hero-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 0;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.product-hero-left,
.product-hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-single-title {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 20px;
}

.product-params-list {
    background: rgba(255, 255, 255, 0.6);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.param-item {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.product-short-desc {
    margin-bottom: 25px;
    color: #444;
    line-height: 1.6;
}

.btn-contact-us {
    display: inline-block;
    background: #007cba;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-contact-us:hover {
    background: #005a87;
}

.product-gallery .gallery-main {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background: #f4f4f4;
}
.product-gallery .gallery-main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
}
.gallery-thumbs .thumb-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: 0.2s;
}
.gallery-thumbs .thumb-img.active,
.gallery-thumbs .thumb-img:hover {
    border-color: #007cba;
}

.product-full-content {
    line-height: 1.7;
    color: #333;
}

.case-studies-section .case-studies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    row-gap: 35px;
}

.product-full-content p,
.product-full-content ul,
.product-full-content ol,
.product-full-content li {
    font-size: 16px;
    line-height: 1.6;
}

.product-single-main .section-title-inline {
    font-size: 1.4rem;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.product-single-main>*:first-child {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    margin-top: 0;
}

.product-single-main .parameter-table-section,
.product-single-main .product-detail-section,
.product-single-main .faq-section,
.product-single-main .case-studies-section,
.product-single-main .contact-form-section {
    margin-bottom: 40px;
}

.product-single-main .contact-form-section .form-row-double {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.product-single-main .contact-form-section .form-row-double .form-field {
    flex: 1;
}

.product-single-main .case-studies-section .section-title-inline,
.product-single-main .contact-form-section .section-title-inline {
    display: inline-block;
}

.product-single-main .parameter-table-section .section-title-inline,
.product-single-main .product-detail-section .section-title-inline,
.product-single-main .faq-section .section-title-inline {
    border-bottom: none;
    padding-left: 12px;
    border-left: 4px solid #007cba;
}

.related-products-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #fff;
    margin-bottom: 20px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.related-products-inner .section-title-inline {
    font-size: 1.4rem !important;
    font-weight: 600;
    text-align: center !important;
}

.related-products-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 0;
}

.related-products-inner .section-title-inline {
    margin-bottom: 0;
}

.related-products-inner .section-title-inline::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.related-products-inner .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    row-gap: 35px;
}

body,
.site,
.site-content,
.inside-article,
.grid-container {
    overflow-x: visible !important;
}

/* ========== 页脚 ========== */
#custom-site-footer {
    background-color: #002b45;
    width: 100%;
    clear: both;
    overflow-x: hidden;
    margin-top: 0 !important;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.copyright-wrapper {
    background-color: #001e30;
    width: 100%;
    clear: both;
}

.copyright-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.full-width-line {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
}

.copyright-text {
    color: #ccc;
    font-size: 0.8rem;
}

/* ========== 响应式覆盖 ========== */
@media (max-width: 1200px) {
    .products-grid,
    .related-products-inner .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-catalog-wrapper {
        flex-direction: column;
    }
    .filter-sidebar {
        flex: auto;
        width: 100%;
    }
    .products-grid,
    .related-products-inner .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-hero-fullwidth .product-hero-section {
        flex-direction: column;
    }
    .case-studies-section .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-sidebar {
        margin-bottom: 30px;
    }
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    .footer-col {
        flex: auto;
    }
    .products-summary-page .products-summary-grid,
    .products-summary-page .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .prefooter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .product-cats-grid {
        grid-template-columns: 1fr;
    }
    .intro-wrapper,
    .contact-map-wrapper {
        flex-direction: column;
    }
    .case-wall-container {
        flex-direction: column;
    }
    .case-wall-left,
    .case-wall-right {
        flex-direction: row;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: repeat(5, auto);
        gap: 10px 12px;
    }
    .step-icon {
        width: 70px;
        height: 70px;
    }
    .step-icon img {
        max-width: 40px;
        max-height: 40px;
    }
    .step-arrow {
        font-size: 1.4rem;
    }
    .company-news-section .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .factory-wall-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .item-1 {
        grid-column: span 2;
        grid-row: span 2;
    }
    .item-2,
    .item-3,
    .item-4,
    .item-5,
    .item-6,
    .item-7 {
        grid-column: span 1;
        grid-row: span 1;
    }
    .item-5 {
        grid-row: span 2;
    }
    .intro-content-wrapper .grid-container {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .products-grid,
    .related-products-inner .products-grid {
        grid-template-columns: 1fr;
    }
    .case-studies-section .case-studies-grid {
        grid-template-columns: 1fr;
    }
    .prefooter-grid {
        grid-template-columns: 1fr;
    }
    .prefooter-title {
        font-size: 1.3rem;
    }
    .products-summary-page .products-summary-grid,
    .products-summary-page .case-studies-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .step-item {
        padding: 25px 20px;
    }
    .step-icon {
        max-width: 120px;
    }
}

/* ========== 首页版块统一间距管理 ========== */
.home-hero-swiper,
.home-section,
.company-intro-fullwidth,
.stats-fullwidth,
.case-wall-fullwidth,
.contact-map-fullwidth {
    margin: 0 !important;
}

.home-section {
    padding: 60px 0;
}
.company-intro-fullwidth {
    padding: 60px 0;
}
.stats-fullwidth {
    padding: 60px 0;
}
.case-wall-fullwidth {
    padding: 60px 0;
}
.contact-map-fullwidth {
    padding: 60px 0 0 0 !important;
}

.home-hero-swiper {
    margin-bottom: 0 !important;
}
.home-section:first-of-type {
    margin-top: 0 !important;
}

.home-section+.company-intro-fullwidth,
.company-intro-fullwidth+.home-section,
.home-section+.stats-fullwidth,
.stats-fullwidth+.case-wall-fullwidth,
.case-wall-fullwidth+.home-section,
.home-section+.contact-map-fullwidth {
    margin-top: 0 !important;
}

.home-section,
.company-intro-fullwidth,
.stats-fullwidth,
.case-wall-fullwidth,
.contact-map-fullwidth {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* ===== 轮播图全屏背景修复 ===== */
.home-hero-swiper {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    overflow: hidden;
    height: 800px !important;
}
.home-hero-swiper .swiper-wrapper,
.home-hero-swiper .swiper-slide {
    width: 100% !important;
    height: 100% !important;
}
.hero-slide {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    position: relative;
    height: 100%;
}

.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    text-indent: -9999px;
}
.hero-content {
    max-width: 90% !important;
    width: auto !important;
    margin: 0 auto !important;
    padding: 20px 30px !important;
    background: rgba(0, 0, 0, 0.6) !important;
    border-radius: 8px !important;
    text-align: center !important;
}
.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}
.hero-content p {
    font-size: 1.1rem;
    color: white;
}

/* 轮播图图片样式：完整显示 */
.home-hero-swiper .slide-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.home-hero-swiper .slide-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background-color: #f0f0f0;
}

/* ===== 公司介绍版块全宽背景 ===== */
.company-intro-fullwidth {
    position: relative;
    width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    overflow-x: hidden;
}
.company-intro-fullwidth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/wp-content/uploads/2026/06/1920-454.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}
.company-intro-fullwidth::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.intro-content-wrapper {
    position: relative;
    z-index: 2;
}
.intro-content-wrapper,
.intro-content-wrapper .grid-container,
.intro-content-wrapper .inside-article {
    background-color: transparent !important;
}
.intro-content-wrapper .grid-container {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}
.intro-text {
    flex: 1;
}
.intro-text h2,
.intro-text p {
    color: #ffffff !important;
}
.intro-image {
    flex: 1;
}
.intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.intro-text-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 15px;
}
.btn-more,
.btn-contact-intro {
    display: inline-block;
    padding: 12px 28px !important;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
    min-width: 140px;
    box-sizing: border-box;
}
.btn-more {
    color: #ffffff !important;
    border: 1px solid #ffffff;
    background: transparent;
    margin-right: auto;
}
.btn-more:hover {
    background: #ffffff;
    color: #007cba !important;
}
.btn-contact-intro {
    background: #007cba;
    color: #ffffff !important;
    border: 1px solid #007cba;
}
.btn-contact-intro:hover {
    background: #005a87;
    border-color: #005a87;
    color: #ffffff !important;
}

/* ===== 首页通用版块样式 ===== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2,
.section-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* 产品分类卡片 */
.product-cats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.cat-card {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 460px;
    border-radius: 12px;
    overflow: hidden;
}
.cat-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    text-decoration: none;
}
.cat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: 0.3s;
}
.cat-card:hover .cat-overlay {
    background: rgba(0, 0, 0, 0.2);
}
.cat-card h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 1.5rem;
    z-index: 3;
    margin: 0;
}

/* 产品展示区块 */
.showcase-block {
    margin-bottom: 50px;
}
.showcase-block:last-child {
    margin-bottom: 0;
}

/* 统计数据版块 */
.stats-fullwidth {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    background: linear-gradient(135deg, #0a2b3e, #001e2f) !important;
    overflow-x: hidden;
}
.stats-fullwidth .stats-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.stat-number {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
}
.stat-label {
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Case图片墙版块 */
.case-wall-fullwidth {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding: 60px 0 !important;
    background: #f5f5f5 !important;
    overflow-x: hidden;
}

.case-wall-fullwidth .section-header {
    max-width: 1440px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
    text-align: center;
}

.case-wall-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.case-wall-left,
.case-wall-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.case-wall-center {
    flex: 1.2;
}

.case-img {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}
.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}
.case-img:hover img {
    transform: scale(1.02);
}

.case-wall-left .case-img,
.case-wall-right .case-img {
    height: calc(50% - 10px);
}
.case-wall-left .case-img img,
.case-wall-right .case-img img {
    height: 100%;
    object-fit: cover;
}
.case-wall-center .case-img {
    height: 100%;
}
.case-wall-center .case-img img {
    height: 100%;
    object-fit: cover;
}

/* 证书滚动 */
.certificates-scroll {
    padding: 20px 0;
}
.certificates-scroll .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.certificates-scroll .cert-item {
    width: 200px;
    height: 283px;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.certificates-scroll .cert-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.certificates-scroll .cert-item:hover img {
    transform: scale(1.05);
}
.certificates-scroll .cert-next,
.certificates-scroll .cert-prev {
    color: #007cba;
    background: rgba(255, 255, 255, 0.8);
    width: 36px;
    height: 36px;
    border-radius: 50%;
}
.certificates-scroll .cert-next:after,
.certificates-scroll .cert-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* 新闻区块 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.news-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.news-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.news-item h3 {
    padding: 15px 15px 5px;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-decoration: none;
}
.news-item a {
    color: #1a1a1a;
    text-decoration: none;
}
.news-date {
    padding: 0 15px;
    font-size: 0.8rem;
    color: #777;
}
.news-excerpt {
    padding: 0 15px 15px;
    font-size: 0.85rem;
}

/* ===== 地图+表单版块全宽 ===== */
.contact-map-fullwidth {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding: 60px 0 60px 0 !important;
    background-image: url('/wp-content/uploads/2026/06/bg-1.jpg');
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
}
.contact-map-fullwidth .contact-map-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 0;
}
.map-image {
    flex: 1;
}
.map-image img {
    width: 100%;
    border-radius: 12px;
}
.contact-form-block {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.contact-form-block h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.home-contact-form .form-row-double {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}
.home-contact-form .form-field {
    flex: 1;
}
.home-contact-form input,
.home-contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.home-contact-form .submit-btn {
    background: #007cba;
    color: white;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
}
.home-contact-form .form-submit {
    text-align: right;
}

/* 修复首页版块并列问题 */
.home .site-content,
.front-page .site-content {
    display: block !important;
}
.home .inside-article,
.front-page .inside-article {
    display: block !important;
}

/* ========== 去除底部水平滚动条 ========== */
html,
body {
    overflow-x: hidden;
}
body {
    position: relative;
    width: 100%;
}
.site-content,
.inside-article,
.grid-container {
    overflow-x: hidden;
}

/* ========== 产品汇总页样式 ========== */
.products-summary-page {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 0;
}

.products-summary-page .hero-banner {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(135deg, #0a2b3e, #001e2f);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}
.products-summary-page .hero-banner h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 15px;
}
.products-summary-page .hero-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.products-summary-page .product-summary-section {
    margin-bottom: 80px;
}

.products-summary-page .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    display: inline-block;
}

.products-summary-page .case-studies-section .section-title {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 2px solid #e0e0e0;
}

.products-summary-page .products-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.products-summary-page .product-summary-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.products-summary-page .product-summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.products-summary-page .product-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background: #f5f5f5;
    overflow: hidden;
}
.products-summary-page .product-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.products-summary-page .product-summary-card:hover .product-thumb img {
    transform: scale(1.05);
}

.products-summary-page .product-summary-card.placeholder {
    opacity: 0.5;
    background: #f9f9f9;
}
.products-summary-page .product-summary-card.placeholder .product-thumb {
    background: #e0e0e0;
}

.products-summary-page .product-info {
    padding: 20px;
}
.products-summary-page .product-info h3 {
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
}
.products-summary-page .product-info h3 a {
    text-decoration: none;
    color: #1a1a1a;
}
.products-summary-page .product-info h3 a:hover {
    color: #007cba;
}

.products-summary-page .related-article-card {
    background: #fef9e6;
    border: 1px dashed #d4a017;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}
.products-summary-page .related-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background: #fff4df;
}
.products-summary-page .related-article-card h4 {
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4a017;
    display: inline-block;
    color: #b87c00;
    font-weight: 600;
}
.products-summary-page .related-article-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.products-summary-page .related-article-card ul li {
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0e1c0;
}
.products-summary-page .related-article-card ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.products-summary-page .related-article-card .article-date {
    display: block;
    font-size: 0.7rem;
    color: #b87c00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.products-summary-page .related-article-card ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.2s;
}
.products-summary-page .related-article-card ul li a:hover {
    color: #d4a017;
    text-decoration: underline;
}

.products-summary-page .case-studies-section {
    margin-top: 60px;
    margin-bottom: 60px;
}
.products-summary-page .case-studies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.products-summary-page .case-study-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.products-summary-page .case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.products-summary-page .case-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background: #f5f5f5;
    overflow: hidden;
}
.products-summary-page .case-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.products-summary-page .case-study-card:hover .case-thumb img {
    transform: scale(1.05);
}
.products-summary-page .case-info {
    padding: 15px;
}
.products-summary-page .case-info h3 {
    font-size: 1rem;
    margin: 0;
    text-align: center;
}
.products-summary-page .case-info h3 a {
    text-decoration: none;
    color: #1a1a1a;
}
.products-summary-page .case-info h3 a:hover {
    color: #007cba;
}

/* ========== About Us 页面样式 ========== */
.about-page {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 0;
}

.about-text {
    padding: 60px 0 30px 0;
    margin: 0 auto;
}
.about-text h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #1e2f3e;
}
.about-text h3 {
    font-size: 1.2rem;
    text-align: left;
    margin: 1.8em 0 0.8em;
    color: #2c3e50;
}
.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.2em;
}
.about-text .module-list {
    margin: 15px 0 20px;
}
.about-text .module-item {
    margin-bottom: 15px;
    padding-left: 0;
    border-left: none;
}
.about-text .module-item strong {
    color: #2c3e50;
}
.about-text ul {
    list-style: disc;
    padding-left: 20px;
    margin: 15px 0;
}
.about-text ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}
.about-text .partner-text {
    margin-top: 25px;
    text-align: center;
    font-size: 1rem;
    color: #2c3e50;
}

.factory-wall {
    padding: 30px 0;
    margin: 0;
}
.factory-wall-header {
    text-align: center;
    margin-bottom: 40px;
}
.factory-wall-header h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1e2f3e;
}
.factory-wall-header p {
    font-size: 1.1rem;
    color: #666;
}
.factory-wall-grid {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0 20px;
    box-sizing: border-box;
}
.factory-wall-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.factory-wall-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.factory-wall-item:hover img {
    transform: scale(1.03);
}
.item-1 {
    grid-column: span 2;
    grid-row: span 2;
}
.item-2 {
    grid-column: span 1;
    grid-row: span 1;
}
.item-3 {
    grid-column: span 1;
    grid-row: span 1;
}
.item-4 {
    grid-column: span 2;
    grid-row: span 1;
}
.item-5 {
    grid-column: span 1;
    grid-row: span 2;
}
.item-6 {
    grid-column: span 1;
    grid-row: span 2;
}
.item-7 {
    grid-column: span 2;
    grid-row: span 2;
}

.about-certificates {
    padding: 30px 0;
}
.about-certificates .section-header h2 {
    font-size: 1.5rem;
    color: #1e2f3e;
}
.about-certificates .section-header p {
    color: #666;
}

.company-news-section {
    padding: 30px 0 60px 0;
}
.company-news-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}
.company-news-section .section-header h2 {
    font-size: 1.5rem;
    color: #1e2f3e;
}
.company-news-section .section-header p {
    color: #666;
}
.company-news-section .news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.company-news-section .news-item {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.company-news-section .news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.company-news-section .news-thumb {
    height: 180px;
    overflow: hidden;
}
.company-news-section .news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.company-news-section .news-item:hover .news-thumb img {
    transform: scale(1.05);
}
.company-news-section .news-content {
    padding: 20px;
}
.company-news-section .news-content h3 {
    font-size: 1.1rem;
    margin: 0 0 8px;
    line-height: 1.4;
}
.company-news-section .news-content h3 a {
    text-decoration: none;
    color: #1a1a1a;
}
.company-news-section .news-content h3 a:hover {
    color: #007cba;
}
.company-news-section .news-date {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 12px;
}
.company-news-section .news-excerpt {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}
.company-news-section .read-more {
    font-size: 0.85rem;
    color: #007cba;
    text-decoration: none;
    font-weight: 500;
}
.company-news-section .read-more:hover {
    text-decoration: underline;
}

/* ========== Contact Us 页面样式 ========== */
.contact-page {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.contact-hero {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: auto;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.contact-hero .grid-container {
    background-color: transparent !important;
}
.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.contact-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #fff;
}
.hero-text {
    max-width: 700px;
}
.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}
.hero-text .hero-sub {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}
.hero-text .hero-intro {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.hero-contact-info .contact-item {
    margin-bottom: 6px;
    font-size: 1rem;
}
.hero-contact-info .label {
    font-weight: 600;
    margin-right: 6px;
}
.hero-contact-info a {
    color: #fff;
    text-decoration: underline;
}

.contact-hero-content {
    display: flex;
    align-items: center;
    min-height: 450px;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-contact-info {
    border: 1px solid #cccccc;
    padding: 20px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.service-process {
    padding: 60px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    font-size: 2rem;
    color: #1e2f3e;
    margin-bottom: 10px;
}
.section-header p {
    font-size: 1.05rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.step-item {
    text-align: center;
    background: #f8fafc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-icon {
    width: 100%;
    aspect-ratio: 6/5;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.step-item .step-icon {
    position: relative;
}
.step-item .step-icon::before {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

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

.step-label {
    font-weight: 600;
    color: #1e2f3e;
    font-size: 1.2rem;
    letter-spacing: 0.3px;
    padding: 20px 0 20px 0;
}

.process-steps {
    counter-reset: step-counter;
}
.step-item {
    counter-increment: step-counter;
}
.step-item .step-icon::before {
    content: counter(step-counter, decimal-leading-zero);
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-block;
    font-size: 1.7rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 12px;
    border-radius: 30px;
    pointer-events: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.contact-form {
    margin: 0 auto 60px;
}
.contact-form .form-row-double {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.contact-form .form-field {
    flex: 1;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background: #fafafa;
    transition: 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007cba;
    outline: none;
    background: #fff;
}
.contact-form .form-submit {
    text-align: right;
}
.contact-form .submit-btn {
    background: #007cba;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}
.contact-form .submit-btn:hover {
    background: #005a87;
}

/* ========== 侧边栏模块统一样式 ========== */
.sidebar-case-studies .case-study-card {
    position: relative;
}
.sidebar-case-studies .case-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 10px;
}
.sidebar-case-studies .case-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sidebar-case-studies .case-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    padding: 12px;
    transition: background 0.2s;
}
.sidebar-case-studies .case-study-card a:hover .case-title-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.sidebar-new-feature .new-feature-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 6px;
    background: #f4f4f4;
}
.sidebar-new-feature .new-feature-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sidebar-new-feature .new-feature-thumb::before {
    content: "Top Pick";
    position: absolute;
    top: 12px;
    right: 12px;
    background: #002b45;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transform: rotate(6deg);
}
.sidebar-new-feature h5 {
    font-size: 0.9rem;
    margin: 12px 0 4px;
}
.sidebar-new-feature h5 a {
    text-decoration: none;
    color: #1a1a1a;
}
.sidebar-new-feature p {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.4;
}

.sidebar-hot-news .hot-news-list {
    margin: 0;
    padding: 0;
    list-style: disc;
    list-style-position: outside;
}
.sidebar-hot-news .hot-news-list li {
    margin-left: 1.2em;
    padding-left: 0;
    margin-bottom: 8px;
}
.sidebar-hot-news .hot-news-list li a {
    text-decoration: none !important;
    color: #000000 !important;
    font-size: 0.9rem;
}
.sidebar-hot-news .hot-news-list li a:hover {
    color: #007cba !important;
}

.sidebar-recommended .recommended-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.sidebar-recommended .recommended-item {
    display: flex;
    gap: 12px;
    align-items: center;
}
.sidebar-recommended .recommended-thumb {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    border-radius: 4px;
    overflow: hidden;
}
.sidebar-recommended .recommended-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sidebar-recommended .recommended-info {
    flex: 1;
}
.sidebar-recommended .recommended-info h5 {
    margin: 0 0 2px;
    font-size: 0.9rem;
}
.sidebar-recommended .recommended-info h5 a {
    text-decoration: none;
    color: #000000;
}
.sidebar-recommended .recommended-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
    line-height: 1.3;
}
.sidebar-recommended .recommended-info h5 a:hover {
    color: #007cba;
}

/* ===== 页脚上方横栏 ===== */
.prefooter-fullwidth {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    clear: both !important;
    float: none !important;
    padding: 20px 0 60px !important;
    box-sizing: border-box !important;
    background: transparent !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
}

.prefooter-container {
    max-width: 1440px;
    margin: 0 auto !important;
}
.prefooter-title {
    text-align: center !important;
    border-bottom: 1px solid #e0e0e0 !important;
    padding-bottom: 15px !important;
    margin-bottom: 30px !important;
    font-size: 1.6rem;
    font-weight: 600;
}
.prefooter-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
}
.prefooter-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.prefooter-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.prefooter-thumb {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.prefooter-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.prefooter-item:hover .prefooter-thumb img {
    transform: scale(1.02);
}
.prefooter-item h4 {
    margin: 12px 12px 6px;
    font-size: 1rem;
}
.prefooter-item h4 a {
    text-decoration: none;
    color: #1a1a1a;
}
.prefooter-item h4 a:hover {
    color: #007cba;
}
.prefooter-item p {
    margin: 0 12px 15px;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
}

/* ===== 统一标题样式 ===== */
.product-single-main .parameter-table-section .section-title-inline,
.product-single-main .product-detail-section .section-title-inline,
.product-single-main .faq-section .section-title-inline {
    font-size: 1.4rem;
    border-left: 4px solid #007cba;
    padding-left: 12px;
    border-bottom: none;
}
.product-single-main .case-studies-section .section-title-inline,
.product-single-main .contact-form-section .section-title-inline,
.related-products-inner .section-title-inline {
    font-size: 1.4rem;
    display: inline-block;
    border-left: none;
    padding-left: 0;
}
.related-products-inner .section-title-inline {
    display: block;
    text-align: center;
    padding-bottom: 8px;
}

.site-content {
    display: block !important;
    flex-wrap: wrap !important;
}

/* 侧边栏固定宽度 */
.filter-sidebar {
    flex: 0 0 300px !important;
    max-width: 300px !important;
    min-width: 300px !important;
    width: 300px !important;
}

.sidebar-wrapper {
    flex: 0 0 300px;
    max-width: 300px;
    min-width: 300px;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-wrapper .filter-sidebar {
    flex: 1 !important;
    max-width: 100% !important;
    min-width: auto !important;
    width: 100% !important;
}

.sidebar-search-wrapper {
    width: 100%;
}
.sidebar-search-wrapper .search-input-group {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}
.sidebar-search-wrapper .search-field {
    flex: 1;
    border: none;
    padding: 8px 12px;
    outline: none;
    font-size: 0.9rem;
    background: transparent;
}
.sidebar-search-wrapper .search-submit {
    background: transparent;
    border: none;
    padding: 0 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: color 0.2s;
}
.sidebar-search-wrapper .search-submit:hover {
    color: #333;
}
.sidebar-search-wrapper .search-submit svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.case-studies-grid .case-item h4 {
    font-size: 1rem;
    margin: 12px 0 6px;
    color: #1a1a1a;
}
.case-studies-grid .case-item h4 a {
    text-decoration: none;
    color: inherit;
}
.case-studies-grid .case-item .case-description {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.case-studies-grid .case-item .read-more-link {
    display: block;
    text-align: right;
    font-size: 1rem;
    color: #007cba;
    text-decoration: none;
    margin: 0 12px 15px;
}

.contact-form-section .form-row-double {
    display: flex !important;
    gap: 20px !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    margin-bottom: 20px;
}
.contact-form-section .form-row-double .form-field {
    flex: 1 1 0% !important;
    min-width: 0 !important;
}
.contact-form-section .form-row-double .form-field input,
.contact-form-section .form-row-double .form-field textarea {
    width: 100% !important;
    box-sizing: border-box;
}
.contact-form-section .form-submit {
    text-align: right;
    margin-top: 20px;
}

.product-full-content h2,
.product-full-content h3,
.product-full-content h4,
.article-content h2,
.article-content h3,
.article-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
}

.single-article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.inline-share-icons {
    display: flex;
    gap: 10px;
}
.inline-share-icons .share-icon {
    display: inline-block;
    line-height: 1;
}

.article-single-main .contact-form-section .section-title-inline {
    font-size: 1.4rem;
    display: inline-block;
    border-bottom: 1px solid #ddd;
    border-left: none;
    padding-left: 0;
}
.article-single-main .contact-form-section {
    margin-top: 40px;
}

.article-single-main .related-interest-section.you-may-like-single-col {
    background: #f5f7f9;
    padding: 20px 25px;
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.article-single-main .related-interest-section.you-may-like-single-col .section-title-inline {
    color: #0070ad;
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
    border-left: none;
    padding-left: 0;
    margin-bottom: 10px;
}
.article-single-main .related-interest-section.you-may-like-single-col .you-may-like-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}
.article-single-main .related-interest-section.you-may-like-single-col .you-may-like-list li {
    margin-bottom: 8px;
    line-height: 1.5;
}
.article-single-main .related-interest-section.you-may-like-single-col .you-may-like-list li a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.95rem;
}
.article-single-main .related-interest-section.you-may-like-single-col .you-may-like-list li a:hover {
    color: #007cba;
    text-decoration: underline;
}


/* ========== 移动端统一优化（≤ 768px） ========== */
@media (max-width: 768px) {

    /* 筛选表单内联改为纵向 */
    .filter-group-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .filter-group-inline>label {
        min-width: auto;
    }

    /* 文章列表 */
    .article-item {
        flex-direction: column;
        gap: 20px;
    }
    .article-thumbnail {
        flex: 0 0 auto;
        max-width: 100%;
    }

    /* 产品详情 */
    .product-hero-fullwidth {
        padding: 20px 0;
    }
    .gallery-thumbs .thumb-img {
        width: 60px;
        height: 60px;
    }

    /* 首页轮播 */
    .home-hero-swiper {
        height: 400px !important;
    }
    .hero-content h2 {
        font-size: 1.3rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }

    /* 轮播图移动端自适应 */
    .home-hero-swiper {
        height: auto !important;
        aspect-ratio: 16/9 !important;
        max-height: 80vh;
    }
    .home-hero-swiper .swiper-wrapper,
    .home-hero-swiper .swiper-slide {
        height: 100% !important;
    }
    .home-hero-swiper .slide-link img {
        object-fit: contain;
    }

    /* 首页各版块内边距 */
    .home-section,
    .company-intro-fullwidth,
    .stats-fullwidth,
    .case-wall-fullwidth {
        padding: 40px 0 !important;
    }
    .contact-map-fullwidth {
        padding: 40px 0 0 0 !important;
    }
    .home-contact-form .form-row-double {
        flex-direction: column;
        gap: 15px;
    }
    .home-contact-form .form-submit {
        text-align: center;
    }
    .contact-map-fullwidth .contact-map-wrapper {
        flex-direction: column;
    }

    /* 首页产品分类卡片 */
    .product-cats-grid {
        grid-template-columns: 1fr;
    }

    /* 首页图片墙 */
    .case-wall-fullwidth {
        padding: 40px 0 !important;
    }
    .case-wall-left,
    .case-wall-right {
        flex-direction: column;
    }
    .case-wall-left .case-img,
    .case-wall-right .case-img {
        width: 100%;
        height: auto;
    }

    /* 证书滚动 */
    .certificates-scroll .cert-item {
        width: 150px;
        height: 212px;
    }

    /* 产品汇总页 */
    .products-summary-page .hero-banner {
        padding: 50px 0;
    }
    .products-summary-page .hero-banner h1 {
        font-size: 2rem;
    }
    .products-summary-page .products-summary-grid,
    .products-summary-page .case-studies-grid {
        grid-template-columns: 1fr;
    }
    .products-summary-page .section-title {
        font-size: 1.5rem;
    }

    /* About Us */
    .about-text {
        padding: 40px 0;
    }
    .factory-wall {
        padding: 40px 0;
    }
    .about-certificates {
        padding: 40px 0;
    }
    .company-news-section {
        padding: 40px 0;
    }
    .factory-wall-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 12px;
    }
    .factory-wall-item {
        grid-column: span 1 !important;
        grid-row: auto !important;
        height: 200px;
    }
    .company-news-section .news-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Us */
    .contact-hero {
        min-height: 350px;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .process-steps {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 15px;
        max-width: 400px;
    }
    .step-arrow {
        display: none;
    }
    .contact-form .form-row-double {
        flex-direction: column;
    }
    .contact-form .form-submit {
        text-align: center;
    }

    /* 侧边栏：移到主内容下方 */
    .product-catalog-wrapper {
        flex-direction: column !important;
        gap: 30px !important;
    }
    .product-list-main {
        order: -1 !important;
        width: 100% !important;
        flex: 0 0 auto !important;
    }
    .sidebar-wrapper,
    .filter-sidebar {
        order: 1 !important;
        width: 100% !important;
        flex: 0 0 auto !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding: 0 16px !important;
    }
    .sidebar-wrapper .filter-sidebar {
        padding: 0 !important;
    }

    /* 文本左右留白 16px */
    .product-list-main,
    .article-list,
    .single-article-header,
    .article-content,
    .filter-form-wrapper,
    .product-single-main,
    .product-single-main .parameter-table-section,
    .product-single-main .product-detail-section,
    .product-single-main .faq-section,
    .product-single-main .case-studies-section,
    .product-single-main .contact-form-section {
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box !important;
    }
    .case-studies-grid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .filter-form-wrapper {
        padding: 15px 16px !important;
    }

    /* 页脚上方横栏改为单列 */
    .prefooter-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .prefooter-item {
        padding: 0 16px !important;
        box-sizing: border-box;
    }
    .prefooter-item h4,
    .prefooter-item p {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .prefooter-thumb {
        border-radius: 6px;
    }
    .prefooter-title {
        font-size: 1.2rem !important;
        padding: 0 16px 15px !important;
    }
    .prefooter-container {
        padding: 0 16px !important;
    }

    /* 联系我们服务流程 2列×3行 */
    .process-steps {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        overflow-x: visible !important;
        max-width: 100% !important;
    }
    .step-item {
        padding: 15px !important;
        background: #f8fafc;
        border-radius: 8px;
    }
    .step-icon {
        width: 100% !important;
        max-width: none !important;
        aspect-ratio: 6/5 !important;
        height: auto !important;
        background: #ffffff;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        overflow: hidden;
    }
    .step-icon img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        display: block !important;
        max-width: 100% !important;
        max-height: 100% !important;
    }
    .step-label {
        font-size: 1rem !important;
        padding: 12px 0 !important;
        line-height: 1.3;
        font-weight: 600;
    }
    .step-item .step-icon::before {
        font-size: 1.2rem !important;
        top: 6px !important;
        left: 6px !important;
        padding: 2px 10px !important;
        border-radius: 20px !important;
        background: rgba(0, 0, 0, 0.6) !important;
    }
}

/* ========== 超小屏（≤480px） ========== */
@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    .step-item {
        padding: 10px !important;
    }
    .step-label {
        font-size: 0.85rem !important;
        padding: 8px 0 !important;
    }
}

/* ========== 小屏平板（≤1024px） ========== */
@media (max-width: 1024px) {
    .company-news-section .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}