/* 全局样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

/* 公共样式类 */
/* 按钮样式 */
.btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #ddb05d;
  color: white;
  box-shadow: 0 4px 15px rgba(216, 164, 69, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 164, 69, 0.4);
  background: linear-gradient(135deg, #ddb05d, #0a1f13);
}

/* 卡片样式 */
.card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* 标题样式 */
.section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 容器样式 */
.container {
  width: 100%;
  overflow: hidden;
}

/* 桌面端容器 */
.desktop-container {
  display: block;
  height: 100vh;
}

/* 响应式容器 */
.container-fluid {
  width: 100%;
  padding: 0 20px;
}

/* 居中容器 */
.container-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header {
  margin-right: 15px;
}
.header-container {
  padding: 0 7px !important;
}
.swiper-container {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.swiper-button-next, .swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 20px;
}
.show-mobile {
  display: none;
}
/* 响应式设计断点 */
/* 小屏幕手机 */
@media (max-width: 480px) {
  .show-none {
    display: none;
  }
  .show-mobile {
    display: block;
  }
}

/* MICE弹窗样式 */
.mice-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
  animation: fadeIn 0.3s ease-out;
}

.mice-modal.active {
  display: block;
}

.mice-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1;
}

.mice-modal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: transparent;
  animation: slideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#miceModalContent {
  width: 100%;
}

.mice-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.mice-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}



.mice-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* transform: scale(0.8) !important; */
  transition: all 0.5s ease;
  height: 100%;
  filter: brightness(0.2);
}

/* 去除Element UI轮播的mask背景色 */
.el-carousel__mask {
  background-color: transparent !important;
}

.el-carousel__item.is-active .mice-slide{
  filter: brightness(1);
}

.mice-image-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mice-image-container:hover {
  transform: scale(1.05);
}

.mice-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.mice-slide-content {
  margin-top: 20px;
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.mice-slide-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.mice-slide-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.el-carousel__item.is-active .mice-slide-description {
  opacity: 1;
  transform: translateY(0);
  max-height: 200px;
  margin-top: 15px;
}





/* 联系我们部分样式 */
.contact-us-content {
  width: 100%;
  height: 100%;
  background: url(./homepage/res/static/img/banner10.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.contact-us-content .section-title {
  text-align: center;
  margin-bottom: 60px;
}
.contact-us-content .section-title h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.contact-us-content .section-title p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.footer-contact {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 60px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 1200px;
  margin: 20px auto 0;
  border: 1px solid rgba(224, 224, 224, 0.8);
}
.contact-section {
  flex: 1;
  min-width: 350px;
}
.contact-title {
  font-size: 24px;
  margin-bottom: 30px;
  color: #ddb05d;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 3px solid #ddb05d;
  display: inline-block;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.contact-info {
  height: 130px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}
.contact-info:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: white;
  border-color: #ddb05d;
  img{
     border-radius: 0;
     transform: scale(1.3);
  }
}
.contact-info img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ddb05d;
}
.contact-details {
  flex: 1;
}
.contact-details p {
  margin: 8px 0;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}
.contact-details i {
  color: #ddb05d;
  margin-right: 10px;
  font-size: 18px;
}



/* 图片查看器样式 */
.image-viewer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.image-viewer.active {
  display: flex;
}
.image-viewer-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}
.image-viewer-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}
.image-viewer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.image-viewer-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: rotate(90deg);
}
/* 可点击图片样式 */
.impression-item, .lefts-item img {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.impression-item:hover, .lefts-item img:hover {
  transform: scale(1.02);
}

/* 案例展示弹窗样式 */
.case-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease-out;
}
.case-modal.active {
  display: flex;
}
.case-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background: white;
  border-radius: 16px;
  padding: 20px 40px 40px;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(221, 176, 93, 0.2);
}
.case-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ddb05d, #b8860b);
  box-shadow: 0 4px 15px rgba(221, 176, 93, 0.4);
}
.case-modal-close:hover {
  background: linear-gradient(135deg, #b8860b, #ddb05d);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(221, 176, 93, 0.6);
}
.case-modal-title {
  text-align: center;
  margin-bottom: 10px;
  color: #333;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 20px;
}
.case-modal-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ddb05d, #b8860b);
  border-radius: 3px;
}
.case-modal-subtitle {
  text-align: center;
  margin-bottom: 10px;
  color: #666;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.case-carousel-container {
  flex: 1;
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: center;
}
.case-carousel {
  width: 100%;
  height: 100%;
}
.case-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.6;
  transform: scale(0.9);
  transition: all 0.5s ease;
}
.case-carousel .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
.case-item {
  width: 100%;
  max-width: 715px;
  display: flex;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.case-item:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}
