/* ============================================
   博创装饰 - 主样式表
   色系：橙色主色调 + 金色点缀
   字体：苹果系统字体（苹方 PingFang SC 优先）
   ============================================ */

:root {
    --primary: #ff6b00;
    --primary-dark: #e55d00;
    --primary-light: #ff8533;
    --gold: #c9a96e;
    --gold-light: #dfc48a;
    --dark: #2d2d2d;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #fffaf5;
    --bg-white: #ffffff;
    --border: #f0e8e0;
    --shadow: rgba(0,0,0,0.08);
    --radius: 8px;
    /* 苹果字体栈：苹方 → 系统字体 → 冬青黑 → 旧 macOS → Windows 回退 */
    --font-apple: 'PingFang SC', 'PingFang TC', 'PingFang HK', -apple-system, BlinkMacSystemFont, 'Hiragino Sans GB', 'Helvetica Neue', 'Microsoft YaHei', '微软雅黑', sans-serif;
    /* 苹果等宽字体栈：用于代码块等 */
    --font-mono: 'SF Mono', 'SFMono-Regular', Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* 全局字体：所有元素统一用苹果字体栈 */
html,
body,
button,
input,
select,
textarea,
optgroup {
    font-family: var(--font-apple);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-apple);
    color: var(--text);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
}
html { overflow-x: hidden; }

/* 代码/等宽字体：苹果等宽优先 */
code,
kbd,
pre,
samp {
    font-family: var(--font-mono);
}

a { color: inherit; text-decoration: none; transition: color 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   富文本内容区（.rich-content）
   说明：本样式用于规范后台富文本编辑器（UEditor / KindEditor / wangEditor）
   输出内容的展示。套 ThinkAdmin V6 时，富文本字段统一通过 {$content|raw}
   标签输出到 .rich-content 容器中。
   支持的标签：h1-h6 / p / ul / ol / li / img / a / blockquote /
   table / strong / em / pre / code / hr / iframe / figure
   ============================================ */
.rich-content {
    font-family: var(--font-apple);
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-light);
    word-wrap: break-word;
    word-break: break-word;
}
.rich-content > *:first-child { margin-top: 0; }
.rich-content > *:last-child { margin-bottom: 0; }
.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5,
.rich-content h6 {
    color: var(--text);
    font-weight: 600;
    line-height: 1.4;
    margin: 1.5em 0 0.7em;
}
.rich-content h1 { font-size: 28px; }
.rich-content h2 { font-size: 24px; }
.rich-content h3 { font-size: 20px; }
.rich-content h4 { font-size: 18px; }
.rich-content h5,
.rich-content h6 { font-size: 16px; }
.rich-content p { margin: 0 0 1em; }
.rich-content strong,
.rich-content b { color: var(--text); font-weight: 700; }
.rich-content em,
.rich-content i { font-style: italic; }
.rich-content u { text-decoration: underline; }
.rich-content s,
.rich-content del { color: var(--text-muted); }
.rich-content ul,
.rich-content ol { margin: 0 0 1em; padding-left: 1.6em; }
.rich-content ul li { list-style: disc; }
.rich-content ol li { list-style: decimal; }
.rich-content li { margin-bottom: 0.4em; }
.rich-content li > ul,
.rich-content li > ol { margin: 0.4em 0; }
.rich-content a { color: var(--primary); text-decoration: underline; transition: color 0.2s; }
.rich-content a:hover { color: var(--primary-dark); }
.rich-content img {
    max-width: 100%;
    height: auto !important;
    display: block;
    border-radius: 6px;
    margin: 1em auto;
}
.rich-content figure { margin: 1em 0; text-align: center; }
.rich-content figcaption {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 8px;
    text-align: center;
}
.rich-content blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    padding: 14px 20px;
    color: var(--text-light);
    margin: 1.2em 0;
    border-radius: 0 4px 4px 0;
    font-style: normal;
}
.rich-content blockquote p:last-child { margin-bottom: 0; }
.rich-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    font-size: 14px;
}
.rich-content table th,
.rich-content table td {
    border: 1px solid var(--border);
    padding: 8px 12px;
    text-align: left;
}
.rich-content table th {
    background: var(--bg-light);
    color: var(--text);
    font-weight: 600;
}
.rich-content table tbody tr:hover { background: #fafafa; }
.rich-content hr {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 1.8em 0;
}
.rich-content code {
    background: #f5f5f5;
    border-radius: 3px;
    padding: 1px 6px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: #c7254e;
}
.rich-content pre {
    background: #2d2d2d;
    color: #f8f8f2;
    border-radius: 6px;
    padding: 14px 18px;
    overflow-x: auto;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 1.6;
    margin: 1em 0;
}
.rich-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
    border-radius: 0;
}
.rich-content iframe {
    max-width: 100%;
    border: 0;
    display: block;
    margin: 1em auto;
}
.rich-content video {
    max-width: 100%;
    display: block;
    margin: 1em auto;
    border-radius: 6px;
}
/* 富文本中常见的对齐方式（兼容 UEditor 输出） */
.rich-content .ue-align-left { text-align: left; }
.rich-content .ue-align-center { text-align: center; }
.rich-content .ue-align-right { text-align: right; }

/* 顶部信息栏 */
.top-bar {
    background: var(--primary-dark);
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-left span, .top-right span { margin: 0 8px; cursor: pointer; }
.top-left .divider, .top-right .divider { opacity: 0.5; }
.top-bar i { margin-right: 4px; }

/* 主导航 */
.main-header {
    background: var(--bg-white);
    box-shadow: 0 2px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}
.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.logo { display: flex; flex-direction: column; }
.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 2px;
}
.logo-text span { color: var(--gold); font-weight: 400; }
.logo-slogan { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; }

.nav-list { display: flex; gap: 0; }
.nav-item { position: relative; }
.nav-item > a {
    display: block;
    padding: 28px 18px;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}
.nav-item > a i { font-size: 11px; margin-left: 3px; }
.nav-item:hover > a, .nav-item.active > a { color: var(--primary); }
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.3s;
    border-radius: 2px;
}
.nav-item:hover::after, .nav-item.active::after { width: 30px; }

/* 下拉菜单 */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-radius: var(--radius);
    padding: 12px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown li a {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    color: var(--text-light);
    white-space: nowrap;
}
.dropdown li a:hover { color: var(--primary); background: var(--bg-light); }

.header-right .header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
}
.header-right .header-phone i { color: var(--gold); }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--dark); transition: 0.3s; border-radius: 2px; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* 移动端导航菜单 */
.main-nav.mobile-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 10px 0;
    max-height: 75vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.main-nav.mobile-open .nav-list {
    flex-direction: column;
    gap: 0;
}
.main-nav.mobile-open .nav-item > a {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}
.main-nav.mobile-open .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0;
    background: var(--bg-light);
    display: none;
    min-width: 100%;
    border-radius: 0;
}
.main-nav.mobile-open .nav-item.open .dropdown { display: block; }
.main-nav.mobile-open .dropdown li a { padding: 12px 36px; font-size: 14px; }

/* Banner */
.banner-section { position: relative; height: 560px; overflow: hidden; }
.banner-slider { position: relative; height: 100%; }
.banner-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease;
}
.banner-slide.active { opacity: 1; }
.banner-content { text-align: center; color: #fff; }
.banner-content h2 { font-size: 48px; font-weight: 300; letter-spacing: 6px; margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.banner-content p { font-size: 18px; opacity: 0.9; margin-bottom: 36px; letter-spacing: 3px; }
.btn-banner {
    display: inline-block;
    padding: 14px 42px;
    background: var(--gold);
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(201,169,110,0.4);
}
.btn-banner:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 30px rgba(201,169,110,0.5); }

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}
.dot.active { background: var(--gold); transform: scale(1.2); }

/* 报价区 */
.quote-section { padding: 60px 0; background: var(--bg-light); }
.quote-box { max-width: 800px; margin: 0 auto; text-align: center; }
.quote-title { font-size: 28px; color: var(--primary-dark); margin-bottom: 10px; }
.quote-desc { color: var(--text-muted); margin-bottom: 30px; }
.quote-desc .highlight { color: var(--gold); font-weight: 700; font-size: 20px; }
.quote-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; align-items: center; }
.form-group input {
    width: 170px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    transition: border-color 0.3s;
    background: var(--bg-white);
}
.form-group input:focus { outline: none; border-color: var(--primary); }
.btn-submit {
    padding: 14px 36px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(44,110,110,0.3); }

