/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: black;
    background: linear-gradient(to bottom, #003322 0%, rgba(0, 166, 118, 0) 100%);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body.store-query-page {
    background: #f9f9f9;
}

 .page-hero {
     position: sticky;
     top: 0;
     width: 100vw;
     height: 100vh;
     overflow: visible;
     z-index: 1;
 }

 body.store-query-page .page-hero {
     position: sticky;
     top: 0;
 }

 .page-overlay {
     position: relative;
     z-index: 2;
     width: 100%;
     background-color: transparent;
 }

 body.store-query-page .page-overlay {
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     background: transparent;
 }

 body.store-query-page .page-overlay > .container.store-query-container {
     flex: 1 0 auto;
     background: #f9f9f9;
 }

 body.store-query-page .brand-circle-transition::before {
     content: none;
 }

 body.store-query-page .brand-circle-transition {
     margin-top: -60px;
     min-height: 240px;
     padding: 170px 50px 20px 50px;
 }

 body.store-query-page .page-overlay > .footer {
     margin-top: auto;
 }

 body.food-center-page .page-hero #food-signature {
     height: 100vh !important;
     margin-top: 0 !important;
 }

 body.food-center-page .page-hero #food-signature .carousel-container {
     height: 100vh !important;
 }

 body.store-query-page .page-hero .hero-carousel {
     height: 100vh !important;
     margin-top: 0 !important;
     z-index: 1;
 }

 body.store-query-page .page-hero .hero-carousel .carousel-container {
     height: 100% !important;
 }

 body.franchise-page .page-hero #franchise-carousel {
     height: 100vh !important;
     margin-top: 0 !important;
     z-index: 1 !important;
 }

 body.franchise-page .page-hero #franchise-carousel .carousel-container {
     height: 100% !important;
 }

/* 导航栏样式（与首页保持一致） */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 77, 64, 1), rgba(0, 121, 107, 0.3));
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 0;
  transition: top 0.4s ease-in-out;
}

.navbar-hidden {
  top: -150px;
}

.navbar-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 100px;
}

.logo img {
  max-height: 100px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text-cn {
  font-size: 20px;
  font-weight: bold;
  color: white;
  line-height: 1.2;
}

.logo-text-en {
  font-size: 12px;
  color: white;
  line-height: 1.2;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
}

.search-container {
  position: relative;
}

.search-container input {
  padding: 8px 30px 8px 15px;
  border-radius: 20px;
  border: 1px solid #ccc;
  background-color: rgba(255, 255, 255, 0.8);
}

.search-container .fa-search {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
  cursor: pointer;
}

.nav-menu li a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  transition: color 0.3s;
  font-size: 16px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #D4A574;
}

/* 下拉菜单样式，保持与首页一致 */
.nav-item-with-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 77, 64, 0.95);
  list-style: none;
  padding: 12px 0;
  border-radius: 8px;
  min-width: 140px;
  width: max-content;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  margin-top: 8px;
}

.nav-item-with-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li {
  padding: 0;
}

