.wrap {
  width: 14rem;
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 1.2rem;
  transition: 0.3s;
}

header.active {
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

header.active .logo a img {
  filter: brightness(0) invert(1);
}

header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
}

header .wrap .logo {
  width: 4rem;
}

header .wrap .logo a img {
  width: 0.8rem;
}

header .wrap .right-header {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  padding-right: 0.4rem;
}

header .wrap .right-header .language-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
  padding: 0 0.2rem;
  cursor: pointer;
  font-size: 0.16rem;
}

header .wrap .right-header .language-btn:hover .sub {
  display: block;
}

header .wrap .right-header .language-btn img {
  width: 0.24rem;
  filter: brightness(0) invert(1);
  display: block;
  margin-right: 0.1rem;
}

header .wrap .right-header .language-btn .sub {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  min-width: 130%;
  top: 100%;
  background-color: rgba(85, 195, 227, 0.6);
}

header .wrap .right-header .language-btn .sub a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.16rem;
  padding: 0.1rem 0.2rem;
  color: #fff;
}

header .wrap .right-header .language-btn .sub a:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

header .wrap .right-header .language-btn .sub a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

header .wrap .right-header .line {
  width: 1px;
  height: 0.16rem;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 0.25rem;
  margin-right: 0.05rem;
}

header .wrap .right-header .search-box {
  position: relative;
}

header .wrap .right-header .search-box input {
  width: 2.5rem;
  height: 0.36rem;
  border-radius: 0.18rem;
  background-color: #fff;
  border: none;
  outline: none;
  font-size: 0.14rem;
  padding: 0 0.27rem;
  padding-right: 0.5rem;
}

header .wrap .right-header .search-box button {
  position: absolute;
  right: 0rem;
  top: 0;
  width: 0.46rem;
  height: 0.36rem;
  border-radius: 0.18rem;
  background: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  border: none;
}

header .wrap .right-header .search-box button img {
  width: 0.16rem;
  display: block;
}

header .wrap .header-navs {
  height: 100%;
  display: flex;
  align-items: center;
}

header .wrap .header-navs li {
  position: relative;
  height: 100%;
}

header .wrap .header-navs li:not(:last-child) {
  margin-right: 0.4rem;
}

/* 第一個點（橫條左側） */
header .wrap .header-navs li::before {
  content: "";
  position: absolute;
  bottom: 0.34rem;
  left: -0.1rem;
  width: 0.04rem;
  height: 0.04rem;
  background-color: #fff;
  opacity: 0;
  transition: 0.3s;
  animation: none;
}

/* 橫條 */
header .wrap .header-navs li::after {
  content: "";
  position: absolute;
  bottom: 0.35rem;
  left: 0;
  width: 100%;
  height: 0.02rem;
  background-color: #fff;
  opacity: 0;
  transition: 0.3s;
}

/* 第二個點（橫條右側） */
header .wrap .header-navs li .nav-dot-2 {
  position: absolute;
  bottom: 0.34rem;
  right: -0.1rem;
  width: 0.04rem;
  height: 0.04rem;
  background-color: #fff;
  opacity: 0;
  transition: 0.3s;
  animation: none;
}

/* 閃爍動畫 */
@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* 激活狀態 */
header .wrap .header-navs li.active::after {
  opacity: 1;
}

header .wrap .header-navs li.active::before {
  opacity: 1;
  animation: blink 1s infinite;
}

header .wrap .header-navs li.active .nav-dot-2 {
  opacity: 1;
  animation: blink 1s infinite;
}

header .wrap .header-navs li.active a {
  color: #fff;
}

/* 懸停狀態 */
header .wrap .header-navs li:hover .sub {
  display: block;
}

header .wrap .header-navs li:hover::after {
  opacity: 1;
}

header .wrap .header-navs li:hover::before {
  opacity: 1;
  animation: blink 1s infinite;
}

header .wrap .header-navs li:hover .nav-dot-2 {
  opacity: 1;
  animation: blink 1s infinite;
}


header .wrap .header-navs li>a {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 0.16rem;
  color: #fff;
}

/* 二級菜單樣式 */
header .wrap .header-navs li .header-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1.2rem;
  background: #FFFFFF;
  border-radius: 0.1rem;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.2);
  padding: 0.1rem 0;
  display: none;
  z-index: 1000;
  list-style: none;
  text-align: center;
}

header .wrap .header-navs li:hover .header-submenu {
  display: block;
}

header .wrap .header-navs li .header-submenu li {
  position: relative;
  height: auto;
  margin: auto;
  padding: 0;
  width: 80%;
}

header .wrap .header-navs li .header-submenu li:not(:last-child) {
  border-bottom: 0.01rem dashed #ddd;
}

header .wrap .header-navs li .header-submenu li:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.2rem;
  right: 0.2rem;
  height: 0;
}

header .wrap .header-navs li .header-submenu li a {
  display: block;
  font-size: 0.16rem;
  color: #666666;
  font-weight: 400;
  padding: 0.1rem 0.15rem;
  text-decoration: none;
  transition: 0.3s;
  margin: 0.05rem 0;

}

header .wrap .header-navs li .header-submenu li.active a {
  background: #F7F7F7;
  border-radius: 0.03rem;
}

header .wrap .header-navs li .header-submenu li:hover a {
  background: #F3F3F3;
}

header .wrap .header-navs li .header-submenu li::before,
header .wrap .header-navs li .header-submenu li::after {
  display: none;
}

header .wrap .header-navs li .header-submenu li .nav-dot-2 {
  display: none;
}

header .wrap .header-right {
  display: flex;
  align-items: center;
  margin-left: auto;
}

header .wrap .icon-list {
  margin-left: 0;
}

header .wrap .icon-list a {
  margin-left: 0.39rem;
}

header .wrap .icon-list .language-switch {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.39rem;
}

header .wrap .icon-list .language-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.06rem;
  height: 0.36rem;
  padding: 0 0.14rem 0 0.12rem;
  border: 0.01rem solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  color: #fff;
  font-family: inherit;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.08);
}

header .wrap .icon-list .language-switch:hover .language-btn {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.12);
}

header .wrap .icon-list .language-btn-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

header .wrap .icon-list .language-btn-icon {
  width: 0.2rem;
  height: 0.2rem;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

header .wrap .icon-list .language-btn-label {
  font-size: 0.13rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

header .wrap .icon-list .language-chevron {
  display: block;
  width: 0;
  height: 0;
  margin-left: 0.02rem;
  border-left: 0.035rem solid transparent;
  border-right: 0.035rem solid transparent;
  border-top: 0.04rem solid rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

header .wrap .icon-list .language-switch:hover .language-chevron {
  transform: rotate(180deg);
}

header .wrap .icon-list .language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: auto;
  min-width: 0;
  padding: 0.06rem 0;
  margin: 0;
  list-style: none;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0.1rem;
  border: 0.01rem solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0.04rem 0.16rem rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.02rem);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  box-sizing: border-box;
}

header .wrap .icon-list .language-switch:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

header .wrap .icon-list .language-dropdown li {
  padding: 0;
  margin: 0;
}

header .wrap .icon-list .language-dropdown li:not(:last-child) {
  border-bottom: 0.01rem dashed rgba(255, 255, 255, 0.28);
}

header .wrap .icon-list .language-dropdown li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0.08rem;
  margin: 0;
  font-size: 0.14rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 0.04rem;
  transition: background 0.2s ease, color 0.2s ease;
}

header .wrap .icon-list .language-dropdown li a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

header .wrap .icon-list .language-dropdown li a.is-current {
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
}

header .wrap .login-register {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}

header .wrap .login-register a {
  font-size: 0.14rem;
  font-weight: 500;
  padding: 0.08rem 0.2rem;
  border-radius: 0.18rem;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-left: 0.15rem;
}

header .wrap .login-btn {
  color: #333;
  background-color: transparent;
}

header .wrap .login-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

header .wrap .register-btn {
  color: white;
  background-color: #333;
}

header .wrap .register-btn:hover {
  background-color: #555;
}

.banner {
  height: 9.2rem;
}

.banner .swiper {
  height: 100%;
}

.banner .swiper .swiper-slide {
  position: relative;
}

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

.banner .swiper .swiper-slide .text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
}


.banner .swiper .swiper-slide .text-box .common-btn:hover a {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.banner .swiper .swiper-slide .text-box .common-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.18rem;
  color: #fff;
  background-color: #00a0e9;
  width: 2.4rem;
  height: 0.6rem;
  border-radius: 0.3rem;
  transition: 0.3s;
}


.banner .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  width: 0.44rem;
  height: 0.66rem;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
  border-radius: 0.1rem;
  left: 1rem;
  right: auto;
}

.banner .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  width: 0.44rem;
  height: 0.66rem;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
  border-radius: 0.1rem;
  right: 1rem;
  left: auto;
}

.banner .swiper-button-next:after,
.banner .swiper-rtl .swiper-button-prev:after {
  font-size: 0.16rem;
}

.banner .swiper-button-prev:after,
.banner .swiper-rtl .swiper-button-next:after {
  font-size: 0.16rem;

}

.footer-box {
  padding: 0.2rem 0 0.57rem 0;
  background-color: #EEEEEE;
}

.footer-box .wrap {
  width: 14rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 左側：Logo、導航和版權信息 */
.footer-box .wrap .footer-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-box .wrap .footer-left .footer-logo {
  display: block;
  width: 0.9rem;
  filter: brightness(0);
  margin-bottom: 0.3rem;
}

.footer-box .wrap .footer-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.4rem;
  font-weight: bold;
  font-size: 0.16rem;
  color: #000000;
  padding-top: 0.3rem;
  flex-wrap: wrap;
}

.footer-box .wrap .footer-nav li {
  list-style: none;
}

.footer-box .wrap .footer-nav li a {
  color: #000000;
  text-decoration: none;
}

.footer-box .wrap .footer-subnav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.4rem;
  font-weight: bold;
  font-size: 0.14rem;
  color: #000000;
  padding-top: 0.53rem;
}

.footer-box .wrap .footer-subnav li {
  list-style: none;
}

.footer-box .wrap .footer-subnav li a {
  color: #000000;
  text-decoration: none;
}

.footer-box .wrap .footer-copyight {
  font-weight: 300;
  font-size: 0.14rem;
  color: #000000;
  padding-top: 0.2rem;
  text-align: left;
}

/* 右側：聯繫信息和社交媒體圖標（左對齊） */
.footer-box .wrap .footer-right {
  flex-shrink: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-box .wrap .footer-right .footer-address {
  font-size: 0.16rem;
  color: #000000;
}

.footer-box .wrap .footer-right .footer-email {
  font-size: 0.14rem;
  color: #000000;
  line-height: 1.6;
  margin-top: 0.1rem;
  margin-bottom: 0.2rem;
}

.footer-box .wrap .footer-right .footer-outlink {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.2rem;
}

.footer-box .wrap .footer-right .footer-outlink li {
  list-style: none;
}

.footer-box .wrap .footer-right .footer-outlink li a {
  display: block;
}

.footer-box .wrap .footer-right .footer-outlink li a img {
  width: 50%;
}

.c-fff {
  color: #fff;
}

/* 記憶聯繫部分 */
.floor1 {
  padding: 1rem 0;
  background-color: #fff;
}

.floor1 .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floor1-title {
  font-weight: 800;
  font-size: 0.48rem;
  color: #000000;
  text-align: center;
  margin-bottom: 0.2rem;
}

.floor1-subtitle {
  font-weight: 400;
  font-size: 0.18rem;
  color: #000000;
  text-align: center;
  margin-bottom: 0.3rem;
}

.floor1-desc {
  font-weight: 400;
  font-size: 0.16rem;
  color: #000000;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 0.6rem;
  max-width: 8rem;
}

.zbxl {
  width: 100%;
  height: 7rem;
}

.zbxl .pic {
  height: 4.88rem;
  position: relative;
  background-color: white;
  margin-top: 1.3rem;
}

.zbxl .swiper-slide-active .pic {
  height: 5.88rem;
  margin-top: 0.3rem;
}

.zbxl .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.2rem;
}

.zbxl .pic .arrow-up {
  position: absolute;
  bottom: 0.2rem;
  right: 0.2rem;
  width: 0.6rem;
  height: 0.6rem;
  background: rgba(255, 255, 255, 0);
  border-radius: 0.1rem;
  border: 0.02rem solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zbxl .pic .arrow-up img {
  object-fit: none;
}

.zbxl .pic .trave-desc {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  padding: 0.32rem;
}

.zbxl .pic .trave-desc .desc-title {
  font-weight: bold;
  font-size: 0.24rem;
}

.zbxl .pic .trave-desc .desc-content {
  font-weight: 400;
  font-size: 0.18rem;
  color: #FFFFFF;
  padding-top: 0.2rem;
  padding-bottom: 0.28rem;
}

.zbxl .pic .trave-desc .see-more {
  height: 0.59rem;
  background: #FFFFFF;
  border-radius: 0.1rem;
  font-weight: 400;
  font-size: 0.18rem;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zbxl .swiper-pagination-bullet {
  width: 0.12rem;
  height: 0.12rem;
  margin: 0 0.05rem !important;
  background: #CFD3D4;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
}

.zbxl .swiper-pagination-bullet-active {
  background: #CFD3D4;
  width: 0.12rem;
  height: 0.12rem;
}

.zbxl .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.06rem;
  height: 0.06rem;
  background: #000000;
  border-radius: 50%;
}

/* 輪播選中狀態控制：選中顯示描述，未選中顯示箭頭 */
.zbxl .pic .trave-desc {
  display: none;
}

.zbxl .swiper-slide-active .pic .trave-desc {
  display: block;
}

.zbxl .swiper-slide-active .pic .arrow-up {
  display: none;
}

.floor2 {
  position: relative;
  width: 100%;
  height: 7.2rem;
  background: #EEEEEE;
}

.floor-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floor2 .floor2-content {
  position: absolute;
  top: 1.23rem;
  width: 100%;
}

.floor2 .floor2-content .wrap {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* floor2 標題和卡片樣式 */
.floor2-title {
  font-weight: 500;
  font-size: 0.6rem;
  color: #111111;
}

.floor2-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.26rem;
  padding-top: 1.45rem;
}

.floor2-card {
  width: 3.35rem;
  height: 1.79rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 0.2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
  gap: 0.26rem;
}

.floor2-card:hover {
  background: rgba(51, 51, 51, 0.9);
  transform: translateY(-0.05rem);
}

.floor2-card-icon {
  flex-shrink: 0;
}

.floor2-card-icon img {
  width: 0.34rem;
  height: 0.32rem;
  object-fit: contain;
}

.floor2-card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.floor2-card-title {
  font-weight: 700;
  font-size: 0.2rem;
  color: #ffffff;
  margin-bottom: 0.1rem;
  text-align: left;
}

.floor2-card-desc {
  font-weight: 400;
  font-size: 0.14rem;
  color: #ffffff;
  text-align: left;
  opacity: 0.8;
}

/* floor3 樣式 */
.floor3 {
  padding: 1rem 0;
  background-color: #fff;
}

.floor3 .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floor3-title {
  font-weight: 500;
  font-size: 0.6rem;
  color: #111111;
}

.floor3-subtitle {
  font-weight: 400;
  font-size: 0.36rem;
  color: #666666;
  padding-top: 0.3rem;
  padding-bottom: 0.63rem;
}

.floor3-nav {
  width: 5.9rem;
  height: 0.82rem;
  background: #FFFFFF;
  border-radius: 0.41rem;
  border: 0.02rem solid #A9A9A9;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 0.6rem;
  padding: 0.15rem;
}

.floor3-nav-btn {
  width: 1.81rem;
  height: 0.52rem;
  border: none;
  border-radius: 0.26rem;
  background: transparent;
  color: #111;
  font-weight: 500;
  font-size: 0.2rem;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floor3-nav-btn.active {
  background: #F3F3F3;
  color: #000;
}

.floor3-nav-btn:hover {
  background: #F3F3F3;
}

.floor3-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3列等寬 */
  grid-template-rows: auto auto;
  /* 2行自適應 */
  gap: 0.47rem 0.3rem;
  margin-top: 0.5rem;
  align-items: start;
}

.floor3-gallery .floor3-gallery-item:nth-child(1) {
  width: 5.44rem;
  height: 8.76rem;
  grid-row: span 2;
  /* 跨2行 */
}

.floor3-gallery .floor3-gallery-item:nth-child(2),
.floor3-gallery .floor3-gallery-item:nth-child(3) {
  height: 3.59rem;
}

.floor3-gallery .floor3-gallery-item:nth-child(4) {
  grid-column: span 2;
  /* 佔2列 */
  grid-row: span 2;
  /* 跨2行 */
  height: 4.68rem;
}





.floor3-gallery-item {
  position: relative;
  overflow: hidden;
}




.floor3-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.2rem;
  display: block;
  transition: 0.3s ease;
}

