@charset "utf-8";
/* CSS Document */
/* ===== Google Fonts 加载 ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Noto+Serif+SC:wght@300;400;600;700&display=swap');

/* ===== CSS 自定义变量 ===== */
:root {
    --primary: #7a1a0e;
    --primary-light: #a8281a;
    --primary-dark: #4d1008;
    --gold: #d4a34a;
    --gold-light: #f0d080;
    --cream: #fcf8f0;
    --cream-dark: #f5eee4;
    --text-dark: #2d1a0e;
    --text-light: #fdf6ed;
    --shadow: 0 8px 40px rgba(0,0,0,0.08);
    --shadow-hover: 0 16px 60px rgba(122,26,14,0.15);
    --radius: 20px;
    --transition: all 0.5s cubic-bezier(0.165,0.84,0.44,1);
}

/* ===== 重置 & 基础 ===== */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    font-family: "Noto Serif SC", "Cormorant Garamond", "Microsoft YaHei", serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 2;
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0.03em;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); text-decoration: none; }

/* ===== 滚动条 ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius:10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

/* ===== 头部 ===== */
header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    color: var(--text-light);
    padding: 0.4rem 0;
    border-bottom: 3px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo { display: flex; align-items: baseline; gap: 4px; }
.logo h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
}
.logo h1 span { color: var(--gold-light); font-size: 2.2rem; }
.logo .sub { font-size: 0.7rem; opacity: 0.7; letter-spacing: 3px; font-weight:300; margin-left:8px; }
nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.1rem 0.3rem;
}
nav ul li a {
    color: var(--text-light);
    font-weight: 300;
    padding: 0.25rem 0.7rem;
    border-radius: 30px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 1px solid transparent;
    opacity: 0.85;
}
nav ul li a:hover {
    background: rgba(240,208,128,0.15);
    border-color: var(--gold-light);
    color: var(--gold-light);
    opacity: 1;
    transform: translateY(-1px);
}

/* ===== 横幅 ===== */
.banner {
    background-image: url('images/banner-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    /* 为了文字清晰，增加半透明遮罩层 */
    position: relative;
    color: var(--text-light);
    text-align: center;
    padding: 6rem 2rem 5rem;
    margin-bottom: 3rem;
    overflow: hidden;
    isolation: isolate;
}

/* 添加半透明遮罩层，确保文字可读 */
.banner::before {
    content: "✂";
    position: absolute;
    font-size: 28rem;
    opacity: 0.04;
    right: -5%;
    top: -30%;
    transform: rotate(20deg);
    pointer-events: none;
    z-index: 0;
}

/* 新增：深色半透明遮罩，让文字更清晰 */
.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35); /* 调整透明度控制遮罩深浅 */
    z-index: 0;
}

.banner .banner-inner {
    position: relative;
    z-index: 1;
}
.banner h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 12px;
    margin-bottom: 0.6rem;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.2);
}
.banner h2 span { color: var(--gold-light); font-weight: 600; }
.banner p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    letter-spacing: 6px;
    font-weight: 300;
}
.banner .btn {
    display: inline-block;
    background: transparent;
    color: var(--gold-light);
    padding: 0.9rem 3.5rem;
    border-radius: 50px;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 4px;
    border: 2px solid var(--gold-light);
    transition: var(--transition);
    cursor: pointer;
}
.banner .btn:hover {
    background: var(--gold-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(240,208,128,0.25);
}

/* ===== 通用内容区 ===== */
.page-content {
    max-width: 1200px;
    margin: 2.5rem auto;
    padding: 0 24px;
}
.content-box {
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 3.5rem 4rem;
    position: relative;
    overflow: hidden;
    border-left: 8px solid var(--gold);
}
.content-box::before {
    content: "✂";
    position: absolute;
    font-size: 10rem;
    opacity: 0.02;
    right: -10px;
    bottom: -30px;
    transform: rotate(-10deg);
}
.content-box h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--primary);
    letter-spacing: 8px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--gold-light);
    position: relative;
}
.content-box h2::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gold);
}
.content-box h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--primary-light);
    margin: 2rem 0 1rem;
    letter-spacing: 3px;
    border-left: 4px solid var(--gold);
    padding-left: 1.2rem;
}
.content-box p {
    margin-bottom: 1.2rem;
    text-indent: 2.5em;
    font-size: 1.05rem;
    font-weight: 300;
    color: #3d2b1a;
}
.content-box ul, .content-box ol {
    margin-left: 2.5rem;
    margin-bottom: 1.2rem;
}
.content-box ul li, .content-box ol li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 300;
    padding-left: 0.3rem;
}
.content-box ul li::marker { color: var(--gold); }
.content-box img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 1.5rem 0;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    transition: var(--transition);
}
.content-box img:hover {
    transform: scale(1.008);
    box-shadow: 0 12px 56px rgba(0,0,0,0.1);
}
.img-center { display: block; margin-left: auto; margin-right: auto; }