.nav-dropdown li a {
  display: block;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.2s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.nav-dropdown li a:hover {
  background-color: rgba(212, 165, 116, 0.2);
  color: #D4A574;
  padding-left: 28px;
}

.user-center {
  background-color: #8B4513;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
  font-size: 16px;
  flex-shrink: 0;
}

.user-center:hover {
  background-color: #654321;
}

/* 固定悬浮窗样式 */
.fixed-floats {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-window {
    width: 80px;
    height: 80px;
    background-color: #8B4513;
    color: white;
    text-align: center;
    line-height: 80px;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    z-index: 1000;
}





.float-window:hover {
    background-color: #004d40;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* 门店搜索按钮 */
.store-search-btn {
    width: 100px;
    height: 50px;
    background-color: #ff0000;
    color: white;
    text-align: center;
    line-height: 50px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.store-search-btn:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* 圆形图标按钮 */
.float-icon-btn {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #8B4513;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #8B4513;
}

.float-icon-btn:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    color: #654321;
    border-color: #654321;
}





/* 右侧加盟二维码悬浮窗 */
.franchise-qrcode-float {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background-color: #e74c3c;
    color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 280px;
    text-align: center;
}

.franchise-qrcode-float .qrcode-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
}

.franchise-qrcode-float .qrcode-container {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.franchise-qrcode-float .qrcode-container img {
    width: 100%;
    height: auto;
    max-width: 200px;
}

.franchise-qrcode-float .hotline-section {
    margin-top: 20px;
}

.franchise-qrcode-float .hotline-label {
    font-size: 14px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.franchise-qrcode-float .hotline-number {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: white;
}

.franchise-qrcode-float .hotline-number:last-child {
    margin-bottom: 0;
}

/* 右侧加盟二维码悬浮窗 */
.franchise-qrcode-float {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background-color: #e74c3c;
    color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 280px;
    text-align: center;
}

.franchise-qrcode-float .qrcode-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
}

.franchise-qrcode-float .qrcode-container {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.franchise-qrcode-float .qrcode-container img {
    width: 100%;
    height: auto;
    max-width: 200px;
}

.franchise-qrcode-float .hotline-section {
    margin-top: 20px;
}

.franchise-qrcode-float .hotline-label {
    font-size: 14px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.franchise-qrcode-float .hotline-number {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: white;
}

.franchise-qrcode-float .hotline-number:last-child {
    margin-bottom: 0;
}

/* 圆形悬浮窗样式 */
.circle-floats {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    height: 580px;
    overflow-y: auto;
    scrollbar-width: none;
}

.circle-floats::-webkit-scrollbar {
    display: none;
}

.circle-float {
    width: 80px;
    height: 80px;
    background-color: #004d00;
    color: white;
    border-radius: 50%;
    /* 使用flex布局实现字体居中 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 12px;
    font-weight: 500;
    /* 透明边框，边框背景透明 */
    border: 6px solid transparent;
    box-sizing: border-box;
    padding: 0 8px;
    text-align: center;
}

.circle-float:hover {
    background-color: #006400;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 轮播图基础样式 */
.carousel-container {
    position: relative;
    width: 100%;
    height: 550px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    background-color: #f0f0f0;
    top: 0;
    z-index: 1;
    /* 确保轮播图内容从顶部开始显示 */
    background-position: top center;
}

body.store-query-page .hero-carousel {
    position: relative;
    left: 50%;
    width: 100vw !important;
    max-width: none !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    margin-top: 100px !important;
    height: calc(100vh - 100px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.store-query-page .hero-carousel .carousel-container {
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
}

body.franchise-page .right-sidebar {
    width: 80px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    padding: 20px 0;
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

body.franchise-page .right-sidebar::before {
    content: none;
}

body.franchise-page .sidebar-icon-item {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 192, 203, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    font-size: 22px;
    color: rgba(212, 165, 116, 0.9);
    overflow: visible;
}

body.franchise-page .sidebar-label {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    padding: 10px 22px;
    background: #e60012;
    color: #fff;
    border-radius: 999px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

body.franchise-page .sidebar-icon-item:hover {
    background: rgba(255, 192, 203, 0.55);
    transform: scale(1.05);
}

body.franchise-page .sidebar-icon-item:hover .sidebar-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

body.franchise-page #franchise-carousel {
    position: relative;
    left: 50%;
    width: 100vw !important;
    max-width: none !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    margin-top: -100px !important;
    padding-top: 0 !important;
    height: 100vh !important;
    overflow: hidden;
    z-index: 10;
}

body.franchise-page #franchise-carousel .carousel-container {
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
}

body.franchise-page #franchise-carousel .carousel {
    height: 100% !important;
}

body.franchise-page #franchise-carousel .carousel-slide {
    height: 100% !important;
}

body.franchise-page #franchise-carousel .carousel-img {
    height: 100% !important;
}

/* 品牌加盟轮播图样式 - 文字在图片上方右下角 */
#franchise-carousel .carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#franchise-carousel .carousel-text {
    position: absolute;
    bottom: 20px;
    right: 0;
    top: auto;
    left: auto;
    transform: none;
    text-align: left;
    background: linear-gradient(to right, rgba(0, 77, 64, 0.95), rgba(0, 121, 107, 0.85));
    padding: 40px;
    border-radius: 10px 0 0 10px;
    z-index: 10;
    display: block;
    opacity: 1;
    width: 45%;
    max-width: 550px;
    min-height: 250px;
    box-sizing: border-box;
}

#franchise-carousel .carousel-text h2 {
    font-size: 36px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

#franchise-carousel .carousel-text p {
    font-size: 18px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

#franchise-carousel .carousel {
    width: 100%;
    height: 100%;
}

/* 消除轮播图上方留白 */
#food-signature {
    margin: 0;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    z-index: 2;
    /* 添加负margin-top拉轮播图向上，消除与导航栏之间的空白 */
    margin-top: -100px;
    padding-top: 0;
    /* 确保内容不溢出 */
    overflow: hidden;
}

body.food-center-page #food-signature {
    margin-top: 0;
}

body.food-center-page #food-signature .carousel-container {
    height: 100vh;
}

