.logo_img img {
  max-height: 60px;
}

.nav-active {
  color: #209e2f !important;
}

/* 移除默认的文字logo */
.mean-container .mean-bar::before {
  content: "";
  background: url("../images/logo.png") no-repeat center;
  background-size: contain;
  position: absolute;
  width: 100px;
  height: 40px;
  left: 15px;
  top: 15px;
  z-index: 999;
}

/* 调整菜单按钮位置 */
.mean-container a.meanmenu-reveal {
  right: 15px !important;
  top: 15px !important;
}

/* 调整移动菜单容器样式 */
.mean-container .mean-bar {
  min-height: 70px;
  padding: 0;
  z-index: 998;
}

/* 确保下拉菜单可见 */
.mean-container .mean-nav ul {
  position: relative;
  z-index: 997;
}

/* 调整菜单展开时的样式 */
.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
}

/* 热门景点样式 */
.destination-tabs {
  margin-top: 20px;
  margin-bottom: 30px;
}

.destination-tabs .nav-tabs {
  border: none;
}

.destination-tabs .nav-link {
  border: none;
  color: #666;
  font-size: 18px;
  padding: 10px 20px;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.destination-tabs .nav-link:hover {
  color: #1e73be;
}

.destination-tabs .nav-link.active {
  color: #1e73be;
  font-weight: bold;
  background: none;
  border-bottom: 2px solid #1e73be;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  color: #1e73be;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  color: #155592;
  text-decoration: none;
}

.view-all-btn i {
  margin-left: 5px;
  font-size: 14px;
}

.destination-item {
  margin: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.destination-thumb {
  position: relative;
  overflow: hidden;
}

.destination-thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s;
}

.destination-item:hover .destination-thumb img {
  transform: scale(1.1);
}

.destination-content {
  padding: 20px;
  background: #fff;
}

.destination-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.destination-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* 修改轮播图样式 */
.destination-carousel {
  position: relative;
  width: 100%;
  margin: 0 -15px; /* 抵消容器的padding */
}

.destination-carousel .owl-stage-outer {
  overflow: hidden;
  padding: 15px 0; /* 添加上下padding，防止阴影被切断 */
}

.destination-carousel .owl-stage {
  display: flex;
}

.destination-carousel .owl-item {
  padding: 0 15px; /* 添加间距 */
}

.destination-item {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.destination-item:hover {
  transform: translateY(-5px);
}

/* 导航按钮样式 */
.destination-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}

.destination-carousel .owl-nav button {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9) !important;
  border-radius: 50% !important;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.destination-carousel .owl-nav button:hover {
  background: #1e73be !important;
  color: #fff !important;
}

.destination-carousel .owl-nav .owl-prev {
  left: -20px;
}

.destination-carousel .owl-nav .owl-next {
  right: -20px;
}

/* 轮播点样式 */
.destination-carousel .owl-dots {
  margin-top: 20px;
  text-align: center;
}

.destination-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #ddd;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
}

.destination-carousel .owl-dot.active span {
  background: #1e73be;
  width: 20px;
  border-radius: 5px;
}

/* 确保内容区域占满剩余空间 */
.destination-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* 修复可能的溢出问题 */
.tab-pane {
  overflow: hidden;
  transition: opacity 0.3s ease-in-out;
}

.tab-pane.fade {
  opacity: 0;
}

.tab-pane.fade.show {
  opacity: 1;
}

.about-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.team-list .single-team-box {
  margin: 15px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-list .single-team-box:hover {
  transform: translateY(-5px);
}

.team-list .team-thumb {
  position: relative;
  overflow: hidden;
}

.team-list .team-thumb img {
  width: 100%;
  height: auto;
}

.team-list .team-contents {
  padding: 20px;
  text-align: center;
}

.team-list .team-title h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.team-list .team-title p {
  margin: 10px 0 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  height: 65px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

/* Hide owl carousel navigation arrows */
.owl-nav {
  display: none !important;
}

/* 攻略分享样式 */
.why-choose-section {
  padding: 80px 0;
  margin-top: 30px; /* 增加与上一个section的间距 */
  background: #fff;
}

.guide-list .guide-single-box {
  margin: 15px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.guide-list .guide-single-box:hover {
  transform: translateY(-5px);
}

.guide-list .guide-thumb {
  position: relative;
  overflow: hidden;
}

.guide-list .guide-thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s;
}

.guide-list .guide-single-box:hover .guide-thumb img {
  transform: scale(1.1);
}

.guide-list .guide-content {
  padding: 20px;
}

.guide-list .guide-title h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
}

.guide-list .guide-title h3 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.guide-list .guide-title h3 a:hover {
  color: #1e73be;
}

.guide-list .guide-title p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  height: 67px; /* 约为3行文字的高度 */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

/* 攻略分享轮播图导航点样式 */
.guide-list .owl-dots {
  margin-top: 20px;
  text-align: center;
}

.guide-list .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.guide-list .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
}

