* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html.is-noscroll {
  overflow: hidden !important;
}

:root {
  --primary-color: #ffedeb;
  --primary-dark: #ff91ae;
  --primary-light: #febbc2;
  --white: #ffffff;
  --black: #000000;
  --text-primary: var(--white);
  --text-secondary: var(--primary-dark);
  --text-light: var(--primary-light);
  --text-color: var(var(--black)) --bg-primary: var(--primary-color);
  --bg-secondary: var(--primary-dark);
  --bg-dark: var(--primary-light);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "微软雅黑", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: var(--text-color);
  font-size: 14px;
  --w-sidebar: 72px;
  position: relative;
  background-color: #ffedeb;
  width: 100%;
  overflow-x: hidden;
}

body.is-noscroll {
  overflow: hidden !important;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 60px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

button:focus,
*:focus {
  outline: none;
}

button {
  background: transparent;
  border: none;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.border-radius-10 {
  border-radius: 10px;
  overflow: hidden;
}


/* 入场动画 */
/* 入场动画容器 */
.intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  pointer-events: none;
}

/* logo图片样式 */
.intro-logo {
  width: 200px;
  opacity: 0;
  transform: scale(0.8);
  position: relative;
  z-index: 2;
}

/* 背景色扩展效果 */
.intro-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #ffedeb;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.website-content {
  opacity: 0;
}



/* 整体布局 */
.app-container {
  display: flex;
  min-height: 100vh;
}

/* 左侧固定导航栏 */
.sidebar {
  width: var(--w-sidebar);
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  height: 100vh;
  z-index: 1000;
  background-image: url(../images/nav-bg.jpg);
}

/* logo样式 */
.sidebar-logo {
  display: flex;
  position: relative;
}

.sidebar-logo a img {
  max-width: 100%;
  margin-top: 30px;
  margin-left: 70px;
}

.sidebar-logo::after {
  width: 180px;
  height: 324px;
  position: absolute;
  top: -2px;
  right: -180px;
  z-index: -1;
  background-image: url(../images/nav-top-right.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% 100%;
  content: "";
}

/* 导航按钮容器 */
.nav-toggle-container {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 导航切换按钮 */
.nav-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  /* padding: 10px; */
  transition: all 0.3s;
  color: var(--primary-dark);
}

.close-icon {
  display: none;
}

/* 预约按钮 */
.reserve-btn {
  color: var(--white);
  text-decoration: none;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 10px 0;
  letter-spacing: 1px;
  font-size: 14px;
  transition: color 0.3s;
  font-weight: 600;
}

/* 导航菜单 */
.nav-menu {
  position: fixed;
  left: 72px;
  top: 0;
  width: 0;
  height: 100vh;
  background-color: var(--white);
  overflow: hidden;
  transition: width 0.3s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav-menu.active {
  width: 50%;
}

.nav-menu a {
  color: var(--primary-dark);
  text-decoration: none;
  margin: 15px 0;
  font-size: 28px;
  letter-spacing: 1px;
  transition: color 0.3s;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease;
}

.nav-menu.active a {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(0.1s * var(--i));
}

/* 主内容区域 */
.main-content {
  width: 100%;
  flex: 1;
  margin-left: 72px;
  min-height: 100vh;
}

@media (max-width: 768px) {
  .sidebar {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    padding: 0 15px;
    flex-direction: row;
    justify-content: space-between;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1), 0 -2px 4px -1px rgba(0, 0, 0, 0.06);
  }

  .sidebar-logo a img {
    max-height: 50px;
    margin: 0;
  }

  .sidebar-logo::after {
    display: none;
  }

  .nav-toggle-container {
    justify-content: end;
  }

  .reserve-btn {
    display: none;
  }

  .nav-menu {
    left: 0;
    height: calc(100vh - 60px);
  }

  .main-content {
    margin-left: 0;
  }
}

/* 首屏区域 */
.hero-section {
  height: 100vh;
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 80px;
  position: relative;
}

.hero-section-text {
  width: 100%;
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--primary-dark);
  font-size: .8rem;
  font-weight: 600;
  text-align: right;
}

/* 大图样式 */
.hero-image {
  max-width: 80%;
  max-height: 60vh;
  object-fit: contain;
  margin-bottom: 30px;
}

.hero-news {
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  background-color: var(--white);
  border-radius: 20px;
  height: 40px;
  padding: 0 10px;
}

.hero-news-heading {
  font-weight: 500;
  font-size: 18px;
}