/* 品牌优势 */
.advantages-section { padding: 60px 0; background: var(--bg-white); }
.advantages-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.advantage-card {
    text-align: center;
    padding: 30px 15px;
    border-radius: var(--radius);
    transition: all 0.3s;
    border: 1px solid transparent;
}
.advantage-card:hover { border-color: var(--border); box-shadow: 0 10px 30px var(--shadow); transform: translateY(-5px); }
.advantage-number { font-size: 42px; font-weight: 700; color: var(--primary); line-height: 1.2; }
.advantage-number span { font-size: 16px; color: var(--text-muted); font-weight: 400; }
.advantage-text { margin-top: 12px; font-size: 13px; color: var(--text-light); line-height: 1.8; }

/* 通用section标题 */
.section-header { text-align: center; margin-bottom: 50px; }
.section-title { font-size: 32px; color: var(--primary-dark); font-weight: 600; margin-bottom: 12px; }
.section-desc { font-size: 15px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.section-more { text-align: center; margin-top: 40px; }
.btn-more {
    display: inline-block;
    padding: 12px 36px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 14px;
    transition: all 0.3s;
}
.btn-more:hover { background: var(--primary); color: #fff; }

/* 装修服务 */
.services-section { padding: 80px 0; background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
    background: var(--bg-white);
    padding: 40px 24px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.4s;
    border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: var(--primary); }
.service-icon { font-size: 42px; color: var(--primary); margin-bottom: 20px; }
.service-card:hover .service-icon { color: var(--gold); }
.service-card h3 { font-size: 20px; color: var(--primary-dark); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.service-more { color: var(--gold); font-size: 13px; font-weight: 500; }
.service-more:hover { color: var(--primary); }

/* 家装案例品鉴 - 仿圣都：标题+风格tab，两行向左无缝滚动，hover茶色渐变遮罩文字自底部升起 */
.cases-section { padding: 60px 0 40px; background: var(--bg-white); overflow: hidden; }
.cases-header { text-align: center; }
.cases-title {
    font-size: 40px;
    font-weight: 600;
    color: #222;
    line-height: 56px;
    margin-bottom: 20px;
    font-family: var(--font-apple);
}
.cases-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    row-gap: 12px;
}
.filter-tag {
    flex-shrink: 0;
    font-size: 15px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 7px 20px;
    background: none;
    border: 1px solid #e8e2da;
    border-radius: 22px;
    letter-spacing: 1px;
    line-height: 1.4;
    white-space: nowrap;
}
.filter-tag:hover { color: #b8935a; border-color: #d9c8a9; }
.filter-tag.active {
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg, #c9a96e 0%, #b8935a 100%);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(201,169,110,0.45);
}
.filter-sep { display: none; }

/* 滚动容器：全屏宽度，两行卡片 2px 间隔 */
.cases-scroll-wrap {
    width: 100%;
    margin: 40px 0 22px;
    overflow: hidden;
}
.cases-row {
    display: flex;
    column-gap: 2px;
    width: max-content;
    margin-bottom: 2px;
    will-change: transform;
}
.cases-row:last-child { margin-bottom: 0; }
/* 以下用 .cases-scroll-wrap 作用域隔离，避免被案例列表页同名样式覆盖 */
.cases-scroll-wrap .case-card {
    position: relative;
    width: 370px;
    height: 278px;
    overflow: hidden;
    cursor: pointer;
    background: #f5f5f5;
    flex-shrink: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    display: block;
    transition: none;
}
.cases-scroll-wrap .case-card:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}
.cases-scroll-wrap .case-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    transition: transform 0.6s ease;
}
.cases-scroll-wrap .case-img::before { display: none; }

.cases-scroll-wrap .case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* hover：茶色渐变遮罩 + 文字整体自底部升起（与圣都一致：默认下沉146px隐藏） */
.cases-scroll-wrap .case-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 146px;
    padding: 69px 18px 18px;
    box-sizing: border-box;
    background: linear-gradient(to bottom, rgba(154,127,95,0) 0%, rgb(154,127,95) 50%);
    color: #fff;
    z-index: 2;
    opacity: 0;
    transform: translateY(146px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    pointer-events: none;
}
.cases-scroll-wrap .case-card:hover .case-text { opacity: 1; transform: translateY(0); }
.cases-scroll-wrap .case-text .case-title,
.cases-scroll-wrap .case-card:hover .case-text .case-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    line-height: 28px;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}
.cases-scroll-wrap .case-text .case-desc {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 22px;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cases-more { text-align: center; }
.btn-cases-more {
    display: inline-block;
    width: 152px;
    height: 48px;
    line-height: 48px;
    padding: 0;
    background: #025e49;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    transition: background 0.3s;
}
.btn-cases-more:hover { background: #037a5e; color: #fff; }
.btn-cases-more i { margin-left: 6px; }

/* 设计师推荐 - 精确复刻圣都轮播风格 */
.designers-section { padding: 80px 0 60px; background: #f7f8fa; }
.designers-title {
    font-size: 40px;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin-bottom: 12px;
    font-family: var(--font-apple);
}
.designers-subtitle {
    font-size: 16px;
    color: #999;
    text-align: center;
    margin-bottom: 40px;
}
.designers-carousel-wrapper {
    position: relative;
    overflow: hidden;
}
.designers-carousel {
    overflow: hidden;
}
.designers-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}
.designer-card {
    min-width: calc(25% - 15px);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    display: block;
    padding: 34px 20px 26px;
    text-align: center;
}
.designer-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.12); transform: translateY(-6px); }
/* 圆形大头像 */
.designer-photo {
    width: 148px;
    height: 148px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 4px solid #fff;
    outline: 1px solid #efe9e0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    transition: transform 0.35s ease, outline-color 0.35s ease;
}
.designer-card:hover .designer-photo { transform: scale(1.05); outline-color: var(--gold); }
.designer-photo img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.designer-photo .dp-initial {
    font-size: 52px;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.designer-photo::after { display: none; }
.designer-info {
    padding: 20px 6px 0;
    text-align: center;
}
.designer-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
}
.designer-role {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 14px;
    letter-spacing: 1px;
}
/* 经验/作品统计行 */
.designer-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    color: #999;
    margin-bottom: 20px;
    white-space: nowrap;
}
.designer-stats span { white-space: nowrap; }
.designer-stats strong {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-right: 2px;
}
.designer-stats i {
    flex-shrink: 0;
    width: 1px;
    height: 13px;
    background: #e8e2da;
}
.btn-book {
    display: inline-block;
    padding: 10px 34px;
    background: #fff;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 24px;
    font-size: 14px;
    transition: all 0.3s;
}
.designer-card:hover .btn-book,
.btn-book:hover {
    background: linear-gradient(135deg, #c9a96e 0%, #b8935a 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(201,169,110,0.4);
}

/* 左右箭头 */
.designers-carousel-wrapper { position: relative; }
.d-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #eee4d6;
    background: #fff;
    color: var(--gold);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: all 0.3s;
}
.d-arrow:hover {
    background: linear-gradient(135deg, #c9a96e, #b8935a);
    color: #fff;
    border-color: transparent;
}
.d-prev { left: -8px; }
.d-next { right: -8px; }

/* 轮播圆点 */
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.c-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #d9d9d9;
    cursor: pointer;
    transition: all 0.3s;
}
.c-dot.active { background: var(--primary-dark); width: 24px; border-radius: 4px; }

.designers-more {
    text-align: center;
    margin-top: 24px;
}
.designers-more a {
    font-size: 16px;
    color: var(--primary-dark);
    font-weight: 500;
}
.designers-more a:hover { color: var(--primary); }
.designers-more i { margin-left: 4px; }