.guide-list .owl-dots .owl-dot.active span {
  background: #1e73be;
  width: 20px;
  border-radius: 5px;
}

/* 确保导航点不会被其他元素遮挡 */
.guide-list {
  position: relative;
  padding-bottom: 40px; /* 为导航点预留空间 */
}

/* 服务团队样式 */
.team-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.team-carousel .single-team-box {
  margin: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-carousel .single-team-box:hover {
  transform: translateY(-5px);
}

.team-carousel .team-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4; /* 设置固定的宽高比 */
}

.team-carousel .team-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.team-carousel .single-team-box:hover .team-thumb img {
  transform: scale(1.1);
}

/* 服务团队样式 */
.service-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.service-section .guide-single-box {
  margin: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-section .guide-single-box:hover {
  transform: translateY(-5px);
}

.service-section .guide-thumb {
  position: relative;
  overflow: hidden;
}

.service-section .guide-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-section .guide-single-box:hover .guide-thumb img {
  transform: scale(1.1);
}

/* About Us Section Styles */
.about-us-section {
  padding: 80px 0;
  background: #fff;
}

.about-us-section .nav-tabs {
  border: none;
  margin-bottom: 30px;
}

.about-us-section .nav-tabs .nav-link {
  border: none;
  padding: 10px 30px;
  font-size: 18px;
  color: #666;
  border-radius: 25px;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.about-us-section .nav-tabs .nav-link.active,
.about-us-section .nav-tabs .nav-link:hover {
  background: #209e2f;
  color: #fff;
}

.about-us-section .about-image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.about-us-section .about-content {
  padding: 20px;
}

.about-us-section .about-content h3 {
  margin-bottom: 20px;
  color: #333;
}

.about-us-section .about-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-us-section .about-content ul {
  list-style: none;
  padding-left: 0;
}

.about-us-section .about-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #666;
}

.about-us-section .about-content ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #007bff;
}

.footer-copy {
  background: #007bff;
}

/* Footer Contact Form Styles */
.footer-contact-form {
  padding: 15px;
}

.footer-contact-form .form-group {
  margin-bottom: 15px;
}

.footer-contact-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 10px 15px;
  border-radius: 4px;
}

.footer-contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.footer-contact-form textarea.form-control {
  resize: none;
}

.footer-contact-form .btn-primary {
  width: 100%;
  background: #007bff;
  border: none;
  padding: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.footer-contact-form .btn-primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.footer-form input,
.footer-form textarea {
  border: none;
  outline: none;
  width: 100%;
  border-radius: 5px;
  padding: 4px 10px;
}

.footer-form button {
  border: none;
  outline: none;
  border-radius: 5px;
  padding: 4px 10px;
  background: #209e2f;
  color: #fff;
}

/* 攻略分享tab样式 */
.guide-tabs {
  margin-top: 20px;
  margin-bottom: 30px;
}

.guide-tabs .nav-tabs {
  border: none;
}

.guide-tabs .nav-link {
  border: none;
  color: #666;
  font-size: 18px;
  padding: 10px 20px;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.guide-tabs .nav-link:hover {
  color: #1e73be;
}

.guide-tabs .nav-link.active {
  color: #1e73be;
  font-weight: bold;
  background: none;
  border-bottom: 2px solid #1e73be;
}

/* 关于我们tab样式 */
.about-tabs {
  border: none;
  margin-bottom: 30px;
}

.about-tabs .nav-link {
  border: none;
  padding: 10px 30px;
  font-size: 18px;
  color: #666;
  border-radius: 25px;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.about-tabs .nav-link:hover {
  color: #1e73be;
}

.about-tabs .nav-link.active {
  background: #1e73be;
  color: #fff;
}

/* 导游卡片样式 */
.guide-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-5px);
}

.guide-card .team-thumb {
  position: relative;
  overflow: hidden;
}

.guide-card .team-thumb img {
  width: 100%;
  object-fit: cover;
}

.guide-card .team-contents {
  padding: 20px;
  text-align: center;
  background: #fff;
}

.guide-card .team-title h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #333;
}

.guide-role {
  display: block;
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.guide-motto {
  font-size: 14px;
  color: #777;
  font-style: italic;
  line-height: 1.6;
  padding: 10px 0;
  border-top: 1px solid #eee;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 55px; /* 约等于 14px * 1.6 * 2行 + padding */
}

.single-team-box {
  cursor: pointer;
}