.hero-news-heading span:first-child {
  color: var(--primary-dark);
  margin-right: 30px;
  letter-spacing: .2rem;
}

.hero-news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}

.hero-news-item,
.hero-news-item a.news-link {
  color: var(--black);
  font-size: 18px;
}

.hero-news-item img {
  width: 20px;
  height: 20px;
}

.news-link {
  width: 100%;
  transition: color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-news-item a.news-link:hover {
  color: var(--primary-dark);
}

.hot-news {
  display: none;
  padding: 100px 0;
}

.hot-news-box {
  padding: 15px 10px;
  background-color: var(--white);
}

.hot-news-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  font-size: .9rem;
  font-weight: 600;
}

.hot-news-top h4 {
  color: var(--primary-dark);
  letter-spacing: .2rem;
  font-size: .9rem;
  font-weight: 600;
}

.hot-news-top img {
  width: 16px;
  height: 16px;
}

.hot-news-top div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hot-news-tit {
  color: var(--black);
  line-height: 1.5;
  font-size: .9rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-section {
    justify-content: center;
  }

  .hero-section-text {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .hero-news {
    display: none;
  }

  .hero-image {
    max-width: 95%;
  }

  .nav-menu.active {
    width: 300px;
  }

  .hot-news {
    display: block;
  }
}

/* 添加的SCROLL提示样式 */
.scroll-indicator {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  align-items: center;
  color: var(--primary-dark);
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.scroll-text {
  opacity: 0.8;
}

.scroll-animation {
  position: relative;
  height: 40px;
  width: 1px;
}

.scroll-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: var(--primary-dark);
  opacity: 0.6;
}

.scroll-dot {
  position: absolute;
  top: 0;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-dark);
  animation: scrollAnimation 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes scrollAnimation {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateY(40px);
    opacity: 0;
  }
}


/* 板块头部 */
.about-head-section {
  padding: 100px 0;
  background-image: url(../images/index-about-head-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  text-align: center;
  overflow: hidden;
}

.head-title {
  text-align: center;
  /* margin-bottom: 60px; */
}

.head-title img {
  max-width: 100%;
}

/* about */
.about-section {
  background-color: #fff;
  padding-bottom: 100px;
}

.about-content {
  background-color: #fff;
  border-radius: 10px;
  padding: 5rem;
  margin-top: -240px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .about-content {
    margin-top: 0;
    padding: 3rem;
  }
}

/* 首页about轮播图 */
.about-card {
  background: var(--primary-light);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 15px;
}

.about-img {
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-card:hover .about-img img {
  transform: scale(1.05);
}

.about-us-swiper {
  padding-bottom: 50px;
  overflow: hidden;
}

.swiper-pagination {
  position: relative;
  margin-top: 30px;
  text-align: left !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  opacity: 1;
  margin: 0 8px !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary-dark) !important;
}

.visual-text {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.about-visual-text {
  color: var(--primary-dark);
}

@media (max-width: 992px) {
  .about-visual-text {
    display: none;
  }
}

.about-content-title1 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
}

.about-content-title2 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
}

.about-content {
  font-size: 0.8rem;
  color: var(--black);
}

.content-lead {
  color: var(--black);
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 600;
}


/* 首页menu */
.menu-head-section {
  padding: 100px 0;
  background-image: url(../images/index-menu-head-bg.png);
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: top center;
  text-align: center;
  overflow: hidden;
}