/* 品牌理念 */
.philosophy-section {
    height: 360px;
    background-image: url('/static/home/image/bj_4.jpg');
    /*background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);*/
    position: relative;
}
.philosophy-overlay {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.philosophy-section h2 { font-size: 38px; font-weight: 300; letter-spacing: 4px; margin-bottom: 16px; }
.philosophy-section p { font-size: 16px; opacity: 0.8; margin-bottom: 30px; letter-spacing: 2px; }

/* 服务保障 */
.guarantee-section { padding: 80px 0; background: var(--bg-white); }
.guarantee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.guarantee-card {
    padding: 36px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.guarantee-card:hover { border-color: var(--primary); box-shadow: 0 10px 30px var(--shadow); transform: translateY(-3px); }
.guarantee-icon { font-size: 36px; color: var(--primary); margin-bottom: 16px; }
.guarantee-card:hover .guarantee-icon { color: var(--gold); }
.guarantee-card h4 { font-size: 18px; color: var(--text); margin-bottom: 10px; }
.guarantee-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.guarantee-card a { color: var(--gold); font-size: 13px; }
.guarantee-card a:hover { color: var(--primary); }

/* 线下体验店 */
.store-section { padding: 80px 0; background: var(--bg-light); }
.store-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.store-image { border-radius: var(--radius); overflow: hidden; }
.store-placeholder {
    height: 350px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
    border-radius: var(--radius);
}
.store-placeholder p { font-size: 16px; margin-top: 16px; opacity: 0.8; }
.store-info h3 { font-size: 24px; color: var(--primary-dark); margin-bottom: 20px; }
.store-stats { display: flex; gap: 30px; margin-bottom: 20px; }
.store-stats span { font-size: 14px; color: var(--text-light); }
.store-stats strong { display: block; font-size: 28px; color: var(--primary); }
.store-detail { margin-bottom: 24px; }
.store-detail p { font-size: 14px; color: var(--text-light); margin-bottom: 10px; }
.store-detail i { color: var(--gold); margin-right: 8px; width: 16px; }
.store-form { display: flex; flex-direction: column; gap: 12px; }
.store-form input {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    background: var(--bg-white);
}
.store-form input:focus { outline: none; border-color: var(--primary); }

/* 页脚 */
.main-footer { background: var(--dark); color: #ccc; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand h3 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.footer-brand > p:first-of-type { color: var(--gold); font-size: 13px; margin-bottom: 16px; }
.footer-desc { font-size: 14px; line-height: 1.8; color: #999; }
.footer-links h4, .footer-contact h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { font-size: 14px; color: #999; transition: color 0.3s; }
.footer-links ul li a:hover { color: var(--gold); }
.footer-contact p { font-size: 14px; margin-bottom: 10px; color: #999; }
.footer-contact i { color: var(--gold); margin-right: 8px; }
.footer-qrcode { margin-top: 16px; display: flex; align-items: center; gap: 12px; }
.qrcode-placeholder { width: 80px; height: 80px; background: #444; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 32px; color: #666; }
.footer-qrcode span { font-size: 12px; color: #999; }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 13px; color: #777; }
.footer-bottom a { color: #999; margin: 0 8px; }
.footer-bottom a:hover { color: var(--gold); }

/* 右侧悬浮功能窗 */
.float-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
    width: 64px;
    background: #fff;
    border-radius: 4px 0 0 4px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 40px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    gap: 16px;
}
.float-sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 52px;
    cursor: pointer;
    transition: opacity 0.3s;
}
.float-sidebar-item:hover { opacity: 0.7; }
.float-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-dark);
}
.float-sidebar-item span {
    font-size: 12px;
    color: #222;
    margin-top: 4px;
    line-height: 16px;
    white-space: nowrap;
    font-family: var(--font-apple);
}
.float-backtop {
    border-top: 1px solid #eee;
    padding-top: 14px;
    display: none;
}
.float-backtop.show { display: flex; }
.float-backtop .float-icon { font-size: 12px; color: #999; }
.float-backtop span { color: #999; font-size: 11px; }

/* 悬浮弹出层 */
.float-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}
.float-modal.show { display: flex; }
.float-modal-content {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 36px;
    max-width: 420px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s;
}
.float-modal-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}
.float-modal-close:hover { color: var(--text); }
.float-modal-content h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}
.float-modal-content h3 i { margin-right: 8px; color: var(--gold); }
.float-modal-content > p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.float-modal-form { display: flex; flex-direction: column; gap: 14px; }
.float-modal-form input,
.float-modal-form select {
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
    background: var(--bg-white);
}
.float-modal-form input:focus,
.float-modal-form select:focus { outline: none; border-color: var(--primary); }
.float-modal-form .btn-submit { margin-top: 4px; border-radius: 6px; padding: 14px; font-size: 15px; }

/* 避坑指南列表 */
.guide-list { margin-bottom: 20px; }
.guide-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text);
}
.guide-item:last-child { border-bottom: none; }
.guide-num {
    width: 28px; height: 28px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* 电话显示 */
.phone-display { text-align: center; margin: 24px 0; }
.phone-number { font-size: 32px; color: var(--primary); font-weight: 700; margin-bottom: 8px; }
.phone-time { font-size: 14px; color: var(--text-muted); }

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

/* 动画效果 */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }

/* 底部固定报价栏 */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, #2d1f0f 0%, #3d2510 50%, #4a2c12 100%);
    padding: 0;
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}
.bottom-bar.hide { transform: translateY(100%); }
.bottom-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    position: relative;
}
.bottom-bar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.bottom-bar-avatar {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.2);
    background: #fff;
}
.bottom-bar-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.bottom-bar-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}
.bottom-bar-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}
.bottom-bar-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: flex-end;
}
.bb-field {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    height: 46px;
}
.bb-field input,
.bb-field select {
    border: none;
    background: #fff;
    color: var(--text);
    font-size: 14px;
    height: 100%;
    padding: 0 14px;
    outline: none;
}
.bb-field input { min-width: 120px; }
.bb-field.bb-area input { width: 110px; padding-right: 34px; }
.bb-field.bb-phone input { width: 140px; }
.bb-field.bb-house select { width: 150px; cursor: pointer; appearance: auto; }
.bb-field.bb-house select option { color: var(--text); }
.bb-unit {
    position: absolute;
    right: 12px;
    font-size: 13px;
    color: var(--text-light);
    pointer-events: none;
}
.bb-submit {
    height: 46px;
    padding: 0 34px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255,107,0,0.4);
    letter-spacing: 1px;
}
.bb-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,0,0.6);
}
.bottom-bar-close {
    position: absolute;
    top: 6px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}
