/* ============================================
   重庆市内蒙古商会网站 - 主样式表
   主题：草原绿 + 大地金
   蒙渝融合设计风格
   ============================================ */

/* --- CSS Variables --- */
:root {
    --green-dark: #1a6b3c;
    --green: #2d8c4a;
    --green-light: #4caf68;
    --green-bg: #e8f5e9;
    --gold: #d4a017;
    --gold-light: #f0d060;
    --gold-bg: #fff8e1;
    --red-cq: #c0392b;
    --dark: #1a1a2e;
    --dark2: #2c3e50;
    --text: #333;
    --text-light: #666;
    --text-muted: #999;
    --bg: #f5f6fa;
    --white: #fff;
    --border: #e8e8e8;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 25px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
    --max-width: 1280px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Microsoft YaHei", "PingFang SC", "Helvetica Neue", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* --- Header --- */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-icon svg { display: block; }
.logo-text h1 { font-size: 22px; color: var(--green-dark); line-height: 1.2; font-weight: 700; }
.logo-text p { font-size: 12px; color: var(--gold); letter-spacing: 2px; }

/* Nav */
.main-nav ul { display: flex; gap: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
    display: block;
    padding: 28px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark2);
    white-space: nowrap;
    transition: var(--transition);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a,
.main-nav > ul > li:hover > a { color: var(--green); }
.main-nav > ul > li.active > a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
}
/* Sub Menu */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 140px;
    box-shadow: var(--shadow-hover);
    border-radius: 0 0 var(--radius) var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
    border-top: 2px solid var(--green);
}
.main-nav li:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.sub-menu li:last-child a { border-bottom: none; }
.sub-menu li a:hover { background: var(--green-bg); color: var(--green); }

/* Mobile Menu Btn */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--dark2);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-dark) 0%, #0d3d1e 100%);
}
.hero-slider { height: 100%; position: relative; }
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 0 20px;
}
.hero-content h2 { font-size: 40px; font-weight: 700; margin-bottom: 16px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-content p { font-size: 18px; margin-bottom: 28px; opacity: 0.9; }
.hero-content .btn-hero {
    display: inline-block;
    padding: 12px 36px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}
.hero-content .btn-hero:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,160,23,0.4); }
.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}
.hero-dot.active { background: var(--gold); width: 32px; border-radius: 6px; }

/* --- Section Common --- */
.section { padding: 60px 0; }
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title h2 {
    font-size: 30px;
    color: var(--dark2);
    font-weight: 700;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto 0;
    border-radius: 2px;
}
.section-title p { color: var(--text-light); margin-top: 10px; font-size: 15px; }

/* --- Data Counter --- */
.counter-section {
    background: linear-gradient(135deg, var(--green-dark), #0d5c2e);
    padding: 24px 0;
    color: var(--white);
}
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.counter-item { padding: 10px; }
.counter-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--gold-light);
    display: block;
}
.counter-plus { font-size: 24px; font-weight: 600; }
.counter-item p { font-size: 14px; opacity: 0.8; margin-top: 4px; }

/* --- News Section --- */

/* 头条大横幅 */
.news-hero {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 28px;
    transition: var(--transition);
    text-decoration: none;
}
.news-hero:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}
.news-hero-img {
    width: 260px;
    min-height: 200px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}
.news-hero-body {
    padding: 28px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.news-hero-badge {
    display: inline-block;
    font-size: 12px;
    color: #fff;
    background: var(--red-cq);
    padding: 3px 12px;
    border-radius: 12px;
    width: fit-content;
    font-weight: 600;
}
.news-hero-cat {
    font-size: 12px;
    color: var(--green);
    background: var(--green-bg);
    padding: 2px 10px;
    border-radius: 10px;
    width: fit-content;
}
.news-hero-body h3 {
    font-size: 22px;
    line-height: 1.45;
    color: var(--dark2);
    font-weight: 700;
}
.news-hero-summary {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}
.news-hero-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

/* 双栏布局 */
.news-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 28px;
}

/* 左侧区域 */
.news-main { min-width: 0; }
.news-cards-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark2);
    margin-bottom: 14px;
    padding-left: 4px;
}