.floor3-gallery-item img:hover {
  transform: scale(1.2);
}

.floor3-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 500;
  font-size: 0.24rem;
  width: 100%;
  height: 0.93rem;
  border-radius: 0 0 0.2rem 0.2rem;
  padding: 0.34rem 0.15rem 0.36rem 0.32rem;
}

.floor3-more {
  width: 4.35rem;
  height: 0.59rem;
  background: #FFFFFF;
  border-radius: 0.1rem;
  border: 0.01rem solid #1B1B1B;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floor3-more-btn {
  font-weight: 400;
  font-size: 0.18rem;
  color: #111111;
  line-height: 0.3rem;
  cursor: pointer;
  transition: 0.3s;
}

.floor3-more:hover {
  background: #F3F3F3;
}

/* floor4 最新公告樣式 */
.floor4 {
  padding: 0 0 1rem 0;
  background-color: #fff;
}

.floor4 .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floor4-title {
  font-weight: 500;
  font-size: 0.6rem;
  color: #111111;
}

.floor4-subtitle {
  font-weight: 400;
  font-size: 0.36rem;
  color: #666666;
}

.floor4-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.6rem;

}

.floor4-card {
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.floor4-card:hover {
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.15);
  transform: translateY(-0.05rem);
}

.floor4-card-img {
  border-radius: 0.2rem;

  width: 100%;
  height: 3.8rem;
  overflow: hidden;
}

.floor4-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.floor4-card-content {
  padding: 0.28rem 0.28rem 0.43rem 0.21rem;
}

.floor4-card-desc {
  height: 0.6rem;
  font-weight: 400;
  font-size: 0.24rem;
  color: #111111;
  line-height: 0.36rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: box;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-line-clamp: 2;
  -ms-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 0.7rem;
}

.floor4-card-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 300;
  font-size: 0.16rem;
  color: #666666;
  line-height: 0.36rem;
  padding-top: 0.43rem;
}

.floor4-arrow {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}

.floor4-more {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.4rem;
}

.floor4-more-btn {
  padding: 0.12rem 0.4rem;
  border: 0.02rem solid #333;
  border-radius: 0.2rem;
  background: #fff;
  color: #333;
  font-weight: 400;
  font-size: 0.16rem;
  cursor: pointer;
  transition: 0.3s;
}

.floor4-more-btn:hover {
  background: #f5f5f5;
}

.travel-listbanner {
  width: 18rem;
  height: 4.6rem;
  margin: auto;
  position: relative;
}

.travel-listbanner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-listbanner .content-desc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.travel-listbanner .content-desc>div {
  font-weight: bold;
  font-size: 0.48rem;
  color: #FFFFFF;
  line-height: 0.32rem;
  text-align: center;
}

.travel-listbanner .text-bottom {
  position: absolute;
  bottom: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.1rem;
  background-color: rgba(0, 0, 0, 0.3);
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  border-radius: 0.1rem;
  color: white;
  font-size: 0.14rem;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.travel-listbanner .text-bottom .line {
  width: 0.02rem;
  height: 0.12rem;
  background-color: rgba(255, 255, 255, 0.5);
  display: inline-block;
  margin: 0 0.1rem;
}

/* 新聞列表樣式 */
.news-list {
  padding: 0.8rem 0;
  background-color: #ffffff;
}

.news-items {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.news-item {
  display: flex;
  align-items: center;
  width: 100%;
  height: 1.4rem;
  background: #F7F7F7;
  border-radius: 0.2rem;
  padding: 0.4rem;
  border-bottom: none;
  transition: all 0.3s ease;
}

.news-item:hover {
  box-shadow: 0 0.05rem 0.15rem rgba(0, 0, 0, 0.05);
  transform: translateY(-0.02rem);
}

.news-content {
  flex: 1;
}

.news-title {
  font-size: 0.24rem;
  font-weight: 400;
  color: #111;
  margin-bottom: 0.1rem;
}

.news-excerpt {
  font-size: 0.14rem;
  color: #666666;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 0.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.date-arrow-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.news-date {
  font-size: 0.18rem;
  color: #999999;
  margin-right: auto;
  font-weight: 300;
  line-height: 0.34rem;
}

.news-arrow {
  font-size: 0.16rem;
  color: #999999;
  margin-top: 0;
  line-height: 0.34rem;
  align-self: center;
  transition: color 0.3s ease;
  transform: rotate(-30deg);
}

.news-item:hover .news-arrow {
  color: #333333;
}

/* 關於我們頁面樣式 */
.travel-detail {
  padding: 1rem 0;
  background-color: #ffffff;
}

.about-content {
  text-align: center;
}

.about-main-title {
  font-size: 0.48rem;
  font-weight: bold;
  color: #333333;
  margin-bottom: 0.2rem;
}

.about-subtitle {
  font-size: 0.2rem;
  color: #666666;
  margin-bottom: 0.5rem;
  font-weight: normal;
}

.about-mission {
  font-size: 0.16rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.about-text {
  font-size: 0.16rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: left;
}

.about-edit-note {
  font-size: 0.14rem;
  color: #999999;
  font-style: italic;
  margin-top: 2rem;
}

.travel-listbanner .content-desc>p {
  font-weight: 400;
  font-size: 0.16rem;
  color: #FFFFFF;
  line-height: 0.32rem;
  opacity: 0.8;
  text-align: center;
  padding-top: 0.19rem;
}

/* travel-list 頁面樣式 */
.travel-list {
  padding: 0.5rem 0;
}

.travel-list-container {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
}

.travel-list-sidebar {
  flex: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}


.travel-list-label {
  font-size: 0.24rem;
  color: #111111;
  font-weight: 300;
  margin-bottom: 0.33rem;
}

.travel-list-select {
  position: relative;
}

.travel-list-select select {
  width: 100%;
  padding: 0.15rem 0.3rem 0.15rem 0.2rem;
  border: 0.01rem solid #D2D2D2;
  border-radius: 0.1rem;
  background: #fff;
  font-size: 0.14rem;
  color: #111111;
  appearance: none;
  cursor: pointer;
}

.travel-list-select .select-arrow {
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 0.12rem;
  color: #666;
}

.travel-list-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.travel-list-item {
  display: flex;
  gap: 0.3rem;
  overflow: hidden;
  transition: 0.3s;
  padding-bottom: 0.3rem;
  border-bottom: 0.01rem solid #DCDCDC;
}

.travel-list-item:hover {
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.15);
}

.travel-list-item-img {
  flex: 0 0 3.3rem;
  height: 2.78rem;
  border-radius: 0.2rem;
  overflow: hidden;
}

.travel-list-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.travel-list-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.travel-list-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
  margin-bottom: 0.1rem;
}

.travel-tag {
  padding: 0.07rem 0.08rem;
  font-weight: 400;
  font-size: 0.14rem;
  color: #111111;
  background: #FFFFFF;
  border-radius: 0.05rem;
  border: 0.01rem solid #000000;
}

.travel-list-title {
  font-size: 0.24rem;
  font-weight: 400;
  color: #111111;
}

.travel-list-desc {
  font-size: 0.16rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.travel-list-meta {
  gap: 0.3rem;
  font-weight: 400;
  font-size: 0.14rem;
  color: #999;
}

.travel-list-location,
.travel-list-date {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-weight: 400;
  color: #333333;
}

.travel-list-meta-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.14rem;
}

/*分頁*/
.page {
  height: auto;
  margin: 0 0;
  margin-top: 0.14rem;
  margin-bottom: 0.9rem;
}

.page a {
  text-align: center;
  min-width: 0.32rem;
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  line-height: 0.32rem;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 0rem;
  font-size: 0.14rem;
  color: #333;
  padding: 0.1rem 0.2rem;
}

.page a.prev,
.page a.next {
  width: 0.32rem;
}

.page a.prev {
  background: #ffffff url(../img/left-img.png) no-repeat center;
}

.page a.next {
  background: #ffffff url(../img/right-img.png) no-repeat center;
}

.page input {
  height: 0.32rem;
  line-height: 0.32rem;
  border: 1px solid #cccccc;
  width: 0.5rem;
  border-radius: 2px;
  text-align: center;
  box-sizing: border-box;
}

.page a:hover,
.page a.active {
  background: #000;
  border: 1px solid #000;
  color: #ffffff;
}

.page a.prev:hover {
  background: #00a0e9 url(../img/left-img.png) no-repeat center;
}

.page a.next:hover {
  background: #00a0e9 url(../img/right-img.png) no-repeat center;
}

.page span {
  text-align: center;
  color: #00a0e9;
  font-size: 0.14rem;
}

.page span i {
  font-style: normal;
}

.page span {
  margin: 0 2px;
  color: #666;
}

.page input {
  width: 0.32rem;
  height: 0.32rem;
  background: #ffffff;
  border: 1px solid #cccccc;
  text-align: center;
  color: #333;
  border-radius: 4px;
  outline: none;
  font-size: 0.14rem;
}

.page .tz-btn {
  width: 0.5rem;
}

.page .ml10 {
  margin-left: 10px;
}

.page button:hover {
  background-color: #000000;
  color: #ffffff;
}

/* 關於我們頁面樣式 */
.about-section {
  padding: 0.6rem 0;
  background-color: #fff;
}

.travel-detail-title {
  font-size: 0.48rem;
  text-align: center;
  margin-bottom: 0.27rem;
  font-weight: 400;
  color: #111111;
}

.travel-detail-subtitle {
  font-size: 0.16rem;
  color: #666666;
  text-align: center;
  margin-bottom: 0.35rem;
  font-weight: 300;
}

.travel-detail-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0;
  margin-bottom: 0.4rem;
}

.travel-detail-meta-left {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.travel-detail-date {
  font-size: 0.18rem;
  font-weight: 300;
  color: #999999;
}

.travel-detail-tags {
  display: flex;
  gap: 0.1rem;

}

.travel-detail-tags a {
  font-size: 0.14rem;
  padding: 0.06rem 0.12rem;
  transition: 0.3s;
  font-weight: 500;
  color: #333333;
  background: #FFFFFF;
  border-radius: 0.05rem;
  border: 0.01rem solid #313131;
}

.travel-detail-tags a:hover {
  background: #f5f5f5;
  color: #333;
}

.travel-detail-share {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.travel-detail-share span {
  font-size: 0.16rem;
  margin-left: 0.24rem;
  font-weight: 500;
  color: #999999;
}

.travel-detail-share a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.travel-detail-share a img {
  width: 50%;
  object-fit: contain;
}

.travel-detail-gallery {
  margin-bottom: 0.6rem;
  position: relative;
}

.travel-detail-gallery .swiper {
  width: 70%;
  height: 5.63rem;
  border-radius: 0.2rem;
  overflow: hidden;
}

.travel-detail-gallery .swiper-slide {
  position: relative;
}

.travel-detail-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.travel-detail-gallery .swiper-button-prev,
.travel-detail-gallery .swiper-rtl .swiper-button-next {
  width: 0.44rem;
  height: 0.66rem;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
  border-radius: 0.1rem;
  left: 0.2rem;
  right: auto;
}

.travel-detail-gallery .swiper-button-next,
.travel-detail-gallery .swiper-rtl .swiper-button-prev {
  width: 0.44rem;
  height: 0.66rem;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
  border-radius: 0.1rem;
  right: 0.2rem;
  left: auto;
}

.travel-detail-gallery .swiper-button-next:after,
.travel-detail-gallery .swiper-rtl .swiper-button-prev:after {
  font-size: 0.16rem;
  color: #fff;
}

.travel-detail-gallery .swiper-button-prev:after,
.travel-detail-gallery .swiper-rtl .swiper-button-next:after {
  font-size: 0.16rem;
  color: #fff;
}

.travel-detail-content {
  font-weight: 400;
  font-size: 0.16rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 0.6rem;
}

.travel-detail-content p {
  margin-bottom: 0.3rem;
}

.travel-detail-content h3 {
  font-weight: 400;
  font-size: 0.24rem;
  color: #333;
  margin: 0.4rem 0 0.2rem 0;
}

.travel-detail-nav {
  padding-top: 0.4rem;
  border-top: 0.01rem solid #ddd;
}

.travel-detail-nav-item {
  flex: 1;
  display: flex;
  gap: 0.1rem;
}

.travel-detail-nav-item .nav-label {
  font-size: 0.18rem;
  margin-bottom: 0.1rem;
  font-weight: 500;
  color: #333333;
}

.travel-detail-nav-item a {
  font-size: 0.18rem;
  margin-bottom: 0.1rem;
  font-weight: 500;
  color: #333333;
}

.travel-detail-nav-item a:hover {
  color: #00a0e9;
}

.travel-detail-next {
  text-align: right;
}

/* travel-product 產品列表頁樣式 */
.travel-list-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.2rem;
}

.travel-list-checkboxes label {
  display: flex;
  align-items: center;
  font-size: 0.14rem;
  color: #111111;
  font-weight: 400;
  cursor: pointer;
}

.travel-list-checkboxes input[type="checkbox"] {
  margin-right: 0.1rem;
  width: 0.16rem;
  height: 0.16rem;
  cursor: pointer;
}

.travel-product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
  padding-bottom: 0.2rem;
  border-bottom: 0.01rem solid #ddd;
}

.travel-product-count {
  font-size: 0.24rem;
  font-weight: 300;
  color: #111111;
}

