
        /* ========== Reset & Base ========== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: "Microsoft YaHei", "PingFang SC", sans-serif; color: #333; background: #fff; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section { padding: 80px 0; }
        .section-title { text-align: center; font-size: 32px; font-weight: 700; color: #c0392b; margin-bottom: 12px; }
        .section-sub { text-align: center; font-size: 16px; color: #888; margin-bottom: 50px; letter-spacing: 2px; }
        .btn { display: inline-block; padding: 12px 40px; border-radius: 30px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all .3s; border: none; }
        .btn-primary { background: #c0392b; color: #fff; }
        .btn-primary:hover { background: #a93226; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,57,43,.3); }
        .btn-outline { background: transparent; color: #c0392b; border: 2px solid #c0392b; }
        .btn-outline:hover { background: #c0392b; color: #fff; }

        /* ========== Header ========== */
        .header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,.08); transition: all .3s; }
        .header .top-bar { background: #1a1a2e; color: #fff; padding: 8px 0; font-size: 13px; }
        .header .top-bar .container { display: flex; justify-content: space-between; align-items: center; }
        .header .top-bar .tel { display: flex; align-items: center; gap: 6px; }
        .header .top-bar .tel i { font-style: normal; font-weight: 700; color: #e74c3c; }
        .header .top-bar .slogan { color: #ccc; font-size: 12px; letter-spacing: 1px; }

        .header .nav-wrap { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
        .header .logo { display: flex; align-items: center; gap: 10px; }
        .header .logo .logo-icon { width: 50px; height: 50px; background: linear-gradient(135deg, #c0392b, #e74c3c); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; font-weight: 900; }
        .header .logo .logo-text { font-size: 24px; font-weight: 900; color: #1a1a2e; }
        .header .logo .logo-text span { color: #c0392b; }

        .header .nav { display: flex; gap: 35px; align-items: center; }
        .header .nav a { font-size: 15px; color: #333; font-weight: 500; position: relative; padding: 5px 0; transition: color .3s; }
        .header .nav a:hover, .header .nav a.active { color: #c0392b; }
        .header .nav a::after { content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #c0392b; transition: width .3s; }
        .header .nav a:hover::after, .header .nav a.active::after { width: 100%; }
        .header .nav .nav-phone { background: #c0392b; color: #fff !important; padding: 10px 20px !important; border-radius: 25px; font-weight: 700; }
        .header .nav .nav-phone:hover { background: #a93226; }
        .header .nav .nav-phone::after { display: none; }

        /* Mobile hamburger */
        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
        .hamburger span { width: 28px; height: 3px; background: #333; border-radius: 3px; transition: all .3s; }

        /* ========== Banner ========== */
        .banner { margin-top: 120px; position: relative; height: 600px; overflow: hidden; background: url("https://images.unsplash.com/photo-1555939594-58d7cb561ad1?w=1600&q=80") center/cover fixed; }
        .banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.7)); }
        .banner .container { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: #fff; }
        .banner h1 { font-size: 56px; font-weight: 900; margin-bottom: 10px; text-shadow: 0 2px 10px rgba(0,0,0,.3); }
        .banner h1 span { color: #e74c3c; }
        .banner .banner-desc { font-size: 20px; margin-bottom: 20px; color: #ddd; letter-spacing: 4px; }
        .banner .banner-tag { display: flex; gap: 30px; margin-bottom: 40px; }
        .banner .banner-tag span { font-size: 18px; padding: 8px 20px; border: 1px solid rgba(255,255,255,.3); border-radius: 25px; backdrop-filter: blur(5px); }
        .banner .banner-btn { display: flex; gap: 20px; }

        /* ========== About / Brand Story ========== */
        .about { background: #fff; }
        .about .content { display: flex; gap: 60px; align-items: center; }
        .about .content .left { flex: 1; }
        .about .content .left h3 { font-size: 28px; margin-bottom: 20px; color: #1a1a2e; }
        .about .content .left h3 span { color: #c0392b; }
        .about .content .left p { font-size: 15px; line-height: 1.9; color: #666; margin-bottom: 15px; }
        .about .content .left .company { display: inline-block; background: #fef5f0; padding: 6px 16px; border-radius: 20px; font-size: 13px; color: #c0392b; margin-bottom: 20px; }
        .about .content .right { flex: 1; }
        .about .content .right img { width: 100%; border-radius: 15px; box-shadow: 0 10px 40px rgba(0,0,0,.1); }

        /* Stats */
        .stats { background: #1a1a2e; padding: 60px 0; }
        .stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; color: #fff; }
        .stats .grid .item h3 { font-size: 40px; color: #e74c3c; margin-bottom: 5px; }
        .stats .grid .item p { font-size: 14px; color: #aaa; }

        /* ========== Menu ========== */
        .menu { background: #faf8f7; }
        .menu .tabs { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; }
        .menu .tabs button { padding: 10px 30px; border: 2px solid #ddd; background: #fff; border-radius: 25px; cursor: pointer; font-size: 15px; font-weight: 600; transition: all .3s; color: #666; }
        .menu .tabs button.active, .menu .tabs button:hover { border-color: #c0392b; background: #c0392b; color: #fff; }
        .menu .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
        .menu .grid .card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,.06); transition: all .3s; cursor: pointer; }
        .menu .grid .card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
        .menu .grid .card .img { height: 220px; background: #eee; overflow: hidden; }
        .menu .grid .card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
        .menu .grid .card:hover .img img { transform: scale(1.05); }
        .menu .grid .card .info { padding: 20px; }
        .menu .grid .card .info h4 { font-size: 18px; margin-bottom: 6px; }
        .menu .grid .card .info p { font-size: 13px; color: #888; line-height: 1.5; }
        

        /* ========== Franchise ========== */
        .franchise { background: #fff; }
        .franchise .steps { display: flex; justify-content: space-between; position: relative; margin-top: 30px; }
        .franchise .steps::before { content: ""; position: absolute; top: 35px; left: 10%; right: 10%; height: 2px; background: linear-gradient(to right, #c0392b, #e74c3c, #c0392b); }
        .franchise .steps .step { text-align: center; position: relative; z-index: 1; flex: 1; }
        .franchise .steps .step .num { width: 70px; height: 70px; background: linear-gradient(135deg, #c0392b, #e74c3c); color: #fff; font-size: 28px; font-weight: 900; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; box-shadow: 0 4px 15px rgba(192,57,43,.3); }
        .franchise .steps .step h4 { font-size: 16px; margin-bottom: 5px; }
        .franchise .steps .step p { font-size: 13px; color: #888; }
        .franchise .franchise-cta { text-align: center; margin-top: 50px; }

        /* Training */
        .training { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); color: #fff; }
        .training .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .training .grid .card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 15px; padding: 40px 30px; text-align: center; transition: all .3s; }
        .training .grid .card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
        .training .grid .card .icon { font-size: 48px; margin-bottom: 20px; }
        .training .grid .card h4 { font-size: 18px; margin-bottom: 10px; }
        .training .grid .card p { font-size: 14px; color: #aaa; line-height: 1.7; }

        /* ========== News ========== */
        .news { background: #faf8f7; }
        .news .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
        .news .grid .card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,.06); transition: all .3s; cursor: pointer; }
        .news .grid .card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,.1); }
        .news .grid .card .img { height: 200px; background: #eee; }
        .news .grid .card .img img { width: 100%; height: 100%; object-fit: cover; }
        .news .grid .card .info { padding: 20px; }
        .news .grid .card .info .date { font-size: 12px; color: #c0392b; }
        .news .grid .card .info h4 { font-size: 16px; margin: 8px 0; line-height: 1.4; }
        .news .grid .card .info p { font-size: 13px; color: #888; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .news-cta { text-align: center; margin-top: 40px; }

        /* ========== Contact ========== */
        .contact { background: #fff; }
        .contact .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
        .contact .grid .left h3 { font-size: 24px; margin-bottom: 20px; }
        .contact .grid .left .info-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
        .contact .grid .left .info-item .ic { width: 40px; height: 40px; background: #fef5f0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
        .contact .grid .left .info-item .text h4 { font-size: 14px; color: #888; margin-bottom: 3px; }
        .contact .grid .left .info-item .text p { font-size: 15px; font-weight: 500; }
        .contact .grid .left .info-item .text .hotline { color: #c0392b; font-size: 20px; font-weight: 700; }
        .contact .grid .right { background: #faf8f7; border-radius: 15px; padding: 40px; }
        .contact .grid .right .form-group { margin-bottom: 20px; }
        .contact .grid .right .form-group input, .contact .grid .right .form-group textarea { width: 100%; padding: 14px 18px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; outline: none; transition: border .3s; font-family: inherit; }
        .contact .grid .right .form-group input:focus, .contact .grid .right .form-group textarea:focus { border-color: #c0392b; }
        .contact .grid .right .form-group textarea { height: 120px; resize: vertical; }

        /* ========== Footer ========== */
        .footer { background: #1a1a2e; color: #ccc; padding: 60px 0 30px; }
        .footer .grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 40px; }
        .footer .grid .col h4 { color: #fff; font-size: 16px; margin-bottom: 20px; }
        .footer .grid .col p { font-size: 13px; line-height: 2; }
        .footer .grid .col a { display: block; font-size: 13px; margin-bottom: 8px; color: #aaa; transition: color .3s; }
        .footer .grid .col a:hover { color: #e74c3c; }
        .footer .grid .col .qrcode { width: 120px; height: 120px; background: #333; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #666; font-size: 12px; }
        .footer .bottom { border-top: 1px solid #333; margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; font-size: 12px; color: #666; }

        /* ========== Mobile ========== */
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            .header .nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; flex-direction: column; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,.1); gap: 15px; }
            .header .nav.open { display: flex; }
            .header .nav a { font-size: 16px; }
            .header .top-bar .slogan { display: none; }
            .banner { height: 450px; margin-top: 110px; }
            .banner h1 { font-size: 32px; }
            .banner .banner-tag { flex-wrap: wrap; justify-content: center; gap: 10px; }
            .banner .banner-tag span { font-size: 14px; }
            .about .content { flex-direction: column; gap: 30px; }
            .stats .grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .menu .grid { grid-template-columns: 1fr; }
            .menu .tabs { flex-wrap: wrap; }
            .franchise .steps { flex-direction: column; gap: 30px; }
            .franchise .steps::before { display: none; }
            .franchise .steps .step { display: flex; gap: 20px; align-items: center; text-align: left; }
            .franchise .steps .step .num { flex-shrink: 0; margin: 0; }
            .training .grid { grid-template-columns: 1fr; }
            .news .grid { grid-template-columns: 1fr; }
            .contact .grid { grid-template-columns: 1fr; gap: 30px; }
            .footer .grid { grid-template-columns: 1fr 1fr; gap: 30px; }
            .footer .bottom { flex-direction: column; gap: 10px; text-align: center; }
        }

        /* Scroll animation */
        .fade-in { opacity: 0; transform: translateY(30px); transition: all .8s ease; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }
    
        /* Live notification table */
        .live-notification {
            background: #fff;
            border: 1px solid #f0e0e0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(192,57,43,.06);
        }
        .live-table-header {
            background: linear-gradient(135deg, #c0392b, #e74c3c);
            color: #fff;
            padding: 14px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 600;
        }
        .live-table-header .live-dot {
            width: 10px; height: 10px;
            background: #fff;
            border-radius: 50%;
            animation: live-pulse 1.5s infinite;
            flex-shrink: 0;
        }
        @keyframes live-pulse {
            0% { opacity: 1; transform: scale(1); }
            50% { opacity: .6; transform: scale(1.3); }
            100% { opacity: 1; transform: scale(1); }
        }
        .live-table-header .live-title { flex: 1; }
        .live-table-header .live-count {
            background: rgba(255,255,255,.2);
            padding: 3px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 400;
        }
        .live-table { width: 100%; }
        .live-row {
            display: grid;
            grid-template-columns: 80px 1fr 1fr 1fr;
            padding: 11px 20px;
            border-bottom: 1px solid #f5e8e8;
            font-size: 13px;
            color: #555;
            transition: all .5s ease;
        }
        .live-row:last-child { border-bottom: none; }
        .live-row:nth-child(even) { background: #fefaf9; }
        .live-row .col-time { color: #c0392b; font-weight: 500; font-size: 12px; }
        .live-row .col-city { color: #333; }
        .live-row .col-name { color: #333; }
        .live-row .col-phone { color: #888; font-family: monospace; }
        .live-row.new-row {
            background: #fff5f0 !important;
            animation: row-flash 1.5s ease;
        }
        @keyframes row-flash {
            0% { background: #ffe8e0; }
            100% { background: transparent; }
        }
        @media (max-width: 768px) {
            .live-row { grid-template-columns: 60px 1fr 1fr; font-size: 12px; padding: 10px 15px; }
            .live-row .col-phone { display: none; }
        }

        .top-bar .tel .company-name { font-weight: 600; color: #f1c40f; }
        .top-bar .tel .sep { color: rgba(255,255,255,.3); margin: 0 10px; }


/* Sub-page first section: prevent fixed header overlap */
.page-first-section { scroll-margin-top: 140px !important; }
body:not(.home) .section:first-of-type { scroll-margin-top: 140px; }


/* Case card image overlay */
.case-card .case-img { position: relative; }
.case-card .case-img::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(rgba(0,0,0,.1), rgba(0,0,0,.4));
    z-index: 0;
}
.case-card .case-img .status-tag {
    position: absolute; top: 15px; right: 15px;
    z-index: 1; padding: 4px 14px; border-radius: 20px;
    font-size: 12px; font-weight: 600;
}

/* Menu tabs - 分两排展示 */
.menu-section .tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 650px;
    margin: 0 auto 30px;
}
.menu-section .tabs button {
    padding: 10px 28px;
    border: 2px solid #ddd;
    background: #fff;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all .3s;
    color: #666;
    flex: 0 0 auto;
}
.menu-section .tabs button.active,
.menu-section .tabs button:hover {
    border-color: #c0392b;
    background: #c0392b;
    color: #fff;
}


/* 菜品卡片文字居中（已将图片去掉） */
.menu-section .card .info,
.menu-section .card .info h4,
.menu-section .card .info p,
.menu-section .card .info .tag,
#menu-grid .card .info,
#menu-grid .card .info h4,
#menu-grid .card .info p,
#menu-grid .card .info .tag {
    text-align: center;
}


/* 菜品卡片 · 无图版样式调整 */
.menu-section .grid .card .info,
#menu-grid .card .info {
    padding: 20px 10px;
}
.menu-section .grid .card .info h4,
#menu-grid .card .info h4 {
    font-size: 16px;
    margin-bottom: 6px;
}
.menu-section .grid .card .info p,
#menu-grid .card .info p {
    font-size: 13px;
    color: #888;
}
.menu-section .grid .card .info .tag,
#menu-grid .card .info .tag {
    display: block;
    text-align: center;
    margin-bottom: 4px;
}
