        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "思源宋体", "微软雅黑", SimSun;
        }
        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;
        }
        /* 页面头部标题 */
        .page-header {
            text-align: center;
            padding: 50px 20px 30px;
        }
        .page-header h1 {
            font-size: 2.8rem;
            color: #a8201a;
            font-family: "华文行楷", serif;
            margin-bottom: 15px;
        }
        .page-header p {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 2;
            color: #555;
        }

        /* 美食切换按钮 */
        .food-switch {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 0 auto 40px;
        }
        .food-btn {
            padding: 12px 40px;
            border-radius: 50px;
            border: 2px solid #a8201a;
            background: #fff;
            color: #a8201a;
            font-size: 1.1rem;
            font-family: "华文行楷", serif;
            cursor: pointer;
            transition: 0.3s;
        }
        .food-btn.active,
        .food-btn:hover {
            background: #a8201a;
            color: #D4AF37;
        }

        /* 主容器 */
        .container {
            max-width: 1000px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        /* 产品主图 */
        .food-cover {
            width: 100%;
            height: 380px;
            border-radius: 14px;
            border: 2px dashed #D4AF37;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
            margin-bottom: 30px;
        }

        /* 整体介绍 */
        .food-intro {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 3px 10px rgba(0,0,0.1);
            font-size: 1.1rem;
            line-height: 2;
            text-indent: 2em;
            color: #444;
            margin-bottom: 40px;
        }

        /* 制作流程标题 */
        .step-main-title {
            text-align: center;
            font-size: 2rem;
            color: #a8201a;
            font-family: "华文行楷", serif;
            margin-bottom: 35px;
            padding-bottom: 10px;
            border-bottom: 2px double #D4AF37;
        }

        /* 时间线容器 */
        .step-timeline {
            position: relative;
            padding-left: 45px;
            border-left: 3px solid #D4AF37;
            margin-bottom: 50px;
        }

        /* 单一步骤项：左图+右文字 */
        .step-item {
            position: relative;
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 8px rgba(0,0,0.08);
            margin-bottom: 30px;
            display: flex;
            gap: 25px;
            align-items: center;
        }
        /* 步骤圆形序号 */
        .step-item::before {
            content: attr(data-num);
            position: absolute;
            left: -59px;
            top: 26px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #a8201a;
            color: #fff;
            text-align: center;
            line-height: 32px;
            font-weight: bold;
        }
        /* 步骤配图 */
        .step-img {
            width: 220px;
            height: 160px;
            flex-shrink: 0;
            border-radius: 8px;
            border: 1px dashed #D4AF37;
            background: #f9f6f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
        }
        .step-text {
            flex: 1;
        }
        .step-text h3 {
            font-size: 1.3rem;
            color: #a8201a;
            margin-bottom: 10px;
            font-family: "华文行楷", serif;
        }
        .step-text p {
            font-size: 1rem;
            line-height: 1.9;
            color: #444;
            text-indent: 2em;
        }

        /* 视频板块 */
        .video-box {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 3px 10px rgba(0,0,0.1);
            margin-bottom: 40px;
        }
        .video-title {
            font-size: 1.6rem;
            color: #a8201a;
            font-family: "华文行楷", serif;
            text-align: center;
            margin-bottom: 20px;
        }
        .video-container {
            width: 100%;
            height: 320px;
            border-radius: 8px;
            border: 2px dashed #D4AF37;
            background: #f9f6f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
        }
        video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        /* 特色标签 */
        .tag-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-bottom: 50px;
        }
        .tag {
            padding: 8px 22px;
            background: rgba(168,32,26,0.1);
            border: 1px solid #D4AF37;
            border-radius: 25px;
            color: #a8201a;
            font-size: 1rem;
        }

        /* 返回按钮 */
        .back-btn {
            display: block;
            width: 160px;
            margin: 0 auto 50px;
            padding: 12px;
            background: #a8201a;
            color: #fff;
            text-align: center;
            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) {
            .step-item {
                flex-direction: column;
                text-align: center;
            }
            .step-img {
                width: 100%;
            }
            .food-cover {
                height: 240px;
            }
            .video-container {
                height: 220px;
            }
            .food-switch {
                flex-wrap: wrap;
            }
            .nav-menu {
                gap: 15px;
            }
            .nav-menu li a {
                font-size: 0.9rem;
            }
            .logo-text {
                font-size: 1.2rem;
            }
            .logo-img {
                width: 36px;
                height: 36px;
            }
        }