/* 推荐新闻列表（替代2×2卡片） */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.news-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    text-decoration: none;
    border-bottom: 1px dashed var(--border);
    transition: background 0.2s;
}
.news-list-item:last-child { border-bottom: none; }
.news-list-item:hover { background: var(--green-bg); }
.news-list-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 72px;
    flex-shrink: 0;
    padding-top: 2px;
}
.news-list-cat {
    font-size: 11px;
    color: var(--green);
    background: var(--green-bg);
    padding: 2px 10px;
    border-radius: 10px;
    white-space: nowrap;
    font-weight: 600;
}
.news-list-date {
    font-size: 11px;
    color: var(--text-muted);
    white-space: nowrap;
}
.news-list-body {
    flex: 1;
    min-width: 0;
}
.news-list-body h4 {
    font-size: 15px;
    line-height: 1.5;
    color: var(--dark2);
    font-weight: 600;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-list-item:hover .news-list-body h4 { color: var(--green); }
.news-list-body p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 右侧边栏 */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 8px;
}
.news-side-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
}
.news-side-panel h3 {
    font-size: 16px;
    color: var(--dark2);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--green);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.news-side-panel h3::before {
    content: '';
    width: 4px;
    height: 18px;
    background: var(--green);
    border-radius: 2px;
}
.news-side-list li {
    padding: 9px 0;
    border-bottom: 1px dashed var(--border);
}
.news-side-list li:last-child { border-bottom: none; }
.news-side-list li a {
    font-size: 14px;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.news-side-list li a:hover { color: var(--green); }
.news-side-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news-side-date {
    color: var(--text-muted);
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}
.news-side-more {
    display: block;
    text-align: right;
    font-size: 12px;
    color: var(--green);
    margin-top: 10px;
    text-decoration: none;
}
.news-side-more:hover { color: var(--green-dark); }

/* 底部查看更多 */
.news-more {
    text-align: center;
    margin-top: 30px;
}

/* --- Members Logo Wall --- */
.logo-wall { background: var(--white); }
.logo-wall-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.logo-wall-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 120px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.logo-wall-item:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}
.logo-wall-item .logo-avatar {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.logo-wall-item .company-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark2);
    text-align: center;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}
.logo-wall-item .industry-tag {
    font-size: 10px;
    padding: 2px 8px;
    background: var(--green-bg);
    color: var(--green);
    border-radius: 10px;
    white-space: nowrap;
}
.logo-wall-pagination .btn { min-width: 70px; text-align: center; }
.logo-wall-pagination span { min-width: 60px; text-align: center; }

