/*
 Theme Name: 满鼎华国内站
 Theme URI: https://kitchenmfg.com
 Description: 满鼎华（Full Kitchen）国内版 WordPress 主题，独立后台、可编辑内容。
 Version: 1.0
 Author: WorkBuddy
 License: MIT
*/

/* 基础样式 */
:root {
    --primary: #1f4e79;          /* 钢蓝 steel blue — 商用不锈钢品牌的工业感 */
    --primary-dark: #163a5c;
    --primary-light: #2c6da3;
    --accent: #f5a623;            /* 暖橙 amber — CTA / 强调 */
    --accent-dark: #e08e0b;
    --secondary: #1a2330;         /* 深石板 */
    --text: #2d3748;
    --text-light: #5a6878;
    --bg-light: #f5f7fa;
    --white: #ffffff;
    --border: #e3e8ee;
    --shadow: 0 6px 24px rgba(31,78,121,0.10);
    --shadow-lg: 0 12px 36px rgba(31,78,121,0.14);
    --radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "WenQuanYi Micro Hei", "Helvetica Neue", sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 24px;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    letter-spacing: 1px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.section-title p {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title.light h2,
.section-title.light p {
    color: var(--white);
}

.section-title.light h2::after {
    background: var(--white);
}

.btn {
    display: inline-block;
    padding: 13px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-block {
    width: 100%;
}

/* 顶部 */
.top-header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-text h1 {
    font-size: 22px;
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
}

.logo-text p {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

.hotline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hotline i {
    font-size: 36px;
    color: var(--primary);
}

.hotline span {
    display: block;
    font-size: 13px;
    color: var(--text-light);
}

.hotline strong {
    display: block;
    font-size: 22px;
    color: var(--primary);
    font-weight: 700;
}

.hotline-numbers {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hotline-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    line-height: 1.4;
}

.hotline-tag {
    display: inline-block;
    font-size: 11px;
    color: var(--white);
    background: var(--primary);
    padding: 2px 7px;
    border-radius: 3px;
    white-space: nowrap;
}

.hotline-primary .hotline-tag {
    background: var(--accent);
}

.hotline-secondary .hotline-tag {
    background: #8a96a8;
}

.hotline-num {
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
}

.hotline-name {
    font-size: 12px;
    color: var(--text-light);
}

/* 导航 */
.main-nav {
    background: var(--primary);
    position: sticky;
    top: 90px;
    z-index: 999;
}

.nav-flex {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    width: 100%;
}

.nav-menu li {
    flex: 1;
    text-align: center;
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    padding: 12px 0;
    cursor: pointer;
}

/* 下拉菜单（产品中心） */
.menu-item-has-children {
    position: relative;
}
.menu-item-has-children > a .fa-caret-down {
    margin-left: 5px;
    font-size: 12px;
}
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
    border-radius: 0 0 6px 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 1000;
}
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children.open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* 二级下拉（如 产品中心 → 调理类 → 产品）显示在右侧 */
.sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
}
.sub-menu li {
    flex: none;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.sub-menu li:last-child {
    border-bottom: none;
}
.sub-menu a {
    color: var(--text);
    padding: 12px 18px;
    font-size: 14px;
    white-space: nowrap;
    background: transparent;
}
.sub-menu a:hover {
    background: var(--primary-light);
    color: #fff;
}
@media (max-width: 768px) {
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--primary-dark);
        display: none;
        padding-left: 12px;
        min-width: 0;
    }
    .menu-item-has-children.open > .sub-menu {
        display: flex;
    }
    .sub-menu a {
        color: #d6e2f0;
        padding: 10px 16px;
    }
    .sub-menu a:hover {
        background: var(--primary);
        color: #fff;
    }
}

/* 横幅 */
.hero {
    position: relative;
    height: 620px;
    background-color: #1a2330;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15,23,42,0.78) 0%, rgba(15,23,42,0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 920px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
}

.hero-content h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: 3px;
}