.case-item img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 30px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.case-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.case-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-item-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}
.case-item-description {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}
.case-pagination {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  text-align: center;
}
.case-pagination .swiper-pagination-bullet {
  background: #e9ecef;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.case-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(90deg, #ddb05d, #b8860b);
  width: 24px;
  border-radius: 12px;
}
.case-next, .case-prev {
  color: #fff;
  background: linear-gradient(135deg, #ddb05d, #b8860b);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(221, 176, 93, 0.4);
  transition: all 0.3s ease;
  border: none;
  top: 50%;
  margin-top: -25px;
}
.case-next:hover, .case-prev:hover {
  background: linear-gradient(135deg, #b8860b, #ddb05d);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(221, 176, 93, 0.6);
}
.case-next::after, .case-prev::after {
  font-size: 18px;
  font-weight: bold;
}
.case-next {
  right: 20px;
}
.case-prev {
  left: 20px;
}

/* 公共动画效果 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}



/* 自定义时间线样式的分页器 */
.main-pagination {
  position: absolute;
  right: 20px !important;
  top: 50% !important;
  transform: translateY(30%) !important;
  width: auto;
  text-align: right;
  z-index: 10;
}

/* 添加连接线 */
.main-pagination::before {
  content: '';
  position: absolute;
  right: 7px;
  top: 40px;
  bottom: 10px;
  width: 1px;
  background: white;
  z-index: 0;
}

.main-pagination .swiper-pagination-bullet {
  display: flex !important;
  align-items: center;
  margin: 40px 0 0  !important;
  position: relative;
  opacity: 1;
  width: 16px;
  height: 16px;
  background: white;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}

/* 分页器文字 */
.main-pagination .pagination-text {
  width: 7vw;
  font-size: 16px;
  color: white;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  position: absolute;
  left: -140px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  text-align: center;
  padding: 0.5vw 0;
  display: inline-block;
  z-index: 2;
}

.main-pagination .swiper-pagination-bullet-active .pagination-text {
  opacity: 1;
  font-weight: 800;
  border: 1px solid #fff;
  border-radius: 4px;
  font-size: 20px;
}

/* 第五个幻灯片的文字颜色 */
.swiper-slide:nth-child(5) .main-pagination .pagination-text {
  color: #333;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}
/* 滚动指示器样式 */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 60px;
  border: 2px solid white;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  animation: bounce 2s infinite;
  z-index: 1000;
}

.scroll-indicator::after {
  content: '';
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: scroll 2s infinite;
}

/* 动画定义 */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* 关于我们部分 */
.introduce {
  width: 100%;
  height: 100%;
  background: url('./homepage/res/static/img/banner5.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.introduce-header {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-out;
}

.introduce-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.introduce-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.introduce-content-wrapper {
  display: flex;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  flex-wrap: wrap;
  justify-content: center;
}

.introduce-content {
  width: 750px;
  max-width: 100%;
  height: 400px;
  display: flex;
  animation: fadeInUp 1s ease-out;
}

.introduce-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.content-left {
  width: 280px;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.content-right {
  flex: 1;
  height: 100%;
  padding: 30px 20px;
  color: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-right .title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  border-bottom: 2px solid #ddb05d;
  padding-bottom: 8px;
  width: fit-content;
}

.content-right .text {
  line-height: 1.5;
  font-size: 16px;
  color: #555;
  flex: 1;
}

.content-right .text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-right .text ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 6px;
}

.content-right .text ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ddb05d;
  font-weight: bold;
}

/* 景点推荐部分 */
.impression {
  width: 100%;
  height: 100%;
  background: url('./homepage/res/static/img/banner8.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.impression-content { 
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 34vw);
 gap: 20px;
  justify-content: center;
}

.impression-item {
  width: 34vw;
  height: 34vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}
.impression-item:hover .title-text{
  display: none;
}
.impression-item .title-text{
  position: absolute;
  left: 24px;
  bottom: 24px;
}

.more {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transform: translateX(-100%);
  transition: transform 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  /* 首行缩进2字符*/
  /* text-indent: 2em; */
  font-size: 14px;
  padding: 24px;
  text-align: justify;
}
.more .title{
  font-size: 24px;
  margin-bottom: 16px;
  text-indent: 0;
  text-align: center;
}

/* .moer img {
  width: 35px;
  height: 35px;
} */

.impression-item:hover .more {
  transform: translateX(0);
}

/* 酒店推荐部分 */
.visit {
  width: 100%;
  height: 100%;
  background: url('./homepage/res/static/img/banner7.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-item {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visit-content {
  display: grid;
  grid-template-columns: repeat(2, 40vw);
}

.visit-item {
  width: 40vw;
  height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit-item:nth-child(-n + 2) {
  flex-direction: row-reverse;
}

.lefts {
  width: 20vw;
  height: 35vh;
}

.lefts .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rights {
  position: relative;
  width: 20vw;
  height: 35vh;
  background: linear-gradient(180deg, hsla(0, 0%, 97.3%, 0.8), hsla(0, 0%, 97.3%, 0.9) 100%);
  color: #444;
  padding: 1vw;
}

.rights .text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-indent: 2em;
}
.rights .title{
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  text-indent: 0;
}

.rights .english-title {
  font-size: 16px;
  color: #666;
  margin-bottom: 16px;
  font-style: italic;
  text-indent: 0;
}

.canteen{
  width: 100%;
  height: 100%;
  background: url('./homepage/res/static/img/banner9.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

/* 新加坡周边部分 */
.singapore-surroundings {
  width: 100%;
  height: 100%;
  background: url('./homepage/res/static/img/banner2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.surroundings-container {
  display: flex;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  justify-content: center;
  align-items: center;
}

.surroundings-item {
  position: relative;
  width: 48%;
  max-width: 600px;
  height: 50vh;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.surroundings-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.surroundings-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.surroundings-item:hover .surroundings-image {
  transform: scale(1.05);
}

.surroundings-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  transition: all 0.3s ease;
}

.surroundings-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}



/* 主要业务部分 */
.service-center {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #333;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-overlay {
  display: none;
}

.service-content {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 30px 20px;
  width: 300px;
  max-width: 300px;
  
  max-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  transition: all 0.5s ease-in-out;
  transform-origin: center;
}

.service-item:hover .service-content {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  justify-content: center;
  border-radius: 0;
  transition: all 0.5s ease-in-out;
}

.service-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.5s ease-in-out;
  margin-bottom: 20px;
}

.service-header img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.service-header h3 {
  text-align: center;
  font-size: 24px;
  margin: 0;
  color: #333;
}

.service-tags {
  transition: transform 0.5s ease-in-out;
  width: 100%;
  cursor: default;
}

.service-tags ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-tags ul li {
  text-align: center;
  line-height: 2;
  font-size: 16px;
  color: #555;
 font-weight: bold;
}

.service-item:hover {
  transition: transform 0.3s ease-in-out;
  transform: scale(1.2);
  transform-origin: center;
  z-index: 99;
  .service-tags ul li {
    font-size: 14px;
  }
}

.service-item:hover .service-content {
  transform: translateY(-10px);
}

.service-item:hover .service-header {
  transform: scale(1.2);
  transition: transform 0.3s ease-in-out;
}



/* 横向滚动的 swiper 样式 */
.horizontal-swiper {
  width: 100%;
  height: 100%;
}

.horizontal-swiper-wrapper {
  width: 100%;
  height: 100%;
}

.horizontal-swiper-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* 访问页面的轮播样式 */
.visit-carousel {
  width: 100%;
  height: 100vh;
}

.lefts-carousel {
  width: 100%;
  height: 35vh;
}

.lefts-item {
  width: 100%;
  height: 100%;
}
.visit-swiper-pagination .swiper-pagination-bullet {
  width: 35px;
  background: aliceblue;
  border-radius: 35px;
  height: 4px;
}



/* 奢华旅游弹窗样式 */
.luxury-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  animation: fadeIn 0.3s ease-out;
}

.luxury-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.luxury-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.luxury-modal-content {
  position: relative;
  z-index: 2;
  width: 95%;
  max-width: 1200px;
  height: 90%;
  max-height: 800px;
  background: transparent;
  border-radius: 20px;
  animation: slideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.luxury-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #333;
  font-size: 28px;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.luxury-modal-close:hover {
  background: #333;
  color: white;
  transform: rotate(90deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.luxury-cards-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 60px;
  overflow: hidden;
  width: 100%;
  align-items: center;
  justify-content: center;
}

/* 上面两个卡片的容器 */
.luxury-cards-row-1 {
  display: grid;
  grid-template-columns: repeat(2, 300px);
  gap: 30px;
  max-width: 930px;
}

.luxury-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  height: 350px;
  width: 300px;
  cursor: pointer;
}

/* 下面三个卡片的容器 */
.luxury-cards-row-2 {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  gap: 30px;
  grid-column: 1 / -1;
}

.luxury-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.luxury-image-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 15px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
  margin: 0 auto 15px;
  
}

.luxury-image-container:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3);
}

.luxury-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.luxury-slide-content {
  text-align: center;
  width: 100%;
  padding: 0 10px;
}

.luxury-slide-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  transition: all 0.3s ease;
  font-family: 'Arial', sans-serif;
  letter-spacing: -0.5px;
}