/* --- Member Card --- */
.member-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}
.member-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.member-card-header {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.member-card-logo {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
}
.member-card-body {
    padding: 20px;
    text-align: center;
}
.member-card-body h3 { font-size: 16px; color: var(--dark2); margin-bottom: 6px; }
.member-card-body .industry { font-size: 13px; color: var(--green); margin-bottom: 4px; }
.member-card-body .slogan { font-size: 12px; color: var(--text-muted); }
.member-card-tags {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 0 20px 16px;
    flex-wrap: wrap;
}
.member-card-tags span {
    font-size: 11px;
    padding: 3px 10px;
    background: var(--bg);
    color: var(--text-light);
    border-radius: 12px;
}

/* --- Star Month --- */
.star-highlight {
    background: linear-gradient(135deg, var(--gold-bg), #fff3cd);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}
.star-badge {
    font-size: 80px;
    flex-shrink: 0;
    text-align: center;
    line-height: 1;
}
.star-info { flex: 1; }
.star-info h3 { font-size: 22px; color: var(--dark2); margin-bottom: 8px; }
.star-info .star-company { font-size: 18px; color: var(--green); font-weight: 600; margin-bottom: 12px; }
.star-info .star-reason { color: var(--text-light); font-size: 14px; line-height: 1.8; }
.star-info .btn {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 24px;
    background: var(--green);
    color: var(--white);
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.star-info .btn:hover { background: var(--green-dark); color: var(--white); }

/* --- Supply-Demand --- */
.sd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}
.sd-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--green);
    transition: var(--transition);
}
.sd-card.type-demand { border-left-color: var(--red-cq); }
.sd-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.sd-card .sd-type {
    display: inline-block;
    font-size: 12px;
    padding: 3px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}
.sd-card.type-supply .sd-type { background: var(--green-bg); color: var(--green); }
.sd-card.type-demand .sd-type { background: #fdecea; color: var(--red-cq); }
.sd-card h4 { font-size: 16px; color: var(--dark2); margin-bottom: 8px; }
.sd-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.sd-card .sd-meta { font-size: 12px; color: var(--text-muted); margin-top: 12px; display: flex; gap: 12px; }

/* --- Article List --- */
.article-list { max-width: 900px; margin: 0 auto; }
.article-item {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    gap: 20px;
}
.article-item:hover { box-shadow: var(--shadow-hover); }
a.article-item:hover h3 { color: var(--green); }
.article-item .article-thumb {
    width: 200px;
    height: 140px;
    border-radius: var(--radius);
    background: var(--green-bg);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--green);
    overflow: hidden;
}
.article-item .article-info { flex: 1; }
.article-item .article-info h3 { font-size: 18px; margin-bottom: 8px; }
.article-item .article-info h3 a { color: var(--dark2); }
.article-item .article-info h3 a:hover { color: var(--green); }
.article-item .article-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.article-item .article-summary { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* --- 企业文章详情视图 --- */
.detail-view { max-width: 860px; margin: 0 auto; padding: 10px 0; }
.detail-back {
    display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--green);
    text-decoration: none; padding: 6px 0; margin-bottom: 18px;
}
.detail-back:hover { text-decoration: underline; }
.detail-view .detail-title { font-size: 24px; color: var(--dark2); font-weight: 700; line-height: 1.4; margin-bottom: 12px; }
.detail-view .detail-meta-row { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #eee; }
.detail-view .detail-summary {
    font-size: 15px; color: var(--text); background: #f8faf9; padding: 14px 18px; border-radius: 8px;
    border-left: 3px solid var(--green); margin-bottom: 18px; line-height: 1.7;
}
.detail-view .detail-body { font-size: 15px; line-height: 2; color: var(--text); }
.detail-view .detail-body p { margin-bottom: 14px; }

/* --- Detail Page --- */
.detail-page { max-width: 900px; margin: 40px auto; padding: 0 20px; }
.detail-page .detail-header { margin-bottom: 30px; }
.detail-page .detail-header h1 { font-size: 28px; color: var(--dark2); line-height: 1.4; }
.detail-page .detail-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.detail-page .detail-body {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
}
.detail-page .detail-body p { margin-bottom: 16px; }
.detail-page .detail-body img { max-width: 100%; border-radius: var(--radius); margin: 16px 0; }

/* --- Member Micro Site --- */
.member-micro-header {
    background: var(--white);
    padding: 40px 0 30px;
    box-shadow: var(--shadow);
}
.member-micro-nav {
    background: var(--dark);
    position: sticky;
    top: 80px;
    z-index: 999;
}
.member-micro-nav .container { overflow-x: auto; }
.member-micro-nav ul {
    display: flex;
    gap: 0;
    white-space: nowrap;
}
.member-micro-nav ul li a {
    display: block;
    padding: 14px 20px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: var(--transition);
}
.member-micro-nav ul li a:hover,
.member-micro-nav ul li a.active { color: var(--gold-light); background: rgba(255,255,255,0.08); }
.member-micro-nav ul li a.active { border-bottom: 2px solid var(--gold); }

.member-profile-card {
    display: flex;
    gap: 30px;
    align-items: center;
}
.member-profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}
.member-profile-info h1 { font-size: 24px; color: var(--dark2); }
.member-profile-info .slogan { color: var(--text-light); margin: 6px 0; }
.member-profile-info .tags { display: flex; gap: 8px; flex-wrap: wrap; }
.member-profile-info .tags span {
    font-size: 12px;
    padding: 3px 12px;
    background: var(--green-bg);
    color: var(--green);
    border-radius: 12px;
}
.member-breadcrumb {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.member-breadcrumb a { color: var(--text-muted); }
.member-breadcrumb a:hover { color: var(--green); }

/* Micro page content */
.micro-section {
    padding: 40px 0;
    background: var(--bg);
    min-height: 400px;
}
.micro-section .container { max-width: 1000px; }
.micro-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}
a.micro-card { transition: box-shadow 0.2s, transform 0.2s; }
a.micro-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-1px); }
a.micro-card:hover h3 { color: var(--green); }
.micro-card h3 {
    font-size: 20px;
    color: var(--dark2);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--green);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Product Grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.product-card-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--green);
}
.product-card-body { padding: 20px; }
.product-card-body h4 { font-size: 15px; color: var(--dark2); margin-bottom: 8px; }
.product-card-body p { font-size: 13px; color: var(--text-light); line-height: 1.5; }
.product-card-body .price { color: var(--red-cq); font-weight: 600; margin-top: 8px; }