.hero-desc {
    font-size: 17px;
    margin-bottom: 38px;
    opacity: 0.92;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.hero .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}
.hero .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* 核心数据 */
.stats-bar {
    background: var(--primary);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-item strong {
    display: block;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item span {
    font-size: 15px;
    opacity: 0.9;
}

/* 关于我们 */
.about {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img img {
    width: 100%;
    display: block;
}

.about-text h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-light);
    text-align: justify;
}

.about-features {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.about-features i {
    color: var(--primary);
}

/* 产品中心 */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.product-img {
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 18px;
    padding: 18px 18px 8px;
    color: var(--secondary);
}

.product-card p {
    font-size: 14px;
    color: var(--text-light);
    padding: 0 18px 15px;
    min-height: 60px;
}

.product-card a {
    display: block;
    padding: 12px 18px;
    border-top: 1px solid var(--border);
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

.product-card a:hover {
    background: var(--primary);
    color: var(--white);
}

.product-card a i {
    float: right;
}

/* 解决方案 */
.solutions {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    position: relative;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.solution-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 22px 14px;
    text-align: center;
    color: var(--white);
    transition: var(--transition);
}

.solution-card:hover {
    background: rgba(31,78,121,0.35);
    border-color: var(--primary-light);
    transform: translateY(-4px);
}

.solution-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}

.solution-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.solution-card p {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    line-height: 1.55;
}

/* 服务流程 */
.process {
    background: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.process-step {
    background: var(--white);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.process-step i {
    font-size: 36px;
    color: var(--primary);
    margin: 15px 0 15px;
}

.process-step h3 {
    font-size: 17px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 13px;
    color: var(--text-light);
}

/* 客户案例 */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.case-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.case-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.case-card:hover img {
    transform: scale(1.05);
}

.case-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 30px 20px 20px;
}

.case-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.case-info p {
    font-size: 13px;
    opacity: 0.9;
}

/* 新闻资讯 */
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    gap: 25px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 25px;
    transition: var(--transition);
}

.news-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.news-date {
    min-width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.news-date strong {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.news-date span {
    font-size: 13px;
    margin-top: 4px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.news-content h3 a:hover {
    color: var(--primary);
}

.news-content p {
    font-size: 14px;
    color: var(--text-light);
}

/* 联系方式 */
.contact {
    background: #f5f7fa;
    color: var(--text);
    padding: 60px 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #e8edf3;
    display: flex;
    flex-direction: column;
}
.contact-card-primary {
    border-top: 4px solid var(--accent);
}
.contact-card:not(.contact-card-primary) {
    border-top: 4px solid var(--primary);
}

.contact-card .contact-tag {
    display: block;
    background: var(--accent);
    color: #fff;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 0;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.contact-card .contact-tag.contact-tag-muted {
    background: var(--primary);
    color: #fff;
}

.contact-card-body {
    padding: 24px 28px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #e6a23c 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.contact-avatar-muted {
    background: linear-gradient(135deg, var(--primary) 0%, #1e4a6e 100%);
}

.contact-meta {
    text-align: left;
}
.contact-name {
    display: block;
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 4px;
}
.contact-region {
    display: block;
    font-size: 13px;
    color: var(--text-light);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    width: 100%;
}
.contact-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text);
    padding: 8px 0;
    border-bottom: 1px dashed #e8edf3;
}
.contact-list li:last-child {
    border-bottom: none;
}
.contact-list li i {
    color: var(--primary);
    width: 18px;
    text-align: center;
}

.contact-poster {
    margin-top: 6px;
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eef2f7;
}
.contact-poster img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}
.contact-poster-tip {
    margin-top: 14px;
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.contact-poster-tip i {
    color: #07c160;
    font-size: 15px;
}

.contact-email-line {
    text-align: center;
    margin-top: 35px;
    color: var(--text-light);
    font-size: 14px;
}
.contact-email-line i {
    color: var(--primary);
    margin-right: 6px;
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contact-poster {
        max-width: 280px;
    }
}

.contact-form {
    background: var(--white);
    border-radius: 8px;
    padding: 35px;
    color: var(--text);
}

.contact-form h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* 底部 */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 0;
}

.footer-map iframe,
.footer-map img {
    border-radius: 10px;
    border: none;
    display: block;
}
.footer-map-link {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}
.footer-map-link:hover img {
    opacity: 0.92;
}
.footer-address-detail a {
    color: inherit;
    text-decoration: underline;
}

.footer-address-detail {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin-top: 10px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-address-detail i {
    color: var(--primary);
}

.footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-col h4 {
    font-size: 17px;
    margin-bottom: 18px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-col-full {
    grid-column: 1 / -1;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.footer-nav li {
    margin-bottom: 0;
}

.footer-nav a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    display: inline-block;
    padding: 4px 0;
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-contact-list p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-contact-list i {
    color: var(--primary);
    width: 16px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* 返回顶部 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 998;
}

/* 响应式 */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-card {
        padding: 15px 16px 12px;
    }
    .contact-card .qr-code img {
        width: 110px;
        height: 110px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .solution-card { padding: 18px 12px; }
    .solution-card i { font-size: 26px; margin-bottom: 10px; }
    .solution-card h3 { font-size: 15px; margin-bottom: 6px; }
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    .footer-right {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .logo-area {
        flex-direction: column;
    }
    .logo-text h1 {
        font-size: 18px;
    }
    .main-nav {
        position: relative;
        top: 0;
    }
    .mobile-menu-btn {
        display: block;
        width: 100%;
        text-align: left;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu li {
        text-align: left;
    }
    .hero {
        height: 500px;
    }
    .hero-content h2 {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .hero-desc {
        font-size: 15px;
    }
    .products-grid,
    .cases-grid,
    .process-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .solution-card { padding: 16px 10px; }
    .solution-card i { font-size: 24px; margin-bottom: 8px; }
    .solution-card h3 { font-size: 14px; margin-bottom: 5px; }
    .solution-card p { font-size: 11px; line-height: 1.45; }
    .about-features,
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .footer-right {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-left {
        align-items: center;
    }
    .footer-map {
        width: 100%;
        max-width: 480px;
    }
    .footer-contact-list p,
    .footer-address-detail {
        justify-content: center;
    }
    .section {
        padding: 50px 0;
    }
}

/* ===== 满鼎华 · 产品详情页 (pd-*) ===== */
.pd-wrap { max-width: 980px; margin: 0 auto; color: #333; line-height: 1.7; }
.pd-hero { text-align: center; margin: 12px 0 28px; }
.pd-hero-img { max-width: 100%; height: auto; border-radius: 10px;
               box-shadow: 0 8px 28px rgba(0,0,0,.10); }
.pd-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
              gap: 14px; margin: 24px 0 32px; }
.pd-gallery img { width: 100%; height: 220px; object-fit: cover; border-radius: 8px;
                  box-shadow: 0 2px 8px rgba(0,0,0,.08); transition: transform .25s; }
.pd-gallery img:hover { transform: scale(1.03); }
.pd-wrap h2 { font-size: 22px; margin: 36px 0 14px; padding-left: 14px;
              border-left: 4px solid var(--primary); color: #1a1a1a; }
.pd-features, .pd-scenes { padding-left: 0; list-style: none; margin: 12px 0; }
.pd-features li, .pd-scenes li { padding: 8px 0 8px 32px; position: relative; }
.pd-features li:before { content: "✓"; position: absolute; left: 6px; top: 8px;
                          color: var(--primary); font-weight: 700; }
.pd-scenes li:before { content: "▸"; position: absolute; left: 10px; top: 8px;
                        color: var(--primary); }
.pd-specs { width: 100%; border-collapse: collapse; margin: 16px 0;
            background: #fafafa; border-radius: 8px; overflow: hidden; }
.pd-specs th, .pd-specs td { padding: 12px 18px; border-bottom: 1px solid #ececec;
                              text-align: left; }
.pd-specs th { width: 32%; background: #f0f0f0; color: #222; font-weight: 600; }
.pd-specs td { color: #555; }
.pd-specs tr:last-child th, .pd-specs tr:last-child td { border-bottom: none; }
.faq { margin: 14px 0; padding: 16px 20px; background: #f9f9f9; border-radius: 8px;
       border-left: 3px solid var(--primary); }
.faq h4 { color: var(--primary); margin: 0 0 6px; font-size: 16px; }
.faq p { margin: 0; color: #555; }
@media (max-width: 640px) {
  .pd-gallery img { height: 170px; }
  .pd-specs th, .pd-specs td { padding: 9px 12px; font-size: 14px; }
  .pd-wrap h2 { font-size: 19px; }
}
/* ===== /产品详情页 ===== */

/* ===== 案例 / 新闻 详情页正文 ===== */
.entry-content { max-width: 900px; margin: 0 auto; color: var(--text); line-height: 1.85; font-size: 16px; }
.entry-content h2 { font-size: 24px; color: var(--secondary); margin: 36px 0 14px; padding-left: 14px;
                     border-left: 4px solid var(--primary); }
.entry-content h3 { font-size: 19px; color: var(--primary-dark); margin: 28px 0 10px; }
.entry-content p  { margin: 0 0 16px; color: var(--text); }
.entry-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 14px 0; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.entry-content ul, .entry-content ol { padding-left: 22px; margin: 12px 0; }
.entry-content li { margin: 6px 0; }
.entry-content blockquote { border-left: 3px solid var(--accent); padding: 10px 18px; background: #fffaf2; color: var(--text-light); margin: 18px 0; border-radius: 4px; }
.entry-content a { color: var(--primary); }
.entry-content a:hover { color: var(--accent-dark); }

/* 案例画廊 */
.cs-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; margin: 20px 0; }
.cs-gallery img { width: 100%; height: 260px; object-fit: cover; border-radius: 8px; box-shadow: 0 3px 12px rgba(0,0,0,0.08); }
.cs-meta { display: flex; flex-wrap: wrap; gap: 12px 24px; padding: 16px 22px; background: var(--bg-light); border-radius: 8px; margin: 0 0 26px; font-size: 14px; color: var(--text-light); }
.cs-meta strong { color: var(--secondary); margin-right: 6px; }

/* ===== /案例新闻详情 ===== */

/* ===== 页脚备案 + 版权 ===== */
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 24px 0; }
.footer-bottom .copyright { font-size: 13px; color: rgba(255,255,255,0.55); }

/* ===== 首页紧凑版新增样式 ===== */

/* 核心优势条 —— 紧凑卡片 */
.advantage-bar {
    background: var(--primary);
    color: #fff;
    padding: 14px 0;
}
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    align-items: stretch;
}
.adv-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 10px;
    padding: 10px 12px;
    transition: background .2s, transform .2s;
}
.adv-item:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}
.adv-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
}
.adv-icon i {
    font-size: 16px;
    color: var(--accent);
}
.adv-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.25;
    min-width: 0;
}
.adv-text strong {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.adv-text span {
    font-size: 12px;
    opacity: 0.80;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 核心产品速览 */
.product-quick {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    align-items: stretch;
}

/* JS 分页后：容器改为块级，由 .pq-page 自身做网格 */
.product-quick.pq-paginated {
    display: block;
}
.product-quick.pq-paginated > .pq-page {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    align-items: stretch;
}
.product-quick.pq-paginated > .pq-page.active {
    display: grid;
}

.pq-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid #e8edf3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform .2s, box-shadow .2s, border-color .2s;
    height: 100%;
}
.pq-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}
.pq-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    background: #f0f2f5;
    flex: 0 0 auto;
}
.pq-body {
    padding: 11px 10px;
    text-align: center;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}
.pq-card h3 {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 5px;
    color: var(--secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(15px * 1.35 * 2);
}
.pq-card p {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}
.products-more {
    text-align: center;
    margin: 12px 0 4px;
    font-size: 13px;
    color: var(--text-light);
}
.section-cta {
    text-align: center;
    margin-top: 18px;
}

/* 为什么选我们 / 信任区 */
.why-us {
    background: #f5f7fa;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 36px;
    align-items: center;
}
.why-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}
.why-text h2 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 10px;
}
.why-lead {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 15px;
}
.why-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}
.why-stats strong {
    display: block;
    font-size: 28px;
    color: var(--primary);
    font-weight: 800;
}
.why-stats span {
    font-size: 12px;
    color: var(--text-light);
}
.why-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text);
}
.why-features i {
    color: var(--accent);
    margin-top: 2px;
    font-size: 15px;
}
.cert-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}
.cert-row span {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
}

/* 解决方案/案例网格紧凑化 */
.solutions-grid,
.cases-grid {
    gap: 20px;
}
.solution-card {
    padding: 28px 22px;
}

/* ===== 响应式：首页新增区块 ===== */
@media (max-width: 992px) {
    .advantage-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-quick { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; gap: 24px; }
    .why-stats { gap: 18px; }
}
@media (max-width: 640px) {
    .advantage-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .adv-item { padding: 8px 10px; gap: 8px; }
    .adv-icon { flex: 0 0 30px; width: 30px; height: 30px; }
    .adv-icon i { font-size: 13px; }
    .adv-text strong { font-size: 13px; }
    .adv-text span { font-size: 11px; }
    .product-quick { grid-template-columns: 1fr; }
    .why-stats { flex-wrap: wrap; }
    .why-stats div { flex: 1 1 40%; }
}
.footer-bottom .icp-line  { font-size: 13px; color: rgba(255,255,255,0.55); display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.footer-bottom .icp-line a { color: rgba(255,255,255,0.55); }
.footer-bottom .icp-line a:hover { color: var(--accent); }
.footer-bottom .icp-line img { display:inline-block; vertical-align: middle; height: 14px; margin-right: 4px; }
@media (max-width: 768px) {
  .footer-bottom .icp-line { gap: 8px; font-size: 12px; }
}
/* ===== /页脚 ===== */

/* 联系名片图（已弃用，保留兼容） */
.contact-banner {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

/* ===== 全站浮动联系方式 ===== */
.float-contact {
    position: fixed;
    right: 16px;
    bottom: 100px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 58px;
    padding: 8px 4px;
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    color: var(--primary);
    font-size: 12px;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.fc-item i {
    font-size: 20px;
    margin-bottom: 3px;
}
.fc-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.2);
    color: var(--secondary);
}
.fc-item#fcWechat {
    background: #07c160;
    color: #fff;
}
.fc-item#fcWechat:hover {
    background: #06ad56;
}
.fc-item#fcTop {
    background: var(--secondary);
    color: #fff;
}
.fc-item#fcTop:hover {
    background: #0f172a;
}