/* 轮播图指示点样式 */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dots .dot.active {
    background-color: #fff;
    width: 14px;
    height: 14px;
}

/* 轮播图文字内容样式 */
.slide-content {
    position: absolute;
    top: 50%;
    left: 85%;
    transform: translate(-85%, -50%);
    text-align: center;
    color: white !important;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    max-width: 45%;
    z-index: 2;
}

.signature-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.dish-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.dish-info p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 80%;
    margin: 0 auto;
}

/* 轮播图指示点样式 */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dots .dot.active {
    background: #fff;
    transform: scale(1.1);
}

/* 轮播图文本容器 */
.carousel-text-container {
    position: absolute;
    right: 50px;
    top: 0;
    width: 28%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    z-index: 10;
    background: none;
    color: white !important;
}

.carousel-text {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-text.active {
    display: block;
    opacity: 1;
}

.carousel-text h3 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white !important;
}

.carousel-text p {
    font-size: 18px;
    line-height: 1.8;
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 品牌加盟轮播图样式调整 - 文字在图片上方 */
#franchise-carousel .carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

#franchise-carousel .carousel-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    z-index: 10;
    display: block;
    opacity: 1;
}

body.franchise-page #franchise-carousel .carousel-text {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    background: none !important;
    box-shadow: none !important;
}

 body.franchise-page #franchise-carousel .carousel-text-container {
     display: none !important;
     opacity: 0 !important;
     visibility: hidden !important;
     pointer-events: none !important;
 }

#franchise-carousel .carousel-text h2 {
    font-size: 36px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

#franchise-carousel .carousel-text p {
    font-size: 18px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.carousel {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    box-sizing: border-box;
}

.carousel-btn {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background-color: white;
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

/* 内容区域样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.container.store-query-container {
    max-width: none;
    width: 100%;
    margin: 0;
    background-color: transparent;
    box-shadow: none;
}

.section {
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}

#food-signature {
    padding: 0;
    margin: 0;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    /* 添加负margin-top拉轮播图向上，消除与导航栏之间的空白 */
    margin-top: -100px;
    /* 确保内容从顶部开始显示 */
    padding-top: 0;
    /* 确保内容不溢出 */
    overflow: hidden;
}

.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #004d40;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #004d40;
}

/* 加盟内容样式 */
.franchise-content {
    max-width: 100%;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

 body.franchise-page .page-overlay {
     background: transparent;
 }

 body.franchise-page .brand-circle-transition {
     padding-bottom: 0;
     min-height: 320px;
     margin-bottom: 0;
 }

 body.franchise-page .franchise-intro-section {
     padding: 0;
     margin: 0;
     display: flow-root;
 }

 body.franchise-page .franchise-intro-panel {
     max-width: 980px;
     margin: 0 auto;
     padding: 28px 24px 18px 38px;
     border-radius: 14px;
     background: rgba(255, 255, 255, 0.72);
     box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
     color: #0f2f2a;
     text-align: left;
     position: relative;
     backdrop-filter: blur(8px);
 }

 body.franchise-page .franchise-intro-panel::before {
     content: '';
     position: absolute;
     left: 16px;
     top: 18px;
     bottom: 18px;
     width: 4px;
     border-radius: 999px;
     background: linear-gradient(180deg, #0f2f2a, #00796b);
 }

 body.franchise-page .franchise-intro-panel p {
     margin: 0;
     font-size: 17px;
     line-height: 1.95;
     color: #2b3634;
     max-width: 860px;
 }

 body.franchise-page .franchise-intro-panel p + p {
     margin-top: 14px;
     font-weight: 800;
     color: #0f2f2a;
 }

 body.franchise-page #franchise-statement.section {
     padding: 80px 0;
 }

 body.franchise-page .page-overlay > .container {
     width: 100vw;
     max-width: none;
     margin-left: calc(50% - 50vw);
     margin-right: calc(50% - 50vw);
     background-color: #ffffff;
     box-shadow: none;
     padding: 0 0 1px 0;
 }

 body.franchise-page .page-overlay > .container > .section-title {
     max-width: 1200px;
     margin: 52px auto 0 auto;
     padding: 0 20px;
     color: #0f2f2a;
     font-weight: 900;
     letter-spacing: 6px;
 }

 body.franchise-page .page-overlay > .container > .section-title::after {
     background-color: rgba(15, 47, 42, 0.5);
 }

 body.franchise-page .page-overlay > .container > .section {
     padding: clamp(36px, 6vw, 84px) 0;
 }

 body.franchise-page .page-overlay > .container .franchise-content {
     width: 100%;
     max-width: none;
     margin: 0;
     background: #ffffff;
     border-radius: 0;
 }

 body.franchise-page .page-overlay > .container .franchise-content h3 {
 text-align: left;
 font-size: 28px;
 letter-spacing: 2px;
 color: #0f2f2a;
 margin-bottom: 16px;
 }

 body.franchise-page #franchise-statement .franchise-content h3 {
 text-align: center !important;
 color: #ffffff !important;
 font-size: 36px !important;
 }

 body.franchise-page .page-overlay > .container .franchise-content p {
 text-align: left;
 color: #2f3d3a;
 font-size: 15px;
 line-height: 1.9;
     line-height: 1.9;
 }

