        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "思源宋体", "微软雅黑", SimSun;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f7f3ef;
            background-blend-mode: multiply;
            padding-top: 70px;
            color: #333;
        }

        /* 顶部全局导航 */
        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;
        }

        /* 页面头部 */
        .page-head {
            text-align: center;
            padding: 50px 20px 30px;
        }
        .page-head h1 {
            font-size: 2.8rem;
            color: #a8201a;
            font-family: "华文行楷", serif;
            margin-bottom: 15px;
        }
        .page-head p {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 2;
            color: #555;
        }

        /* 轮播外层容器 */
        .slider-wrap {
            max-width: 1200px;
            margin: 0 auto 40px;
            padding: 0 20px;
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0,0,0.15);
        }
        .slider-track {
            display: flex;
            transition: transform 0.6s ease;
        }
        .slider-item {
            min-width: 100%;
            padding: 40px;
            background: #fff;
            display: flex;
            gap: 40px;
            align-items: center;
        }

        /* 视频区域 */
        .video-box {
            width: 55%;
            height: 420px;
            border-radius: 12px;
            border: 2px dashed #D4AF37;
            background: #f9f6f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
            overflow: hidden;
        }
        video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 文字信息区 */
        .info-area {
            width: 45%;
        }
        .info-area h2 {
            font-size: 2.2rem;
            color: #a8201a;
            font-family: "华文行楷", serif;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px double #D4AF37;
        }
        .info-profile {
            font-size: 1rem;
            color: #99714e;
            margin-bottom: 15px;
        }
        .info-desc {
            font-size: 1.05rem;
            line-height: 2;
            text-indent: 2em;
            color: #444;
            margin-bottom: 20px;
        }
        .info-title-sm {
            font-size: 1.1rem;
            color: #a8201a;
            margin: 20px 0 8px;
            font-weight: bold;
        }
        .skill-tag {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .skill-tag span {
            padding: 7px 18px;
            background: rgba(168,32,26,0.12);
            color: #a8201a;
            border-radius: 20px;
            border: 1px solid #D4AF37;
        }

        /* 轮播按钮 */
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(168, 32, 26, 0.7);
            color: #fff;
            border: none;
            font-size: 1.4rem;
            cursor: pointer;
            transition: 0.3s;
            z-index: 10;
        }
        .slider-btn:hover {
            background: #a8201a;
        }
        .btn-prev { left: 20px; }
        .btn-next { right: 20px; }

        /* 小圆点指示器 */
        .dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin: 30px 0;
        }
        .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: 0.3s;
        }
        .dot.active {
            background: #a8201a;
            transform: scale(1.2);
        }

        /* 返回按钮 */
        .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;
            margin-top: 40px;
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .slider-item {
                flex-direction: column;
                padding: 25px;
            }
            .video-box, .info-area {
                width: 100%;
            }
            .video-box {
                height: 260px;
                margin-bottom: 25px;
            }
            .page-head h1 { font-size: 2.2rem; }
            .info-area h2 { font-size: 1.8rem; }
            .nav-menu { gap: 15px; }
            .nav-menu li a { font-size: 0.9rem; }
            .logo-text { font-size: 1.2rem; }
            .logo-img { width: 36px; height: 36px; }
            .slider-btn { width: 40px; height: 40px; }
        }