/* 微信二维码弹窗 */
.fc-qr {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
}
.fc-qr.active {
    opacity: 1;
    visibility: visible;
}
.fc-qr-box {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    max-width: 360px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    transform: translateY(10px);
    transition: transform .25s;
}
.fc-qr.active .fc-qr-box {
    transform: translateY(0);
}
.fc-qr-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}
.fc-qr-box p {
    margin: 12px 0 0;
    font-size: 14px;
    color: var(--text-light);
}
.fc-qr-close {
    position: absolute;
    top: 8px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0,0,0,0.06);
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    color: var(--text-light);
    cursor: pointer;
    transition: background .2s, color .2s;
}
.fc-qr-close:hover {
    background: rgba(0,0,0,0.12);
    color: var(--secondary);
}

/* ===== 首页产品轮播图 ===== */
.product-carousel {
    background: var(--bg-light);
}
.carousel-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
    background: #fff;
}
.carousel-track {
    display: flex;
    transition: transform .5s ease-in-out;
}
.carousel-slide {
    flex: 0 0 100%;
    position: relative;
}
.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.88);
    border: none;
    color: var(--secondary);
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s, transform .2s;
}
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }
.carousel-btn:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-50%) scale(1.05);
}
.carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(0,0,0,0.25);
    border-radius: 20px;
}
.carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.55);
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0;
}
.carousel-dots button.active {
    background: var(--accent);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .float-contact {
        right: 10px;
        bottom: 80px;
        gap: 8px;
    }
    .fc-item {
        width: 48px;
        padding: 6px 2px;
        font-size: 11px;
        border-radius: 10px;
    }
    .fc-item i { font-size: 17px; }
    .fc-qr-box { max-width: 300px; padding: 16px; }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .carousel-btn.prev { left: 8px; }
    .carousel-btn.next { right: 8px; }
    .carousel-dots {
        bottom: 10px;
        gap: 6px;
        padding: 4px 10px;
    }
    .carousel-dots button {
        width: 8px;
        height: 8px;
    }
}

