* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #f5f1e8 0%, #ede7d9 50%, #e8e0d0 100%);
    color: #1a1a1a;
    line-height: 1.6;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
}
/* 导航 */
nav {
    background: linear-gradient(180deg, #faf6ef 0%, #f0eadd 100%);
    border-bottom: 2px solid #c44536;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 20px;
}
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.nav-links a {
    color: #c44536;
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid #c44536;
    background: linear-gradient(135deg, #faf6ef 0%, #f0eadd 100%);
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    font-size: 0.9rem;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(196, 69, 54, 0.15), 0 1px 2px rgba(0, 0, 0, 0.08);
}
.nav-links a:hover {
    background: linear-gradient(135deg, #c44536 0%, #a3362a 100%);
    color: #faf6ef;
    box-shadow: 0 4px 12px rgba(196, 69, 54, 0.3), 0 2px 4px rgba(0, 0, 0, 0.12);
}
/* H1 */
h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #c44536;
    padding: 40px 20px 10px;
    text-shadow: 1px 1px 0 rgba(196, 69, 54, 0.15), 2px 2px 0 rgba(0, 0, 0, 0.06);
    letter-spacing: 2px;
}
/* 通用卡片 */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.card {
    background: linear-gradient(145deg, #faf6ef 0%, #f2ecdf 100%);
    border: 1px solid #c44536;
    padding: 20px;
    image-rendering: pixelated;
    box-shadow: 0 4px 12px rgba(196, 69, 54, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(196, 69, 54, 0.05);
    border-radius: 6px;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.card:hover {
    box-shadow: 0 6px 20px rgba(196, 69, 54, 0.18), 0 3px 8px rgba(0, 0, 0, 0.1), 0 12px 36px rgba(196, 69, 54, 0.08);
    transform: translateY(-2px);
}
.card img {
    width: 100%;
    height: auto;
    border: 1px solid #c44536;
    margin-bottom: 12px;
    border-radius: 4px;
}
.card h3 {
    color: #c44536;
    margin-bottom: 8px;
}
.card p {
    font-size: 0.95rem;
    color: #2a2a2a;
}
/* 板块标题 */
.section-title {
    font-size: 1.8rem;
    color: #1a1a1a;
    border-left: 6px solid #c44536;
    padding-left: 15px;
    margin: 40px 0 20px;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 rgba(196, 69, 54, 0.1);
}
/* FAQ */
.faq-item {
    background: linear-gradient(135deg, #faf6ef 0%, #f2ecdf 100%);
    border: 1px solid #c44536;
    padding: 18px;
    margin-bottom: 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(196, 69, 54, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.faq-item:hover {
    box-shadow: 0 4px 16px rgba(196, 69, 54, 0.14), 0 2px 4px rgba(0, 0, 0, 0.08);
}
.faq-item h4 {
    color: #c44536;
    cursor: pointer;
}
.faq-item p {
    margin-top: 10px;
    color: #2a2a2a;
}
/* 新闻 */
.news-card {
    background: linear-gradient(145deg, #faf6ef 0%, #f2ecdf 100%);
    border: 1px solid #c44536;
    padding: 18px;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(196, 69, 54, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.news-card:hover {
    box-shadow: 0 4px 16px rgba(196, 69, 54, 0.14), 0 2px 4px rgba(0, 0, 0, 0.08);
}
.news-card .date {
    color: #6b6b6b;
    font-size: 0.8rem;
    margin-bottom: 6px;
}
.news-card h3 {
    color: #c44536;
    margin-bottom: 8px;
}
/* 页脚 */
footer {
    background: linear-gradient(180deg, #f0eadd 0%, #e8e0d0 100%);
    border-top: 3px solid #c44536;
    padding: 30px 20px;
    margin-top: 50px;
    text-align: center;
    font-size: 0.85rem;
    color: #2a2a2a;
}
footer a {
    color: #c44536;
    text-decoration: none;
    margin: 0 6px;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    border-bottom: 1px solid transparent;
}
footer a:hover {
    border-bottom-color: #c44536;
}
footer .friend-links {
    margin: 20px 0;
}
footer .friend-links a {
    margin: 0 8px;
}
/* 数据统计 */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.stat-item {
    background: linear-gradient(145deg, #faf6ef 0%, #f2ecdf 100%);
    border: 1px solid #c44536;
    padding: 20px 30px;
    text-align: center;
    min-width: 160px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(196, 69, 54, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.stat-item:hover {
    box-shadow: 0 4px 16px rgba(196, 69, 54, 0.14), 0 2px 4px rgba(0, 0, 0, 0.08);
}
.stat-item .num {
    font-size: 2.2rem;
    color: #c44536;
    font-weight: bold;
}
/* 合作伙伴logo占位 */
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.partner-logos span {
    background: linear-gradient(135deg, #faf6ef 0%, #f0eadd 100%);
    border: 1px solid #c44536;
    padding: 10px 18px;
    color: #c44536;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(196, 69, 54, 0.1), 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.partner-logos span:hover {
    box-shadow: 0 4px 12px rgba(196, 69, 54, 0.2), 0 2px 4px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #f5efe4 0%, #ece4d4 100%);
}
/* 响应式 */
@media (max-width: 640px) {
    h1 { font-size: 1.8rem; }
    .nav-links { gap: 10px; }
}