.menu-section {
  min-height: 100vh;
  background-color: #ffe6e6;
  background-image: url(../images/index-menu-bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.menu-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.menu-content .content-lead {
  text-align: center;
}

/* 首页 goods */
.goods-head-section {
  background-color: #ffe6e7;
  overflow: hidden;
}

.goods-section {
  background-color: #fff;
  padding-bottom: 60px;
}

.goods-title {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  color: #333;
}

.goods-description {
  color: var(--black);
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 600;
}

.more-btn-link {
  display: inline-flex;
  min-width: 150px;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  line-height: 1;
  background-color: var(--primary-light);
  border: solid 2px var(--primary-dark);
  border-radius: 20px;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--white);
  font-weight: 600;
}

.more-btn-link i {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  margin-right: -8px;
}

.more-btn-link:hover i {
  opacity: 1;
  transform: translateX(0);
  margin-right: 8px;
}

.more-btn-link i {
  font-size: 0.6rem;
}

.goods-gallery {
  display: flex;
  flex-direction: column;
}

.goods-gallery img {
  border-radius: 10px;
  max-width: 100%;
}

.goods-item1 {
  padding-top: 50px;
}

.goods-item2 {
  padding: 0 40px;
}

.goods-item4 {
  text-align: right;
}

.goods-item4 img {
  width: 300px;
}

@media (max-width: 768px) {
  .goods-gallery img {
    width: 100% !important;
  }

  .goods-item2 {
    padding: 0;
  }
}

/* 首页 info */
.info-head-section {
  padding: 100px 0;
  background-image: url(../images/index-info-head-bg.png);
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: top center;
  text-align: center;
  overflow: hidden;
}

.info-section {
  background-color: #ffd7d7;
  padding-bottom: 100px;
}

.info-section .map-box {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}

.info-content {
  background-color: #fff;
  border-radius: 10px;
  padding: 3rem;
  margin-top: -240px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  color: var(--black);
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .info-content {
    margin-top: 3rem;
  }
}

.info-content-title {
  color: var(--primary-dark);
  letter-spacing: 0.2em;
}


/* 首页 kitchen */
.kitchen-head-section {
  padding: 100px 0;
  background-image: url(../images/index-kitchen-head-bg.png);
  background-color: #ffe6e7;
  background-repeat: no-repeat;
  background-position: top center;
  text-align: center;
  overflow: hidden;
}

.kitchen-section {
  background-color: #ffe6e7;
  padding-bottom: 100px;
}

.kitchen-content {
  background-color: #fff;
  border-radius: 10px;
  padding: 3rem;
  margin-top: -80px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  color: var(--black);
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 600;
}

.kitchen-img2 {
  padding: 30px 50px;
}

.itchen-list-item {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 1;
  padding: 20px;
  font-size: 1rem;
  font-weight: 600;
  border-top: solid 1px #ccc;
}

.itchen-list-item:last-child {
  border-bottom: solid 1px #ccc;
}

.itchen-list-item a {
  color: var(--primary-dark);
}

.itchen-list-item a:hover {
  color: var(--primary-light);
}

@media (max-width: 768px) {
  .kitchen-content {
    margin: 0;
    padding: 30px 10px;
  }

  .kitchen-img2 {
    padding: 0;
    margin-top: 3rem;
  }
}

/* 首页 sns */
.sns-head-section {
  padding: 100px 0;
  background-image: url(../images/index-about-head-bg.png);
  background-color: #ffd7d7;
  background-repeat: no-repeat;
  background-position: top center;
  text-align: center;
  overflow: hidden;
}

.sns-section {
  background-color: #ffffff;
  padding-bottom: 100px;
}

.sns-content {
  min-height: 436px;
  background-color: #ffe6e7;
  padding: 15px;
  color: var(--black);
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 600;
}

.sns-content-tit {
  color: #feb3cc;
  line-height: 1.5;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.sns-content-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sns-content-list li {
  display: flex;
  justify-content: space-between;
}

.sns-content-list li a {
  color: var(--black);
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 600;
}

.sns-content-list li span {
  min-width: 86px;
}


/* 首页welcome */
.welcome-head-section {
  padding: 100px 0;
  background-image: url(../images/index-welcome-head-bg.png);
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: top center;
  text-align: center;
  overflow: hidden;
}

.welcome-section {
  padding: 100px 0;
  background-color: #ffe6e7;
}

.wel-lead {
  max-width: 870px;
  height: 87px;
  margin: 0 auto;
  background-image: url(../images/index-welcome-img1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  text-align: center;
}

.wel-lead h4 {
  letter-spacing: .2rem;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
}

.wel-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.wel-btns .more-btn-link {
  width: 240px;
  height: 50px;
  text-align: center;
  line-height: 46px;
  padding: 0;
  border-radius: 25px;
}

.go-top {
  width: 50px;
}

.go-top-tit {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
}

#go-top:hover .go-top {
  animation: arrowUpAndDown 0.9s ease-in-out 1;
  /* 只播放一次 */
}

@keyframes arrowUpAndDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(-20px);
    /* 向上移动 */
    opacity: 0;
    /* 淡出消失 */
  }

  51% {
    transform: translateY(20px);
    /* 瞬间移到下方（准备返回） */
    opacity: 0;
    /* 保持透明 */
  }

  100% {
    transform: translateY(0);
    opacity: 1;
    /* 淡入回到原位 */
  }
}

/* footer */
.go-top-section {
  padding: 100px 0;
  background-image: url(../images/index-gotop-head-bg.png);
  background-color: #ffd7d7;
  background-repeat: no-repeat;
  background-position: top center;
  text-align: center;
}