.bottom-bar-close:hover { color: #fff; }

@media (max-width: 1024px) {
    .bottom-bar-inner { flex-wrap: wrap; gap: 14px; padding: 44px 16px 14px; }
    .bottom-bar-brand { gap: 10px; }
    .bottom-bar-avatar { width: 54px; height: 54px; }
    .bottom-bar-title { font-size: 16px; }
    .bottom-bar-subtitle { font-size: 12px; }
    .bottom-bar-form { width: 100%; justify-content: center; flex-wrap: wrap; }
    .bb-field.bb-area input { width: 90px; }
    .bb-field.bb-phone input { width: 120px; }
    .bb-field.bb-house select { width: 130px; }
    .bb-submit { padding: 0 24px; }
}
@media (max-width: 640px) {
    .bottom-bar-form { flex-direction: column; align-items: stretch; }
    .bb-field, .bb-field input, .bb-field select, .bb-submit { width: 100%; }
    .bb-field input, .bb-field select { width: 100% !important; }
}

/* ============================================
   侧栏：迷你设计师卡（本案设计师）
   ============================================ */
.designer-mini { text-align: center; padding: 8px 4px; }
.designer-mini .dm-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: rgba(255,255,255,0.75);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border: 4px solid #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    position: relative;
}
.designer-mini .dm-avatar::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(255,107,0,0.35);
}
.designer-mini .dm-name {
    font-size: 18px;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 4px;
}
.designer-mini .dm-role {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.designer-mini .dm-meta {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 16px;
    padding: 10px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
}
.designer-mini .dm-meta strong { color: var(--primary); font-size: 18px; display: block; }
.designer-mini .dm-btn {
    display: inline-block;
    padding: 9px 26px;
    background: var(--primary);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s;
}
.designer-mini .dm-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ============================================
   侧栏：相关案例列表（紧凑型）
   ============================================ */
.related-case-list { padding: 0; }
.related-case-item {
    display: flex;
    gap: 12px;
    padding: 14px 22px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}
.related-case-item:last-child { border-bottom: none; }
.related-case-item:hover { background: var(--bg-light); }
.related-case-item .rci-thumb {
    width: 78px;
    height: 60px;
    border-radius: 4px;
    background: linear-gradient(135deg, #ccc, #999);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.related-case-item .rci-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.04);
    transition: background 0.2s;
}
.related-case-item:hover .rci-thumb::after { background: rgba(0,0,0,0); }
.related-case-item .rci-text { flex: 1; min-width: 0; }
.related-case-item .rci-title {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.related-case-item:hover .rci-title { color: var(--primary); }
.related-case-item .rci-meta {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   相关推荐区（详情页底部）
   ============================================ */
.related-cases {
    padding: 60px 0;
    background: var(--bg-light);
}
.related-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.case-item-mini { height: 100%; }
.case-item-mini .ci-img { height: 180px; }
.case-item-mini .ci-info { padding: 18px 20px; }
.case-item-mini .ci-title { font-size: 15px; }
.case-item-mini .ci-meta { font-size: 12px; margin-bottom: 10px; }
/* 相关推荐标题 */
.related-title {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}
/* 上一篇下一篇 */
.pn-next { text-align: right; }

/* ============================================
   客户评价卡
   ============================================ */
.review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.3s;
    position: relative;
}
.review-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 30px var(--shadow);
    transform: translateY(-3px);
}
.review-card .rc-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.review-card .rc-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px var(--shadow);
}
.review-card .rc-name { font-size: 15px; color: var(--text); margin: 0 0 2px; font-weight: 600; }
.review-card .rc-room { font-size: 12px; color: var(--text-muted); margin: 0; }
.review-card .rc-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.review-card .rc-content {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    padding-left: 14px;
    border-left: 2px solid var(--bg-light);
}

/* ============================================
   左对齐 section header
   ============================================ */
.section-header-left { text-align: left; margin-bottom: 30px; }
.section-header-left .section-title { text-align: left; }
.section-header-left .section-desc { text-align: left; margin: 0; }

/* ============================================
   全局安全间距：避免右侧悬浮窗遮挡内容
   ============================================ */
@media (min-width: 1280px) {
    .container { padding-right: 80px; }
}

/* ============================================
   通用：浮动价格徽章
   ============================================ */
.price-badge {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(255,107,0,0.1);
    color: var(--primary);
    border-radius: 3px;
    font-weight: 700;
    font-size: 16px;
}

/* ============================================
   浮动图片标签
   ============================================ */
.ci-tag-sm {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 12px;
    border-radius: 3px;
}

/* 响应式设计 */

/* 平板横屏 / 小笔记本 */
@media (max-width: 1024px) {
    .container { padding: 0 16px; }
    .advantages-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .cases-title, .designers-title { font-size: 28px; }
    .cases-scroll-wrap .case-card { width: 300px; height: 226px; }
    .designer-card { min-width: calc(50% - 10px); }
    .guarantee-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .banner-content h2 { font-size: 36px; }
    .nav-item > a { padding: 28px 12px; font-size: 14px; }
}

/* 平板竖屏 / 大手机 */
@media (max-width: 768px) {
    .container { padding: 0 15px; }
    .top-bar { display: none; }
    .main-header .container { height: 60px; }
    .main-nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .header-right { display: none; }
    .logo-text { font-size: 20px; }
    .logo-slogan { font-size: 10px; }

    .banner-section { height: 350px; }
    .banner-content h2 { font-size: 24px; }
    .banner-content p { font-size: 13px; }
    .banner-dots { bottom: 15px; }

    .section-title, .cases-title, .designers-title { font-size: 22px !important; }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .advantage-card { padding: 20px 14px; }
    .advantage-icon { width: 50px; height: 50px; font-size: 22px; }

    .services-grid { grid-template-columns: 1fr; }

    .cases-header { padding: 0 15px; }
    .filter-tag { font-size: 14px; }
    .filter-sep { margin: 0 6px; }
    .cases-scroll-wrap .case-card { width: 240px; height: 180px; }
    .cases-scroll-wrap .case-text { height: 120px; padding: 52px 14px 14px; transform: translateY(120px); }
    .cases-scroll-wrap .case-text .case-title { font-size: 16px; line-height: 22px; }
    .cases-scroll-wrap .case-text .case-desc { font-size: 13px; line-height: 18px; }

    .designer-card { min-width: calc(100%); }
    .designers-carousel-wrapper { overflow: hidden; }

    .guarantee-grid { grid-template-columns: 1fr; }
    .store-content { grid-template-columns: 1fr; }
    .store-map { height: 250px; }

    .quote-form { flex-direction: column; align-items: stretch; gap: 10px; }
    .form-group input, .form-group select { width: 100%; }

    .philosophy-section { padding: 50px 0; }
    .philosophy-section h2 { font-size: 22px; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-section { padding: 40px 0 30px; }

    .float-sidebar { width: 50px; padding: 12px 0; gap: 12px; }
    .float-icon { width: 28px; height: 28px; font-size: 16px; }
    .float-sidebar-item span { font-size: 10px; }

    .bottom-bar-avatar { display: none; }
    .bottom-bar-inner { flex-wrap: wrap; gap: 10px; padding: 10px 15px; justify-content: flex-start; }
    .bottom-bar-text h4 { font-size: 16px; }
    .bottom-bar-text p { font-size: 11px; }
    .bottom-bar-form { flex-wrap: wrap; gap: 8px; width: 100%; }
    .bottom-bar-field { flex: 1; min-width: 0; }
    .bottom-bar-field input { width: 80px; }
    .bottom-bar-selects { flex-wrap: wrap; }
    .bottom-bar-btn { width: 100%; padding: 12px; }
    .bottom-bar-tip { font-size: 11px; }

    .float-modal-content { width: 92%; padding: 24px 20px; border-radius: 10px; }
}

/* 手机竖屏 */
@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .advantages-grid { grid-template-columns: 1fr; }
    .advantage-card { flex-direction: row; text-align: left; gap: 14px; padding: 16px; }

    .section-title, .cases-title, .designers-title { font-size: 20px !important; }
    .cases-header { margin-bottom: 20px; }
    .filter-tag { font-size: 13px; padding: 2px 4px; }
    .filter-sep { margin: 0 4px; font-size: 13px; }
    .cases-scroll-wrap .case-card { width: 200px; height: 150px; }
    .cases-scroll-wrap .case-text { height: 100px; padding: 40px 12px 12px; transform: translateY(100px); }
    .cases-scroll-wrap .case-text .case-title { font-size: 14px; line-height: 20px; }
    .cases-scroll-wrap .case-text .case-desc { font-size: 12px; line-height: 16px; }

    .philosophy-section h2 { font-size: 20px; }
    .philosophy-section p { font-size: 13px; }

    .float-modal-content { padding: 20px 16px; }
    .float-modal-content h3 { font-size: 18px; }

    .banner-section { height: 280px; }
    .banner-content h2 { font-size: 20px; }
    .banner-content p { font-size: 12px; display: none; }

    .bottom-bar-inner { padding: 8px 12px; }
    .bottom-bar-text h4 { font-size: 14px; }
    .bottom-bar-field { padding: 4px 8px; }
    .bottom-bar-selects select { padding: 6px 4px; font-size: 12px; }
}

/* 超小屏幕 */
@media (max-width: 360px) {
    .logo-text { font-size: 18px; }
    .banner-section { height: 240px; }
    .banner-content h2 { font-size: 18px; }
    .cases-scroll-wrap .case-card { width: 170px; height: 128px; }
    .float-sidebar { display: none; }
    .bottom-bar-left { display: none; }
    .bottom-bar-form { gap: 6px; }
}

/* ============================================
   通用：面包屑导航
   ============================================ */
.crumb {
    background: #faf6f1;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
}
.crumb .container { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.crumb a { color: var(--text-light); }
.crumb a:hover { color: var(--primary); }
.crumb i { font-size: 10px; opacity: 0.5; }
.crumb .current { color: var(--primary); }

/* ============================================
   通用：内页Banner（页头横幅）
   ============================================ */
.page-banner {
    height: 320px;
    background: linear-gradient(135deg, #2c1810 0%, #5a3520 40%, #ff6b00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><defs><pattern id='p' x='0' y='0' width='40' height='40' patternUnits='userSpaceOnUse'><circle cx='20' cy='20' r='1' fill='%23ffffff' opacity='0.08'/></pattern></defs><rect width='200' height='200' fill='url(%23p)'/></svg>");
    opacity: 0.4;
}
.page-banner h1 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 12px;
    position: relative;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.page-banner .en {
    font-size: 14px;
    letter-spacing: 4px;
    opacity: 0.7;
    text-transform: uppercase;
    margin-bottom: 22px;
    position: relative;
}
.page-banner .banner-decor {
    display: inline-block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    position: relative;
}

/* ============================================
   通用：侧边栏（详情页用）
   ============================================ */
.sidebar-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 24px;
    overflow: hidden;
}
.sidebar-card .sb-title {
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    font-size: 17px;
    color: var(--primary-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-card .sb-title::before {
    content: '';
    width: 4px;
    height: 16px;
    background: var(--primary);
    border-radius: 2px;
}
.sidebar-card .sb-body { padding: 22px; }
.sidebar-list li {
    border-bottom: 1px dashed var(--border);
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    font-size: 14px;
    color: var(--text-light);
    transition: all 0.25s;
}
.sidebar-list li a:hover, .sidebar-list li.active a {
    color: var(--primary);
    background: var(--bg-light);
    padding-left: 28px;
}
.sidebar-list li a::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    opacity: 0.4;
}
.sidebar-list li.active a::after { color: var(--primary); opacity: 1; }
.sidebar-list li a i { margin-right: 8px; color: var(--gold); }

/* ============================================
   装修服务页
   ============================================ */

/* 4大服务模式 */
.service-mode {
    padding: 80px 0;
    background: #fff;
}
.service-mode-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.mode-card {
    padding: 40px 24px;
    text-align: center;
    border-radius: var(--radius);
    background: var(--bg-light);
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
}
.mode-card:hover {
    background: #fff;
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(255,107,0,0.12);
    border-color: var(--primary);
}
.mode-card .mc-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255,107,0,0.25);
}
.mode-card:hover .mc-icon { transform: scale(1.05); }
.mode-card h3 { font-size: 20px; color: var(--primary-dark); margin-bottom: 10px; }
.mode-card .mc-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255,107,0,0.1);
    color: var(--primary);
    font-size: 12px;
    border-radius: 3px;
    margin-bottom: 14px;
}
.mode-card p { font-size: 13px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.mode-card .mc-price { color: var(--primary); font-size: 18px; font-weight: 700; }
.mode-card .mc-price small { font-size: 12px; color: var(--text-muted); font-weight: 400; }

/* 服务流程时间线 */
.service-flow {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
}
.flow-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 0;
    align-items: flex-start;
    position: relative;
    justify-content: space-between;
}
.flow-step {
    flex: 1 1 0;
    min-width: 130px;
    text-align: center;
    position: relative;
    padding: 0 8px;
}
.flow-step .fs-num {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}
.flow-step:hover .fs-num { background: var(--primary); color: #fff; transform: scale(1.1); }
.flow-step .fs-icon { font-size: 24px; color: var(--gold); margin-bottom: 6px; }
.flow-step .fs-name { font-size: 13px; color: var(--text); font-weight: 600; margin-bottom: 4px; }
.flow-step .fs-day { font-size: 11px; color: var(--text-muted); }
.flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(50% + 28px);
    right: calc(-50% + 28px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--primary) 0, var(--primary) 4px, transparent 4px, transparent 8px);
    z-index: 1;
}