/* 合作伙伴部分样式 */
.partners-section {
  width: 100%;
  min-height: 100vh;
  background: url('./homepage/res/static/img/banner10.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 40px;
  overflow: hidden;
  position: relative;
}

/* 移除partners-header样式 */

.partners-grid {
  width: 100%;
  max-width: 1400px;
}

.partner-category {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(224, 224, 224, 0.8);
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.partner-logos {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-content: flex-start;
}

.partner-category-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ddb05d;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 3px solid #ddb05d;
  display: inline-block;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.partner-logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px;
  background: #fffefe;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  height: 80px;
  overflow: hidden;
}

.partner-logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: white;
  border-color: #ddb05d;
}

.partner-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.partner-logo-item:hover .partner-logo {
  transform: scale(1.05);
}

/* 合作伙伴书签导航 */
.partners-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  position: fixed;
  top: 14vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.tab-button {
  padding: 12px 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid #dee2e6;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #495057;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.tab-button:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #ddb05d;
}

.tab-button.active {
  background: linear-gradient(135deg, #ddb05d 0%, #c89d4a 100%);
  color: white;
  border-color: #ddb05d;
  box-shadow: 0 4px 15px rgba(221, 176, 93, 0.4);
  transform: translateY(-3px);
}

.partners-tabs-content {
  position: relative;
  margin-top: 14vh;
  width: 100%;
  max-width: 1400px;
  min-height: 300px;
}

.tab-content {
  display: none;
  animation: slideIn 0.4s ease-out;
  width: 100%;
  min-height: 300px;
}

.tab-content.active {
  display: block;
  width: 100%;
  min-height: 300px;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(15px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}