/* 解决方案/案例缩略图（后台文章特色图片） */
.solution-card img.sol-thumb {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 14px;
}
.case-card img.case-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 12px;
}

/* ================= 搜索框 & 搜索结果页 ================= */
.nav-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 12px;
}
.nav-search-toggle {
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 15px;
    transition: background .2s;
}
.nav-search-toggle:hover { background: rgba(255,255,255,0.22); }
.nav-search-form {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    transform-origin: right center;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
    display: flex;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
    width: 280px;
    z-index: 1001;
}
.nav-search-form.active {
    transform: translateY(-50%) scaleX(1);
    opacity: 1;
    visibility: visible;
}
.nav-search-form input[type="search"] {
    flex: 1;
    border: none;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    color: var(--text);
    background: transparent;
}
.nav-search-form button {
    border: none;
    background: var(--accent);
    color: #fff;
    padding: 0 16px;
    cursor: pointer;
    font-size: 14px;
}
.nav-search-form button:hover { background: var(--primary-dark); }

/* 搜索结果页 */
.search-page { padding: 50px 0 80px; background: #f8fafc; }
.search-page-header {
    text-align: center;
    margin-bottom: 40px;
}
.search-page-title {
    font-size: 26px;
    color: var(--secondary);
    margin-bottom: 8px;
}
.search-page-count {
    color: var(--text-light);
    margin-bottom: 20px;
}
.search-page-form {
    display: inline-flex;
    max-width: 560px;
    width: 100%;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    border: 1px solid #e2e8f0;
}
.search-page-form input[type="search"] {
    flex: 1;
    border: none;
    padding: 14px 24px;
    font-size: 15px;
    outline: none;
}
.search-page-form button {
    border: none;
    background: var(--primary);
    color: #fff;
    padding: 0 24px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
}
.search-page-form button:hover { background: var(--primary-dark); }

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}
.search-result-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.search-result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,.1);
}
.search-result-thumb {
    display: block;
    height: 180px;
    overflow: hidden;
    background: #eef2f7;
}
.search-result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.search-result-card:hover .search-result-thumb img { transform: scale(1.05); }
.search-result-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.search-result-type {
    display: inline-block;
    font-size: 12px;
    color: var(--primary);
    background: rgba(0,102,178,.08);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    width: fit-content;
}
.search-result-title {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.4;
}
.search-result-title a { color: var(--secondary); }
.search-result-title a:hover { color: var(--primary); }
.search-result-excerpt {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}
.search-result-more {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}
.search-result-more:hover { color: var(--primary-dark); }

