        /* ===== 重置与基础样式 ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #2c1e1e;
            --accent: #8b0000;
            --light: #f5f1e6;
            --gold: #c9a769;
            --gray: #d3c8b8;
            --dark-gray: #6d5d4b;
            --transition: all 0.4s ease;
        }
        
        body {
            font-family: 'SimSun', 'STKaiti', serif;
            color: var(--primary);
            line-height: 1.8;
            background: url("https://test-guhe.oss-cn-guangzhou.aliyuncs.com/static/images/ghf.png") fixed;
            background-size: cover;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        img {
            max-width: 100%;
            display: block;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== 头部导航 ===== */
        .homeheader {
            background: rgba(245, 241, 230, 0.9);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            width: 100%;
            padding: 20px 0;
            margin-bottom: 40px;
            border-bottom: 1px solid var(--gold);
            z-index: 100;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        
        .nav-section {
            flex: 1;
            text-align: center;
            padding: 10px 0;
            position: relative;
        }
        
        .headermiddle {
            flex: 2;
            text-align: center;
            padding: 0 20px;
        }
        
        .headerh2 {
            font-size: 2rem;
            font-weight: normal;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            letter-spacing: 0.5rem;
            padding: 10px 0;
            transition: var(--transition);
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        
        .headerh2:hover {
            color: var(--accent);
            transform: translateY(-5px);
        }
        
        .headerh1 {
            font-size: 4.5rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--primary);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            letter-spacing: 0.5rem;
        }
        
        .header_p {
            font-size: 1.2rem;
            color: var(--dark-gray);
            max-width: 600px;
            margin: 0 auto;
            line-height: 2;
        }

        /* ===== 主内容区 ===== */
        .mainpart {
            flex: 1;
            padding: 20px 0 60px;
        }
        
        .beginning {
            background: rgba(245, 241, 230, 0.85);
            border: 1px solid var(--gold);
            padding: 40px;
            margin: 0 auto 60px;
            max-width: 1200px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        
        .beginning::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("https://test-guhe.oss-cn-guangzhou.aliyuncs.com/static/images/ghf.png") center/cover;
            opacity: 0.15;
            z-index: 0;
        }
        
        .bigimg {
            width: 45%;
            object-fit: contain;
            z-index: 1;
            border: 1px solid var(--gold);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .bigpoem {
            width: 45%;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            font-size: 1.8rem;
            line-height: 1.8;
            letter-spacing: 0.3rem;
            padding: 20px;
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid var(--gold);
            z-index: 1;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .bigfont {
            font-size: 2.5rem;
            color: var(--accent);
            font-weight: bold;
            margin: 0 5px;
        }
        
        .spros {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin: 60px 0;
            padding: 0 20px;
        }
        
        .sprocontainer {
            background: rgba(245, 241, 230, 0.9);
            border: 1px solid var(--gold);
            padding: 30px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .sprocontainer:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .sprocontainer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("https://test-guhe.oss-cn-guangzhou.aliyuncs.com/static/images/ghf.png") center/cover;
            opacity: 0.1;
            z-index: 0;
        }
        
        .sprowords {
            position: relative;
            z-index: 1;
            flex: 1;
        }
        
        .sproh3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--accent);
            writing-mode: vertical-rl;
            text-orientation: mixed;
            display: inline-block;
            padding: 10px 0;
            letter-spacing: 0.3rem;
        }
        
        .sprop {
            font-size: 1.1rem;
            color: var(--dark-gray);
            margin-bottom: 25px;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            display: inline-block;
            padding: 10px 0;
            letter-spacing: 0.2rem;
            max-height: 300px;
            overflow: hidden;
        }
        
        .sproimg {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border: 1px solid var(--gold);
            margin-top: 20px;
            z-index: 1;
            transition: transform 0.5s ease;
        }
        
        .sprocontainer:hover .sproimg {
            transform: scale(1.05);
        }
        
        .homearticles {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin: 60px 0;
            padding: 0 20px;
        }
        
        .homearticle {
            background: rgba(245, 241, 230, 0.9);
            border: 1px solid var(--gold);
            padding: 30px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .homearticle:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .homearticle::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("https://test-guhe.oss-cn-guangzhou.aliyuncs.com/static/images/ghf.png") center/cover;
            opacity: 0.1;
            z-index: 0;
        }
        
        .homearticletitle {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--accent);
            writing-mode: vertical-rl;
            text-orientation: mixed;
            display: inline-block;
            padding: 10px 0;
            letter-spacing: 0.3rem;
            position: relative;
            z-index: 1;
            max-height: 300px;
            overflow: hidden;
        }
        
        .homearticledesc {
            font-size: 1.1rem;
            color: var(--dark-gray);
            margin-bottom: 25px;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            display: inline-block;
            padding: 10px 0;
            letter-spacing: 0.2rem;
            position: relative;
            z-index: 1;
            max-height: 300px;
            overflow: hidden;
        }
        
        .homearticleimg {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border: 1px solid var(--gold);
            margin-top: 20px;
            z-index: 1;
            transition: transform 0.5s ease;
        }
        
        .homearticle:hover .homearticleimg {
            transform: scale(1.05);
        }

        /* ===== 页脚 ===== */
        .footer {
            background: rgba(44, 30, 30, 0.95);
            color: var(--light);
            padding: 60px 0 30px;
            margin-top: auto;
            border-top: 3px solid var(--gold);
        }
        
        .footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer_img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 40px;
            border: 1px solid var(--gold);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .footerleft, .footerright {
            flex: 1;
            min-width: 300px;
            padding: 0 20px;
            margin-bottom: 30px;
        }
        
        .footer-span {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 15px;
            padding: 8px 20px;
            background: rgba(201, 167, 105, 0.2);
            border-radius: 30px;
            transition: var(--transition);
        }
        
        .footer-span:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }
        
        .copyright {
            width: 100%;
            text-align: center;
            padding-top: 40px;
            margin-top: 20px;
            border-top: 1px solid rgba(201, 167, 105, 0.3);
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* ===== 响应式设计 ===== */
        @media (max-width: 992px) {
            .beginning {
                flex-direction: column;
                padding: 30px;
            }
            
            .bigimg, .bigpoem {
                width: 100%;
                margin-bottom: 30px;
            }
            
            .headerh1 {
                font-size: 3.5rem;
            }
            
            .headerh2 {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-container {
                flex-wrap: wrap;
            }
            
            .nav-section {
                flex: 0 0 50%;
                margin-bottom: 15px;
            }
            
            .headermiddle {
                flex: 0 0 100%;
                order: -1;
                margin-bottom: 20px;
            }
            
            .headerh1 {
                font-size: 3rem;
            }
            
            .header_p {
                font-size: 1rem;
            }
            
            .bigpoem {
                font-size: 1.5rem;
            }
            
            .bigfont {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .headerh2 {
                font-size: 1.4rem;
                letter-spacing: 0.3rem;
            }
            
            .headerh1 {
                font-size: 2.5rem;
            }
            
            .spros, .homearticles {
                grid-template-columns: 1fr;
            }
            
            .sproh3, .homearticletitle {
                font-size: 1.6rem;
            }
            
            .bigpoem {
                font-size: 1.3rem;
                padding: 10px;
            }
        }