.franchise-content h3 {
    color: #004d40;
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.franchise-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #333;
    text-align: center;
}

/* 加盟声明列表 */
.statement-list {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

 body.franchise-page .statement-list {
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 18px;
 }

.statement-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #004d40;
}

.item-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #004d40;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

 body.franchise-page .statement-item {
     background: #ffffff;
     border: 1px solid rgba(15, 47, 42, 0.12);
     border-left: 0;
     border-radius: 14px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
 }

 body.franchise-page .item-number {
     width: 44px;
     height: 44px;
     background: linear-gradient(135deg, #0f2f2a, #00796b);
     box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
 }

.statement-item p {
    margin-bottom: 0;
    color: #333;
}

/* 加盟流程横向布局 */
.process-flow {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
    padding: 20px 0;
    gap: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
}

 body.franchise-page .process-flow {
     display: flex;
     align-items: stretch;
     justify-content: flex-start;
     gap: 18px;
     margin-top: 26px;
     padding: 12px 10px 6px 10px;
     overflow-x: auto;
     overflow-y: hidden;
     scroll-snap-type: x mandatory;
     -webkit-overflow-scrolling: touch;
     overscroll-behavior-x: contain;
 }

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 130px;
    max-width: 150px;
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
}

 body.franchise-page .flow-step {
     flex: 0 0 280px;
     max-width: 280px;
     min-width: 280px;
     align-items: flex-start;
     text-align: left;
     padding: 22px 20px 18px 20px;
     border-radius: 18px;
     border: 1px solid rgba(15, 47, 42, 0.12);
     background: #ffffff;
     box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
     scroll-snap-align: start;
 }

 body.franchise-page .flow-step::after {
     content: '';
     position: absolute;
     top: 50%;
     right: -18px;
     width: 18px;
     height: 2px;
     background: rgba(15, 47, 42, 0.22);
 }

 body.franchise-page .flow-step::before {
     content: '';
     position: absolute;
     top: calc(50% - 5px);
     right: -18px;
     width: 0;
     height: 0;
     border-top: 5px solid transparent;
     border-bottom: 5px solid transparent;
     border-left: 8px solid rgba(15, 47, 42, 0.22);
 }

 body.franchise-page .process-flow .flow-step:last-child::after,
 body.franchise-page .process-flow .flow-step:last-child::before {
     display: none;
 }