.search-pagination {
    text-align: center;
}
.search-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    background: #fff;
    border-radius: 6px;
    color: var(--text);
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
.search-pagination .page-numbers.current {
    background: var(--primary);
    color: #fff;
}
.search-pagination .page-numbers:hover:not(.current) {
    background: var(--light-bg);
}

.search-no-results {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.search-no-results > i {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 16px;
}
.search-no-results h2 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 10px;
}
.search-no-results p {
    color: var(--text-light);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .nav-search-form {
        position: fixed;
        top: 110px;
        right: 15px;
        left: 15px;
        width: auto;
        transform: translateY(-10px) scaleX(1);
        opacity: 0;
        visibility: hidden;
    }
    .nav-search-form.active {
        transform: translateY(0) scaleX(1);
        opacity: 1;
        visibility: visible;
    }
    .search-results-grid { grid-template-columns: 1fr; }
    .search-page-title { font-size: 20px; }
}

/* ================================
   核心产品系列 —— 翻页分页样式
   追加到 /wp-content/themes/mandinghua/style.css 末尾
   ================================ */

/* 分页容器：默认隐藏，只有 active 页显示 */
.product-quick {
    position: relative;
}

.pq-page {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    animation: pqFadeIn 0.35s ease;
}

.pq-page.active {
    display: grid;
}