.travel-product-sort {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.sort-item {
  font-size: 0.14rem;
  color: #333333;
  padding: 0.05rem 0.15rem;
  transition: 0.3s;
  font-weight: 300;
}

.sort-item.active {
  color: #F39800;
}

.sort-item:hover {
  color: #F39800;
}

.sort-price {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: 0.2rem;
  font-size: 0.14rem;
  color: #666;
}

.price-input-group {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.price-input {
  width: 0.8rem;
  padding: 0.05rem 0.1rem;
  border: 0.01rem solid #ddd;
  border-radius: 0.05rem;
  font-size: 0.12rem;
  color: #333;
  background: #fff;
  outline: none;
}

.price-input::placeholder {
  color: #999;
}

.price-separator {
  color: #666;
  font-size: 0.14rem;
  margin: 0 0.05rem;
}

.travel-product-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.travel-product-item {
  display: flex;
  gap: 0.3rem;
  padding-bottom: 0.3rem;
  border-bottom: 0.01rem solid #DCDCDC;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}

.travel-product-item:hover {
  background: #f9f9f9;
  border-radius: 0.1rem;
}

.travel-product-img {
  flex: 0 0 3.3rem;
  height: 2.78rem;
  border-radius: 0.2rem;
  overflow: hidden;
}

.travel-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.travel-product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.travel-product-info img,
.travel-list-item-info img,
.center-order-delete img {
  width: 0.16rem;
}

.travel-product-rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.travel-product-detail .rating-score {
  font-weight: 500;
  font-size: 0.24rem;
  color: #000000;
  line-height: 0.14rem;
}

.sales-info,
.reviews-info {
  font-size: 0.14rem;
  color: #333;
}

.travel-product-price {
  display: flex;
  align-items: baseline;
  gap: 0.02rem;
}

.price-symbol {
  font-size: 0.16rem;
  color: #F39800;
  font-weight: 400;
  line-height: 1;
}

.price-amount {
  font-size: 0.24rem;
  color: #F39800;
  font-weight: 400;
  line-height: 1;
}

/* travel-product-detail 產品詳情頁樣式 */
.travel-product-detail {
  padding: 0.4rem 0;
  background-color: #fff;
  position: relative;
}

.product-detail-sidebar {
  position: absolute;
  top: -0.1rem;
  right: 0%;
  width: 25%;
}

.product-detail-container .products-info {
  background: #F7F7F7;
  border-radius: 0.2rem 0 0 0.2rem;
  padding: 0.2rem 0 0.3rem 0.2rem;
}

.product-detail-container {
  gap: 0.4rem;
  align-items: flex-start;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.product-detail-main {
  flex: 1;
  min-width: 0;
  width: 75%;
  overflow: hidden;

}

.product-detail-title {
  font-size: 0.36rem;
  margin-bottom: 0.2rem;
  font-weight: 400;
  color: #111111;
}

.product-detail-desc {
  font-size: 0.16rem;
  color: #666;
  margin-bottom: 0.3rem;
  font-weight: 300;
}

.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.2rem;
}

.collect-btn {
  border: 0.01rem solid #000;
  border-radius: 0.05rem;
  background: #F7F7F7;
  color: #111;
  font-size: 0.14rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.05rem;
}

.collect-btn img {
  width: 0.14rem;
  height: 0.14rem;
}

.collect-btn:hover {
  background: #f5f5f5;
}

.product-detail-meta {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.2rem;
}

.product-location,
.product-duration {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-size: 0.14rem;
  color: #333;
}

.product-detail-share {
  display: flex;
  align-items: center;
  margin-bottom: 0.3rem;
}

.product-detail-share span {
  font-size: 0.14rem;
  color: #999;
  margin-right: 0.1rem;
}

.product-detail-share a {
  display: flex;
  align-items: center;
}

.product-detail-share a img {
  width: 50%;
  object-fit: contain;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
  margin-bottom: 0.3rem;
}

.feature-tag {
  padding: 0.01rem 0.08rem;
  background: #fff;
  border-radius: 0.05rem;
  font-size: 0.14rem;
  color: #111;
  border: 0.01rem solid #000;
}

.product-gallery {
  margin-bottom: 0.4rem;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.product-gallery .swiper {
  width: 85%;
  height: 1.48rem;
  overflow: hidden;
}

.product-gallery .swiper-wrapper {
  display: flex;
  width: 100%;
}

.product-gallery .swiper-slide {
  height: 1.48rem;
  border-radius: 0.1rem;
  overflow: hidden;
  flex-shrink: 0;
  text-align: center;
}


.product-gallery .swiper-slide img {
  width: 1.8rem;
  height: 100%;
  object-fit: cover;
}

.product-gallery .swiper-button-prev,
.product-gallery .swiper-button-next {
  color: #fff;
  width: 0.44rem;
  height: 0.66rem;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
  border-radius: 0.1rem;
}

.product-gallery .swiper-button-prev:after,
.product-gallery .swiper-button-next:after {
  font-size: 0.12rem;
}

.product-tabs {
  display: flex;
  gap: 0.2rem;
  border-bottom: 0.02rem solid #ddd;
  background: #F7F7F7;
  margin-top: 0.3rem;
}

.tab-item {
  padding: 0.15rem 0.3rem;
  font-size: 0.16rem;
  color: #666;
  text-decoration: none;
  border-bottom: 0.02rem solid transparent;
  margin-bottom: -0.02rem;
  transition: 0.3s;
}

.tab-item.active {
  color: #333;
  border-bottom-color: #333;
  font-weight: 500;
}

.tab-item:hover {
  color: #333;
}

.tab-panel {
  margin-bottom: 0.48rem;
}

.tab-title {
  font-size: 0.24rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.3rem;
  padding-left: 0.2rem;
  position: relative;
}

.tab-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.04rem;
  height: 0.24rem;
  background: #1B1B1B;
}

.product-intro-image {
  width: 9.5rem;
}

.product-intro-image img {
  width: 100%;
  height: auto;
}

/* 注意事項樣式 */
.notes-section-title {
  margin: 0.3rem 0 0.2rem;
  font-weight: bold;
  font-size: 0.18rem;
  color: #000000;
}

#notes img {
  width: 100%;
  height: auto;
}

/* 預訂須知內容樣式 */
.notes-content {
  margin-bottom: 0.2rem;
  font-size: 0.14rem;
  line-height: 1.5;
}

.notes-content h4 {
  font-weight: 500;
  font-size: 0.14rem;
  color: #FF7700;
}

.notes-content p {
  font-weight: 500;
  font-size: 0.14rem;
  color: #333333;
  padding-bottom: 0.18rem;
  line-height: 0.24rem;
}

/* 旅行行程樣式 */
.itinerary-list {
  margin-top: 0.2rem;
}

.itinerary-item {
  margin-bottom: 0.2rem;
  border-radius: 0.04rem;
  border: 0.01rem solid #e9ecef;
  overflow: hidden;
  background-color: white;
}

.itinerary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.17rem;
  background: #F7F7F7;
  color: white;
  cursor: pointer;
  position: sticky;
  top: 0;
  z-index: 10;
}



.itinerary-header.active {
  background: #F7F7F7;
}

.itinerary-day {
  width: 0.58rem;
  height: 0.26rem;
  background: #000000;
  border-radius: 0 0 0.05rem 0.05rem;
  font-weight: 500;
  font-size: 0.14rem;
  color: #FFFFFF;
  text-align: center;
  line-height: 0.26rem;
}

.itinerary-arrow {
  font-size: 0.14rem;
  color: #999;
  cursor: pointer;
  transition: transform 0.3s ease;
  transform: rotate(-30deg);
}

.itinerary-header.active .itinerary-arrow {
  transform: rotate(30deg);
}

.itinerary-desc {
  font-size: 0.16rem;
  color: #000;
  line-height: 1.5;
  margin: 0;
  padding: 0.15rem 0.2rem;
  background-color: #F7F7F7;
}

/* 展開內容 */
.itinerary-content {
  display: none;
  padding: 0.2rem;
  border-top: 0.01rem solid #E5E5E5;
  background-color: #F7F7F7;
}

.itinerary-header.active+.itinerary-desc+.itinerary-content {
  display: block;
}

.itinerary-content-title {
  font-size: 0.16rem;
  color: #000;
  margin-bottom: 0.2rem;
  padding-bottom: 0.15rem;
  border-bottom: 0.01rem solid #e9ecef;
}

/* 時間塊 */
.itinerary-time-block {
  display: flex;
  margin-bottom: 0.3rem;
}

.time-label {
  width: 0.58rem;
  background: #E5E5E5;
  border-radius: 0.05rem;
  font-weight: 500;
  font-size: 0.14rem;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.14rem 0;
}

.time-content {
  flex: 1;
}

.time-content h4 {
  font-size: 0.14rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 0.1rem 0;
}

.time-content p {
  font-size: 0.14rem;
  color: #333;
  line-height: 1.6;
  margin: 0 0 0.05rem 0;
}

/* 行程圖片 */
.itinerary-images {
  display: flex;
  gap: 0.1rem;
  margin-top: 0.1rem;
  flex-wrap: wrap;
}

.itinerary-images img {
  width: 2.71rem;
  height: auto;
  border-radius: 0.04rem;
  object-fit: cover;
}

/* 評價部分樣式 */
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}

.reviews-title-container {
  display: flex;
  align-items: center;
  padding-left: 0.15rem;
  position: relative;
}



.reviews-header .tab-title {
  margin: 0;
  color: #333;
}

.rating-score {
  font-size: 0.16rem;
  font-weight: normal;
  color: #666;
  margin-left: 0.1rem;
}

.reviews-count {
  font-size: 0.14rem;
  color: #999;
  display: flex;
  align-items: center;
}

.comment-icon {
  margin-right: 0.05rem;
  font-size: 0.16rem;
}


.review-item {
  padding: 0.2rem 0;
}

.review-item:last-child {
  border-bottom: none;
}

.review-user {
  display: flex;
  margin-bottom: 0.15rem;
}

.user-avatar {
  width: 0.2rem;
  height: 0.2rem;
  margin-right: 0.15rem;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.user-info {
  flex: 1;
}

.review-item .user-name {
  margin-bottom: 0.03rem;
  font-weight: 500;
  font-size: 0.18rem;
  color: #000000;
}

.review-item .review-time {
  font-size: 0.14rem;
  color: #999;
  font-weight: 500;
}

.review-item .review-content {
  margin-left: 0.35rem;


}

.review-item .review-content p {
  font-size: 0.14rem;
  line-height: 1.5;
  margin-bottom: 0.1rem;
  font-weight: 500;
  color: #333333;
}

.review-item .review-rating {
  color: #FF9C00;
  font-size: 0.16rem;
}

.review-form .star.filled {
  color: #FF9C00;
}

.review-form .star {
  color: #BFBFBF;
  cursor: pointer;
}

/* 評論表單樣式 */
.review-form {
  padding: 0.3rem;
  border-radius: 0.04rem;
}

.review-form h3 {
  font-size: 0.18rem;
  color: #333;
  margin-bottom: 0.2rem;
}

.form-group {
  margin-bottom: 0.2rem;
}

.form-row {
  display: flex;
  gap: 0.2rem;
}

.form-row .form-group {
  margin-bottom: 0;

}

.review-form .form-pingjia {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 2.4rem;
  height: 0.38rem;
  background: #F7F7F7;
  border-radius: 0.05rem;
}

.review-form .form-pingjia label {
  font-weight: 400;
  font-size: 0.14rem;
  color: #666666;
}

.review-form .form-group input {
  width: 2.38rem !important;
}

.form-group label {
  display: block;
  font-size: 0.14rem;
  color: #333;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.1rem;
  font-size: 0.14rem;
  border: 0.01rem solid #ddd;
  border-radius: 0.04rem;
  box-sizing: border-box;
  font-weight: 400;
  color: #666666;
}

.form-group textarea {
  resize: vertical;
}

/* 登錄彈窗樣式 */
.login-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.login-modal.active {
  display: flex;
}

.login-modal-content {
  background-color: white;
  width: 4rem;
  padding: 0.3rem;
  border-radius: 0.1rem;
  position: relative;
}

.login-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.2rem;
}

.login-modal-title {
  font-size: 0.24rem;
  font-weight: 500;
  color: #222;
}

.login-modal-close {
  background: none;
  border: none;
  font-size: 0.4rem;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 0.3rem;
  height: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-modal-close:hover {
  color: #333;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.login-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.login-form-group input {
  width: 100%;
  padding: 0.15rem;
  font-size: 0.14rem;
  border: 0.01rem solid #7D7D7D;
  border-radius: 0.04rem;
  box-sizing: border-box;
  color: #666;
}

.login-remember {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.1rem 0;
}

.login-remember-checkbox {
  display: flex;
  align-items: center;
  gap: 0.05rem;
}

.login-remember-checkbox label {
  font-size: 0.14rem;
  color: #666;
  cursor: pointer;
}

.login-forgot {
  font-size: 0.14rem;
  color: #666;
  text-decoration: none;
}

.login-forgot:hover {
  text-decoration: underline;
}

.login-btn-primary {
  width: 100%;
  padding: 0.15rem;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 0.04rem;
  font-size: 0.16rem;
  cursor: pointer;
  margin: 0.1rem 0;
}

.login-btn-primary:hover {
  background-color: #555;
}

.login-btn-secondary {
  width: 100%;
  padding: 0.15rem;
  background-color: white;
  color: #000;
  border: 0.01rem solid #ddd;
  border-radius: 0.04rem;
  font-size: 0.16rem;
  cursor: pointer;
}

.login-btn-secondary:hover {
  background-color: #f5f5f5;
}

/* 註冊彈窗樣式 */
.register-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.register-modal.active {
  display: flex;
}

.register-modal-content {
  background-color: white;
  width: 4rem;
  padding: 0.3rem;
  border-radius: 0.1rem;
  position: relative;
}

.register-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.2rem;
}

.register-modal-title {
  font-size: 0.24rem;
  font-weight: 500;
  color: #222;
}

.register-modal-close {
  background: none;
  border: none;
  font-size: 0.4rem;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 0.3rem;
  height: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-modal-close:hover {
  color: #333;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.register-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.register-form-group input {
  width: 100%;
  padding: 0.15rem;
  font-size: 0.14rem;
  border: 0.01rem solid #7D7D7D;
  border-radius: 0.04rem;
  box-sizing: border-box;
  color: #666;
}

.register-code-group {
  display: flex;
  gap: 0.1rem;
  align-items: center;
}

.register-code-group input {
  flex: 1;
  padding: 0.15rem;
  font-size: 0.14rem;
  border: 0.01rem solid #7D7D7D;
  border-radius: 0.04rem;
  box-sizing: border-box;
  color: #666;
}

.register-code-btn {
  padding: 0.15rem 0.2rem;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 0.04rem;
  font-size: 0.14rem;
  cursor: pointer;
  white-space: nowrap;
}

.register-code-btn:hover {
  background-color: #555;
}

.register-code-btn:disabled {
  background-color: #999;
  cursor: not-allowed;
}

.register-btn-primary {
  width: 100%;
  padding: 0.15rem;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 0.04rem;
  font-size: 0.16rem;
  cursor: pointer;
  margin: 0.1rem 0;
}

.register-btn-primary:hover {
  background-color: #555;
}

.register-btn-secondary {
  width: 100%;
  padding: 0.15rem;
  background-color: white;
  color: #000;
  border: 0.01rem solid #ddd;
  border-radius: 0.04rem;
  font-size: 0.16rem;
  cursor: pointer;
}

.register-btn-secondary:hover {
  background-color: #f5f5f5;
}

/* 忘記密碼彈窗樣式 */
.forgot-password-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.forgot-password-modal.active {
  display: flex;
}

.forgot-password-modal-content {
  background-color: white;
  width: 4rem;
  padding: 0.3rem;
  border-radius: 0.1rem;
  position: relative;
}

.forgot-password-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.2rem;
}

.forgot-password-modal-title {
  font-size: 0.24rem;
  font-weight: 500;
  color: #222;
}