.flow-icon {
    width: 60px;
    height: 60px;
    background-color: #004d40;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: relative;
    z-index: 3;
    box-shadow: none;
    margin-bottom: 15px;
    transform: translateY(0);
    flex-shrink: 0;
    margin-top: 0;
    padding: 0;
}

 body.franchise-page .flow-icon {
     width: 54px;
     height: 54px;
     background: linear-gradient(135deg, #0f2f2a, #00796b);
     box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
     margin-bottom: 12px;
 }

.flow-line {
    width: calc(100% - 20px);
    height: 2px;
    background-color: #004d40;
    position: absolute;
    top: 30px;
    left: 100%;
    z-index: 1;
    transform: translateX(0);
}

 body.franchise-page .flow-line {
     display: none !important;
 }

.flow-step:last-child .flow-line {
    display: none;
}

.flow-number {
    font-size: 16px;
    font-weight: bold;
    color: #004d40;
    margin-bottom: 8px;
}

 body.franchise-page .flow-number {
     color: #0f2f2a;
     margin-bottom: 6px;
 }

.flow-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

 body.franchise-page .flow-title {
     font-size: 16px;
     min-height: 0;
     padding: 0;
     justify-content: flex-start;
 }

.flow-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    padding: 0 5px;
    flex-grow: 1;
    text-align: center;
}

 body.franchise-page .flow-desc {
     font-size: 14px;
     color: #3d4a47;
     padding: 0;
     text-align: left;
 }

 @media (max-width: 768px) {
     body.franchise-page .process-flow {
         flex-direction: column;
         overflow: visible;
         padding: 0;
         gap: 16px;
     }

     body.franchise-page .flow-step {
         width: 100%;
         min-width: 0;
         max-width: none;
     }

     body.franchise-page .flow-step::after {
         top: auto;
         left: 34px;
         right: auto;
         bottom: -18px;
         width: 2px;
         height: 18px;
     }

     body.franchise-page .flow-step::before {
         top: auto;
         left: 30px;
         right: auto;
         bottom: -22px;
         border-top: 8px solid rgba(15, 47, 42, 0.22);
         border-left: 5px solid transparent;
         border-right: 5px solid transparent;
         border-bottom: 0;
     }
 }

/* 响应式设计 */
@media (max-width: 768px) {
    .process-flow {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }
    
    .flow-step {
        min-width: auto;
        width: 100%;
        position: relative;
    }
    
    .flow-line {
        width: 2px;
        height: 40px;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
        margin-top: 20px;
    }
    
    .flow-step:last-child .flow-line {
        display: none;
    }
    
    .flow-desc {
        max-width: 300px;
    }
}

/* 加盟支持网格 */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

 body.franchise-page .support-grid {
     display: flex;
     flex-wrap: nowrap;
     align-items: stretch;
     justify-content: flex-start;
     gap: 18px;
     margin-top: 26px;
     padding: 12px 10px 6px 10px;
     overflow-x: auto;
     overflow-y: hidden;
     scroll-snap-type: x mandatory;
     -webkit-overflow-scrolling: touch;
     overscroll-behavior-x: contain;
 }

.support-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

 body.franchise-page .support-item {
     background: #ffffff;
     border: 1px solid rgba(15, 47, 42, 0.12);
     border-radius: 16px;
     text-align: left;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
     flex: 0 0 260px;
     max-width: 260px;
     min-width: 260px;
     scroll-snap-align: start;
 }

 @media (max-width: 768px) {
     body.franchise-page .support-grid {
         padding: 8px 8px 4px 8px;
         gap: 14px;
     }

     body.franchise-page .support-item {
         flex-basis: 220px;
         max-width: 220px;
         min-width: 220px;
     }
 }

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.support-icon {
    font-size: 40px;
    color: #004d40;
    margin-bottom: 15px;
}

 body.franchise-page .support-icon {
     font-size: 34px;
     color: #0f2f2a;
 }

.support-item h4 {
    color: #004d40;
    margin-bottom: 12px;
    font-size: 18px;
}

.support-item p {
    color: #666;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.6;
}

 body.franchise-page .support-item p {
     color: #3d4a47;
     font-size: 14px;
     line-height: 1.75;
 }

/* 加盟申请区域 */
.franchise-application {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

 body.franchise-page .franchise-application {
     gap: 22px;
     margin-top: 28px;
 }

.franchise-hotline {
    background: linear-gradient(135deg, #004d40 0%, #00796b 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: white !important;
}

.franchise-hotline h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.hotline-number {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white !important;
    line-height: 1.4;
}

.hotline-time {
    font-size: 16px;
    color: white !important;
}

/* 表单样式 */
.application-form h4 {
    color: #004d40;
    margin-bottom: 20px;
    font-size: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 5px rgba(139, 69, 19, 0.3);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background-color: #004d40;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;
}

.submit-btn:hover {
    background-color: #00796b;
}

/* 成功提示消息样式 */
.success-message {
    display: none;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 12px 20px;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 云味火锅样式 */
.hotpot-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding: 0 20px;
}

.hotpot-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hotpot-item:hover {
    transform: translateY(-5px);
}

.hotpot-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.hotpot-item:hover .hotpot-image {
    transform: scale(1.1);
}

.hotpot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 77, 64, 0.95), rgba(0, 77, 64, 0.3), rgba(0, 77, 64, 0));





    color: white;
    padding: 20px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hotpot-overlay-content {
        transform: translateY(-20%);
        text-align: left;
        padding-left: 20px;
    }