/* 服务包含清单 */
.service-include {
    padding: 80px 0;
    background: #fff;
}
.include-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.include-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.include-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.include-card .ic-head {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 28px 24px;
    text-align: center;
}
.include-card .ic-head h3 { font-size: 20px; margin-bottom: 6px; }
.include-card .ic-head p { font-size: 13px; opacity: 0.9; }
.include-card .ic-body { padding: 24px; }
.include-card .ic-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px dashed var(--border);
}
.include-card .ic-body ul li:last-child { border-bottom: none; }
.include-card .ic-body ul li i { color: var(--primary); margin-top: 4px; }

/* 服务承诺 */
.service-promise {
    padding: 80px 0;
    background: var(--bg-light);
}
.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.promise-item {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border-radius: var(--radius);
    transition: all 0.3s;
}
.promise-item:hover { transform: translateY(-4px); box-shadow: 0 12px 30px var(--shadow); }
.promise-item .pi-num {
    font-size: 48px;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}
.promise-item .pi-num small { font-size: 18px; color: var(--text-muted); }
.promise-item h4 { font-size: 16px; color: var(--text); margin-bottom: 8px; }
.promise-item p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   案例列表页
   ============================================ */
.cases-page-banner { background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #1a3a4a 100%); }
.cases-filter-bar {
    background: #fff;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 80px;
    z-index: 50;
}
.cases-filter-bar .container { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.cfb-group { display: flex; align-items: center; gap: 12px; }
.cfb-label { font-size: 14px; color: var(--text-muted); white-space: nowrap; }
.cfb-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.cfb-tag {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    line-height: 1.4;
}
.cfb-tag:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.cfb-tag.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ============================================
   案例列表页 · 编辑感卡片设计
   关键：不嵌套 <a>，整卡 <article> + 独立链接
   ============================================ */
.cases-grid-wrap { padding: 50px 0 80px; background: var(--bg-light); }

/* 结果条 */
.cases-result-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}
.cases-result-count {
    font-size: 14px;
    color: var(--text-light);
}
.cases-result-count strong {
    color: var(--primary);
    font-weight: 700;
    font-size: 20px;
    font-family: Georgia, var(--font-apple);
    margin: 0 4px;
}
.cases-result-sort {
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
}
.cases-result-sort i { color: var(--gold); margin-right: 4px; }

/* 网格 */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 单个卡片：用 <article>，不用 <a>，避免嵌套链接 */
.case-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid transparent;
}
.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.12);
    border-color: rgba(255,107,0,0.15);
}

/* 图片区 */
.case-card-link {
    display: block;
    overflow: hidden;
    position: relative;
}
.case-img {
    height: 240px;
    position: relative;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.case-card:hover .case-img { transform: scale(1.06); }
.case-img::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

/* "实景案例" 角标 */
.case-tag {
    position: absolute;
    top: 16px; left: 16px;
    padding: 5px 13px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 11px;
    letter-spacing: 1.5px;
    border-radius: 2px;
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* 价格角标 - 右上角 pill */
.case-price-corner {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--primary);
    color: #fff;
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 24px;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(255,107,0,0.45);
    display: flex;
    align-items: baseline;
    gap: 1px;
    letter-spacing: 0.3px;
}
.case-price-corner small {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
}

/* 卡片正文 */
.case-body {
    padding: 22px 22px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-text {
    flex: 1;
}

.case-title {
    font-size: 17px;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s;
    cursor: pointer;
}
.case-card:hover .case-title,
.case-title:hover { color: var(--primary); }

.case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.case-meta span { display: inline-flex; align-items: center; }
.case-meta i { color: var(--gold); margin-right: 5px; font-size: 12px; }

.case-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    padding-bottom: 18px;
    border-top: 1px solid var(--border);
}
.case-style {
    padding: 6px 16px;
    background: rgba(255,107,0,0.08);
    color: var(--primary);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.case-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 19px;
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    font-family: Georgia, var(--font-apple);
}
.case-price small { font-size: 12px; color: var(--text-muted); font-weight: 400; }

/* ============================================
   设计师行（独立 <a>，无嵌套，编辑感设计）
   ============================================ */
.case-designer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    margin: 0 -22px;
    border-top: 1px solid var(--border);
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: background 0.3s;
    background: #fff;
    min-height: 88px;
}
.case-designer:hover { background: #fffbf7; }

.designer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
    font-family: var(--font-apple);
    letter-spacing: 0.5px;
    overflow: hidden;
}
.designer-avatar img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.designer-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}
.designer-name {
    font-size: 16px;
    color: var(--text);
    font-weight: 700;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1;
}
.designer-meta {
    font-size: 13px;
    line-height: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--text-muted);
}
.designer-meta .dn-title {
    color: var(--gold);
    font-weight: 500;
}
.designer-meta .dn-dot {
    color: var(--border);
}
.designer-meta .dn-years {
    color: var(--text-muted);
    font-weight: 400;
}

