.hotel-main {
  background: #ffffff;
}

.metting-title {
  font-weight: 600;
  font-size: 36px;
  color: #333333;
  line-height: 54px;
  text-align: center;
}

.metting-title::before {
  content: "";
  display: inline-block;
  background: url("/assets/icons/metting/metting-head_left.png") no-repeat;
  background-size: cover;
  width: 34px;
  height: 20px;
  margin-right: 20px;
}

.metting-title::after {
  content: "";
  display: inline-block;
  background: url("/assets/icons/metting/metting-head_right.png") no-repeat;
  background-size: cover;
  width: 34px;
  height: 20px;
  margin-left: 20px;
}

@media (max-width: 960px) {
  .metting-title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .metting-title {
    font-size: 26px;
  }
}

.destination {
  background: #ffffff;
  padding: 60px 0;
  box-sizing: border-box;
  background-size: cover;
}

.destination .metting-title {
  margin-bottom: 20px;
}

.destination .destination-header {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.destination .destination-header .search {
  width: 220px;
  height: 44px;
  border: none;
  background: transparent;
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  line-height: 40px;
  box-sizing: border-box;
}

.destination .destination-header .search input {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  border: 1px solid #026EFF;
  padding: 0 34px 0 58px;
  background: transparent;
  font-size: 16px;
  font-weight: 400;
}

.destination .destination-header .search input::placeholder {
  color: #026EFF;
  font-weight: 400;
  font-size: 16px;
}

.destination .destination-header .search .icon {
  padding-left: 38px;
  width: 18px;
  color: #026EFF;
}

.destination .destination-header .more {
  width: 220px;
  height: 44px;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #026EFF;
  font-weight: 400;
  font-size: 16px;
  color: #026EFF;
  text-align: center;
}

.destination .destination-swiper .destination-swiper_panel {
  width: 272px;
  height: 360px;
  border-radius: 8px;
  overflow: hidden;
}

.destination .destination-swiper .destination-swiper_img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.destination .destination-swiper .destination-swiper_bottom {
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  padding: 10px 0 12px;
}

.destination .destination-swiper .destination-swiper_bottom .destination-title {
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
}

.destination .destination-swiper .destination-swiper_bottom .destination-more {
  width: 80px;
  height: 24px;
  padding: 0;
  line-height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #FFFFFF;
}

.destination .destination-swiper .destination-slider {
  width: 50px;
  height: 50px;
}

.destination-wrapper .destination-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px #eee solid;
}

.destination-wrapper .destination-title {
  font-weight: 500;
  font-size: 28px;
  color: #333333;
  line-height: 32px;
}

.destination-search {
  display: flex;
  border-radius: 4px;
  border: 1px solid #026EFF;
  max-width: 580px;
  margin: 0 auto 40px;
}

.destination-search .search-input {
  flex: 1;
}

.destination-city .destination-city_panel {
  width: 100%;
  height: 360px;
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}

.destination-city .destination-city_panel .destination-city_img {
  width: 100%;
  height: 100%;
}

.destination-city .destination-city_panel .destination-name {
  font-weight: 600;
  font-size: 36px;
  color: #FFFFFF;
}

.destination-city .destination-city_panel .destination-city_bottom {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  box-sizing: border-box;
}

.destination-city .destination-city_panel .destination-city_bottom .destination-title {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
}

.destination-city .destination-city_panel .destination-city_bottom .destination-more {
  width: 80px;
  height: 24px;
  padding: 0;
  line-height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  text-align: center;
}

/* 顶部：无缝慢速横向循环（双份内容，translate -50%） */
.destination-marquee-outer {
  margin-bottom: 8px;
}

.destination-marquee-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.destination-marquee-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
}

.destination-marquee-track.is-marquee-active {
  animation-name: destination-marquee-seamless;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.destination-marquee-wrap:hover .destination-marquee-track.is-marquee-active {
  animation-play-state: paused;
}

@keyframes destination-marquee-seamless {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.destination-marquee-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-shrink: 0;
  align-items: flex-start;
}

.destination-marquee-item {
  flex: 0 0 200px;
  max-width: 200px;
  min-width: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

@media (min-width: 960px) {
  .destination-marquee-item {
    flex-basis: 220px;
    max-width: 220px;
  }
}

.destination-carousel-slide {
  padding: 0;
}

.destination-carousel-link {
  display: block;
  text-decoration: none;
  color: #333333;
}

.destination-carousel-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  background: #eeeeee;
  /* ISO A4 竖版 210×297 mm → 宽:高 = 210:297 */
  aspect-ratio: 210 / 297;
}

.destination-carousel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 「点击查看」叠在封面图底部内侧 */
.destination-carousel-img-wrap .destination-carousel-action {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 8px 10px;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.38), transparent);
  box-sizing: border-box;
}

.destination-carousel-mask-btn {
  display: inline-block;
  max-width: calc(100% - 16px);
  padding: 5px 12px;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  box-shadow: none;
}

.destination-carousel-city {
  text-align: center;
  padding-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  line-height: 1.3;
}

.destination-policy-list-wrap {
  margin-top: 8px;
}

.destination-policy-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 12px;
  border-bottom: 1px solid #eeeeee;
  box-sizing: border-box;
  width: 100%;
}

.destination-policy-item:hover {
  background: #fafafa;
}

.destination-policy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  box-sizing: border-box;
  font-size: 17px;
  font-weight: 600;
  color: #000000;
  line-height: 1;
  flex-shrink: 0;
  border: 2px solid #cccccc;
  border-radius: 2px;
}

.destination-policy-body {
  min-width: 0;
  flex: 1;
}

.destination-policy-city {
  font-weight: 600;
  font-size: 17px;
  color: #333333;
  margin-bottom: 6px;
}

.destination-policy-desc {
  font-size: 14px;
  color: #666666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