.forgot-password-modal-close {
  background: none;
  border: none;
  font-size: 0.4rem;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 0.3rem;
  height: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.forgot-password-modal-close:hover {
  color: #333;
}

.forgot-password-form {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.forgot-password-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.forgot-password-form-group input {
  width: 100%;
  padding: 0.15rem;
  font-size: 0.14rem;
  border: 0.01rem solid #7D7D7D;
  border-radius: 0.04rem;
  box-sizing: border-box;
  color: #666;
}

.forgot-password-code-group {
  display: flex;
  gap: 0.1rem;
  align-items: center;
}

.forgot-password-code-group input {
  flex: 1;
  padding: 0.15rem;
  font-size: 0.14rem;
  border: 0.01rem solid #7D7D7D;
  border-radius: 0.04rem;
  box-sizing: border-box;
  color: #666;
}

.forgot-password-code-btn {
  padding: 0.15rem 0.2rem;
  background-color: white;
  color: #000;
  border: 0.01rem solid #7D7D7D;
  border-radius: 0.04rem;
  font-size: 0.14rem;
  cursor: pointer;
  white-space: nowrap;
}

.forgot-password-code-btn:hover {
  background-color: #f5f5f5;
}

.forgot-password-code-btn:disabled {
  background-color: #999;
  cursor: not-allowed;
  color: #666;
}

.forgot-password-btn-primary {
  width: 100%;
  padding: 0.15rem;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 0.04rem;
  font-size: 0.16rem;
  cursor: pointer;
  margin: 0.1rem 0;
}

.forgot-password-btn-primary:hover {
  background-color: #555;
}

.forgot-password-btn-secondary {
  width: 100%;
  padding: 0.15rem;
  background-color: white;
  color: #000;
  border: 0.01rem solid #ddd;
  border-radius: 0.04rem;
  font-size: 0.16rem;
  cursor: pointer;
}

.forgot-password-btn-secondary:hover {
  background-color: #f5f5f5;
}

/* 設置密碼彈框樣式 */
.set-password-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.set-password-modal.active {
  display: flex;
}

.set-password-modal-content {
  background-color: white;
  width: 4rem;
  padding: 0.3rem;
  border-radius: 0.1rem;
  position: relative;
}

.set-password-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.2rem;
}

.set-password-modal-title {
  font-size: 0.24rem;
  font-weight: 500;
  color: #222;
}

.set-password-modal-close {
  background: none;
  border: none;
  font-size: 0.4rem;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 0.3rem;
  height: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.set-password-modal-close:hover {
  color: #333;
}

.email-verify-success {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin: 0.2rem 0;
  padding: 0.1rem;
  background-color: #f0f9eb;
  border: 0.01rem solid #d9f7be;
  border-radius: 0.04rem;
  color: #52c41a;
  font-size: 0.14rem;
}

.email-verify-success .success-icon {
  width: 0.2rem;
  height: 0.2rem;
  background-color: #52c41a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.12rem;
  font-weight: bold;
}

.set-password-form {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.set-password-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.set-password-form-group input {
  width: 100%;
  padding: 0.15rem;
  font-size: 0.14rem;
  border: 0.01rem solid #7D7D7D;
  border-radius: 0.04rem;
  box-sizing: border-box;
  color: #666;
}

.set-password-btn-primary {
  width: 100%;
  padding: 0.15rem;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 0.04rem;
  font-size: 0.16rem;
  cursor: pointer;
  margin: 0.1rem 0;
}

.set-password-btn-primary:hover {
  background-color: #555;
}

.set-password-btn-secondary {
  width: 100%;
  padding: 0.15rem;
  background-color: white;
  color: #000;
  border: 0.01rem solid #ddd;
  border-radius: 0.04rem;
  font-size: 0.16rem;
  cursor: pointer;
}

.set-password-btn-secondary:hover {
  background-color: #f5f5f5;
}

.rating-input {
  display: flex;
  gap: 0.05rem;
}

.btn-submit {
  background: #000000;
  color: white;
  border: none;
  padding: 0.1rem 0.87rem;
  font-size: 0.16rem;
  border-radius: 0.04rem;
  cursor: pointer;
  margin-top: 0.2rem;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-submit:hover {
  background-color: #2B2B2B;
}

/* 右側預訂面板 */

.booking-panel {
  background: #000;
  padding: 0.15rem;
  border-radius: 0.2rem;
  color: #fff;
}

.booking-title {
  font-size: 0.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.booking-field {
  margin-bottom: 0.2rem;
}

.booking-field label {
  display: block;
  font-size: 0.14rem;
  color: #fff;
  margin-bottom: 0.1rem;
}

.booking-select,
.booking-date-input {
  width: 100%;
  padding: 0.1rem;
  border: 0.01rem solid #333;
  border-radius: 0.05rem;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.14rem;
  cursor: pointer;
}

.booking-field .flatpickr-calendar {
  position: relative !important;
  margin-top: 0.1rem;
}

.booking-subtotal {
  display: flex;
  align-items: center;
  padding: 0.2rem 0;
  border-top: 0.01rem solid #333;
  border-bottom: 0.01rem solid #333;
  gap: 0.14rem;
}

.booking-subtotal span:first-child {
  font-size: 0.16rem;
  color: #fff;
}

.subtotal-price {
  font-size: 0.24rem;
  font-weight: 700;
  color: #F39800;
}

.booking-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.btn-book,
.btn-cart {
  width: 100%;
  padding: 0.11rem;
  border: none;
  border-radius: 0.1rem;
  font-size: 0.16rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn-book {
  background: #fff;
  color: #000;
}

.btn-book:hover {
  background: #e68900;
}

.btn-cart {
  background: #333;
  color: #fff;
  border: 0.01rem solid #555;
}

.btn-cart:hover {
  background: #444;
}

.btn-or {
  text-align: center;
  font-size: 0.14rem;
  color: #999;
}

/* 日曆樣式覆蓋 - 白底黑字 */
.flatpickr-calendar {
  background: #fff !important;
  color: #000 !important;
  border: 0.01rem solid #ddd !important;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1) !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

.flatpickr-innerContainer,
.flatpickr-rContainer,
.flatpickr-days,
.dayContainer,
.flatpickr-weekdays,
.flatpickr-months {
  min-width: 0 !important;
  box-sizing: border-box !important;
}

.flatpickr-day {
  color: #000 !important;
  border-radius: 0 !important;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 0.04rem;
  padding-bottom: 0.04rem;
  box-sizing: border-box;
  width: 14.2857143% !important;
  flex: 0 0 14.2857143% !important;
  max-width: 14.2857143% !important;
  font-size: 0.16rem !important;
}

/* 選中狀態背景僅覆蓋日期數字區域，不遮擋價格 */
.flatpickr-day.selected {
  background: transparent !important;
  color: #F39800 !important;
  z-index: 1;
}


.flatpickr-day .day-price {
  position: relative;
  z-index: 2;
}

.flatpickr-day.selected .day-price {
  color: #666 !important;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  background-color: transparent !important;
}


.flatpickr-day.flatpickr-disabled {
  color: #ccc !important;
}

.flatpickr-months {
  background: #fff !important;
  color: #000 !important;
  border-bottom: 0.01rem solid #ddd !important;
  position: relative;
  overflow: hidden;
}

.flatpickr-current-month {
  color: #000 !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.12rem !important;
  white-space: nowrap !important;
}

/* 年份在前，月份在後：2026年 三月（年與月份之間留足間距，避免重合） */
.flatpickr-current-month .numInputWrapper {
  order: 1 !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  flex: 0 0 auto !important;
  gap: 0 !important;
  margin-right: 0.06rem !important;
}

.flatpickr-current-month .numInputWrapper .cur-year {
  flex-shrink: 0 !important;
  min-width: 4ch !important;
}

.flatpickr-current-month .numInputWrapper::after {
  content: 'Y';
  margin-left: 0.04rem;
  margin-right: 0.15rem;
  flex-shrink: 0;
}

.flatpickr-current-month .cur-month,
.flatpickr-current-month .flatpickr-monthDropdown-months {
  order: 2 !important;
  margin-left: 0.12rem !important;
  padding-left: 0.06rem !important;
  flex: 0 0 auto !important;
  white-space: nowrap !important;
}

/* 確保年份輸入框正確顯示 */
.flatpickr-current-month .cur-year {
  position: static !important;
  margin-right: 0 !important;
}

.flatpickr-current-month .cur-month {
  position: static !important;
}

.flatpickr-prev-month,
.flatpickr-next-month {
  color: #000 !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  background: #f5f5f5 !important;
}

.flatpickr-weekdays {
  background: #fff !important;
}

.flatpickr-weekday {
  color: #000 !important;
  font-weight: 500 !important;
}

/* 週末樣式 */
.flatpickr-weekday:nth-child(1),
.flatpickr-weekday:nth-child(7) {
  color: #0066cc !important;
}

.flatpickr-day.flatpickr-weekend {
  color: #0066cc !important;
}

.flatpickr-day.flatpickr-weekend.selected {
  color: #fff !important;
}

/* 僅顯示當前月份日期（隱藏上/下月日期） */
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  visibility: hidden !important;
  pointer-events: none !important;
}

/* 日期價格顯示 */
.day-price {
  font-size: 0.1rem;
  color: #666;
  margin-top: 0.02rem;
  line-height: 1;
}

.flatpickr-day.selected .day-price {
  color: #fff !important;
}

.booking {
  display: flex;
  justify-content: space-between;
}

.booking .booking-field {
  display: flex;
  align-items: center;
  gap: 0.2rem;

}

.booking .booking-field label {
  flex-shrink: 0;
  margin: 0
}

.product-tab-content {
  padding-top: 0.32rem;
}

.product-tab-content .line {
  width: 100%;
  height: 0.02rem;
  background: #D2D2D2;
  border-radius: 0.01rem;
  margin-top: 0.5rem;
}

/* ========== 個人管理中心頁面樣式 ========== */

/* 頭部樣式 */
.center-header {
  background-color: #F7F7F7;
}

.center-header-wrap {
  width: 12rem;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.center-header-wrap .center-logo {
  display: flex;
  align-items: center;
}

.center-header-wrap .center-logo .line {
  width: 0.02rem;
  height: 0.21rem;
  background: #A0A0A0;
  margin-left: 0.45rem;
  margin-right: 0.18rem;
}

.center-header-wrap .center-logo img {
  width: 0.8rem;
  height: auto;
  filter: brightness(0);
}

.center-header-wrap .center-title {
  font-size: 0.24rem;
  color: #333;
  margin: 0;
  font-weight: 400;
}

.center-header-wrap .center-header-right {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.center-header-wrap .center-notification {
  position: relative;
  width: 0.18rem;
  height: 0.2rem;
  margin-right: 0.1rem;
}

.center-header-wrap .center-notification img {
  width: 100%;
  height: 100%;
  filter: brightness(0);
}

.center-header-wrap .center-notification-badge {
  position: absolute;
  top: -0.05rem;
  right: -0.05rem;
  width: 0.16rem;
  height: 0.16rem;
  background: #52C41A;
  border-radius: 50%;
  color: #fff;
  font-size: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.center-header-btn1 {
  padding: 0.08rem 0.2rem;
  font-size: 0.14rem;
  color: #fff;
  text-decoration: none;
  border: 0.01rem solid #000;
  border-radius: 0.05rem;
  transition: all 0.3s;
  background: #000000;
}

.center-header-btn2 {
  padding: 0.08rem 0.2rem;
  font-size: 0.14rem;
  color: #000;
  text-decoration: none;
  border: 0.01rem solid #000;
  border-radius: 0.05rem;
  transition: all 0.3s;
  background: #fff;
}

/* 用戶賬戶信息 */
.center-user-info {
  margin-top: 1.2rem;
}

.center-user-wrap {
  width: 12rem;
  margin: 0 auto;
  background: url('../img/center-headerbg.png') no-repeat center;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  background-size: 100% 100%;
  height: 0.8rem;
  padding: 0.16rem 0.26rem;
}

.center-user-icon {
  width: 0.5rem;
  height: 0.5rem;
  background: #EEEEEE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-user-icon img {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: cover;
}

.center-user-email {
  font-size: 0.18rem;
  color: #fff;
  font-weight: 400;
}



.center-main-nav-wrap {
  width: 12rem;
  margin: 0 auto;
  padding: 0 0.2rem;
  display: flex;
  gap: 0.4rem;
}

.center-nav-tab {
  padding: 0.3rem 0 0.1rem 0;
  font-size: 0.16rem;
  color: #333333;
  text-decoration: none;
  border-bottom: 0.02rem solid transparent;
  transition: all 0.3s;
  margin-bottom: -0.01rem;
  font-weight: 500;
}

.center-nav-tab.active {
  border-bottom-color: #333;
}

.center-nav-tab:hover {
  color: #333;
}

/* 主要內容區 */
.center-content {
  min-height: calc(100vh - 2.4rem);
  padding: 0.3rem 0;
}

.center-content-wrap {
  width: 12rem;
  margin: 0 auto;
  padding: 0.26rem 0.2rem;
  display: flex;
  background: #fff;
  gap: 0.26rem;
  border-radius: 0.2rem;
}

/* 左側邊欄 */
.center-sidebar {
  width: 1.8rem;
  background: #fff;
  border-radius: 0.08rem;
  height: fit-content;
}

.center-sidebar-title {
  font-size: 0.18rem;
  font-weight: 500;
  color: #333;
  padding: 0 0.2rem;
  margin-bottom: 0.2rem;
  position: relative;
}

.center-sidebar-title::before {
  content: '';
  display: block;
  width: 0.06rem;
  height: 0.24rem;
  background: #000000;
  border-radius: 0.03rem;
  position: absolute;
  top: 0.03rem;
  left: 0;
}

.center-sidebar-menu {
  background: #FFFFFF;
  border-radius: 0.18rem;
  padding: 0.1rem 0;
  border: 0.01rem solid #D2D2D2;
}



.center-sidebar-item a {
  display: block;
  width: 90%;
  padding: 0.07rem 0.08rem;
  font-size: 0.14rem;
  transition: all 0.3s;
  text-align: center;
  margin: auto;
  font-weight: 500;
  color: #000000;
}

.center-sidebar-item.active a {
  background: #EEEEEE;
  border-radius: 0.14rem;
}

.center-sidebar-item a:hover {
  background: #F5F5F5;
  border-radius: 0.14rem;
}

/* 右側訂單列表 */
.center-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-left: 0.01rem solid #E5E5E5;
  padding-left: 0.26rem;
}

.center-order-item {
  background: #fff;
  border-radius: 0.1rem;
  padding: 0.15rem 0.2rem;
  margin-bottom: 0.2rem;
  border: 0.01rem solid #E5E5E5;
}

.center-order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.15rem;
}

.center-order-header-left {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.center-order-id {
  font-size: 0.14rem;
  color: #666;
  font-weight: 400;
  line-height: 0.32rem;
}

.center-order-delete {
  width: 0.4rem;
  height: 0.4rem;
  cursor: pointer;
  background-color: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-order-delete {
  width: 0.22rem;
  height: 0.22rem;
  object-fit: cover;
}


.center-order-body {
  display: flex;
  gap: 0.2rem;
}

.center-order-image {
  width: 1.2rem;
  height: 1.01rem;
  border-radius: 0.08rem;
  overflow: hidden;
  flex-shrink: 0;
}

.center-order-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.center-order-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.center-order-title {
  font-size: 0.16rem;
  line-height: 1.4;
  font-weight: 400;
  color: #111111;
}

.center-order-location,
.center-order-duration {
  display: flex;
  gap: 0.1rem;
  align-items: center;
}

.center-order-location img,
.center-order-duration img {
  width: 0.14rem;
  height: 0.16rem;
  object-fit: fill;
}

.center-order-details {
  display: flex;
  gap: 0.2rem;
  font-size: 0.14rem;
  color: #333;
}

.center-order-participants {
  display: flex;
  gap: 0.2rem;
  font-size: 0.14rem;
  color: #666;
}

.center-order-right {
  width: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

.center-order-bottom {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.center-order-price {
  font-size: 0.14rem;
  font-weight: 400;
  color: #666;
  flex-shrink: 0;
}

.center-order-price span {
  font-size: 0.16rem;
  color: #000;
}

.center-order-status {
  font-size: 0.14rem;
  padding: 0.05rem 0.1rem;
  flex-shrink: 0;
}

.status-pending {
  color: #FFAE00;
}

.status-paid {
  color: #38BE2A;
}

.status-completed {
  color: #111111;
}

.center-order-actions {
  display: flex;
  gap: 0.1rem;
}

.center-order-btn {
  padding: 0.09rem 0.18rem;
  font-size: 0.14rem;
  border: none;
  border-radius: 0.04rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: #333;
  color: #fff;
}

.btn-primary:hover {
  background: #555;
}

.btn-secondary {
  background: #fff;
  color: #333;
  border: 0.01rem solid #D9D9D9;
}

.btn-secondary:hover {
  background: #F5F5F5;
}

.oper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem;
}

/* 參與人數樣式 */
.center-order-participants {
  display: flex;
  gap: 0.2rem;
  align-items: center;
  font-size: 0.14rem;
  color: #333;
}

.center-order-participants span {
  font-size: 0.14rem;
  color: #333;
  font-weight: 400;
}

.center-participant-item {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.center-participant-label {
  font-size: 0.14rem;
  color: #333;
  font-weight: 400;
}

.center-participant-unit {
  font-size: 0.14rem;
  color: #333;
  font-weight: 400;
}

.center-number-input {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 0.01rem solid #D9D9D9;
  border-radius: 0.04rem;
  background: #fff;
  padding: 0 0.18rem 0 0.1rem;
  height: 0.3rem;
}

.center-number-field {
  width: 0.35rem;
  height: 100%;
  border: none;
  outline: none;
  text-align: center;
  font-size: 0.14rem;
  color: #333;
  background: transparent;
  padding: 0;
  -moz-appearance: textfield;
  font-weight: 400;
}

.center-number-field::-webkit-outer-spin-button,
.center-number-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.center-number-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 0.14rem;
  height: 100%;
  margin-left: 0.05rem;
}

.center-number-up,
.center-number-down {
  width: 100%;
  height: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 0.08rem;
  color: #666;
  line-height: 0.1rem;
  transition: color 0.3s;
  user-select: none;
}

.center-number-up:hover,
.center-number-down:hover {
  color: #333;
}

.center-number-up {
  border-bottom: 0.01rem solid #E5E5E5;
  padding-bottom: 0.01rem;
}

.center-number-down {
  padding-top: 0.01rem;
}

.center-number-up:active {
  color: #000;
}

.center-number-down:active {
  color: #000;
}

/* ========== 收藏夾頁面樣式 ========== */
.center-collect-item {
  background: #fff;
  border-radius: 0.1rem;
  padding: 0.2rem;
  margin-bottom: 0.2rem;
  border: 0.01rem solid #E5E5E5;
}

.center-collect-header {
  padding-bottom: 0.1rem;
}

.center-collect-time {
  font-size: 0.14rem;
  color: #666;
  font-weight: 400;
}

.center-collect-body {
  display: flex;
  gap: 0.2rem;
  align-items: flex-start;
  position: relative;
}

.center-collect-image {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.08rem;
  overflow: hidden;
  flex-shrink: 0;
}

.center-collect-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.center-collect-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.center-collect-title-row {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-bottom: 0.05rem;
}

.center-collect-title {
  font-size: 0.16rem;
  font-weight: 400;
  color: #111;
  margin: 0;
  line-height: 1.4;
}

.center-collect-tag {
  font-size: 0.12rem;
  color: #333;
  background: #E5E5E5;
  padding: 0.02rem 0.07rem;
  border-radius: 0.05rem;
  flex-shrink: 0;
}

.center-collect-metrics {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 0.1rem;
}

.center-collect-rating {
  background: #F39800;
  color: #fff;
  font-size: 0.14rem;
  font-weight: 500;
  padding: 0.03rem 0.08rem;
  border-radius: 0.04rem;
  flex-shrink: 0;
}

.center-collect-sales,
.center-collect-reviews {
  font-size: 0.14rem;
  color: #333;
  font-weight: 400;
}

.center-collect-details {
  display: flex;

  gap: 0.08rem;
}

.collect-btnrow {
  display: flex;
  justify-content: space-between;
}

.center-collect-location,
.center-collect-duration {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  font-size: 0.14rem;
  color: #333;
}

.center-collect-location img,
.center-collect-duration img {
  width: 0.14rem;
  height: 0.16rem;
  object-fit: contain;
}

.center-collect-actions {
  display: flex;
  gap: 0.1rem;
  min-width: 1.2rem;
  margin-left: auto;
  align-self: flex-end;
}

.center-collect-btn {
  padding: 0.08rem 0.15rem;
  font-size: 0.14rem;
  border: 0.01rem solid #000;
  border-radius: 0.04rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}

.center-collect-btn-cart {
  background: #000;
  color: #fff;
}

.center-collect-btn-cart:hover {
  background: #333;
}

.center-collect-btn-cancel {
  background: #fff;
  color: #000;
}

.center-collect-btn-cancel:hover {
  background: #F5F5F5;
}

/* 投訴建議表單樣式 */
.center-suggestions-form {
  width: 100%;
}

.center-suggestions-title {
  font-size: 0.18rem;
  color: #333333;
  margin-bottom: 0.37rem;
  font-weight: 500;
  position: relative;
  padding-left: 0.15rem;
}

.center-suggestions-title::before {
  position: absolute;
  content: '';
  width: 0.06rem;
  height: 0.24rem;
  background: #000000;
  border-radius: 0.03rem;
  top: 0.01rem;
  left: 0;
}

.suggestions-form-group {
  margin-bottom: 0.22rem;
}

.suggestions-form-label {
  display: block;
  font-size: 0.14rem;
  color: #666;
  margin-bottom: 0.08rem;
}

.suggestions-form-input,
.suggestions-form-select {
  width: 100%;
  height: 0.48rem;
  padding: 0 0.2rem;
  border: 0.01rem solid #E5E5E5;
  border-radius: 0.04rem;
  font-size: 0.14rem;
  box-sizing: border-box;
}

.suggestions-form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16"><path fill="%23666" d="M8 12l-6-6h12z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.2rem center;
  background-size: 0.2rem;
  padding-right: 0.5rem;
}

.suggestions-form-textarea {
  width: 100%;
  height: 1.5rem;
  padding: 0.2rem;
  border: 0.01rem solid #E5E5E5;
  border-radius: 0.04rem;
  font-size: 0.14rem;
  color: #333333;
  resize: vertical;
  min-height: 1rem;
  max-height: 3rem;
  box-sizing: border-box;
}

.suggestions-form-submit {
  width: 80%;
  height: 0.48rem;
  background: #000;
  color: #FFFFFF;
  border: none;
  border-radius: 0.04rem;
  font-size: 0.14rem;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-left: 10%;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
}

.suggestions-form-submit:hover {
  background: #555555;
}

/* 消息列表樣式 */
.center-message-list {
  margin-bottom: 2rem;
}

.center-message-item {
  background: #FFFFFF;
  padding-bottom: 0.2rem;
  border-bottom: 0.01rem solid #D2D2D2;
  margin-bottom: 0.2rem;
}

.center-message-time {
  font-size: 0.14rem;
  color: #666;
  margin-bottom: 0.1rem;
  font-weight: 400;
}

.center-message-content {
  font-size: 0.14rem;
  color: #111;
  line-height: 1.5;
  padding-left: 0.2rem;
}

.center-message-read {
  display: inline-block;
  width: 0.1rem;
  height: 0.1rem;
  background: #000;
  border-radius: 50%;
  margin-right: 0.1rem;
}

.center-message-read.unread {
  background: #CCCCCC;
}


/* 回收站卡片樣式 */
.recycle-list {
  padding-top: 0.2rem;
  width: 100%;
}

.recycle-item {
  background: #fff;
  border-radius: 0.1rem;
  padding: 0.1rem 0.2rem;
  border: 0.01rem solid #E5E5E5;
  box-shadow: 0 0.02rem 0.06rem rgba(0, 0, 0, 0.03);
  margin-bottom: 0.1rem;
}

.recycle-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.16rem;
}

.recycle-id {
  font-size: 0.14rem;
  color: #666;
  font-weight: 400;
}

.recycle-title {
  font-size: 0.18rem;
  color: #111;
  font-weight: 500;
  margin-top: 0.04rem;
}

.recycle-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.24rem;
  font-size: 0.14rem;
  color: #333;
  margin-bottom: 0.12rem;
}

.recycle-meta-item {
  display: flex;
  align-items: center;
  gap: 0.06rem;
}

.recycle-meta-item img {
  width: 0.14rem;
  height: 0.14rem;
  object-fit: contain;
}

.recycle-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.12rem;
  font-size: 0.14rem;
  color: #666;
}

.recycle-actions {
  display: flex;
  align-items: center;
  gap: 0.16rem;
}

.recycle-price {
  font-size: 0.14rem;
  color: #333;
}

.recycle-price span {
  color: #000;
  font-size: 0.18rem;
  font-weight: 600;
  margin-left: 0.04rem;
}

.recycle-btn {
  min-width: 0.8rem;
  padding: 0.06rem 0.18rem;
  border-radius: 0.05rem;
  border: 0.01rem solid #111;
  font-size: 0.14rem;
  cursor: pointer;
  background: #fff;
}

.recycle-btn.restore {
  background: #111;
  color: #fff;
}

.recycle-btn.delete {
  background: #fff;
  color: #111;
}

/* 定製旅遊訂單列表 */
.customorder-list {
  width: 100%;
  padding-top: 0.2rem;
}

.customorder-item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: #fff;
  border-radius: 0.1rem;
  border: 0.01rem solid #E5E5E5;
  padding: 0.18rem 0.22rem;
  margin-bottom: 0.12rem;
}

.customorder-main {
  flex: 1;
}

.customorder-id {
  font-size: 0.14rem;
  color: #666;
  margin-bottom: 0.08rem;
}

.customorder-title {
  font-size: 0.16rem;
  color: #111;
  margin-bottom: 0.08rem;
}

.customorder-meta {
  display: flex;
  align-items: center;
  gap: 0.24rem;
  font-size: 0.14rem;
  color: #333;
  margin-bottom: 0.06rem;
}

.customorder-meta-item {
  display: flex;
  align-items: center;
  gap: 0.06rem;
}

.customorder-meta-item img {
  width: 0.14rem;
  height: 0.14rem;
  object-fit: contain;
}

.customorder-time {
  font-size: 0.14rem;
  color: #666;
  margin-top: 0.04rem;
}

.customorder-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.12rem;
  margin-left: 0.4rem;
}

.customorder-status {
  font-size: 0.14rem;
}

.customorder-status-pending,
.customorder-status-quote {
  color: #FFAE00;
}

.customorder-status-paid {
  color: #38BE2A;
}

.customorder-status-done {
  color: #999;
}

.customorder-actions {
  display: flex;
  align-items: center;
  gap: 0.12rem;
}

.customorder-price {
  font-size: 0.14rem;
  color: #000;
  margin-right: 0.12rem;
}

.customorder-price span {
  color: #000;
}

.customorder-btn {
  min-width: 0.8rem;
  padding: 0.06rem 0.18rem;
  border-radius: 0.04rem;
  border: 0.01rem solid #111;
  font-size: 0.14rem;
  cursor: pointer;
  background: #fff;
}

.customorder-btn.primary {
  background: #111;
  color: #fff;
}

.customorder-btn.ghost {
  background: #fff;
  color: #000;
}

/* 訂單評價頁面樣式 */
.evaluate-header {
  display: flex;
  justify-content: space-between;
  color: #222222;
  font-size: 0.16rem;
  padding-bottom: 0.22rem;
}

.evaluate-wrapper {
  width: 100%;
  max-width: 8.6rem;
}

.evaluate-order-card {
  background: #fff;
  border-radius: 0.1rem;
  border: 0.01rem solid #E5E5E5;
  padding: 0.15rem 0.22rem;
  margin-bottom: 0.16rem;
}

.evaluate-order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.14rem;
  color: #666;
  margin-bottom: 0.16rem;
}

.evaluate-order-status {
  color: #333;
}

.evaluate-order-body {
  display: flex;
  gap: 0.2rem;
  align-items: flex-start;
}

.evaluate-order-image {
  width: 1.4rem;
  height: 1.0rem;
  border-radius: 0.08rem;
  overflow: hidden;
  flex-shrink: 0;
}

.evaluate-order-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evaluate-order-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.evaluate-order-title {
  font-size: 0.16rem;
  color: #111;
  font-weight: 400;
  line-height: 1.4;
}

.evaluate-order-meta {
  display: flex;
  gap: 0.16rem;
  font-size: 0.14rem;
  color: #333;
}

.evaluate-meta-item {
  display: flex;
  align-items: center;
  gap: 0.06rem;
}

.evaluate-meta-item img {
  width: 0.14rem;
  height: 0.16rem;
  object-fit: contain;
}

.evaluate-order-people {
  font-size: 0.14rem;
  color: #666;
  display: flex;
  gap: 0.24rem;
  margin-top: 0.06rem;
}

.evaluate-section {
  margin-bottom: 0.24rem;
}

.evaluate-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.14rem;
  color: #666;
  margin-bottom: 0.08rem;
}

.evaluate-label {
  font-size: 0.14rem;
  color: #333;
  margin-bottom: 0.08rem;
  display: block;
}

.evaluate-count {
  position: absolute;
  right: 0.14rem;
  bottom: 0.1rem;
  font-size: 0.12rem;
  color: #999;
}

.evaluate-textarea {
  width: 100%;
  height: 1.4rem;
  border-radius: 0.06rem;
  border: 0.01rem solid #E5E5E5;
  padding: 0.14rem;
  font-size: 0.14rem;
  resize: vertical;
  box-sizing: border-box;
  color: #333;
}

.evaluate-textarea-wrapper {
  position: relative;
}

.evaluate-upload-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.12rem;
}

.evaluate-upload-box {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.06rem;
  border: 0.01rem dashed #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAFA;
  position: relative;
  overflow: hidden;
}

.evaluate-upload-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.06rem;
}