/* ===== 图片占位 ===== */
.img-placeholder {
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border: 2px dashed var(--gold);
    border-radius: 16px;
    padding: 3.5rem 1.5rem;
    text-align: center;
    color: #8a7a6a;
    font-size: 0.95rem;
    margin: 1.2rem 0;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.img-placeholder:hover { border-color: var(--primary-light); background: #faf3e8; }
.img-placeholder .icon { font-size: 4rem; margin-bottom: 0.5rem; opacity: 0.5; }
.img-placeholder p { text-indent: 0 !important; margin-bottom: 0 !important; }

/* ===== 首页专用 ===== */
.intro-section {
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 0 24px;
    text-align: center;
}
.intro-section h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary);
    letter-spacing: 10px;
    margin-bottom: 0.8rem;
}
.intro-section h2 span { color: var(--gold); border-bottom: 4px solid var(--gold-light); padding-bottom: 6px; }
.intro-section > p {
    max-width: 800px;
    margin: 0.5rem auto 2.5rem;
    font-size: 1.15rem;
    font-weight: 300;
    color: #4a3a2a;
    letter-spacing: 2px;
}

/* ===== 卡片网格 ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.card {
    background: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 5px solid var(--gold);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(212,163,74,0.03));
    pointer-events: none;
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.card .icon { font-size: 3.2rem; display: block; margin-bottom: 0.6rem; }
.card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
}
.card p { font-size: 0.92rem; color: #5a4a3a; font-weight: 300; margin-bottom: 0.8rem; }
.card a {
    display: inline-block;
    font-weight: 400;
    color: var(--primary-light);
    letter-spacing: 2px;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: var(--transition);
}
.card a:hover { border-bottom-color: var(--gold); color: var(--gold); }

/* ===== 特色展示 ===== */
.featured-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 24px;
}
.featured-section h2 {
    font-family: "Cormorant Garamond", serif;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--primary);
    letter-spacing: 8px;
    margin-bottom: 2rem;
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
}
.featured-item {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}
.featured-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-light);
}
.featured-item .icon { font-size: 3.5rem; display: block; margin-bottom: 0.3rem; }
.featured-item h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 2px;
}
.featured-item p { font-size: 0.9rem; color: #5a4a3a; font-weight: 300; }
.featured-item a { font-weight: 400; color: var(--primary-light); letter-spacing: 1px; transition: var(--transition); }
.featured-item a:hover { color: var(--gold); }

/* ===== 页脚 ===== */
footer {
    background: linear-gradient(135deg, #1a0d08, #3d1f12);
    color: #d4c5b2;
    margin-top: 4rem;
    padding: 3rem 0 1.8rem;
    border-top: 4px solid var(--gold);
}
.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer-sitemap { margin-bottom: 1.5rem; }
.footer-sitemap h4 {
    font-family: "Cormorant Garamond", serif;
    color: var(--gold-light);
    letter-spacing: 6px;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 300;
}
.footer-sitemap ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 1.5rem;
}
.footer-sitemap ul li a {
    color: #c8b8a8;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: var(--transition);
}
.footer-sitemap ul li a:hover { color: var(--gold-light); text-decoration: none; }
.footer-divider { border: none; border-top: 1px solid #5a3f2b; margin: 1rem 0; }
.footer-copy {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
    letter-spacing: 2px;
    font-weight: 300;
}
.footer-copy p { margin-bottom: 0.2rem; }

/* ===== 响应式 ===== */
@media (max-width:992px) {
    .header-inner { flex-direction:column; text-align:center; gap:0.3rem; }
    nav ul { justify-content:center; gap:0.1rem 0.2rem; }
    nav ul li a { font-size:0.65rem; padding:0.15rem 0.4rem; }
    .banner h2 { font-size:2.8rem; letter-spacing:6px; }
    .content-box { padding:2rem 1.5rem; }
    .content-box h2 { font-size:2.2rem; letter-spacing:4px; }
}
@media (max-width:768px) {
    .logo h1 { font-size:1.5rem; letter-spacing:4px; }
    .banner { padding:3rem 1rem 2.5rem; }
    .banner h2 { font-size:2rem; letter-spacing:4px; }
    .banner p { font-size:1rem; letter-spacing:3px; }
    .content-box { padding:1.5rem 1rem; }
    .content-box h2 { font-size:1.6rem; }
    .intro-section h2 { font-size:2rem; letter-spacing:6px; }
    .card-grid { grid-template-columns:1fr 1fr; gap:1rem; }
    .featured-grid { grid-template-columns:1fr 1fr; gap:1rem; }
    .featured-section h2 { font-size:1.8rem; letter-spacing:4px; }
    .footer-sitemap ul { gap:0.1rem 0.8rem; }
}
@media (max-width:480px) {
    .card-grid { grid-template-columns:1fr; }
    .featured-grid { grid-template-columns:1fr; }
    .banner h2 { font-size:1.5rem; letter-spacing:2px; }
    .content-box h2 { font-size:1.3rem; letter-spacing:2px; }
    .content-box h3 { font-size:1.1rem; padding-left:0.8rem; }
}
/* ===== 页面专用布局样式 ===== */

/* ----- 关于：左文右图 ----- */
.about-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}
.about-layout .text {
    flex: 1.2;
}
.about-layout .image {
    flex: 1;
}
.about-layout .image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

/* ----- 历史：时间线 ----- */
.timeline {
    position: relative;
    padding-left: 40px;
    margin: 2rem 0;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
}
.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 20px;
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: -34px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 3px var(--gold);
}
.timeline-item .year {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}
.timeline-item h4 {
    font-size: 1.2rem;
    color: var(--primary-light);
    margin: 0.3rem 0 0.5rem;
}