.hotpot-item:hover .hotpot-overlay {
    opacity: 1;
    transform: translateY(0);
}

.hotpot-overlay h4 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
    transform: translateY(4px);
    transition: transform 0.5s ease;
    color: white !important;
}

.hotpot-overlay p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    transform: translateY(4px);
    transition: transform 0.5s ease 0.1s;
    color: white !important;
}

.hotpot-item:hover .hotpot-overlay h4,
.hotpot-item:hover .hotpot-overlay p {
    transform: translateY(0);
}

/* 响应式布局 */
@media (max-width: 1024px) {
    .hotpot-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hotpot-gallery {
        grid-template-columns: 1fr;
    }
}

/* 固定悬浮窗样式 */
.fixed-floats {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-window {
    background-color: #004d40;
    color: white;
    padding: 12px 18px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 加盟二维码悬浮窗 */
.qrcode-float {
    background-color: white;
    color: #004d40;
    padding: 10px;
    border-radius: 8px;
    flex-direction: column;
    gap: 8px;
    width: 150px;
    cursor: default;
}

.qrcode-header {
    font-size: 14px;
    font-weight: bold;
    color: #004d40;
    text-align: center;
}

.qrcode-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qrcode-content img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.float-window:hover:not(.qrcode-float) {
    background-color: #00796b;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* 加盟二维码悬浮窗 */
.qrcode-float {
    position: fixed;
    right: 20px;
    top: 100px;
    transform: none;
    background-color: #004d40;
    color: white;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    width: 160px;
    cursor: default;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    border: none;
    z-index: 1001;
}

.qrcode-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #004d40;
    padding: 15px;
    margin: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.qrcode-content img {
    width: 100%;
    height: auto;
    max-width: 130px;
    object-fit: contain;
    margin: 0;
}

.qrcode-text {
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-align: center;
    background-color: #004d40;
    padding: 5px 10px;
    margin: -15px auto 0;
    width: 100px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* 为二维码悬浮窗添加悬停效果 */
.qrcode-float:hover {
    box-shadow: 0 5px 20px rgba(0, 77, 64, 0.2);
    transform: translateY(-2px);
}

.qrcode-content:hover {
    background-color: #00796b;
}

/* 页脚样式 */
.footer {
    background: linear-gradient(to bottom, rgba(0, 77, 64, 1), rgba(0, 121, 107, 0.3));
    color: white;
    padding: 50px 0;
    margin-top: 100px;
}

 body.store-query-page .footer {
     margin-top: 0;
     margin-bottom: 0;
     background: linear-gradient(to bottom, rgba(0, 77, 64, 1), rgba(0, 121, 107, 1));
     position: relative;
     z-index: 5;
 }

 body.franchise-page .footer {
     margin-top: 0;
 }

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #00796b;
}

.footer-section p, .footer-section li {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #00796b;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: #004d40;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    transition: transform 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    transform: translateY(-5px);
    background-color: #00796b;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #555;
    color: #999;
}

/* 响应式设计 */
@media (max-width: 768px) {
    /* 品牌加盟轮播图响应式样式 */
    #franchise-carousel .carousel-text {
        width: 90%;
        padding: 40px;
        bottom: 20px;
        right: 0;
        top: auto;
        left: auto;
        transform: none;
        min-height: 200px;
    }
    
    #franchise-carousel .carousel-text h2 {
        font-size: 28px;
    }
    
    #franchise-carousel .carousel-text p {
        font-size: 16px;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        display: none;
        z-index: 999;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .nav-menu li {
        margin-right: 0;
    }
    
    .circle-floats {
        display: none;
    }
    
    .fixed-floats {
        right: 10px;
    }
    
    .float-window {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 12px;
    }
    
    .section {
        padding: 60px 0;
        margin-top: 60px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .franchise-content {
        padding: 20px;
    }

    /* 移动端菜品详情布局 */
    .food-detail-container {
        flex-direction: column;
        gap: 30px;
        padding: 30px 15px;
    }

    .food-image {
        max-width: 100%;
    }

    .food-info {
        max-width: 100%;
    }

    .food-header h3 {
        font-size: 24px;
    }

    .food-tag {
        font-size: 16px;
    }

    .food-pagination {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .franchise-application {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    /* 轮播图响应式设计 */
    #franchise-carousel .carousel-container {
        flex-direction: column;
        height: auto;
    }
    
    #franchise-carousel .carousel-text {
        width: 100%;
        padding: 30px;
        text-align: center;
        right: 0;
        left: 0;
    }
    
    #franchise-carousel .carousel-text h2 {
        font-size: 28px;
    }
    
    #franchise-carousel .carousel-text p {
        font-size: 16px;
    }
    
    #franchise-carousel .carousel {
        width: 100%;
        height: 300px;
    }
}