.evaluate-upload-icon img {
  width: 0.45rem;
  height: 0.52rem;
  object-fit: contain;
  cursor: pointer;
}

.evaluate-upload-delete {
  position: absolute;
  right: 0.04rem;
  top: 0.04rem;
  width: 0.18rem;
  height: 0.18rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.12rem;
  line-height: 0.18rem;
  text-align: center;
  cursor: pointer;
}

.evaluate-input {
  width: 100%;
  height: 0.4rem;
  border-radius: 0.06rem;
  border: 0.01rem solid #E5E5E5;
  padding: 0 0.14rem;
  font-size: 0.14rem;
  box-sizing: border-box;
}

.evaluate-rating-list {
  margin-top: 0.12rem;
  margin-bottom: 0.32rem;
}

.evaluate-rating-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.14rem;
  color: #666;
  margin-bottom: 0.12rem;
  padding: 0 0.18rem;
  width: 3.2rem;
  height: 0.44rem;
  background: #F7F7F7;
  border-radius: 0.05rem;
}

.evaluate-rating-label {
  min-width: 0.6rem;
}

.evaluate-stars {
  display: flex;
  gap: 0.04rem;
}

.evaluate-star {
  font-size: 0.18rem;
  color: #D9D9D9;
}

.evaluate-star.active {
  color: #F7B500;
}

.evaluate-submit-row {
  margin-top: 0.2rem;
}

.evaluate-submit-btn {
  min-width: 1.0rem;
  padding: 0.09rem 0.28rem;
  border-radius: 0.04rem;
  border: none;
  background: #111;
  color: #fff;
  font-size: 0.14rem;
  cursor: pointer;
}

/* 待支付訂單 - 費用明細 & 旅客信息 */
.pendpay-fee-section {
  margin-top: 0.24rem;
  margin-bottom: 0.32rem;
}

.pendpay-section-title {
  font-size: 0.16rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 0.16rem;
}

.pendpay-fee-list {
  font-size: 0.14rem;
  color: #333;
  line-height: 1.8;
}

.pendpay-fee-item {
  display: flex;
  gap: 0.1rem;
}

.pendpay-fee-label {
  min-width: 2rem;
  font-size: 0.14rem;
  color: #666;
  font-weight: 400;
}

.pendpay-fee-value {
  font-size: 0.14rem;
  color: #000;
}

.pendpay-passenger-section {
  margin-bottom: 0.3rem;
}

.pendpay-passenger-card {
  border-radius: 0.08rem;
  border: 0.01rem solid #E5E5E5;
  overflow: hidden;
  margin-bottom: 0.2rem;
  background: #f2f2f2;
}

.pendpay-passenger-header {
  padding: 0.16rem 0.24rem;
  font-size: 0.14rem;
  color: #000;
}

.pendpay-passenger-title {
  font-weight: 500;
  color: #333;
}

.pendpay-passenger-tip {
  font-size: 0.14rem;
  color: #999;
}