/* Case Grid */
.case-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 24px; }
.case-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.case-card:hover { box-shadow: var(--shadow-hover); }
.case-card-top {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gold);
}
.case-card-body { padding: 24px; }
.case-card-body h4 { font-size: 17px; color: var(--dark2); margin-bottom: 8px; }
.case-card-body .case-client { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.case-card-body p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* Timeline */
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--green-light);
}
.timeline-item { position: relative; padding-bottom: 24px; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 4px;
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--green);
}
.timeline-year { font-size: 14px; font-weight: 700; color: var(--green); margin-bottom: 4px; }
.timeline-event { font-size: 14px; color: var(--text); }

/* Honor Wall */
.honor-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.honor-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}
.honor-item:hover { border-color: var(--gold); }
.honor-item .honor-icon { font-size: 48px; margin-bottom: 10px; }
.honor-item h4 { font-size: 14px; color: var(--dark2); margin-bottom: 6px; }
.honor-item .honor-meta { font-size: 12px; color: var(--text-muted); }

/* Team Grid */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.team-member {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}
.team-member:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.team-member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 24px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    font-weight: 700;
}
.team-member-body { padding: 16px 20px 20px; }
.team-member-body h4 { font-size: 16px; color: var(--dark2); }
.team-member-body .position { font-size: 13px; color: var(--green); margin-bottom: 8px; }
.team-member-body p { font-size: 12px; color: var(--text-light); }

/* --- About Page --- */
.about-section { padding: 60px 0; }
.about-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}
.about-card h3 { font-size: 22px; color: var(--dark2); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--green); }
.about-card p { line-height: 1.9; color: var(--text); margin-bottom: 12px; }
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.org-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.org-item {
    background: var(--white);
    border: 2px solid var(--green);
    border-radius: var(--radius);
    padding: 16px 24px;
    text-align: center;
    min-width: 120px;
    transition: var(--transition);
}
.org-item:hover { background: var(--green-bg); }
.org-item h4 { color: var(--green-dark); font-size: 14px; }
.org-item p { color: var(--text-muted); font-size: 12px; }

/* --- Join Page --- */
.join-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-bottom: 40px; }
.join-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
}
.join-step-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.join-step h4 { font-size: 16px; color: var(--dark2); margin-bottom: 8px; }
.join-step p { font-size: 13px; color: var(--text-light); }