.designer-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
    background: var(--bg-light);
}
.case-designer:hover .designer-arrow { color: #fff; background: var(--primary); transform: translateX(4px); }
.case-designer:hover .designer-name { color: var(--primary); }

/* mini 变体（用于详情页底部相关推荐） */
.case-card.case-card-mini .case-img { height: 180px; }
.case-card.case-card-mini .case-body { padding: 16px 18px 0; }
.case-card.case-card-mini .case-title { font-size: 15px; margin-bottom: 8px; }
.case-card.case-card-mini .case-meta { font-size: 12px; gap: 10px; margin-bottom: 10px; }
.case-card.case-card-mini .case-designer {
    margin: 0 -18px;
    padding: 14px 18px;
    gap: 12px;
    min-height: auto;
}
.case-card.case-card-mini .designer-avatar { width: 40px; height: 40px; font-size: 15px; border-width: 2px; }
.case-card.case-card-mini .designer-name { font-size: 14px; }
.case-card.case-card-mini .designer-meta { font-size: 12px; gap: 6px; }

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.pagination a, .pagination span {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-light);
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .active { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination .disabled { color: #ccc; cursor: not-allowed; }

/* ============================================
   案例详情页
   ============================================ */
.case-detail { padding: 50px 0; background: #fff; }
.case-detail-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 36px;
}
.case-gallery { background: #fff; }
.cg-main {
    height: 520px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
    background: #f7f7f7;
}
.cg-main img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}
.cg-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}
.cg-thumbs .cg-thumb {
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}
.cg-thumbs .cg-thumb:hover, .cg-thumbs .cg-thumb.active { border-color: var(--primary); }
.case-detail-info {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 36px;
    margin-bottom: 24px;
}
.case-detail-info h1 {
    font-size: 28px;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 16px;
}
.case-detail-info .cdi-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-light);
}
.case-detail-info .cdi-meta span i { color: var(--gold); margin-right: 6px; }
.case-detail-info .cdi-section { margin-bottom: 28px; }
.case-detail-info .cdi-section h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 14px;
    padding-left: 12px;
    border-left: 3px solid var(--primary);
}
.case-detail-info .cdi-section p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 8px;
}
.case-detail-info .cdi-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.case-detail-info .cdi-tags span {
    padding: 4px 14px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 3px;
    font-size: 13px;
}

/* 右侧：咨询卡 + 设计师 */
.case-consult-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 28px 24px;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 24px;
}
.case-consult-card h3 { font-size: 18px; margin-bottom: 8px; }
.case-consult-card p { font-size: 13px; opacity: 0.9; margin-bottom: 18px; }
.case-consult-card .form-group input {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    margin-bottom: 10px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 4px;
    font-size: 14px;
}
.case-consult-card .form-group input::placeholder { color: rgba(255,255,255,0.7); }
.case-consult-card .form-group input:focus { outline: none; border-color: #fff; }
.case-consult-card .btn-submit { width: 100%; background: #fff; color: var(--primary-dark); }
.case-consult-card .btn-submit:hover { background: var(--gold); color: #fff; }

/* ============================================
   设计师列表页
   ============================================ */
.designers-filter {
    background: #fff;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}
.designers-filter .container { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.designers-page-grid {
    padding: 50px 0 80px;
    background: var(--bg-light);
}
.designers-page-grid .dpg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.designer-card-full {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s;
}
.designer-card-full:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.designer-card-full .dcf-photo {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255,255,255,0.6);
    position: relative;
}
.designer-card-full .dcf-photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
}
.designer-card-full .dcf-level {
    position: absolute;
    top: 14px; right: 14px;
    padding: 3px 10px;
    background: rgba(0,0,0,0.55);
    color: var(--gold);
    font-size: 12px;
    border-radius: 3px;
    z-index: 2;
}
.designer-card-full .dcf-info { padding: 22px; text-align: center; }
.designer-card-full .dcf-info h4 { font-size: 19px; color: var(--text); margin-bottom: 6px; }
.designer-card-full .dcf-info .dcf-role { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.designer-card-full .dcf-info .dcf-tags {
    display: flex; gap: 6px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 14px;
}
.designer-card-full .dcf-info .dcf-tags span {
    padding: 2px 8px;
    background: var(--bg-light);
    color: var(--text-light);
    font-size: 12px;
    border-radius: 3px;
}
.designer-card-full .dcf-stats {
    display: flex;
    justify-content: space-around;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}
.designer-card-full .dcf-stats .stat { text-align: center; }
.designer-card-full .dcf-stats .stat strong {
    display: block;
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
}
.designer-card-full .dcf-stats .stat span { font-size: 12px; color: var(--text-muted); }
.designer-card-full .dcf-btn {
    display: block;
    padding: 10px;
    background: var(--primary);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    transition: all 0.2s;
}
.designer-card-full .dcf-btn:hover { background: var(--primary-dark); }

/* ============================================
   设计师详情页
   ============================================ */
.designer-hero {
    background: linear-gradient(135deg, #1a3a4a 0%, #2c5a5a 100%);
    color: #fff;
    padding: 60px 0;
}
.dh-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
}
.dh-photo {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: rgba(255,255,255,0.7);
    border: 6px solid rgba(255,255,255,0.15);
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.dh-info h1 { font-size: 36px; font-weight: 600; margin-bottom: 8px; }
.dh-info .dh-role { font-size: 16px; color: var(--gold-light); margin-bottom: 20px; }
.dh-info .dh-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.dh-info .dh-tags span {
    padding: 4px 12px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 3px;
    font-size: 13px;
}
.dh-info .dh-stats {
    display: flex;
    gap: 30px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 22px;
}
.dh-info .dh-stats .stat strong { display: block; font-size: 28px; color: var(--gold); font-weight: 700; }
.dh-info .dh-stats .stat span { font-size: 13px; opacity: 0.7; }
.dh-info .dh-cta { display: flex; gap: 12px; }
.dh-info .dh-cta .btn {
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}
.dh-info .dh-cta .btn-gold { background: var(--gold); color: #fff; }
.dh-info .dh-cta .btn-gold:hover { background: var(--gold-light); }
.dh-info .dh-cta .btn-line { background: transparent; color: #fff; border: 1px solid #fff; }
.dh-info .dh-cta .btn-line:hover { background: #fff; color: var(--primary-dark); }

.designer-bio { padding: 60px 0; background: #fff; }
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
}
.bio-section { margin-bottom: 36px; }
.bio-section h2 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 18px;
    padding-left: 14px;
    border-left: 4px solid var(--primary);
}
.bio-section p { font-size: 15px; color: var(--text-light); line-height: 1.9; margin-bottom: 12px; }
.bio-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.bio-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-light);
}
.bio-list li i { color: var(--primary); }

.bio-appointment {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: sticky;
    top: 100px;
}
.bio-appointment h3 {
    font-size: 20px;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 6px;
}
.bio-appointment p {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 22px;
}
.bio-appointment form input, .bio-appointment form select, .bio-appointment form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 12px;
}
.bio-appointment form textarea { resize: vertical; min-height: 80px; }
.bio-appointment form .btn-submit { width: 100%; padding: 14px; font-size: 15px; }

.designer-works { padding: 60px 0; background: var(--bg-light); }
.works-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border);
}
.works-tabs .wt-tab {
    padding: 12px 24px;
    background: none;
    border: none;
    font-size: 15px;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}
.works-tabs .wt-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s;
}
.works-tabs .wt-tab.active { color: var(--primary); font-weight: 600; }
.works-tabs .wt-tab.active::after { width: 60%; }
.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* 作品卡片 */
.work-item {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}
.work-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.wi-img {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 60px;
    overflow: hidden;
    transition: transform 0.6s ease;
}
.work-item:hover .wi-img { transform: scale(1.04); }
.wi-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    font-size: 12px;
    color: #fff;
    background: rgba(0,0,0,0.35);
    border-radius: 20px;
    backdrop-filter: blur(4px);
}
.wi-info {
    padding: 18px 20px 22px;
    text-align: left;
}
.wi-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wi-info p {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}
.work-item:hover .wi-info h4 { color: var(--primary); }

/* ============================================
   工艺标准页
   ============================================ */