.pendpay-passenger-body {
  background: #fff;
  padding: 0.2rem 0.24rem 0.24rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

/* 已支付訂單-旅客信息只讀展示 */
.orderpay-passenger-card .pendpay-passenger-body {
  gap: 0.14rem;
}

.orderpay-row {
  display: flex;
  gap: 0.18rem;
}

.orderpay-col {
  flex: 1;
}

.orderpay-col-empty {
  flex: 1;
  visibility: hidden;
}

.orderpay-label {
  font-size: 0.14rem;
  color: #666;
  margin-bottom: 0.06rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.orderpay-value {
  width: 100%;
  height: 0.4rem;
  border-radius: 0.06rem;
  background: #f2f2f2;
  font-size: 0.14rem;
  color: #333;
  padding: 0 0.14rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 已支付訂單 - 聯繫人信息 / 發票信息 / 訂單進度 / 底部操作 */
.orderpay-contact-section {
  margin-top: 0.4rem;
  margin-bottom: 0.32rem;
}

.orderpay-contact-tip {
  font-size: 0.12rem;
  color: #999;
  margin-bottom: 0.16rem;
}

.orderpay-contact-card {
  background: #fff;
  border-radius: 0.08rem;
  border: 0.01rem solid #E5E5E5;
  padding: 0.18rem 0.24rem;
}

.orderpay-phone-value {
  gap: 0.08rem;
}

.orderpay-phone-code {
  color: #666;
}

.orderpay-invoice-section {
  margin-bottom: 0.3rem;
}

.orderpay-invoice-value {
  font-size: 0.14rem;
  color: #333;
  margin-top: 0.08rem;
}

.orderpay-progress-section {
  margin-bottom: 0.3rem;
}

.orderpay-progress-card {
  background: #F7F7F7;
  border-radius: 0.08rem;
  padding: 0.18rem 0.24rem;
}

.orderpay-progress-step {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  font-size: 0.14rem;
  color: #666;
  padding: 0.05rem 0;
}

.orderpay-progress-dot {
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  background: #CCCCCC;
  flex-shrink: 0;
}

.orderpay-progress-step.current .orderpay-progress-dot {
  background: #000;
}

.orderpay-progress-step.current .orderpay-progress-text {
  color: #000;
  font-weight: 500;
}

.orderpay-footer-bar {
  margin-top: 0.3rem;
  padding-top: 0.2rem;
  border-top: 0.01rem solid #E5E5E5;
}

.orderpay-total {
  font-size: 0.16rem;
  color: #333;
}

.orderpay-total span {
  font-weight: 600;
}

.orderpay-actions {
  display: flex;
  align-items: center;
  gap: 0.16rem;
  margin-top: 0.26rem;
}

.orderpay-btn {
  min-width: 0.9rem;
  padding: 0.1rem 0.3rem;
  border-radius: 0.04rem;
  font-size: 0.14rem;
  cursor: pointer;
}

.orderpay-btn-primary {
  border: none;
  background: #000;
  color: #fff;
}

.orderpay-btn-secondary {
  border: 0.01rem solid #000;
  background: #fff;
  color: #000;
}

.orderpay-help-text {
  font-size: 0.12rem;
  color: #999;
}

.pendpay-form-row {
  display: flex;
  gap: 0.18rem;
}

.pendpay-form-group {
  flex: 1;
}

.pendpay-form-group-empty {
  flex: 1;
  visibility: hidden;
}

.pendpay-label {
  display: block;
  font-size: 0.14rem;
  color: #666;
  margin-bottom: 0.08rem;
}

.pendpay-input,
.pendpay-select {
  width: 100%;
  height: 0.4rem;
  border-radius: 0.06rem;
  border: 0.01rem solid #E5E5E5;
  padding: 0 0.14rem;
  font-size: 0.14rem;
  box-sizing: border-box;
  color: #333;
  background: #fff;
}

.pendpay-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16"><path fill="%23666" d="M8 12l-6-6h12z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.14rem center;
  background-size: 0.18rem;
  padding-right: 0.4rem;
}

/* 聯繫人 / 發票 / 支付方式 / 合計 */
.pendpay-contact-section {
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
}

.pendpay-contact-tip {
  font-size: 0.12rem;
  color: #999;
  margin-bottom: 0.16rem;
}

.pendpay-contact-row {
  display: flex;
  gap: 0.18rem;
}

.pendpay-phone-row {
  display: flex;
  gap: 0.08rem;
}

.pendpay-phone-code {
  flex: 0 0 0.8rem;
}

.pendpay-phone-input {
  flex: 1;
}

.pendpay-invoice-section {
  margin-bottom: 0.3rem;
}

.pendpay-invoice-options {
  display: inline-flex;
  border: 0.01rem solid #E5E5E5;
  border-radius: 0.24rem;
  overflow: hidden;
  background: #fff;
  padding: 0.05rem;
}

.pendpay-invoice-btn {
  min-width: 1.4rem;
  padding: 0.08rem 0.3rem;
  border: none;
  font-size: 0.14rem;
  color: #333;
  cursor: pointer;
  line-height: 1;
  text-align: center;
}


.pendpay-invoice-btn.active {
  background: #F5F5F5;
  border-radius: 0.14rem;
}

.pendpay-pay-section {
  margin-bottom: 0.3rem;
}

.pendpay-pay-method {
  padding: 0.16rem 0;
}

.pendpay-pay-logo {
  font-size: 0.2rem;
  font-weight: 600;
  letter-spacing: 0.02rem;
}

.pendpay-agree-section {
  margin-bottom: 0.2rem;
  font-size: 0.12rem;
  color: #666;
}

.pendpay-agree-label {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  cursor: pointer;
}

.pendpay-agree-checkbox {
  width: 0.16rem;
  height: 0.16rem;
}

.pendpay-agree-desc {
  color: #333;
}

.pendpay-total-section {
  margin-top: 0.16rem;
  padding: 0.18rem 0;
  border-top: 0.01rem solid #E5E5E5;
}

.pendpay-total-text {
  font-size: 0.24rem;
  color: #333;
}

.pendpay-total-text samll {
  font-size: 0.16rem;
}

.pendpay-pay-btn {
  min-width: 0.9rem;
  padding: 0.1rem 0.3rem;
  border-radius: 0.04rem;
  border: none;
  background: #000;
  color: #fff;
  font-size: 0.14rem;
  cursor: pointer;
  margin-top: 0.26rem;
}

.travel-order-details .orderno-info {
  display: flex;
  justify-content: space-between;
}

.travel-order-details .orderno-info .order-no {
  font-weight: 400;
  font-size: 0.14rem;
  color: #666666;
  line-height: 0.32rem;
}

.travel-order-details .orderno-info .order-time {
  font-weight: 400;
  font-size: 0.14rem;
  color: #666666;
  line-height: 0.32rem;
}

.travel-order-details .travel-title {
  display: flex;
  gap: 0.1rem;
  align-items: center;
  padding: 0.2rem 0;
}

.travel-order-details .travel-title .travel-title-input {
  font-size: 0.2rem;
  font-weight: 400;
  color: #111111;
  border: none;
}

.travel-order-details .travel-title img {
  width: 0.15rem;
  height: 0.16rem;
  flex-shrink: 0;
}

/* 容器樣式 */
.route-container {
  width: 100%;
  /* 420px */
  background: #fff;
  border-radius: 0.12rem;
  /* 12px */
  padding-top: 0.16rem;
  /* 16px */
}

/* 標題樣式 */
.route-title {
  font-size: 0.16rem;
  /* 18px */
  color: #111;
  margin-bottom: 0.25rem;
  /* 16px */
}

/* 列表容器 - 包含時間線 */
.route-list {
  position: relative;
  padding-left: 0.4rem;
  /* 40px - 給時間線留位置 */
}

/* 時間線豎線 - 改為虛線 */
.route-list::before {
  content: '';
  position: absolute;
  left: 0.19rem;
  /* 19px */
  top: 0.2rem;
  bottom: 0;
  width: 0.02rem;
  /* 2px */
  background-color: #e5e6eb;
  /* 虛線樣式 */
  border-left: 0.01rem dashed #e5e6eb;
  background: transparent;
}

/* 列表項樣式 */
.route-item {
  position: relative;
  margin-bottom: 0.12rem;
  /* 12px */
  display: flex;
  align-items: center;
  background: #F2F2F2;
  border-radius: 0.08rem;
  /* 8px */
  padding: 0.12rem 0.16rem;
  /* 12px 16px */
  transition: all 0.3s ease;
  cursor: pointer;
}

.route-item img {
  display: none;
}

.route-item:hover img {
  display: block;
}

.route-item:hover {
  background-color: #fff;
  box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.1);
  /* 4px 12px */
}

/* 時間線節點 - 替換為圖片 */
.route-item::before {
  content: '';
  position: absolute;
  left: -0.28rem;
  /* 32px */
  top: 50%;
  transform: translateY(-50%);
  /* 圖片節點樣式 */
  width: 0.16rem;
  /* 16px */
  height: 0.16rem;
  /* 16px */
  background: url("../img/luxian.png") no-repeat;
  background-size: 100% 100%;
  z-index: 1;
}

/* 評分標籤 */
.route-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.12rem;
  /* 14px */
  padding: 0.04rem 0.03rem;
  /* 4px 8px */
  border-radius: 0.06rem;
  /* 6px */
  margin-right: 0.12rem;
  /* 12px */
  min-width: 0.48rem;
  /* 48px */
  background: #F39800;
}

/* 路線名稱 */
.route-name {
  flex: 1;
  font-size: 0.14rem;
  /* 16px */
  color: #111;
}

/* 箭頭圖標 */
.route-arrow {
  color: #c9cdd4;
  font-size: 0.16rem;
  /* 16px */
}

/* 最後一項去掉下邊距 */
.route-item:last-child {
  margin-bottom: 0;
}

.travel-order-details .order-info {
  padding-top: 0.45rem;
}



.travel-order-details .center-participant-items {
  gap: 0.1rem;
}

.travel-order-details .center-participant-items .center-participant-label {
  font-size: 0.14rem;
  color: #111;
  font-weight: 400;
  margin-bottom: 0.1rem;
}

.travel-order-details .center-participant-items .center-participant-unit {
  font-size: 0.14rem;
  color: #333;
  font-weight: 400;
}

.travel-order-details .center-participant-items .center-number-input {
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  border: 0.01rem solid #D9D9D9;
  border-radius: 0.04rem;
  background: #fff;
  padding: 0 0.18rem 0 0.1rem;
  height: 0.44rem;
  width: 1.9rem;
}

.travel-order-details .center-participant-items .center-number-field {
  width: 0.35rem;
  height: 100%;
  border: none;
  outline: none;
  text-align: center;
  font-size: 0.14rem;
  color: #333;
  background: transparent;
  padding: 0;
  -moz-appearance: textfield;
  font-weight: 400;
}

.travel-order-details .center-number-field::-webkit-outer-spin-button,
.travel-order-details .center-number-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.travel-order-details .center-number-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 0.14rem;
  height: 100%;
  margin-left: 0.05rem;
}

.travel-order-details .center-number-up,
.travel-order-details.center-number-down {
  width: 100%;
  height: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 0.08rem;
  color: #666;
  line-height: 0.1rem;
  transition: color 0.3s;
  user-select: none;
}

.travel-order-details .center-number-up:hover,
.travel-order-details .center-number-down:hover {
  color: #333;
}

.travel-order-details .center-number-up {
  border-bottom: 0.01rem solid #E5E5E5;
  padding-bottom: 0.01rem;
}

.travel-order-details .center-number-down {
  padding-top: 0.01rem;
}

.travel-order-details .center-number-up:active {
  color: #000;
}

.travel-order-details .center-number-down:active {
  color: #000;
}

.travel-order-details .order-fromrow {
  margin-top: 0.23rem;
}

.travel-order-details .order-fromrow .order-frominput-label {
  font-weight: 400;
  font-size: 0.14rem;
  color: #111111;
  line-height: 0.32rem;
}

.travel-order-details .order-fromrow .order-frominput {
  width: 4.28rem;
  height: 0.44rem;
  background: #FFFFFF;
  border-radius: 0.05rem;
  border: 0.01rem solid #D9D9D9;
}


.travel-order-details .order-fromrow .order-frominput input {
  height: 100%;
  width: 90%;
  margin-left: 5%;
  border: none;
}


/* 購物車側邊彈框樣式 */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
}

.cart-sidebar.show {
  display: block;
}

.cart-sidebar .cart-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.cart-sidebar .cart-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  z-index: 10001;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.cart-sidebar .cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.17rem 0.17rem 0 0.17rem;
  position: relative;
}

.cart-sidebar .cart-header h3 {
  font-size: 0.24rem;
  font-weight: 400;
  color: #222222;
}

.cart-sidebar .cart-close {
  background: none;
  border: none;
  font-size: 0.24rem;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 0.4rem;
  height: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-left: auto;
  z-index: 1;
}

.cart-sidebar .cart-close:hover {
  color: #7f7878;
}

.cart-sidebar .cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0.2rem;
}

.cart-sidebar .cart-item .cart-item-content {
  display: flex;
  gap: 0.15rem;
}

.cart-sidebar .cart-item .cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.2rem;
}

.cart-sidebar .cart-item .cart-item-header span {
  font-size: 0.16rem;
  color: #666;
}

.cart-sidebar .cart-item {
  padding: 0.2rem 0;
  border-bottom: 0.01rem solid #E5E5E5;
  border-top: 0.01rem solid #E5E5E5;
}

.cart-sidebar .cart-item-image {
  width: 1.2rem;
  height: 1rem;
  border-radius: 0.05rem;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-sidebar .cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-sidebar .cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.cart-sidebar .cart-item-title {
  font-size: 0.16rem;
  font-weight: 400;
  color: #111111;
  line-height: 0.24rem;
}

.cart-sidebar .cart-item-desc {
  font-size: 0.18rem;
  color: #2C2C2C;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.15rem;
}

.cart-sidebar .cart-item-price {
  font-size: 0.16rem;
  text-align: right;
  font-weight: 400;
  color: #000000;
}

.cart-sidebar .cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-sidebar .cart-qty-control {
  display: flex;
  align-items: center;
  border-radius: 0.05rem;
}

.cart-sidebar .cart-qty-btn {
  background: none;
  border: none;
  font-size: 0.2rem;
  color: #666;
  cursor: pointer;
  width: 0.3rem;
  height: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-sidebar .cart-qty-btn:hover {
  color: #EDBE48;
}

.cart-sidebar .cart-qty-input {
  width: 0.4rem;
  text-align: center;
  border: none;
  font-size: 0.18rem;
  color: #7f7878;
  padding: 0;
}

.cart-sidebar .cart-item-delete {
  background: #EEEEEE;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 0.3rem;
  height: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-sidebar .cart-item-delete img {
  width: 0.17rem;
  height: 0.17rem;
}



.cart-sidebar .cart-price {
  display: flex;
  align-items: center;
}

.cart-sidebar .summary-row.total-row {
  font-size: 0.24rem;
  padding: 0.1rem 5%;
  display: flex;
  align-items: center;
  font-weight: 400;
  color: #000000;
}

.cart-sidebar .total-row-content {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}


.cart-sidebar .checkout-btn1 {
  width: 90%;
  height: 0.44rem;
  background: #000000;
  border-radius: 0.05rem;
  font-size: 0.16rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.2rem auto;
  cursor: pointer;
}

.cart-sidebar .checkout-btn2 {
  width: 90%;
  height: 0.44rem;
  background: #fff;
  border-radius: 0.05rem;
  color: black;
  font-size: 0.16rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.3rem;
  cursor: pointer;
}

.empty-cart {
  display: none;
  margin: 50% auto 0 auto;
  flex: 1;
}

.empty-cart img {
  width: 1.89rem;
  height: 1.53rem;
  object-fit: contain;
}

.empty-cart p {
  font-weight: 400;
  font-size: 0.16rem;
  color: #999999;
  line-height: 0.32rem;
  text-align: center;
  padding-top: 0.3rem;
}


/* 頭部下拉搜索框樣式 */
.header-search-dropdown {
  position: fixed;
  top: 1.2rem;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 0.01rem solid #e0e0e0;
  box-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.1);
  z-index: 9998;
  padding: 0.1rem 0;
}

.header-search-container {
  width: 94%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  background-color: #fff;
  border: 0.02rem solid #000;
  border-radius: 0.05rem;
  padding: 0.08rem 0.2rem;
}

.header-search-icon {
  width: 0.3rem;
  height: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 0.15rem;
}

button.header-search-icon {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.header-search-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
}

.header-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.18rem;
  color: #333;
  background: transparent;
  padding: 0;
  height: 0.4rem;
  line-height: 0.4rem;
}

.header-search-input::placeholder {
  color: #999;
  font-size: 0.18rem;
}

.header-search-clear {
  width: 0.3rem;
  height: 0.3rem;
  border: none;
  background: none;
  font-size: 0.3rem;
  color: #999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  margin-left: 0.1rem;
  line-height: 1;
  transition: color 0.3s ease;
}

.header-search-clear:hover {
  color: #333;
}

.MyItineraryBtn {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  box-shadow: 0 2px 4px 0 rgba(15, 41, 77, .2);
  cursor: pointer;
  background-color: #fff;
  border-radius: 0.04rem;
  padding: 0.1rem 0.08rem;
  height: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  z-index: 1;
}

/* 我的旅程側邊欄 */
.my-journey-overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.my-journey-overlay.show {
  display: block;
}

.my-journey-sidebar {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 100vh;
  background: #fff;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.my-journey-sidebar.show {
  transform: translateX(0);
}

.my-journey-sidebar .sidebar-header {
  padding: 0.2rem 0.24rem;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.my-journey-sidebar .sidebar-title {
  font-size: 0.2rem;
  font-weight: 600;
  color: #111;
}

.my-journey-sidebar .sidebar-header-left {
  display: flex;
  align-items: center;
  gap: 0.12rem;
}

.my-journey-sidebar .sidebar-header-right {
  display: flex;
  align-items: center;
  gap: 0.12rem;
}

.my-journey-sidebar .sidebar-create-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.04rem;
  background: #EEEEEE;
  color: #111111;
  border: none;
  padding: 0 0.2rem;
  height: 0.34rem;
  font-size: 0.14rem;
  border-radius: 0.17rem;
  cursor: pointer;
}

.my-journey-sidebar .sidebar-create-btn img {
  width: 0.2rem;
  height: 0.2rem;
  object-fit: contain;
}

.my-journey-sidebar .sidebar-create-btn:hover {
  background: #ccc;
}

.my-journey-sidebar .sidebar-close {
  width: 0.36rem;
  height: 0.36rem;
  border: none;
  background: none;
  font-size: 0.24rem;
  color: #666;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.my-journey-sidebar .sidebar-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
  text-align: center;
}

.my-journey-sidebar .sidebar-body-list {
  flex: 1;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.my-journey-sidebar.has-journeys .sidebar-body {
  display: none;
}

.my-journey-sidebar.has-journeys .sidebar-body-list {
  display: flex;
}

.my-journey-sidebar.has-journeys .sidebar-header-right .sidebar-create-btn {
  display: inline-flex;
}

.my-journey-sidebar:not(.has-journeys) .sidebar-header-right .sidebar-create-btn {
  display: none;
}

.journey-list-wrap {
  flex: 1;
  overflow-y: auto;
}

/* 我的行程侧栏滚动条细化 */
.journey-list-wrap,
.journey-detail-body {
  scrollbar-width: none;
  scrollbar-color: #e2e2e2 transparent;
}

.journey-list-wrap::-webkit-scrollbar,
.journey-detail-body::-webkit-scrollbar {
  width: 1px;
}

.journey-list-wrap::-webkit-scrollbar-thumb,
.journey-detail-body::-webkit-scrollbar-thumb {
  background: #e2e2e2;
  border-radius: 999px;
}

.journey-list-wrap::-webkit-scrollbar-track,
.journey-detail-body::-webkit-scrollbar-track {
  background: transparent;
}

.journey-list-label {
  font-size: 0.14rem;
  color: #111;
  font-weight: 500;
  margin-bottom: 0.12rem;
}

.journey-item {
  display: block;
  padding: 0.12rem 0;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
}

.journey-item.is-expanded {
  background: rgba(0, 0, 0, 0.02);
}

.journey-item-row {
  display: flex;
  gap: 0.12rem;
  align-items: flex-start;
}

.journey-item-title-row {
  display: flex;
  align-items: center;
  gap: 0.06rem;
}

.journey-item-edit-icon {
  width: 0.12rem;
  height: 0.12rem;
  flex-shrink: 0;
  opacity: 0.55;
}

.journey-item-actions {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.12rem;
  padding-top: 0.02rem;
}

.journey-item-action-btn {
  border: none;
  background: none;
  padding: 0;
  font-size: 0.13rem;
  color: #111;
  cursor: pointer;
}

.journey-item-action-btn.journey-item-action-delete {
  color: #ff4d4f;
}

.journey-item-action-btn:hover {
  text-decoration: underline;
}

.journey-item-chevron {
  border: none;
  background: none;
  padding: 0;
  width: 0.24rem;
  height: 0.24rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #666;
  cursor: pointer;
}

.journey-item-expand {
  margin-top: 0.1rem;
  padding: 0.1rem 0.12rem;
  border: 1px solid #f0f0f0;
  border-radius: 0.06rem;
  background: #fff;
}

.journey-item-expand.journey-item-expand--host {
  padding: 0;
  border: none;
  background: transparent;
}

.journey-item-expand--host .detail-card {
  border: 1px solid #f0f0f0;
  width: 100%;
}

/* 手风琴展开后避免标题重复：保留列表行标题，隐藏详情卡片头部（第二个标题区） */
.journey-item-expand--host .detail-card-header {
  display: none;
}

.journey-item-expand--host .detail-card-sticky {
  padding-top: 0;
}

.journey-item-expand-days {
  display: flex;
  flex-direction: column;
  gap: 0.06rem;
  margin-bottom: 0.1rem;
}

.journey-item-expand-day {
  font-size: 0.13rem;
  color: #666;
  line-height: 1.4;
  word-break: break-word;
}

.journey-item-expand-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.1rem;
}

.journey-item-expand-actions .btn-open-detail {
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #111;
  font-size: 0.12rem;
  padding: 0.06rem 0.1rem;
  border-radius: 0.04rem;
  cursor: pointer;
}

.journey-item-expand-actions .btn-open-detail:hover {
  border-color: #F39800;
  color: #F39800;
}


.journey-item-menu-wrap {
  position: relative;
  display: inline-block;
}

.journey-item-menu-wrap .detail-dots-menu {
  right: 0;
  top: 0.28rem;
}

.journey-item:last-child {
  border-bottom: none;
}

.journey-item-thumb {
  width: 0.8rem;
  height: 0.8rem;
  min-width: 0.8rem;
  border-radius: 0.06rem;
  overflow: hidden;
  background: #f5f5f5;
  object-fit: cover;
}

.journey-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-item-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.journey-item-title {
  font-size: 0.16rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.04rem;
}

.journey-item-meta {
  font-size: 0.13rem;
  color: #999;
  margin-bottom: 0.04rem;
}

.journey-item-save {
  font-size: 0.12rem;
  color: #999;
}

.my-journey-empty-illus {
  width: 1.8rem;
  height: 1.8rem;
  margin: 0 auto;
  margin-bottom: 0.24rem;
  background: linear-gradient(180deg, #E8F4FC 0%, #D4EBF7 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.my-journey-empty-illus svg {
  width: 1rem;
  height: 1rem;
}

.my-journey-empty-text1 {
  font-size: 0.14rem;
  color: #999;
  margin-bottom: 0.08rem;
}

.my-journey-empty-text2 {
  font-size: 0.16rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 0.24rem;
}

.my-journey-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.06rem;
  background: #333;
  color: #fff;
  border: none;
  padding: 0 0.24rem;
  height: 0.44rem;
  border-radius: 0.04rem;
  font-size: 0.16rem;
  cursor: pointer;
}

.my-journey-add-btn:hover {
  background: #F39800;
}

/* 新增行程彈層 */
.add-itinerary-modal-overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1002;
  align-items: center;
  justify-content: center;
}