/* --- Form Elements --- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; color: var(--dark2); margin-bottom: 6px; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    font-family: inherit;
    transition: var(--transition);
}
.form-group select {
    width: 100%;
    padding: 10px 36px 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px 12px;
    cursor: pointer;
    transition: var(--transition);
}
.form-group select:hover {
    border-color: var(--green);
}
.form-group select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(45,140,74,0.1);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(45,140,74,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn {
    display: inline-block;
    padding: 10px 28px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.btn:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    color: var(--green);
    border: 1px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-light); }

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}
.contact-info-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .icon {
    width: 44px;
    height: 44px;
    background: var(--green-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green);
}
.contact-info-item h4 { font-size: 14px; color: var(--dark2); margin-bottom: 4px; }
.contact-info-item p { font-size: 13px; color: var(--text-light); }

/* --- Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}
.pagination a, .pagination span {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
}
.pagination a:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.pagination .current { background: var(--green); color: var(--white); border-color: var(--green); }
.pagination .ellipsis { padding: 8px 6px; color: var(--text-muted); cursor: default; border: none; background: transparent; font-size: 14px; }
@media (max-width: 480px) { .pagination .ellipsis { padding: 6px 4px; } }

/* --- Filter Bar --- */
.filter-bar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}
.filter-bar input[type="text"] {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    min-width: 200px;
    flex: 1;
}
.filter-bar input[type="text"]:focus { outline: none; border-color: var(--green); }
.filter-bar select,
.filter-select {
    padding: 9px 40px 9px 16px;
    border: 1px solid var(--border);
    border-radius: 24px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 5l4 4 4-4' fill='none' stroke='%232d8c4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px 14px;
    cursor: pointer;
    min-width: 150px;
    height: 40px;
    line-height: 1.4;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
}
.filter-bar select:hover,
.filter-select:hover {
    border-color: var(--green);
    background-color: #f5fbf6;
    box-shadow: 0 2px 8px rgba(45,140,74,0.12);
}
.filter-bar select:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(45,140,74,0.15);
    background-color: #fff;
}

/* --- Interview Cards --- */
.interview-card {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 20px;
}
.interview-card:hover { box-shadow: var(--shadow-hover); }
.interview-card-avatar {
    width: 160px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    flex-shrink: 0;
}
.interview-card-body { padding: 24px; flex: 1; }
.interview-card-body h3 { font-size: 18px; color: var(--dark2); margin-bottom: 6px; }
.interview-card-body .interviewee { font-size: 14px; color: var(--green); margin-bottom: 10px; }
.interview-card-body p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* --- Breadcrumb --- */
.breadcrumb {
    font-size: 14px;
    color: var(--text-muted);
    padding: 16px 0;
    display: flex;
    gap: 4px;
    align-items: center;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .sep { margin: 0 4px; }

/* --- Page Header --- */
.page-header {
    background: linear-gradient(135deg, var(--green-dark) 0%, #0d3d1e 100%);
    padding: 40px 0;
    color: var(--white);
    text-align: center;
}
.page-header h1 { font-size: 30px; font-weight: 700; }
.page-header p { font-size: 15px; opacity: 0.8; margin-top: 8px; }

/* --- Panel / Card Common --- */
.panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: 24px;
}
.panel h3 {
    font-size: 20px;
    color: var(--dark2);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--green);
}

/* --- Alert --- */
.alert { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 14px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* --- Footer --- */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 50px 0 0;
    margin-top: 60px;
    border-top: 4px solid var(--gold);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
}
.footer-col h3 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}
.footer-col p { font-size: 13px; line-height: 1.8; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col svg { vertical-align: -2px; margin-right: 4px; }
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}
.footer-bottom p { margin-bottom: 4px; }
.wx-name { font-size: 13px; }

/* --- Friend Links --- */
.friend-links {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    margin-top: 8px;
}
.friend-links-title {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 14px;
    font-weight: 500;
}
.friend-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.friend-links-list a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color .3s;
}
.friend-links-list a:hover {
    color: #fff;
}
.friend-links-list .fl-logo {
    height: 28px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(0.3);
    opacity: 0.8;
    transition: all .3s;
}
.friend-links-list a:hover .fl-logo {
    opacity: 1;
    filter: grayscale(0);
}
.friend-links-list .fl-text {
    padding: 2px 0;
    border-bottom: 1px solid transparent;
    transition: border-color .3s;
}
.friend-links-list a:hover .fl-text {
    border-bottom-color: rgba(255,255,255,0.5);
}

/* Mobile friend links */
@media (max-width: 768px) {
    .friend-links-list {
        gap: 12px;
        justify-content: center;
    }
    .friend-links {
        text-align: center;
        padding-top: 20px;
    }
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 80px;
    width: 44px;
    height: 44px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--green-dark); }