/* ----- 特色：三栏卡片+引用 ----- */
.feature-cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin: 2rem 0;
}
.feature-cards-3 .fc-item {
    background: var(--cream);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    border-top: 4px solid var(--gold);
}
.feature-cards-3 .fc-item .icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 0.5rem;
}
.feature-cards-3 .fc-item h4 {
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 1px;
}
.pullquote {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--primary);
    border-left: 4px solid var(--gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--cream);
    border-radius: 0 16px 16px 0;
    letter-spacing: 1px;
}

/* ----- 工艺：步骤式布局 ----- */
.steps {
    counter-reset: step;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}
.step-item {
    background: var(--cream);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    counter-increment: step;
}
.step-item::before {
    content: counter(step);
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 0.3rem;
    opacity: 0.6;
}
.step-item h4 {
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* ----- 民俗：左右交错 ----- */
.stagger-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2rem 0;
}
.stagger-item {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.stagger-item:nth-child(even) {
    flex-direction: row-reverse;
}
.stagger-item .s-text {
    flex: 1;
}
.stagger-item .s-image {
    flex: 1;
}
.stagger-item .s-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

/* ----- 人物：卡片网格（大） ----- */
.master-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.master-card {
    background: var(--cream);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}
.master-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.master-card .avatar {
    font-size: 4rem;
    display: block;
    margin-bottom: 0.5rem;
}
.master-card h4 {
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 1px;
}
.master-card .title {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 1px;
}

/* ----- 作品：画廊大图 ----- */
.work-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.2rem;
    margin: 2rem 0;
}
.work-gallery .main {
    grid-row: span 2;
}
.work-gallery .item {
    border-radius: 12px;
    overflow: hidden;
    background: var(--cream);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #8a7a6a;
    border: 1px solid #eee;
}
.work-gallery .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----- 展厅：瀑布流 ----- */
.waterfall {
    columns: 3 260px;
    column-gap: 1.5rem;
    margin: 2rem 0;
}
.waterfall .wf-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    padding: 1rem;
    text-align: center;
    border: 1px solid #f0e8dc;
}
.waterfall .wf-item .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.3rem;
}
.waterfall .wf-item h4 {
    font-size: 0.95rem;
    color: var(--primary);
}