.craft-intro { padding: 80px 0; background: #fff; }
.craft-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.craft-intro-grid h2 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}
.craft-intro-grid h2 small { display: block; font-size: 13px; color: var(--gold); letter-spacing: 4px; margin-bottom: 8px; }
.craft-intro-grid p { font-size: 15px; color: var(--text-light); line-height: 1.9; margin-bottom: 14px; }
.craft-intro-img {
    height: 380px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #2c1810, #ff6b00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 80px;
}

.craft-pipeline { padding: 80px 0; background: var(--bg-light); }
.pipeline-list {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}
.pipeline-item {
    text-align: center;
    background: #fff;
    padding: 24px 10px;
    border-radius: var(--radius);
    border-top: 3px solid var(--primary);
    transition: all 0.3s;
}
.pipeline-item:hover { transform: translateY(-4px); box-shadow: 0 12px 30px var(--shadow); }
.pipeline-item .pi-num {
    width: 36px;
    height: 36px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pipeline-item .pi-icon { font-size: 26px; color: var(--gold); margin-bottom: 8px; }
.pipeline-item h4 { font-size: 14px; color: var(--text); margin-bottom: 4px; }
.pipeline-item p { font-size: 11px; color: var(--text-muted); }

.craft-categories { padding: 80px 0; background: #fff; }
.craft-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
    justify-content: center;
}
.craft-tab {
    padding: 10px 24px;
    background: var(--bg-light);
    border-radius: 24px;
    border: 1px solid transparent;
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
}
.craft-tab:hover { color: var(--primary); }
.craft-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.craft-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.craft-item {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: all 0.3s;
    border: 1px solid transparent;
}
.craft-item:hover { background: #fff; border-color: var(--primary); box-shadow: 0 10px 30px var(--shadow); }
.craft-item .ci-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.craft-item h4 { font-size: 17px; color: var(--text); margin-bottom: 6px; }
.craft-item p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 8px; }
.craft-item .ci-tag { font-size: 12px; color: var(--primary); }
.craft-item .ci-tag i { margin-right: 4px; }

.craft-data { padding: 80px 0; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; }
.craft-data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.cd-item .cd-num {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--gold-light);
}
.cd-item .cd-num small { font-size: 22px; }
.cd-item p { font-size: 14px; opacity: 0.9; letter-spacing: 1px; }

/* ============================================
   关于我们页
   ============================================ */
.about-intro { padding: 80px 0; background: #fff; }
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-intro-img {
    height: 480px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #2c1810 0%, #5a3520 50%, #ff6b00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 100px;
    position: relative;
    overflow: hidden;
}
.about-intro-img::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><path d='M0 0L100 100M100 0L0 100' stroke='%23ffffff' stroke-width='0.5' opacity='0.1'/></svg>");
}
.about-intro-text h2 { font-size: 36px; color: var(--primary-dark); margin-bottom: 8px; }
.about-intro-text h2 small { display: block; font-size: 13px; color: var(--gold); letter-spacing: 4px; margin-bottom: 8px; }
.about-intro-text .lead { font-size: 18px; color: var(--text); line-height: 1.7; margin-bottom: 20px; }
.about-intro-text p { font-size: 14px; color: var(--text-light); line-height: 1.9; margin-bottom: 14px; }
.about-intro-text .stats { display: flex; gap: 30px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--border); }
.about-intro-text .stats div strong { display: block; font-size: 30px; color: var(--primary); font-weight: 700; }
.about-intro-text .stats div span { font-size: 13px; color: var(--text-muted); }

.about-history { padding: 80px 0; background: var(--bg-light); }
.timeline { position: relative; max-width: 900px; margin: 0 auto; padding: 20px 0; }
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}
.tl-item {
    position: relative;
    width: 50%;
    padding: 0 40px 40px;
    box-sizing: border-box;
}
.tl-item:nth-child(odd) { left: 0; text-align: right; }
.tl-item:nth-child(even) { left: 50%; text-align: left; }
.tl-item::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px var(--primary);
    top: 10px;
}
.tl-item:nth-child(odd)::before { right: -8px; }
.tl-item:nth-child(even)::before { left: -8px; }
.tl-item .tl-year { font-size: 26px; color: var(--primary); font-weight: 700; margin-bottom: 6px; }
.tl-item .tl-content {
    background: #fff;
    padding: 18px 22px;
    border-radius: var(--radius);
    box-shadow: 0 4px 16px var(--shadow);
}
.tl-item .tl-content h4 { font-size: 16px; color: var(--text); margin-bottom: 6px; }
.tl-item .tl-content p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

.about-honor { padding: 80px 0; background: #fff; }
.honor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.honor-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
}
.honor-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 10px 30px var(--shadow); }
.honor-card .hc-icon { font-size: 42px; color: var(--gold); margin-bottom: 14px; }
.honor-card h4 { font-size: 15px; color: var(--text); margin-bottom: 6px; }
.honor-card p { font-size: 12px; color: var(--text-muted); }

