        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "思源宋体", "微软雅黑", SimSun, serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: url(../image/chao.jpg) center top/cover no-repeat;
            background-attachment: fixed;
            padding-top: 70px;
        }
                header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 999;
        }

        .logo {
            color: #f9e79f;
            font-size: 4.2rem;
            font-family: "华文行楷", "书法体", serif;
            letter-spacing: 3px;
        }

        /* 导航菜单基础样式 */
        nav {
            position: relative;
        }

        nav > ul {
            list-style: none;
            display: flex;
            gap: 35px;
        }

        nav > ul > li {
            position: relative;
        }

        nav > ul > li > a {
            color: #f9e79f;
            text-decoration: none;
            font-size: 1.5rem;
            transition: 0.3s;
            padding: 8px 0;
            display: block;
            font-family: "华文行楷", "书法体", serif;
        }

        nav > ul > li > a:hover {
            color: #d4af37;
        }

        /* 下拉菜单 */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255,255,255,0.95);
            list-style: none;
            min-width: 180px;
            display: none;
            border-radius: 12px;
            padding: 15px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .dropdown li a {
            display: block;
            padding: 12px 20px;
            color: #8B1A1A;
            font-size: 1.3rem;
            text-decoration: none;
            text-align: center;
            font-weight: bold;
            transition: 0.3s;
            font-family: "华文行楷", "书法体", serif;
        }

        .dropdown li a:hover {
            background: #a8201a;
            color: #fff;
        }

        nav > ul > li:hover .dropdown {
            display: block;
        }
        /* ========== 页面头部卷轴式标题 ========== */
        .scroll-header {
            max-width: 900px;
            margin: 50px auto;
            padding: 30px 40px;
            background: #fff;
            border: 2px solid #a8201a;
            border-radius: 8px;
            position: relative;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        /* 卷轴装饰角 */
        .scroll-header::before,
        .scroll-header::after {
            content: "";
            position: absolute;
            width: 30px;
            height: 30px;
            border: 3px solid #a8201a;
        }
        .scroll-header::before {
            top: -5px;
            left: -5px;
            border-right: none;
            border-bottom: none;
        }
        .scroll-header::after {
            bottom: -5px;
            right: -5px;
            border-left: none;
            border-top: none;
        }
        .scroll-header h1 {
            font-size: 2.8rem;
            color: #a8201a;
            font-family: "华文行楷", serif;
            text-align: center;
            margin-bottom: 15px;
        }
        .scroll-header p {
            font-size: 1.1rem;
            color: #555;
            line-height: 2;
            text-align: center;
        }

        /* ========== 核心内容区：竖版卡片流布局 ========== */
        .core-container {
            max-width: 1000px;
            margin: 0 auto 60px;
            padding: 0 5%;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* 文化内核卡片（竖版卷轴样式） */
        .core-card {
            background: #fff;
            border-radius: 12px;
            padding: 35px;
            box-shadow: 0 3px 12px rgba(0,0,0,0.08);
            border-left: 6px solid #D4AF37;
            transition: all 0.3s ease;
        }
        .core-card:hover {
            transform: translateX(8px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        }
        .card-title {
            font-size: 1.8rem;
            color: #a8201a;
            font-family: "华文行楷", serif;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .card-title::before {
            content: "◆";
            color: #D4AF37;
            font-size: 1.2rem;
        }
        .card-text {
            font-size: 1.1rem;
            color: #444;
            line-height: 2;
            text-indent: 2em;
        }
        .card-img {
            width: 100%;
            height: 220px;
            border-radius: 8px;
            margin-top: 20px;
            border: 1px dashed #D4AF37;
            background: rgba(245,245,245,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
        }

        /* 返回首页按钮 */
        .back-btn {
            display: block;
            width: 160px;
            margin: 0 auto 50px;
            padding: 12px;
            text-align: center;
            background: #a8201a;
            color: #fff;
            text-decoration: none;
            border-radius: 30px;
            font-family: "华文行楷", serif;
            transition: 0.3s;
        }
        .back-btn:hover {
            background: #871714;
            transform: translateY(-3px);
        }

        /* 页脚 */
        footer {
            text-align: center;
            padding: 30px;
            background: #EAE2D5;
            color: #BFA07A;
            font-family: "华文行楷", "书法体", serif;
            font-size: 9px;
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .scroll-header h1 { font-size: 2.2rem; }
            .core-card { padding: 25px; }
            .card-title { font-size: 1.5rem; }
            .card-img { height: 160px; }
            .nav-menu { gap: 15px; }
            .nav-menu li a { font-size: 0.9rem; }
            .logo-text { font-size: 1.2rem; }
            .logo-img { width: 36px; height: 36px; }
        }