/**
 * 梅子村主题 (mzc)
 *
 * 梅子村官方网站主题
 *
 * @package mzc
 * @author 梅子村村委会
 * @version 1.0.0
 * @link https://mz.342600.xyz
 * @license GNU General Public License v2
 */

/* 通用样式 */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Microsoft YaHei", sans-serif; scroll-behavior: smooth; }
body { background: #ffffff; color: #333333; line-height: 1.6; }
.mzc-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
ul,li{
    list-style: none;
    margin: 0;
    padding: 0;
}
/* 动画效果 */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 通用类 */
.mzc-flex { display: flex; }
.mzc-flex-wrap { flex-wrap: wrap; }
.mzc-gap-1 { gap: 0.25rem; }
.mzc-gap-1\.5 { gap: 0.375rem; }
.mzc-gap-4 { gap: 1rem; }
.mzc-items-center { align-items: center; }
.mzc-shrink-0 { flex-shrink: 0; }
.mzc-flex-1 { flex: 1; }
.mzc-mb-1 { margin-bottom: 0.25rem; }
.mzc-mb-2 { margin-bottom: 0.5rem; }
.mzc-mb-4 { margin-bottom: 1rem; }
.mzc-mt-0\.5 { margin-top: 0.125rem; }
.mzc-mt-1 { margin-top: 0.25rem; }
.mzc-p-4 { padding: 1rem; }
.mzc-px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.mzc-py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.mzc-py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.mzc-px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.mzc-rounded { border-radius: 0.25rem; }
.mzc-rounded-xl { border-radius: 0.75rem; }
.mzc-rounded-full { border-radius: 9999px; }
.mzc-shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.mzc-shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.mzc-bg-white { background-color: #ffffff; }
.mzc-bg-green-100 { background-color: #dcfce7; }
.mzc-bg-blue-100 { background-color: #dbeafe; }
.mzc-bg-orange-100 { background-color: #ffedd5; }
.mzc-bg-red-500 { background-color: #ef4444; }
.mzc-bg-yellow-400 { background-color: #facc15; }
.mzc-bg-green-500 { background-color: #22c55e; }
.mzc-text-green-600 { color: #16a34a; }
.mzc-text-blue-600 { color: #2563eb; }
.mzc-text-orange-600 { color: #f97316; }
.mzc-text-gray-400 { color: #9ca3af; }
.mzc-text-gray-600 { color: #4b5563; }
.mzc-text-sm { font-size: 0.875rem; }
.mzc-text-xs { font-size: 0.75rem; }
.mzc-text-base { font-size: 1rem; }
.mzc-font-bold { font-weight: 700; }
.mzc-font-medium { font-weight: 500; }
.mzc-font-semibold { font-weight: 600; }
.mzc-text-center { text-align: center; }
.mzc-leading-snug { line-height: 1.375; }
.mzc-relative { position: relative; }
.mzc-absolute { position: absolute; }
.mzc-top-3 { top: 0.75rem; }
.mzc-right-3 { right: 0.75rem; }
.mzc-w-20 { width: 5rem; }
.mzc-h-28 { height: 7rem; }
.mzc-w-2 { width: 0.5rem; }
.mzc-h-2 { height: 0.5rem; }
.mzc-block { display: block; }
.mzc-hidden { display: none; }
.mzc-border { border: 1px solid #e5e7eb; }
.mzc-min-h-\[300px\] { min-height: 300px; }
.mzc-transition-all { transition: all 0.3s ease; }
.mzc-hover\:bg-gray-100:hover { background-color: #f3f4f6; }

/* 特殊效果类 */
.mzc-tab-active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.mzc-avatar-glow {
    box-shadow: 0 0 20px rgba(22, 163, 74, 0.5);
}
.mzc-text-gradient {
    background: linear-gradient(135deg, #16a34a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mzc-tag-hover {
    transition: all 0.3s ease;
}
.mzc-tag-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.mzc-float-animation {
    animation: float 3s ease-in-out infinite;
}
.mzc-fade-in-up {
    animation: fadeInUp 0.4s ease-out forwards;
}
.mzc-scale-105 {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* ====================== 顶部：重新优化 ====================== */
.mzc-header {
    background: #fff;
}
.mzc-header-t {
    background: #004a85;
    color: #fff;
    font-size: 11px;
    padding: 8px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.mzc-header-t .mzc-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mzc-header-t-l {
    flex: 1;
}
.mzc-header-link {
    list-style: none;
    display: flex;
}
.mzc-header-link li {
    margin-right: 18px;
}
.mzc-header-link li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s;
}
.mzc-header-link li a:hover {
    text-decoration: underline;
    color: #ffd700;
}
.mzc-header-t-r ul {
    list-style: none;
    display: flex;
    align-items: center;
}
.mzc-header-t-r ul li {
    margin-left: 15px;
}
.mzc-header-t-r ul li a {
    color: #e0e0e0;
    text-decoration: none;
}
.mzc-header-t-r ul li img {
    vertical-align: middle;
}
.mzc-header-choose-btn {
    display: none;
}
.mzc-header-banner {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}
.mzc-header-banner .mzc-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mzc-header-logo img {
    height: 68px;
}
.mzc-header-search {
    display: flex;
    align-items: center;
}
.mzc-header-search input {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 50px 0 0 50px;
    width: 240px;
    font-size: 14px;
    transition: all 0.3s;
}
.mzc-header-search input:focus {
    border-color: #005ea8;
    box-shadow: 0 0 0 2px rgba(0,94,168,0.15);
    outline: none;
}
.mzc-header-search button {
    padding: 10px 14px;
    background: linear-gradient(135deg, #005ea8, #0072bc);
    color: #fff;
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: all 0.3s;
}
.mzc-header-search button:hover {
    background: #003f7f;
}
.mzc-header-mainNav {
    background: linear-gradient(to right, #005ea8, #006bbf);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}
.mzc-header-mainNav .mzc-container {
    max-width: 1200px;
}

/* 统一导航栏样式 */
.mzc-mainNav {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
}
.mzc-mainNav li {
    position: relative;
}
.mzc-mainNav li:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.3);
    font-size: 14px;
}
.mzc-mainNav li a {
    display: block;
    padding: 16px 30px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}
.mzc-mainNav li a:hover, .mzc-mainNav li.active a {
    background: rgba(0,0,0,0.15);
}
.mzc-mainNav li a i {
    margin-right: 5px;
}

/* 移动端导航菜单 */
.mzc-mobile-menu-btn {
    display: none;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1001;
    width: 45px;
    height: 45px;
    background: rgba(0,94,168,0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.mzc-mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}
.mzc-mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mzc-mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mzc-mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mzc-mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}
.mzc-mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.mzc-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0,94,168,0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding-top: 80px;
    transition: right 0.3s ease;
}
.mzc-mobile-nav.active {
    right: 0;
}
.mzc-mobile-nav ul {
    list-style: none;
    padding: 0;
}
.mzc-mobile-nav li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mzc-mobile-nav li a {
    display: block;
    padding: 18px 25px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}
.mzc-mobile-nav li a:hover {
    background: rgba(255,255,255,0.1);
    padding-left: 35px;
}
.mzc-mobile-nav li a i {
    margin-right: 10px;
    width: 20px;
}

/* 浮动和清除浮动 */
.mzc-fl { float: left; }
.mzc-fr { float: right; }
.mzc-clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/* 轮播图 */
.mzc-banner { height: 280px; background: #eee; margin: 15px 0; overflow: hidden; border-radius: 6px; position: relative; }
.mzc-banner .mzc-slide { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 1s ease-in-out; }
.mzc-banner .mzc-slide.active { opacity: 1; }

/* 轮播图标签 */
.mzc-banner-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

/* 轮播图文字介绍 */
.mzc-banner-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    padding: 30px 20px 20px;
    font-size: 18px;
    font-weight: bold;
    z-index: 5;
}

/* 轮播图控制 */
.mzc-banner-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 10;
}

/* 轮播图箭头按钮 */
.mzc-banner-prev, .mzc-banner-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mzc-banner-prev:hover, .mzc-banner-next:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.mzc-banner-prev i, .mzc-banner-next i {
    font-size: 16px;
    color: #333;
}

/* 轮播图指示器 */
.mzc-banner-indicators {
    display: flex;
    gap: 8px;
}

.mzc-banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mzc-banner-dot.active {
    background: #fff;
    transform: scale(1.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mzc-banner-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* 内容布局 */
.mzc-content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; margin-bottom: 20px; }

/* 卡片样式 */
.mzc-card { background: #fff; border: 1px solid #e0e0e0; margin-bottom: 20px; border-radius: 6px; overflow: hidden; transition: all 0.3s; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.mzc-card:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.mzc-card-header { padding: 10px 15px; font-size: 16px; font-weight: bold; color:#fff; position: relative; }
.mzc-card-body { padding: 15px; }

/* 多彩标题栏 */
.mzc-card-blue { background: #005ea8; }
.mzc-card-red { background: #e53935; }
.mzc-card-green { background: #43a047; }
.mzc-card-orange { background: #f57c00; }
.mzc-card-purple { background: #7e57c2; }
.mzc-card-teal { background: #009688; }

/* 快捷入口 */
.mzc-icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.mzc-icon-item { display: flex; align-items: center; justify-content: center; padding: 10px; border: 1px solid #e0e0e0; background: #f9f9f9; border-radius: 4px; transition: all 0.3s; cursor: pointer; }
.mzc-icon-item i { font-size: 20px; margin-right: 8px; transition: transform 0.3s; }
.mzc-icon-item a { text-decoration: none; color: #333; font-size: 14px; display: flex; align-items: center; }
.mzc-icon-item:hover { background: #eef5ff; border-color: #005ea8; }
.mzc-icon-item:hover i { transform: scale(1.1); }

/* 列表 */
.mzc-list-group { list-style: none; }
.mzc-list-group li { padding: 7px 0; border-bottom: 1px dashed #eee; display: flex; justify-content: space-between; transition: padding 0.3s; }
.mzc-list-group li a { color: #333; text-decoration: none; font-size: 14px; }
.mzc-list-group li:hover { padding-left: 5px; background: #f9f9f9; }
.mzc-date { color: #999; font-size: 12px; }

/* 村委班子 */
.mzc-team-container { margin-top: 20px; }
.mzc-team-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.mzc-team-tab {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mzc-team-tab:hover {
    background: #f5f5f5;
}
.mzc-team-tab.active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border-color: #2563eb;
}
.mzc-team-card {
    display: none;
}
.mzc-team-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
.mzc-team-card-inner {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}
.mzc-team-dots {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 6px;
}
.mzc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.mzc-dot.red { background: #ef4444; }
.mzc-dot.yellow { background: #facc15; }
.mzc-dot.green { background: #22c55e; }
.mzc-team-content {
    display: flex;
    gap: 20px;
}
.mzc-team-avatar {
    width: 100px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}
.mzc-team-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
}
.mzc-team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mzc-team-info {
    flex: 1;
}
.mzc-team-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}
.mzc-team-position {
    font-size: 14px;
    font-weight: normal;
    color: #2563eb;
    margin-left: 8px;
}
.mzc-team-duty {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}
.mzc-team-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.mzc-area-tag {
    padding: 4px 12px;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: white;
    border-radius: 12px;
    font-size: 12px;
    transition: all 0.3s ease;
}
.mzc-area-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(22, 163, 74, 0.3);
}
.mzc-team-desc {
    font-size: 12px;
    color: #999;
    line-height: 1.4;
}

/* 三务公开 TAB */
.mzc-tab-nav { display: flex; background: #f8f9fa; border-bottom: 1px solid #ddd; }
.mzc-tab-btn { flex: 1; padding: 10px; border: none; background: none; cursor: pointer; transition: all 0.3s; }
.mzc-tab-btn.active { background: #e53935; color: #fff; }
.mzc-tab-panel { padding: 15px; display: none; animation: fadeIn 0.5s; }
.mzc-tab-panel.active { display: block; }

/* 右侧风景图卡片 */
.mzc-scenic-card { position: relative; border-radius: 6px; overflow: hidden; height: 160px; margin-bottom: 15px; }
.mzc-scenic-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.mzc-scenic-card:hover img { transform: scale(1.1); }
.mzc-scenic-text { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: #fff; padding: 20px 15px 10px; font-size: 16px; font-weight: bold; }

/* 图片懒加载 */
.lazyload { opacity: 0; transition: opacity 0.3s ease; }
.lazyload.loaded { opacity: 1; }

/* 暗黑模式 */
body.dark-mode {
    background: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .mzc-header {
    background: #2c2c2c;
}

body.dark-mode .mzc-header-t {
    background: #1e1e1e;
}

body.dark-mode .mzc-header-banner {
    background: #2c2c2c;
    border-bottom-color: #404040;
}

body.dark-mode .mzc-header-search input {
    background: #3a3a3a;
    border-color: #404040;
    color: #e0e0e0;
}

body.dark-mode .mzc-card {
    background: #2c2c2c;
    border-color: #404040;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

body.dark-mode .mzc-list-group li {
    border-bottom-color: #404040;
}

body.dark-mode .mzc-list-group li a {
    color: #e0e0e0;
}

body.dark-mode .mzc-list-group li:hover {
    background: #3a3a3a;
}

body.dark-mode .mzc-footer {
    background: linear-gradient(to right, #1e1e1e, #2c2c2c);
}

body.dark-mode .mzc-team-card-inner {
    background: #2c2c2c;
    border-color: #404040;
}

body.dark-mode .mzc-team-name {
    color: #e0e0e0;
}

body.dark-mode .mzc-team-duty {
    color: #b0b0b0;
}

body.dark-mode .mzc-team-desc {
    color: #909090;
}

body.dark-mode .mzc-icon-item {
    background: #3a3a3a;
    border-color: #404040;
}

body.dark-mode .mzc-icon-item a {
    color: #e0e0e0;
}

body.dark-mode .mzc-icon-item:hover {
    background: #4a4a4a;
    border-color: #005ea8;
}

/* 暗黑模式切换按钮 */
.mzc-theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #005ea8, #006bbf);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,94,168,0.3);
    transition: all 0.3s ease;
}

.mzc-theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,94,168,0.4);
}

.mzc-theme-toggle i {
    font-size: 20px;
}

/* ====================== 底部：重新优化 ====================== */
.mzc-footer {
    background: linear-gradient(to right, #003366, #005ea8);
    color: #fff;
    padding: 40px 0 25px;
    margin-top: 30px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.mzc-footer .mzc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.mzc-footer-cont {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}
.mzc-footer-copyright {
    flex: 1;
    min-width: 300px;
}
.mzc-footer-copyright div {
    font-size: 14px;
    line-height: 1.8;
}
.mzc-footer-copyright a {
    color: #ffd700;
    text-decoration: none;
}
.mzc-footer-copyright a:hover {
    text-decoration: underline;
}
.mzc-footer-wzbs {
    display: flex;
    align-items: center;
    gap: 15px;
}
.mzc-footer-wzbs img {
    vertical-align: middle;
}

/* 党员标志样式 */
.mzc-team-position img {
    width: 12px;
    height: 12px;
    margin-left: 5px;
    vertical-align: middle;
}

/* 自适应 */
@media (max-width:768px) {
    .mzc-content-grid { grid-template-columns: 1fr; }
    .mzc-mainNav { display: none; }
    .mzc-mobile-menu-btn { display: flex; }
    .mzc-mobile-nav { display: block; }
    .mzc-header-search { display: none; }
    .mzc-icon-grid { grid-template-columns: repeat(2, 1fr); }
    .mzc-team-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    .mzc-team-avatar {
        margin-right: 10px;
    }
    .mzc-team-avatar img {
        width: 100%;
    }
    .mzc-team-info {
        flex: 1;
    }
    .mzc-team-name {
        font-size: 14px;
        margin-bottom: 2px;
    }
    .mzc-team-duty {
        font-size: 12px;
        margin-bottom: 5px;
    }
    .mzc-team-areas {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }
    .mzc-area-tag {
        font-size: 10px;
        padding: 2px 6px;
    }
    .mzc-team-desc {
        font-size: 11px;
    }
}

/* 文章列表样式 */
.mzc-post-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mzc-post-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}
.mzc-post-list li:hover {
    padding-left: 5px;
    background: #f9f9f9;
}
.mzc-post-list li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mzc-post-list li .mzc-date {
    color: #999;
    font-size: 12px;
    margin-left: 10px;
    flex-shrink: 0;
}

/* ====================== 404 错误页面样式 ====================== */
.mzc-404-container {
    padding: 60px 20px;
    min-height: calc(100vh - 400px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mzc-404-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 8px 24px rgba(0, 94, 168, 0.1);
    border: 1px solid rgba(0, 94, 168, 0.1);
}

/* 左侧视觉区域 */
.mzc-404-visual {
    text-align: center;
    flex-shrink: 0;
}

.mzc-404-emblem {
    position: relative;
    margin-bottom: 20px;
}

.mzc-404-badge {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #005ea8, #006bbf);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 94, 168, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.mzc-404-badge i {
    font-size: 60px;
    color: #fff;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(0, 94, 168, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(0, 94, 168, 0.4);
    }
}

.mzc-404-number {
    font-size: 80px;
    font-weight: 700;
    background: linear-gradient(135deg, #005ea8, #006bbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: 8px;
}

/* 右侧信息区域 */
.mzc-404-info {
    max-width: 500px;
}

.mzc-404-title {
    font-size: 28px;
    color: #005ea8;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mzc-404-title i {
    font-size: 32px;
}

.mzc-404-divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(to right, #005ea8, #006bbf);
    margin-bottom: 20px;
    border-radius: 2px;
}

.mzc-404-message {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.8;
}

.mzc-404-hint {
    font-size: 14px;
    color: #666;
    background: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 4px solid #005ea8;
    margin-bottom: 25px;
}

.mzc-404-hint i {
    color: #005ea8;
    margin-right: 8px;
}

/* 按钮组 */
.mzc-404-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.mzc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mzc-btn i {
    font-size: 16px;
}

.mzc-btn-primary {
    background: linear-gradient(135deg, #005ea8, #006bbf);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 94, 168, 0.3);
}

.mzc-btn-primary:hover {
    background: linear-gradient(135deg, #004a85, #005ea8);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 94, 168, 0.4);
}

.mzc-btn-secondary {
    background: #f8f9fa;
    color: #005ea8;
    border-color: #005ea8;
}

.mzc-btn-secondary:hover {
    background: #005ea8;
    color: #fff;
    transform: translateY(-2px);
}

.mzc-btn-outline {
    background: transparent;
    color: #666;
    border-color: #ddd;
}

.mzc-btn-outline:hover {
    background: #f8f9fa;
    color: #333;
    border-color: #999;
    transform: translateY(-2px);
}

/* 帮助区域 */
.mzc-404-help {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.mzc-404-help p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.mzc-404-help p:last-child {
    margin-bottom: 0;
}

.mzc-404-help i {
    color: #005ea8;
    margin-right: 8px;
}

.mzc-404-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mzc-404-contact a {
    color: #005ea8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.mzc-404-contact a:hover {
    color: #004a85;
    text-decoration: underline;
}

.mzc-404-contact i {
    margin-right: 5px;
}

.mzc-divider {
    color: #ddd;
}

/* 底部装饰 */
.mzc-404-footer-decor {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px dashed #e0e0e0;
}

.mzc-404-pattern {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.mzc-pattern-dot {
    width: 8px;
    height: 8px;
    background: #005ea8;
    border-radius: 50%;
    display: inline-block;
}

.mzc-404-slogan {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.mzc-404-slogan i {
    color: #005ea8;
    margin-right: 8px;
}

/* 响应式设计 */
@media (max-width: 900px) {
    .mzc-404-content {
        flex-direction: column;
        gap: 40px;
        padding: 40px 30px;
    }
    
    .mzc-404-number {
        font-size: 60px;
    }
    
    .mzc-404-badge {
        width: 100px;
        height: 100px;
    }
    
    .mzc-404-badge i {
        font-size: 50px;
    }
    
    .mzc-404-info {
        max-width: 100%;
        text-align: center;
    }
    
    .mzc-404-title {
        justify-content: center;
        font-size: 24px;
    }
    
    .mzc-404-divider {
        margin-left: auto;
        margin-right: auto;
    }
    
    .mzc-404-hint {
        text-align: left;
    }
    
    .mzc-404-actions {
        justify-content: center;
    }
    
    .mzc-404-contact {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .mzc-404-container {
        padding: 40px 15px;
    }
    
    .mzc-404-content {
        padding: 30px 20px;
    }
    
    .mzc-404-number {
        font-size: 48px;
        letter-spacing: 4px;
    }
    
    .mzc-404-badge {
        width: 80px;
        height: 80px;
    }
    
    .mzc-404-badge i {
        font-size: 40px;
    }
    
    .mzc-404-title {
        font-size: 20px;
    }
    
    .mzc-404-actions {
        flex-direction: column;
    }
    
    .mzc-btn {
        width: 100%;
        justify-content: center;
    }
    
    .mzc-404-contact {
        flex-direction: column;
        gap: 10px;
    }
    
    .mzc-divider {
        display: none;
    }
}