@keyframes pqFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* 分页按钮 */
.pq-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pq-pagination button {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--border, #e3e8ee);
    background: var(--white, #ffffff);
    color: var(--text, #2d3748);
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pq-pagination button:hover:not(:disabled) {
    border-color: var(--primary, #1f4e79);
    color: var(--primary, #1f4e79);
}

.pq-pagination button.active {
    background: var(--primary, #1f4e79);
    border-color: var(--primary, #1f4e79);
    color: var(--white, #ffffff);
}

.pq-pagination button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.pq-prev-next {
    font-weight: 600;
}

/* 响应式 */
@media (max-width: 992px) {
    .product-quick,
    .product-quick > .pq-page { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .product-quick,
    .product-quick > .pq-page { grid-template-columns: 1fr; }
}


/* 2026-08-24 补：wp_nav_menu 父项下拉箭头（替代硬编码版 .fa-caret-down 图标） */
.main-nav .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

/* === 满鼎华 山东博兴厨都 地域词板块（2026-08-24） === */
.chudu { background:#f7f9fc; }
.chudu-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin:34px 0 28px; }
.chudu-card { background:#fff; border:1px solid #e8edf3; border-radius:12px; padding:26px 22px; box-shadow:0 4px 16px rgba(20,40,80,.05); transition:.25s; }
.chudu-card:hover { transform:translateY(-4px); box-shadow:0 10px 26px rgba(20,40,80,.10); }
.chudu-card h3 { font-size:18px; color:#1f3a5f; margin-bottom:12px; }
.chudu-card p { font-size:14px; line-height:1.85; color:#4a5868; }
.chudu-cta { text-align:center; }
@media (max-width:768px){ .chudu-grid{ grid-template-columns:1fr; } }

/* === 满鼎华 产品页厂家直销信息块（2026-08-24） === */
.pd-factory { margin-top:34px; padding:26px 28px; background:#f7f9fc; border:1px solid #e8edf3; border-radius:12px; }
.pd-factory-title { font-size:20px; color:#1f3a5f; margin-bottom:16px; text-align:center; }
.pd-factory-list { list-style:none; margin:0 0 18px; padding:0; }
.pd-factory-list li { font-size:14.5px; line-height:1.9; color:#3a4a5a; padding:7px 0 7px 26px; position:relative; border-bottom:1px dashed #e3e9f0; }
.pd-factory-list li:last-child { border-bottom:none; }
.pd-factory-list li::before { content:"✔"; position:absolute; left:0; top:7px; color:#2e9e6b; font-weight:700; }
.pd-factory-list strong { color:#1f3a5f; }
.pd-factory-cta { text-align:center; }
@media (max-width:768px){ .pd-factory{ padding:20px 16px; } }