.add-itinerary-modal-overlay.show {
  display: flex;
}

.add-itinerary-modal {
  background: #fff;
  border-radius: 0.08rem;
  width: 90%;
  max-width: 360px;
  padding: 0.24rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.add-itinerary-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.2rem;
}

.add-itinerary-modal .modal-title {
  font-size: 0.18rem;
  font-weight: 600;
  color: #111;
}

.add-itinerary-modal .modal-reset {
  width: 0.32rem;
  height: 0.32rem;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.2rem;
  color: #999;
  padding: 0;
  line-height: 1;
}

.add-itinerary-modal .form-item {
  margin-bottom: 0.16rem;
}

.add-itinerary-modal .form-item input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.12rem 0.16rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.04rem;
  font-size: 0.14rem;
}

.add-itinerary-modal .form-item input::placeholder {
  color: #bbb;
}

.add-itinerary-modal .form-item input[type="number"] {
  -moz-appearance: textfield;
}

.add-itinerary-modal .form-item input[type="number"]::-webkit-outer-spin-button,
.add-itinerary-modal .form-item input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.add-itinerary-modal .btn-create {
  width: 100%;
  margin-top: 0.08rem;
  padding: 0.14rem;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 0.04rem;
  font-size: 0.16rem;
  cursor: pointer;
}

.add-itinerary-modal .btn-create:hover {
  background: #333;
}

/* 行程詳情側邊欄（點擊列表項彈出，默認收起） */
.journey-detail-sidebar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100vh - 1.2rem);
  background: #fff;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.journey-detail-sidebar.show {
  display: flex;
}

.journey-detail-list-view .journey-list-wrap {
  padding: 0;
}

.journey-detail-list-view .my-journey-empty {
  padding: 0.2rem 0.24rem;
}

.journey-detail-header {
  padding: 0.2rem 0.24rem;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.detail-title-container {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.detail-add-btn {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  padding: 0.05rem 0.1rem;
  background: #1890ff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.14rem;
  cursor: pointer;
}

.detail-add-btn img {
  width: 0.14rem;
  height: 0.14rem;
}

.journey-detail-header .detail-title {
  font-size: 0.18rem;
  font-weight: 600;
  color: #111;
}

.journey-detail-header .journey-detail-header-actions {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  flex-shrink: 0;
}

.journey-detail-header .journey-detail-back-map {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0.4rem;
  min-height: 0.4rem;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  color: #666;
  line-height: 1;
}

.journey-detail-header .journey-detail-back-map img {
  width: 0.22rem;
  height: 0.22rem;
  object-fit: contain;
  display: block;
}

.journey-detail-header .detail-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.04rem;
  background: #EEEEEE;
  color: #111;
  border: none;
  padding: 0 0.12rem;
  height: 0.32rem;
  border-radius: 0.16rem;
  font-size: 0.13rem;
  font-weight: 500;
  cursor: pointer;
}

.journey-detail-header .detail-add-btn img {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}

.journey-detail-header .detail-add-btn:hover {
  background: #ddd;
}

.journey-detail-header .detail-actions {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.journey-detail-header .btn-add-new {
  display: inline-flex;
  align-items: center;
  gap: 0.04rem;
  background: #1890ff;
  color: #fff;
  border: none;
  padding: 0 0.12rem;
  height: 0.32rem;
  border-radius: 0.04rem;
  font-size: 0.13rem;
  cursor: pointer;
}

.journey-detail-header .btn-back {
  width: 0.36rem;
  height: 0.36rem;
  border: none;
  background: none;
  font-size: 0.2rem;
  color: #666;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.journey-detail-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.16rem 0.15rem;
}

/* 收起狀態卡片（圖二） */
.detail-card {
  background: #fff;
  border-radius: 0.08rem;
  border: 1px solid #f0f0f0;
}

.detail-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.14rem 0.16rem;
  cursor: pointer;
}

.detail-card-header-left {
  flex: 1;
  min-width: 0;
}

.detail-card-title {
  font-size: 0.16rem;
  font-weight: 600;
  color: #111;
  display: flex;
  align-items: center;
  gap: 0.06rem;
  flex: 1;
  min-width: 0;
}

.detail-card-title-input {
  min-width: 0;
  border: none;
  background: transparent;
  font-size: 0.16rem;
  font-weight: 600;
  color: #111;
  padding: 0;
  outline: none;
}

.detail-card-title-input::placeholder {
  color: #999;
}

.detail-card-edit-icon {
  width: 0.12rem;
  height: 0.12rem;
  flex-shrink: 0;
  vertical-align: middle;
}

/* 天数为只读 span，勿用 *-input 类名，避免被浏览器/插件误判为可编辑框而出现「输入」类提示 */
.detail-card-summary .detail-card-days-num {
  display: inline-block;
  min-width: 0.2rem;
  font-size: 0.14rem;
  color: #999;
  padding: 0;
}

.detail-card-summary {
  font-size: 0.14rem;
  color: #999;
  margin-top: 0.04rem;
}

.detail-card-time {
  font-size: 0.12rem;
  color: #999;
  margin-top: 0.04rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.08rem;
}

.detail-card-header-right {
  display: flex;
  align-items: center;
  gap: 0.06rem;
}

.detail-chevron {
  font-size: 0.16rem;
  color: #666;
  transition: transform 0.25s ease;
}

.detail-card.expanded .detail-chevron {
  transform: rotate(180deg);
}

.detail-dots-btn {
  width: 0.28rem;
  height: 0.28rem;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.18rem;
  color: #666;
  line-height: 1;
  padding: 0;
}

.detail-dots-menu {
  display: none;
  position: absolute;
  right: 0.1rem;
  top: 0.2rem;
  background: #fff;
  border-radius: 0.04rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  padding: 0.04rem 0;
  min-width: 0.9rem;
  z-index: 10;
}

.detail-dots-menu.show {
  display: block;
}

.detail-dots-menu a {
  display: block;
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  color: #111;
  text-decoration: none;
}

.detail-dots-menu a.delete {
  color: #f5222d;
}

/* 行程列表：复制/删除默认常显，不使用“...”折叠菜单 */
.my-journey-sidebar .journey-item-menu-wrap .detail-dots-btn {
  display: none !important;
}

.my-journey-sidebar .journey-item-menu-wrap .detail-dots-menu {
  display: block !important;
  position: static !important;
  right: auto;
  top: auto;
  background: transparent;
  box-shadow: none;
  padding: 0;
  min-width: auto;
}

.my-journey-sidebar .journey-item-menu-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.my-journey-sidebar .journey-item-menu-wrap .detail-dots-menu a {
  padding: 0.08rem 0.16rem;
}

/* 行程標題 +「我的路線」+ 日期標籤：隨側欄滾動時固定在頂部 */
.detail-card-sticky {
  position: sticky;
  top: 0;
  z-index: 8;
  background: #fff;
}

.detail-card.expanded .detail-card-sticky {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.detail-card-route-panel {
  display: none;
  padding: 0 0.16rem 0.12rem;
  border-top: 1px solid #f0f0f0;
}

.detail-card.expanded .detail-card-route-panel {
  display: block;
}

/* 展開內容 */
.detail-card-content {
  display: none;
  padding: 0.16rem 0;
  border-top: none;
}

.detail-card.expanded .detail-card-content {
  display: block;
}

.detail-note-row {
  display: flex;
  align-items: center;
  margin-top: 0.12rem;
  margin-bottom: 0.12rem;
}

.detail-card-notes-input {
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 0.04rem;
  font-size: 0.13rem;
  color: #666;
  padding: 0.08rem 0.12rem;
  outline: none;
  box-sizing: border-box;
}

.detail-card-notes-input::placeholder {
  color: #999;
}

.detail-card-notes-input:focus {
  border-color: #1890ff;
}

.detail-route-title {
  font-size: 0.14rem;
  font-weight: 500;
  color: #111;
  margin: 0.1rem;
}

.detail-day-tabs-wrap {
  display: flex;
  align-items: center;
  gap: 0.06rem;
  margin-bottom: 0.12rem;
}

.detail-day-tabs-scroll {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-bottom: 0.01rem solid #e5e5e5;
}

.detail-day-tabs-scroll::-webkit-scrollbar {
  display: none;
}

.detail-day-tabs-nav {
  flex-shrink: 0;
  width: 0.3rem;
  height: 0.3rem;
  padding: 0;
  border: 0.01rem solid #e5e5e5;
  border-radius: 0.04rem;
  background: #fff;
  color: #666;
  font-size: 0.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-day-tabs-nav:hover:not(:disabled) {
  border-color: #F39800;
  color: #F39800;
}

.detail-day-tabs-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.detail-day-tabs {
  display: flex;
  gap: 0;
  width: max-content;
  margin-bottom: -0.01rem;
}

.detail-day-tab {
  padding: 0.08rem 0.12rem;
  font-size: 0.14rem;
  color: #666;
  cursor: pointer;
  border-bottom: 0.02rem solid transparent;
  margin-bottom: -0.01rem;
  flex-shrink: 0;
}

.detail-day-tab:hover {
  color: #111;
}

.detail-day-tab.active {
  color: #F39800;
  font-weight: 500;
  border-bottom-color: #F39800;
}

.detail-day-add-btn {
  flex-shrink: 0;
  margin-left: 0.06rem;
  padding: 0.06rem 0.1rem;
  font-size: 0.13rem;
  color: #F39800;
  background: #fff;
  border: 0.01rem solid #F39800;
  border-radius: 0.04rem;
  cursor: pointer;
  align-self: center;
  margin-bottom: -0.01rem;
  line-height: 1.2;
}

.detail-day-add-btn:hover:not(:disabled) {
  background: rgba(243, 152, 0, 0.08);
}

.detail-day-add-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.detail-day-block {
  margin-bottom: 0.2rem;
  /* 與頂部 sticky（標題+我的路線+日期標籤）對齊，避免 scrollIntoView / 錨點滾動時標題被擋 */
  scroll-margin-top: clamp(4.8rem, 30vmin, 9.5rem);
}

.detail-day-block-title {
  font-size: 0.14rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
  line-height: 1.45;
}

.detail-day-block-title .detail-day-spot-names {
  font-weight: 400;
  font-size: 0.13rem;
  color: #666;
  margin-left: 0.08rem;
}

.detail-day-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.12rem;
  margin-bottom: 0.1rem;
}

.detail-day-head-actions {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  flex-shrink: 0;
}

.detail-day-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.04rem;
  border: none;
  background: none;
  padding: 0.04rem 0.06rem;
  font-size: 0.12rem;
  color: #666;
  cursor: pointer;
  white-space: nowrap;
}

.detail-day-toggle-btn:hover {
  color: #111;
}

.detail-day-toggle-icon {
  font-size: 0.1rem;
  line-height: 1;
  color: #999;
}

.detail-day-toggle-btn:hover .detail-day-toggle-icon {
  color: #666;
}

.detail-day-items.detail-day-items--collapsed {
  display: none;
}

.detail-day-delete-btn {
  border: none;
  background: none;
  padding: 0;
  color: #ff4d4f;
  font-size: 0.13rem;
  cursor: pointer;
  flex-shrink: 0;
}

.detail-day-delete-btn:hover {
  text-decoration: underline;
}

.detail-route-empty {
  font-size: 0.14rem;
  color: #111;
  padding: 0.2rem;
  text-align: center;
  background: #eee;
  border-radius: 0.04rem;
  margin-bottom: 0.16rem;
}

.detail-route-list {
  margin-bottom: 0.16rem;
}

.detail-route-item {
  position: relative;
  padding-left: 0.2rem;
  border-left: 2px dashed #e5e5e5;
  margin-left: 0.08rem;
  padding-bottom: 0.12rem;
}

.detail-route-item::before {
  content: '';
  position: absolute;
  left: -0.07rem;
  top: 0.08rem;
  width: 0.08rem;
  height: 0.08rem;
  background: #999;
  transform: rotate(45deg);
}

.detail-route-item-name {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  font-size: 0.14rem;
  font-weight: 500;
  color: #111;
}

.detail-route-item-name .rating {
  background: #F39800;
  color: #fff;
  font-size: 0.12rem;
  padding: 0 0.06rem;
  border-radius: 0.02rem;
}

.detail-route-item-meta {
  font-size: 0.12rem;
  color: #999;
  margin-top: 0.04rem;
  margin-left: 0.16rem;
}

.detail-form-title {
  font-size: 0.14rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 0.1rem;
  margin-top: 0.16rem;
}

.detail-form-row {
  display: flex;
  gap: 0.12rem;
  margin-bottom: 0.12rem;
}

.detail-form-row .form-item {
  flex: 1;
}

.detail-form-row .form-item label {
  display: block;
  font-size: 0.12rem;
  color: #999;
  margin-bottom: 0.04rem;
}

.detail-form-row .form-item select,
.detail-form-row .form-item input,
.detail-card-content .form-item select,
.detail-card-content .form-item input {
  width: 100%;
  padding: 0.08rem;
  border: 0.01rem solid #e5e5e5;
  border-radius: 0.04rem;
  font-size: 0.14rem;
  box-sizing: border-box;
}

.detail-form-btns {
  display: flex;
  gap: 0.12rem;
  margin-top: 0.16rem;
}

.detail-form-btns .btn-outline {
  background: #fff;
  color: #333;
  border: 0.01rem solid #ddd;
}

.detail-form-btns .btn-primary {
  background: #111;
  color: #fff;
  border: none;
}

.detail-form-btns button {
  flex: 1;
  padding: 0.12rem;
  border-radius: 0.04rem;
  font-size: 0.14rem;
  cursor: pointer;
}

/* 頁面佈局：左側推薦景點 + 地圖 */
.map-page-wrap {
  display: flex;
  width: 100%;
  height: calc(100vh - 1.2rem);
  position: relative;
}

.left-attractions-sidebar {
  min-width: 2.8rem;
  max-width: 28%;
  height: 100vh;
  background: #fff;
  border-right: 0.01rem solid #f0f0f0;
  overflow-y: auto;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  z-index: 20;
}

.province-select-wrap {
  position: relative;
  padding: 0.12rem 0.2rem;
  border-bottom: 0.01rem solid #f0f0f0;
}

.province-select-outside {
  position: absolute;
  top: 0.4rem;
  left: 15%;
  z-index: 10;
  padding: 0;
  border-bottom: none;
}

.province-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.1rem 0.12rem;
  background: #fff;
  border: 0.01rem solid #e5e5e5;
  border-radius: 0.06rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  color: #111;
}