/* --- Phone Float --- */
.phone-float {
    position: fixed;
    right: 24px;
    bottom: 132px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.phone-float.visible { opacity: 1; visibility: visible; }
.phone-float:hover { background: #b8860b; }

/* --- Admin Styles (minimal inline for reuse) --- */
.admin-body { background: #f0f2f5; }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 240px;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
    color: rgba(255,255,255,0.8);
    flex-shrink: 0;
}
.admin-sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}
.admin-sidebar-header h2 { font-size: 18px; color: var(--white); }
.admin-sidebar-header p { font-size: 12px; color: rgba(255,255,255,0.5); }
.admin-menu { padding: 12px 0; }
.admin-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--transition);
}
.admin-menu a:hover,
.admin-menu a.active { color: var(--gold-light); background: rgba(255,255,255,0.05); border-left: 3px solid var(--gold); }
.admin-main { flex: 1; padding: 24px; overflow-x: auto; }
.admin-header {
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
}
.admin-header h3 { font-size: 18px; color: var(--dark2); }
.admin-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

/* Admin Table */
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.admin-table th { background: var(--bg); font-weight: 600; color: var(--dark2); }
.admin-table tr:hover td { background: #fafafa; }
.admin-table .actions { display: flex; gap: 8px; }
.admin-table .actions a { font-size: 13px; padding: 4px 10px; border-radius: 4px; }
.btn-sm { font-size: 13px; padding: 6px 14px; border-radius: 4px; }
.btn-danger { background: var(--red-cq); color: #fff; border: none; }
.btn-danger:hover { background: #a93226; }

/* Admin Login */
.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-dark), #0d3d1e);
}
.admin-login-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 400px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.admin-login-box h2 { text-align: center; color: var(--dark2); margin-bottom: 8px; font-size: 24px; }
.admin-login-box .subtitle { text-align: center; color: var(--text-muted); font-size: 13px; margin-bottom: 28px; }

/* --- Party / Policy Page --- */
.party-card, .policy-card {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    gap: 20px;
}
.party-card:hover, .policy-card:hover { box-shadow: var(--shadow-hover); }
.party-card .icon-box, .policy-card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}
.party-card .icon-box { background: #fdecea; color: #c0392b; }
.policy-card .icon-box { background: var(--green-bg); color: var(--green); }
.party-card-content, .policy-card-content { flex: 1; }
.party-card-content h4, .policy-card-content h4 { font-size: 16px; margin-bottom: 6px; }
.party-card-content h4 a, .policy-card-content h4 a { color: var(--dark2); }
.party-card-content h4 a:hover, .policy-card-content h4 a:hover { color: var(--green); }
.party-card-content p, .policy-card-content p { font-size: 13px; color: var(--text-light); }
.party-card-content .meta, .policy-card-content .meta { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.party-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 4px;
    box-shadow: var(--shadow);
}
.party-tab {
    padding: 10px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background: none;
}
.party-tab.active { background: var(--green); color: var(--white); }

/* --- Mengyu Bridge Page --- */
.mengyu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.mengyu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.mengyu-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.mengyu-card-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}
.mengyu-card-body { padding: 24px; }
.mengyu-card-body h4 { font-size: 16px; color: var(--dark2); margin-bottom: 8px; }
.mengyu-card-body p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ================================================
   RESPONSIVE DESIGN - Mobile First Adaptations
   ================================================ */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero-section { height: 400px; }
    .hero-content h2 { font-size: 30px; }
    .hero-content p { font-size: 16px; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .case-grid { grid-template-columns: 1fr; }
    .sd-grid { grid-template-columns: 1fr; }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* Header */
    .site-header .container { height: 64px; }
    .logo-text h1 { font-size: 16px; }
    .logo-text p { font-size: 10px; letter-spacing: 1px; }
    .logo-icon svg { width: 36px; height: 36px; }
    
    /* Mobile Nav */
    .mobile-menu-btn { display: flex; }
    .main-nav {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: var(--transition);
        z-index: 2000;
        overflow-y: auto;
        padding-top: 60px;
    }
    .main-nav.open { right: 0; }
    .main-nav > ul { flex-direction: column; }
    .main-nav > ul > li > a { padding: 12px 24px; border-bottom: 1px solid var(--border); }
    .main-nav > ul > li.active > a::after { display: none; }
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        background: var(--bg);
        display: none;
    }
    .main-nav li.mobile-open .sub-menu { display: block; }
    .sub-menu li a { padding: 10px 36px; }
    
    /* Mobile overlay */
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1500;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .mobile-overlay.show { opacity: 1; visibility: visible; }
    
    /* Hero */
    .hero-section { height: 320px; }
    .hero-content h2 { font-size: 24px; }
    .hero-content p { font-size: 14px; }
    .hero-content .btn-hero { padding: 10px 24px; font-size: 14px; }
    
    /* Section */
    .section { padding: 40px 0; }
    .section-title h2 { font-size: 24px; }
    
    /* Counter */
    .counter-num { font-size: 36px; }
    
    /* News — mobile stack */
    .news-hero { flex-direction: column; }
    .news-hero-img { width: 100%; min-height: 140px; }
    .news-hero-body { padding: 18px; }
    .news-hero-body h3 { font-size: 18px; }
    .news-hero-summary { font-size: 13px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .news-list-item { padding: 12px 14px; gap: 10px; }
    .news-list-left { min-width: 56px; }
    .news-list-body h4 { font-size: 14px; }
    
    /* Logo Wall — Mobile optimized 2-column card layout */
    .logo-wall-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .logo-wall-item {
        aspect-ratio: auto;
        padding: 16px 10px;
        border-radius: var(--radius);
        flex-direction: column;
        gap: 6px;
        min-height: 110px;
        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    }
    .logo-wall-item:active {
        background: var(--green-bg);
        border-color: var(--green);
    }
    .logo-wall-item .logo-avatar {
        width: 46px;
        height: 46px;
        border-radius: 10px;
        font-size: 17px;
        margin: 0 auto;
        flex-shrink: 0;
    }
    .logo-wall-item .company-name {
        font-size: 13px;
        font-weight: 600;
        color: var(--dark2);
        text-align: center;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .logo-wall-item .industry-tag {
        position: static;
        font-size: 10px;
        padding: 2px 8px;
        background: var(--green-bg);
        color: var(--green);
        border-radius: 10px;
        margin: 2px auto 0;
        display: inline-block;
    }
    
    /* Star */
    .star-highlight { flex-direction: column; text-align: center; padding: 24px; }
    
    /* Filter */
    .filter-bar { flex-direction: column; align-items: stretch; }
    .filter-bar input[type="text"] { min-width: 100%; }
    .filter-bar select,
    .filter-select { width: 100%; min-width: unset; max-width: unset; border-radius: var(--radius); }
    
    /* Member card */
    .member-card-header { height: 100px; }
    
    /* Article */
    .article-item { flex-direction: column; }
    .article-item .article-thumb { width: 100%; height: 160px; }
    
    /* Interview */
    .interview-card { flex-direction: column; }
    .interview-card-avatar { width: 100%; min-height: 120px; }
    
    /* Detail */
    .detail-page .detail-header h1 { font-size: 22px; }
    .detail-page .detail-body { font-size: 15px; }
    
    /* Member Micro */
    .member-profile-card { flex-direction: column; text-align: center; }
    .member-profile-info .tags { justify-content: center; }
    .member-micro-nav ul { gap: 0; }
    .member-micro-nav ul li a { padding: 10px 14px; font-size: 13px; }
    
    /* Team/Product/Case grid */
    .team-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .honor-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* Back to top — mobile positioning */
    .back-to-top {
        right: 16px;
        bottom: 80px;
        width: 40px;
        height: 40px;
    }
    .back-to-top svg { width: 18px; height: 18px; }

    /* Phone float — mobile positioning */
    .phone-float {
        right: 16px;
        bottom: 128px;
        width: 40px;
        height: 40px;
    }
    .phone-float svg { width: 18px; height: 18px; }
    
    /* Footer — Mobile compact layout */
    .site-footer { padding: 30px 0 0; margin-top: 40px; }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 20px;
    }
    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-about h3 { font-size: 16px; margin-bottom: 6px; }
    .footer-about h3::after { left: 50%; transform: translateX(-50%); }
    .footer-about p { font-size: 12px; line-height: 1.6; }
    .footer-about p:last-of-type { display: none; }
    .footer-col { margin-bottom: 0; }
    .footer-col h3 { font-size: 14px; margin-bottom: 10px; padding-bottom: 6px; }
    .footer-col h3::after { width: 20px; }
    .footer-col ul li { margin-bottom: 8px; }
    .footer-col ul li a {
        font-size: 13px;
        display: block;
        padding: 4px 0;
    }
    .footer-col p { font-size: 12px; line-height: 1.6; }
    .footer-col svg { width: 14px; height: 14px; }
    .footer-contact {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 12px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .footer-contact h3::after { left: 50%; transform: translateX(-50%); }
    .footer-contact p { margin-bottom: 6px; }
    .footer-bottom { padding: 14px 0; margin-top: 20px; font-size: 11px; }
    .footer-bottom p { margin-bottom: 2px; }
    .wx-name { font-size: 12px; }
    
    /* Page header */
    .page-header h1 { font-size: 22px; }
    
    /* Join steps */
    .join-steps { grid-template-columns: repeat(2, 1fr); }
    
    /* Admin */
    .admin-layout { flex-direction: column; }
    .admin-sidebar { width: 100%; position: static; }
    .admin-menu { display: flex; flex-wrap: wrap; padding: 0; }
    .admin-menu a { padding: 10px 16px; border-left: none !important; border-bottom: 2px solid transparent; }
    .admin-menu a.active { border-bottom-color: var(--gold); }
    
    /* Mengyu */
    .mengyu-grid { grid-template-columns: 1fr; }
    
    /* Member micro nav */
    .member-micro-nav { top: 64px; }
    
    /* Breadcrumb */
    .breadcrumb { font-size: 13px; overflow-x: auto; white-space: nowrap; }
    
    /* Panel */
    .panel { padding: 20px; }
    .about-card { padding: 24px; }
    
    /* Pagination */
    .pagination a, .pagination span { padding: 6px 10px; font-size: 13px; }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero-section { height: 260px; }
    .hero-content h2 { font-size: 20px; }
    .hero-content p { font-size: 13px; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .counter-num { font-size: 28px; }
    .counter-item p { font-size: 12px; }
    .logo-wall-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .logo-wall-item { padding: 14px 8px; min-height: 100px; }
    .logo-wall-item .logo-avatar { width: 42px; height: 42px; font-size: 15px; }
    .logo-wall-item .company-name { font-size: 12px; }
    .join-steps { grid-template-columns: 1fr; }
    .honor-grid { grid-template-columns: 1fr 1fr; }
    .product-card-img { height: 140px; font-size: 36px; }
    .admin-login-box { width: calc(100% - 40px); padding: 28px 20px; }
}

/* 图片占位样式 */
.img-placeholder {
    background: linear-gradient(135deg, #1a5632 0%, #2d8a56 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}
.img-placeholder::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 8px,
        rgba(255,255,255,0.04) 8px,
        rgba(255,255,255,0.04) 16px
    );
}

/* 新闻图片占位 */
.news-img-placeholder {
    background: linear-gradient(135deg, #1a5632 0%, #2d8a56 100%);
    width: 100%;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

/* LOGO墙图片占位 */
.logo-img-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a96e;
    font-size: 11px;
    font-weight: bold;
    border: 1px solid #eee;
    padding: 4px;
    text-align: center;
    word-break: break-all;
}

/* 会员封面占位 */
.member-cover-placeholder {
    background: linear-gradient(135deg, #c9a96e 0%, #e8d5a3 100%);
    width: 100%;
    aspect-ratio: 3/2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

/* 通用图片缺失时的样式 */
img[src=""] , img:not([src]) {
    visibility: hidden;
}

/* Print styles */
@media print {
    .site-header, .site-footer, .back-to-top, .phone-float, .mobile-menu-btn { display: none; }
    body { background: var(--white); }
}