/* ----- 教育：双栏对比 ----- */
.education-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}
.edu-col {
    background: var(--cream);
    padding: 2rem;
    border-radius: 16px;
    border-top: 4px solid var(--gold);
}
.edu-col h4 {
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

/* ----- 荣誉：时间轴+荣誉墙 ----- */
.honor-timeline {
    position: relative;
    padding-left: 30px;
}
.honor-timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
}
.honor-item {
    margin-bottom: 1.5rem;
    padding-left: 20px;
    position: relative;
}
.honor-item::before {
    content: "🏆";
    position: absolute;
    left: -30px;
    top: 2px;
    font-size: 1.2rem;
}
.honor-item .h-year {
    font-weight: 700;
    color: var(--primary);
    display: inline-block;
    min-width: 60px;
}

/* ----- 交流：数据展示 ----- */
.exchange-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}
.stat-box {
    background: var(--cream);
    padding: 1.8rem 1rem;
    border-radius: 16px;
    text-align: center;
}
.stat-box .number {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}
.stat-box .label {
    font-size: 0.9rem;
    color: #5a4a3a;
    letter-spacing: 1px;
}

/* ----- 新闻：头条+列表 ----- */
.news-featured {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}
.news-featured .featured-news {
    background: var(--cream);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--gold);
}
.news-featured .featured-news h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}
.news-featured .featured-news .date {
    font-size: 0.85rem;
    color: #8a7a6a;
}
.news-list .nl-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}
.news-list .nl-item:last-child {
    border-bottom: none;
}
.news-list .nl-item .date {
    font-size: 0.8rem;
    color: #8a7a6a;
    display: inline-block;
    min-width: 70px;
}

/* ----- 志愿：号召式布局 ----- */
.volunteer-cta {
    background: var(--cream);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 2rem 0;
    border: 2px dashed var(--gold);
}
.volunteer-cta .big-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 0.5rem;
}
.volunteer-cta h3 {
    color: var(--primary);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* ----- 联系：左右分栏 ----- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 2rem 0;
}
.contact-layout .contact-info ul {
    list-style: none;
    padding: 0;
}
.contact-layout .contact-info ul li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0e8dc;
}
.contact-layout .contact-info ul li:last-child {
    border-bottom: none;
}
.contact-layout .contact-map {
    background: var(--cream);
    border-radius: 16px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

/* ===== 响应式 ===== */
@media (max-width: 992px) {
    .about-layout,
    .stagger-item,
    .stagger-item:nth-child(even) {
        flex-direction: column;
    }
    .feature-cards-3 {
        grid-template-columns: 1fr 1fr;
    }
    .steps {
        grid-template-columns: 1fr 1fr;
    }
    .work-gallery {
        grid-template-columns: 1fr 1fr;
    }
    .work-gallery .main {
        grid-row: span 1;
    }
    .education-compare {
        grid-template-columns: 1fr;
    }
    .exchange-stats {
        grid-template-columns: 1fr 1fr;
    }
    .news-featured {
        grid-template-columns: 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .waterfall {
        columns: 2 200px;
    }
}
@media (max-width: 768px) {
    .feature-cards-3 {
        grid-template-columns: 1fr;
    }
    .steps {
        grid-template-columns: 1fr;
    }
    .work-gallery {
        grid-template-columns: 1fr;
    }
    .exchange-stats {
        grid-template-columns: 1fr 1fr;
    }
    .waterfall {
        columns: 1;
    }
}