/* 品牌加盟轮播图样式 */
#franchise-carousel {
    margin-top: -100px; /* 消除顶部留白，与100px高的导航栏完美对齐 */
    overflow: hidden;
    position: relative;
    z-index: 10; /* 确保轮播图在导航栏下方但在其他内容上方 */
}

#franchise-carousel .carousel-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

/* 左侧文本区域样式 */
#franchise-carousel .carousel-text {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    padding: 20px 30px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    z-index: 2;
    display: block;
    opacity: 1;
}

#franchise-carousel .carousel-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

#franchise-carousel .carousel-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 右侧轮播图样式 */
#franchise-carousel .carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

#franchise-carousel .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
}

#franchise-carousel .carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

#franchise-carousel .carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 轮播图指示点 */
#franchise-carousel .carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

#franchise-carousel .dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(139, 69, 19, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#franchise-carousel .dot.active {
    background-color: #8B4513;
}

/* 全屏宽度类 */
.full-width {
    width: 100%;
    margin-left: -50vw;
    left: 50%;
    position: relative;
}
    padding: 0;


/* 菌香盛宴标题样式 */
#food-junzi-title {
    background-color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 20px;
}

#food-junzi-title h3 {
    color: #8B4513;
    font-size: 36px;
    margin-bottom: 5px;
    font-weight: bold;
    text-align: center;
}

#food-junzi-title p {
    color: #666;
    font-size: 20px;
    margin: 0;
    text-align: center;
}

/* 调整菌香盛宴内容区域的margin-top */
#food-junzi {
    margin-top: 0;
}

/* 菜品详情容器样式 */
.food-detail-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 50px 40px;
    background-image: url('../图片/food/背景/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    box-shadow: none;
}

.food-image {
    flex: 1;
    max-width: 700px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body.food-center-page .food-image {
    border-radius: 14px;
    box-shadow: 0 0 0 5px rgba(232, 212, 192, 0.85), 0 4px 15px rgba(0, 0, 0, 0.1);
}

.food-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.food-info {
    flex: 1;
    max-width: 700px;
}

.food-header h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 34px;
    font-weight: bold;
}

.food-tag {
    color: white;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.food-description {
    margin-bottom: 25px;
}

.food-description p {
    line-height: 1.8;
    color: white;
    font-size: 18px;
}

.food-category {
    margin-bottom: 30px;
}

.food-category p:first-child {
    color: white;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 18px;
}

.food-category p:last-child {
    color: white;
    font-size: 18px;
}

.food-pagination {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
}

.pagination-indicator {
    font-size: 18px;
    color: white;
    font-weight: bold;
}

.page-current,
.page-total {
    color: white;
    font-weight: bold;
}

.pagination-controls {
    display: flex;
    gap: 0;
}

.page-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #8B4513;
    background-color: white;
    color: #8B4513;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 12px;
}

.page-btn:hover {
    background-color: #8B4513;
    color: white;
    border-color: #8B4513;
}

/* 招牌菜品轮播图样式 */
.carousel-container {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* 轮播图样式 */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-top: 80px;
}

.hero-carousel .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-carousel .carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-carousel .carousel-slide.active {
    opacity: 1;
}

.hero-carousel .carousel-content {
    text-align: center;
    color: white;
    z-index: 10;
}

.hero-carousel .carousel-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-carousel .carousel-content p {
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* 轮播点 */
.hero-carousel .carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.hero-carousel .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero-carousel .dot.active {
    background-color: white;
}

.hero-carousel .dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* 轮播导航按钮 */
.hero-carousel .carousel-nav {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 15;
    pointer-events: none;
}

.hero-carousel .carousel-prev,
.hero-carousel .carousel-next {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    pointer-events: all;
}

.hero-carousel .carousel-prev:hover,
.hero-carousel .carousel-next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}