.foot-tit {
  font-size: 3rem;
  color: #fff;
  font-weight: 600;
}

.foot-add {
  color: var(--black);
  line-height: 1.5;
  font-size: .9rem;
  font-weight: 600;
}

.foot-btn {
  width: 200px;
}

.share-tit {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .2rem;
}

.foot-right {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.share-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding-top: 30px;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.social-list a i {
  color: #fff;
  font-size: 1.5rem;
}

.foot-copy {
  color: var(--black);
  line-height: 1.5;
  font-size: .9rem;
  font-weight: 600;
}



/* 页面 menu */
.page-banner {
  height: calc(100vw * 650 / 1920);
  margin-bottom: 50px;
}

.page-box {
  margin-top: calc(100vw * -197 / 1920);
  position: relative;
  z-index: 99;
}

@media (max-width: 768px) {
  .page-banner {
    height: calc(100vw * 260 / 414);
  }

  .page-box {
    margin-top: calc(100vw * -54 / 414);
  }
}

.page-bgcolor {
  width: 100%;
  background-color: var(--white);
  border-radius: 10px;
  padding: 50px;
}

.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-menu-category {
  padding: 0 50px;
}

.menu-category-item {
  padding: 20px 0;
}

.menu-category-item .more-btn-link {
  width: 100%;
}

.page-title-1 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--primary-dark);
}

.page-title-2 {
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.page-description {
  font-size: .9rem;
  color: var(--black);
}

.period-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--black);
  display: inline-block;
  padding-bottom: 15px;
  margin: 60px 0 40px;
  position: relative;
}

.period-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--black);
}

.product-item {
  padding-bottom: 30px;
}

.product-item img {
  width: 100%;
}

.product-item-tit {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
  margin-top: 10px;
}

.product-item-link {
  display: block;
  position: relative;
  overflow: hidden;
}

.product-item-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.product-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 145, 174, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.product-item-link:hover .product-hover-overlay {
  background-color: rgba(255, 145, 174, .6);
  opacity: 1;
}

.product-item-link:hover .product-item-img {
  transform: scale(1.05);
}

.zoom-button {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.zoom-button:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

.zoom-button svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1199px) {
  .page-bgcolor {
    padding: 30px;
  }

  .page-menu-category {
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .page-bgcolor {
    padding: 30px 20px;
  }

  .page-menu-category {
    padding: 0 20px;
  }
}

@media (max-width: 678px) {
  .page-bgcolor {
    padding: 30px 15px;
  }

  .page-menu-category {
    padding: 20px 15px;
  }

  .menu-category-item {
    padding: 10px 0;
  }
}

/* 图片预览弹窗样式 */
.image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.modal-content {
  display: block;
  width: auto;
  height: auto;
  max-width: 1200px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: #ff91ae;
}

/* 自定义产品选项卡 */
.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.category-title {
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: #333;
  margin: 0;
}

.category-tabs {
  display: flex;
  gap: 10px;
}

.category-tab {
  background: none;
  border: none;
  padding: 5px 15px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
  border-radius: 20px;
}

.category-tab.active {
  background: #ff91ae;
  color: white;
}


/* 页面 reserve */
.reservr-h1 {
  font-size: 4rem;
  font-weight: 400;
}

.reservr-desc {
  font-size: 1rem;
  font-weight: 600;
  line-height: 2;
}

.reservr-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.reservr-btns .more-btn-link {
  min-width: 300px;
  border-radius: 28px;
}

.time-tips {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.8;
}

.time-table {
  width: 100%;
  border: 1px solid #000;
  border-collapse: collapse;
}

.time-table th {
  padding: 20px 14px;
  border: none;
  text-align: center;
  color: white;
  background-color: var(--primary-dark);
  font-size: 1.1rem;
  font-weight: 600;
}

.time-table td {
  padding: 15px 14px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  background-color: white;
  border: 1px solid #05121e;
  border-collapse: collapse;
}


/* 常见问题 */
.faq-item {
  margin-bottom: 15px;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  overflow: hidden;
}

.faq-header {
  padding: 15px;
  background-color: #f8f9fa;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.faq-header:hover {
  background-color: #e9ecef;
}

.faq-title {
  font-size: 1rem;
  font-weight: 600;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-icon.rotate {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  font-size: 0.9rem;
  font-weight: 600;
}

.faq-content p {
  margin: 0;
}

.faq-content.show {
  padding: 20px;
  max-height: 500px;
}