.about-culture { padding: 80px 0; background: linear-gradient(135deg, #2c1810 0%, #5a3520 100%); color: #fff; }
.culture-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.culture-card { text-align: center; padding: 30px 20px; border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); }
.culture-card .cc-num { font-size: 50px; color: var(--gold); font-weight: 700; line-height: 1; margin-bottom: 12px; }
.culture-card h4 { font-size: 18px; margin-bottom: 10px; letter-spacing: 2px; }
.culture-card p { font-size: 13px; opacity: 0.8; line-height: 1.7; }

/* ============================================
   联系我们页
   ============================================ */
.contact-page { padding: 60px 0; background: var(--bg-light); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
}
.contact-info-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
}
.contact-info-card h2 { font-size: 26px; color: var(--primary-dark); margin-bottom: 8px; }
.contact-info-card .lead { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.contact-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 30px; }
.contact-list .ci-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .ci-item .cii-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-list .ci-item h4 { font-size: 14px; color: var(--text); margin-bottom: 6px; }
.contact-list .ci-item p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.contact-form-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius);
    padding: 36px 32px;
    color: #fff;
}
.contact-form-card h3 { font-size: 22px; margin-bottom: 6px; }
.contact-form-card p { font-size: 13px; opacity: 0.9; margin-bottom: 24px; }
.contact-form-card .form-item { margin-bottom: 14px; }
.contact-form-card .form-item input, .contact-form-card .form-item textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
}
.contact-form-card .form-item input::placeholder, .contact-form-card .form-item textarea::placeholder { color: rgba(255,255,255,0.6); }
.contact-form-card .form-item input:focus, .contact-form-card .form-item textarea:focus { outline: none; background: rgba(255,255,255,0.18); border-color: #fff; }
.contact-form-card .form-item textarea { resize: vertical; min-height: 90px; }
.contact-form-card .btn-submit { width: 100%; background: #fff; color: var(--primary-dark); margin-top: 4px; }
.contact-form-card .btn-submit:hover { background: var(--gold); color: #fff; }

.stores-section { padding: 60px 0; background: #fff; }
.stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.store-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.3s;
    border-top: 3px solid var(--primary);
}
.store-item:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.store-item h3 { font-size: 18px; color: var(--primary-dark); margin-bottom: 14px; }
.store-item .si-info { display: flex; flex-direction: column; gap: 10px; }
.store-item .si-info p { font-size: 13px; color: var(--text-light); display: flex; align-items: flex-start; gap: 8px; }
.store-item .si-info p i { color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.store-item .si-actions { display: flex; gap: 8px; margin-top: 18px; }
.store-item .si-actions a {
    flex: 1;
    padding: 8px;
    text-align: center;
    font-size: 13px;
    border-radius: 4px;
    transition: all 0.2s;
}
.store-item .si-actions .btn-line { background: var(--bg-light); color: var(--primary); }
.store-item .si-actions .btn-line:hover { background: var(--primary); color: #fff; }
.store-item .si-actions .btn-fill { background: var(--primary); color: #fff; }
.store-item .si-actions .btn-fill:hover { background: var(--primary-dark); }

.map-section { padding: 60px 0; background: var(--bg-light); }
.map-wrap {
    height: 420px;
    border-radius: var(--radius);
    overflow: hidden;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    flex-direction: column;
    gap: 8px;
    position: relative;
}
.map-wrap i { font-size: 56px; color: var(--primary); }
.map-wrap p { font-size: 16px; }

/* ============================================
   资讯页
   ============================================ */
.news-page-banner { background: linear-gradient(135deg, #1a3a4a 0%, #2c5a5a 100%); }
.news-page { padding: 60px 0; background: var(--bg-light); }
.news-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 36px;
}
.news-list { display: flex; flex-direction: column; gap: 24px; }
.news-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.news-card .nc-img {
    height: 100%;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.news-card .nc-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.news-card .nc-img::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.05);
    z-index: 2;
}
.news-card .nc-body { padding: 28px; }
.news-card .nc-cat {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255,107,0,0.1);
    color: var(--primary);
    font-size: 12px;
    border-radius: 3px;
    margin-bottom: 12px;
}
.news-card h3 { font-size: 19px; color: var(--text); margin-bottom: 10px; line-height: 1.5; font-weight: 600; }
.news-card h3:hover { color: var(--primary); }
.news-card .nc-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.news-card .nc-meta span { margin-right: 16px; }
.news-card .nc-meta i { color: var(--gold); margin-right: 4px; }
.news-card .nc-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 14px; }
.news-card .nc-more { color: var(--primary); font-size: 13px; }
.news-card .nc-more i { margin-left: 4px; }

.news-side .sidebar-card .sb-body { padding: 18px 22px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a {
    padding: 4px 12px;
    background: var(--bg-light);
    color: var(--text-light);
    border-radius: 3px;
    font-size: 13px;
}
.tag-cloud a:hover, .tag-cloud a.active { background: var(--primary); color: #fff; }
.hot-list li {
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.hot-list li:last-child { border-bottom: none; }
.hot-list li .hl-num {
    width: 22px; height: 22px;
    background: #ccc;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.hot-list li:nth-child(1) .hl-num { background: #e74c3c; }
.hot-list li:nth-child(2) .hl-num { background: #e67e22; }
.hot-list li:nth-child(3) .hl-num { background: #f39c12; }
.hot-list li a { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.hot-list li a:hover { color: var(--primary); }

/* 资讯详情 */
.news-detail { padding: 60px 0; background: #fff; }
.news-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 36px; }
.news-article {
    background: #fff;
    border-radius: var(--radius);
    padding: 48px;
    border: 1px solid var(--border);
}
.news-article h1 { font-size: 30px; color: var(--text); line-height: 1.4; margin-bottom: 18px; font-weight: 600; }
.news-article .na-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
}
.news-article .na-meta i { color: var(--gold); margin-right: 4px; }
.news-article .na-content { font-size: 15px; color: var(--text-light); line-height: 1.9; }
.news-article .na-content p { margin-bottom: 16px; }
.news-article .na-content h3 { font-size: 19px; color: var(--text); margin: 26px 0 14px; font-weight: 600; }
.news-article .na-content img { max-width: 100%; border-radius: 6px; margin: 16px 0; }
.news-article .na-content blockquote {
    background: var(--bg-light);
    border-left: 3px solid var(--primary);
    padding: 18px 22px;
    color: var(--text-light);
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
    font-style: normal;
}
.news-article .na-tags { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border); }
.news-article .na-tags a {
    display: inline-block;
    padding: 4px 14px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 3px;
    font-size: 13px;
    margin-right: 8px;
    margin-bottom: 6px;
}
.news-article .na-share { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.news-article .na-share span { color: var(--text-muted); font-size: 13px; }
.news-article .na-share a {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.2s;
}
.news-article .na-share a:hover { background: var(--primary); color: #fff; }

.prev-next-nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 30px; padding: 20px; background: var(--bg-light); border-radius: var(--radius); }
.prev-next-nav .pn-item {
    flex: 1;
    font-size: 14px;
    color: var(--text-light);
    padding: 8px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    transition: color 0.2s;
}
.prev-next-nav .pn-item:hover { color: var(--primary); }
.prev-next-nav .pn-item i { margin: 0 6px; color: var(--gold); }
.prev-next-nav .pn-next { text-align: right; }

/* ============================================
   响应式 - 页面级
   ============================================ */
@media (max-width: 1024px) {
    .service-mode-grid { grid-template-columns: repeat(2, 1fr); }
    .promise-grid { grid-template-columns: repeat(2, 1fr); }
    .pipeline-list { grid-template-columns: repeat(4, 1fr); }
    .craft-list { grid-template-columns: 1fr; }
    .honor-grid { grid-template-columns: repeat(2, 1fr); }
    .culture-grid { grid-template-columns: repeat(2, 1fr); }
    .stores-grid { grid-template-columns: repeat(2, 1fr); }
    .case-detail-grid { grid-template-columns: 1fr; }
    .bio-grid { grid-template-columns: 1fr; }
    .news-grid, .news-detail-grid { grid-template-columns: 1fr; }
    .dh-grid { grid-template-columns: 1fr; text-align: center; }
    .about-intro-grid, .craft-intro-grid { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: repeat(2, 1fr); }
    .designers-page-grid .dpg-grid { grid-template-columns: repeat(2, 1fr); }
    .works-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .craft-data-grid { grid-template-columns: repeat(2, 1fr); }
    .flow-step { font-size: 11px; }
    .flow-step .fs-num { width: 40px; height: 40px; font-size: 15px; }
    .cases-filter-bar { position: static; }
    .page-banner h1 { font-size: 32px; }
}

@media (max-width: 768px) {
    .page-banner { height: 220px; }
    .page-banner h1 { font-size: 24px; letter-spacing: 3px; }
    .page-banner .en { font-size: 11px; letter-spacing: 2px; }

    .service-mode-grid, .include-grid, .promise-grid, .honor-grid, .culture-grid { grid-template-columns: 1fr; }
    .pipeline-list { grid-template-columns: repeat(2, 1fr); }
    .craft-tabs { gap: 6px; }
    .craft-tab { padding: 6px 14px; font-size: 13px; }
    .craft-list { grid-template-columns: 1fr; }
    .craft-item { flex-direction: column; }
    .craft-intro-img, .about-intro-img { height: 240px; font-size: 60px; }
    .stores-grid { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .designers-page-grid .dpg-grid { grid-template-columns: 1fr; }
    .works-grid { grid-template-columns: 1fr; }
    .contact-list { grid-template-columns: 1fr; }
    .craft-data-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .cd-item .cd-num { font-size: 40px; }

    .flow-steps { gap: 30px 0; }
    .flow-step { flex: 1 1 30%; min-width: 100px; }
    .flow-step:nth-child(5n)::after { display: none; }
    .flow-step:not(:last-child)::after { display: none; }

    .timeline::before { left: 16px; }
    .tl-item { width: 100%; padding-left: 50px; padding-right: 0; text-align: left !important; left: 0 !important; }
    .tl-item::before, .tl-item:nth-child(odd)::before, .tl-item:nth-child(even)::before { left: 8px; right: auto; }

    .news-card { grid-template-columns: 1fr; }
    .news-card .nc-img { min-height: 180px; }
    .news-article { padding: 24px 20px; }
    .news-article h1 { font-size: 22px; }

    .cfb-group { flex-direction: column; align-items: flex-start; gap: 6px; }
    .dh-photo { width: 160px; height: 160px; font-size: 70px; }
    .dh-info h1 { font-size: 26px; }
    .dh-info .dh-stats { gap: 18px; flex-wrap: wrap; }
    .bio-list { grid-template-columns: 1fr; }
    .bio-appointment { position: static; }
    .about-intro-text .stats { flex-wrap: wrap; gap: 20px; }
}

/* ============ 鍥剧墖瀛楁灞曠ず锛堜紭鍏堟樉绀哄浘鐗囷紝鏃犲浘鏃舵笎鍙樺厹搴曪級 ============ */
.dcf-photo, .case-img, .cg-main, .rci-thumb, .dm-avatar, .dh-photo, .wi-img, .designer-photo { position: relative; overflow: hidden; }
.dcf-photo img, .case-img img, .cg-main img, .rci-thumb img, .dm-avatar img, .dh-photo img, .wi-img img, .designer-photo img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cg-thumb { position: relative; overflow: hidden; background-size: cover !important; background-position: center !important; }
.banner-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.banner-slide .banner-content { position: relative; z-index: 1; }