.province-select:hover {
  border-color: #1890ff;
}

.province-select-left {
  display: flex;
  align-items: center;
  gap: 0.08rem;
}

.province-select .province-pin-icon {
  width: 0.18rem;
  height: 0.18rem;
  object-fit: contain;
}

.province-select .province-arrow {
  font-size: 0.12rem;
  color: #999;
}

.province-dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.04rem;
  background: #fff;
  border: 0.01rem solid #e5e5e5;
  border-radius: 0.04rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  max-height: 2rem;
  overflow-y: auto;
  z-index: 10;
}

.province-select-wrap.open .province-dropdown-list {
  display: block;
}

.province-dropdown-list .province-opt {
  padding: 0.1rem 0.12rem;
  font-size: 0.14rem;
  cursor: pointer;
}

.province-dropdown-list .province-opt:hover {
  background: #f5f5f5;
}

.left-attractions-sidebar .section-title {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  font-size: 0.16rem;
  font-weight: 600;
  color: #111;
  padding: 0.16rem 0.2rem;
  border-bottom: 0.01rem solid #f0f0f0;
}

.left-attractions-sidebar .section-title .icon {
  font-size: 0.18rem;
}

/* 關閉按鈕預設隱藏，僅在 320–1024px 由 phone.css 顯示 */
.left-attractions-sidebar .left-sidebar-close-btn {
  display: none;
}

.left-attractions-sidebar .region-item {
  border-bottom: 0.01rem solid #f5f5f5;
}

.left-attractions-sidebar .region-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.12rem 0.2rem;
  cursor: pointer;
  font-size: 0.14rem;
  color: #111;
}

.left-attractions-sidebar .region-header .arrow {
  transition: transform 0.2s;
  font-size: 0.12rem;
  color: #999;
}

.left-attractions-sidebar .region-item.expanded .region-header .arrow {
  transform: rotate(90deg);
}

.left-attractions-sidebar .region-children {
  display: none;
  padding: 0 0.2rem 0.12rem 0.32rem;
}

.left-attractions-sidebar .region-item.expanded .region-children {
  display: block;
}

.left-attractions-sidebar .spot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.08rem 0;
  font-size: 0.14rem;
  color: #111;
  cursor: pointer;
}

.left-attractions-sidebar .spot-row:hover {
  color: #1890ff;
}

.left-attractions-sidebar .spot-row .rating-pill {
  background: #F39800;
  color: #fff;
  font-size: 0.12rem;
  padding: 0 0.06rem;
  border-radius: 0.02rem;
}

/* 行程詳情頁面的每日備註樣式 */
.detail-day-note {
  margin-top: 0.08rem;
  margin-bottom: 0.12rem;
}

.detail-day-note-input {
  width: 100%;
  padding: 0.08rem;
  border-radius: 0.04rem;
  font-size: 0.14rem;
  box-sizing: border-box;
  border: none;
}

.detail-day-note-input::placeholder {
  color: #999;
  font-size: 0.12rem;
}

.left-attractions-sidebar .ref-itinerary {
  border-bottom: 1px solid #f5f5f5;
}

.left-attractions-sidebar .ref-itinerary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.12rem 0.2rem;
  cursor: pointer;
  font-size: 0.14rem;
  color: #111;
}

.left-attractions-sidebar .ref-itinerary-header .arrow {
  transition: transform 0.2s;
  font-size: 0.12rem;
  color: #999;
}

.left-attractions-sidebar .ref-itinerary.expanded .ref-itinerary-header .arrow {
  transform: rotate(90deg);
}

.left-attractions-sidebar .ref-itinerary-body {
  display: none;
  padding: 0 0.2rem 0.16rem;
}

.left-attractions-sidebar .ref-itinerary.expanded .ref-itinerary-body {
  display: block;
}

.left-attractions-sidebar .btn-add-itinerary {
  display: inline-flex;
  align-items: center;
  gap: 0.06rem;
  background: #fff;
  color: #F39800;
  border: 1px solid #F39800;
  padding: 0.08rem 0.14rem;
  border-radius: 0.04rem;
  font-size: 0.13rem;
  cursor: pointer;
  margin-bottom: 0.12rem;
}

.left-attractions-sidebar .ref-days-list {
  font-size: 0.14rem;
  color: #666;
  line-height: 1.8;
}

/* 地圖上的景點卡片彈層（圖1） */
.spot-popup-card {
  max-width: 280px;
  width: 280px;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  background: #fff;
}

.spot-popup-card .card-head {
  display: flex;
  align-items: flex-start;
  padding: 0.14rem 0.16rem;
  gap: 0.08rem;
  border-bottom: 1px solid #f0f0f0;
}

.spot-popup-card .card-head .name {
  font-size: 0.18rem;
  font-weight: 600;
  color: #111;
}

.spot-popup-card .card-head .name-link {
  text-decoration: none;
  color: #111;
}

.spot-popup-card .card-head .name-link:hover {
  color: #F39800;
  text-decoration: underline;
}

.spot-popup-card .card-head .rating-pill {
  background: #F39800;
  color: #fff;
  font-size: 0.12rem;
  padding: 0 0.08rem;
  border-radius: 0.04rem;
}

.spot-popup-card .card-head .btn-close {
  background: none;
  border: none;
  font-size: 0.2rem;
  color: #999;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.spot-popup-card .card-body {
  padding: 0.14rem 0.16rem;
}

.spot-popup-card .card-desc {
  font-size: 0.14rem;
  color: #666;
  margin-bottom: 0.1rem;
  line-height: 1.5;
}

.spot-popup-card .card-desc .desc-title {
  color: #F39800;
}

/* 圖片橫滑區：左右按鈕 + 隱藏滾動條 */
.spot-popup-card .card-images-wrap {
  margin-bottom: 0.06rem;
}

.spot-popup-card .card-images-wrap--nav {
  display: flex;
  align-items: center;
  gap: 0.06rem;
}

.spot-popup-card .card-images-nav {
  flex-shrink: 0;
  width: 0.28rem;
  height: 0.6rem;
  padding: 0;
  border: 1px solid #e0e0e0;
  border-radius: 0.06rem;
  background: #f7f7f7;
  color: #111;
  font-size: 0.22rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.spot-popup-card .card-images-nav:hover:not(:disabled) {
  background: #eee;
  border-color: #ccc;
}

.spot-popup-card .card-images-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.spot-popup-card .card-images {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 0.08rem;
  overflow-x: auto;
  min-height: 0.6rem;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.spot-popup-card .card-images::-webkit-scrollbar {
  display: none;
  height: 0;
}

.spot-popup-card .card-images.card-images-dragging {
  cursor: grabbing;
  user-select: none;
}

.spot-popup-card .card-images-hint {
  margin: 0 0 0.08rem;
  padding: 0 0.02rem;
  font-size: 0.11rem;
  color: #888;
  line-height: 1.4;
  text-align: center;
}

.spot-popup-card .card-images img {
  width: 0.8rem;
  height: 0.6rem;
  object-fit: cover;
  border-radius: 0.04rem;
}

.spot-popup-card .card-meta {
  font-size: 0.12rem;
  color: #999;
  margin-bottom: 0.06rem;
}

.spot-popup-card .card-meta img {
  margin-right: 0.06rem;
  height: 0.14rem;
}

.spot-popup-card .card-nearby-title {
  font-size: 0.14rem;
  font-weight: 500;
  color: #111;
  margin: 0.1rem 0 0.06rem;
}

.spot-popup-card .card-nearby-list {
  font-size: 0.12rem;
  color: #666;
  max-height: 1.2rem;
  overflow-y: auto;
}

.spot-popup-card .card-nearby-list div {
  padding: 0.04rem 0;
}

.spot-popup-card .btn-add-route {
  display: block;
  width: 100%;
  margin-top: 0.12rem;
  padding: 0.12rem;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 0.04rem;
  font-size: 0.14rem;
  cursor: pointer;
}

.spot-popup-card .btn-add-route:hover {
  background: #333;
}

.map-area {
  flex: 1;
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.mapboxgl-popup-content {
  padding: 0 !important;
}

/* 景點 Popup：與 .spot-popup-card 同寬，尖角與數據點對齊；避免內容寬度變化帶來跳動 */
.map-page-wrap .spot-map-popup .mapboxgl-popup-content {
  width: 280px;
  max-width: 280px;
  box-sizing: border-box;
}

.map-page-wrap .spot-map-popup.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
  align-self: center;
}

.map-jingdian {
  display: none;
}

/* 行程路線列表：相鄰距離/駕車時間、拖拽排序、刪除（ij = itinerary journey，避免命名衝突） */
/* 虛線在圖標下方，從圖標底部延伸至下一項 */
.ij-route-list {
  position: relative;
  padding-left: 0.28rem;
  margin-left: 0.08rem;
}

.ij-route-item {
  position: relative;
  margin-bottom: 0.12rem;
}

.ij-route-item .ij-route-btn-drag,
.ij-route-item .ij-route-btn-del {
  width: 0.12rem;
  height: 0.16rem;
}

/* 圖標：位於每項頂部左側 */
.ij-route-item::before {
  content: '';
  position: absolute;
  left: -0.26rem;
  top: 0.12rem;
  width: 0.18rem;
  height: 0.18rem;
  background: url('../img/luxian.png') no-repeat center;
  background-size: contain;
  margin-left: -1px;
}

/* 虛線：從圖標下方延伸至本項底部，連接下一項 */
.ij-route-item::after {
  content: '';
  position: absolute;
  left: -0.17rem;
  top: 0.34rem;
  bottom: -0.12rem;
  width: 0;
  border-left: 1px dashed #d9d9d9;
  margin-left: -1px;
}

.ij-route-item:last-child::after {
  display: none;
}

.ij-route-item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.08rem;
  padding: 0.1rem 0.12rem;
  background: #f5f5f5;
  border-radius: 0.06rem;
  min-height: 0.4rem;
}

.ij-route-item-name {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  font-size: 0.14rem;
  font-weight: 600;
  color: #111;
  flex: 1;
  min-width: 0;
}

.ij-route-item-name .ij-route-rating {
  background: #F39800;
  color: #fff;
  font-size: 0.12rem;
  padding: 0 0.06rem;
  border-radius: 0.02rem;
  flex-shrink: 0;
}

.ij-route-item-name .ij-route-suggest-days {
  font-size: 0.12rem;
  font-weight: 400;
  color: #666;
  flex-shrink: 0;
}

.ij-route-item-actions {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-shrink: 0;
}

.ij-route-btn-drag,
.ij-route-btn-del {
  width: 0.28rem;
  height: 0.28rem;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.16rem;
  color: #666;
  padding: 0;
  line-height: 1;
}

.ij-route-btn-drag:hover,
.ij-route-btn-del:hover {
  color: #111;
}

.ij-route-btn-drag {
  cursor: move;
}

.ij-route-segment {
  font-size: 0.12rem;
  color: #999;
  margin-top: 0.06rem;
  margin-bottom: 0.08rem;
  margin-left: 0.04rem;
  display: flex;
  align-items: center;
  gap: 0.12rem;
}

.ij-route-segment .ij-route-car-icon {
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
  vertical-align: middle;
}

/* 從地圖加入景點後：短暫高亮，便於看到落在哪一天、哪一條 */
@keyframes ij-route-item-flash {
  0% {
    box-shadow: 0 0 0 3px rgba(243, 152, 0, 0.55);
    background-color: #fff3d6;
  }

  35% {
    box-shadow: 0 0 0 2px rgba(243, 152, 0, 0.35);
    background-color: #ffe8b0;
  }

  100% {
    box-shadow: none;
    background-color: #f5f5f5;
  }
}

.ij-route-item.ij-route-item--flash .ij-route-item-inner {
  animation: ij-route-item-flash 0.9s ease-out;
}

.ij-route-item.dragging {
  opacity: 0.55;
}

.ij-route-item.dragging .ij-route-item-inner {
  box-shadow: none;
}

/* 拖拽落點：不用藍框，用「兩個景點之間」的橫線提示插入位置 */
.ij-route-item.drop-target .ij-route-item-inner {
  box-shadow: none;
  border-top: 2px solid #333;
  margin-top: -2px;
}

.detail-day-items {
  min-height: 0.2rem;
}

.detail-day-items.drop-zone-active {
  background: transparent;
  border-radius: 0;
  border-top: 2px dashed #999;
  padding-top: 0.08rem;
  margin-top: 0.04rem;
}

.calendar-mobile {
  display: none;
}

.map-usage-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.map-usage-content {
  background: white;
  border-radius: 8px;
  padding: 20px;
  max-width: 80%;
  max-height: 80%;
  overflow-y: auto;
}

.map-usage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.map-usage-header h3 {
  margin: 0;
  color: #333;
}

.map-usage-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

.map-usage-body {
  margin-bottom: 20px;
}

.map-usage-step {
  display: flex;
  margin-bottom: 15px;
  align-items: flex-start;
}

.step-number {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #1890ff;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  margin-right: 10px;
  flex-shrink: 0;
}

.map-usage-step p {
  margin: 0;
  color: #666;
  line-height: 1.4;
}

.map-usage-footer {
  text-align: center;
}

.map-usage-btn {
  background: #1890ff;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.map-usage-btn:hover {
  background: #40a9ff;
}