:root {
    /* 网站主题色变量 */
    --primary: #005500;      /* 主色调 - 深绿色 */
    --secondary: #8a9a5b;    /* 次要色 - 橄榄绿 */
    --accent: #d4c06f;       /* 强调色 - 金色 */
    --light: #f8f4e9;        /* 浅色背景 */
    --dark: #4d3a1f;         /* 深色背景 */
    --text: #5d4a2d;         /* 主要文本颜色 */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* 确保元素的宽度和高度包括内边距和边框 */
}
html, body {
  height: 100%;
}
body {
    font-family: 'Noto Serif SC', serif; /* 设置全局字体为 Noto Serif SC */
    color: var(--text);                  /* 使用定义的文本颜色变量 */
    background: var(--light);            /* 设置背景浅色 */
    line-height: 1.6;                    /* 设置行高 */
}


/* 顶部品牌区域样式 */
.brand-top {
    background: var(--primary);          /* 使用主色调作为背景色 */
    color: white;                        /* 设置文字颜色为白色 */
    justify-content: center;             /* 水平居中对齐内容 */
    align-items: center;                 /* 垂直居中对齐内容 */
    position: relative;                  /* 相对定位 */
    z-index: 1000;                       /* 设置堆叠顺序 */
}

.brand-info {
    display: flex;                        /* 使用 flex 布局 */
    align-items: center;                  /* 垂直居中对齐内容 */
    gap: 15px;                            /* 子元素间距 */
    justify-content: center;              /* 水平居中对齐内容 */
}

.brand-logo {
    display: flex;                        /* 使用 flex 布局 */
    align-items: center;                  /* 垂直居中对齐内容 */
    gap: 15;                              /* 子元素间距 */
	margin-top: 10px;                     /* 上边距 */
	margin-bottom: 0px;                  /* 下边距 */
}

.contact-info {
    display: flex;                        /* 使用 flex 布局 */
    gap: 20px;                            /* 子元素间距 */
    justify-content: center;              /* 水平居中对齐内容 */
}

.contact-item {
    display: flex;                        /* 使用 flex 布局 */
    align-items: center;                  /* 垂直居中对齐内容 */
    gap: 8px;                             /* 子元素间距 */
    font-size: 14px;                      /* 设置联系信息字体大小 */
	margin-top: 10px;                     /* 上边距 */
	margin-bottom: 10px;                  /* 下边距 */
}
.contact-fbt {
    display: flex;                        /* 使用 flex 布局 */
    gap: 50px;                            /* 子元素间距 */
    justify-content: center;              /* 水平居中对齐内容 */
	margin-top: 0px;                     /* 上边距 */
	margin-bottom: 0px;                  /* 下边距 */
}

.contact-fbt2 {
    align-items: center;                  /* 垂直居中对齐内容 */
    font-size: 16px;                      /* 设置自然之味健康之礼字体大小 */
}
nav {
  background: var(--light);                             /* 使用CSS变量设置浅色背景 */
  padding: 5px 30px;                                      /* 左右内边距30px，上下为0 */
  border-bottom: 1px solid rgba(139, 115, 75, 0.1);     /* 底部半透明边框 */
  position: sticky;                                     /* 粘性定位 */
  top: 0;   /* 距离视口顶部0px时固定 */
  z-index: 999; /* 确保导航栏在最顶层 */
  box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* 底部轻微阴影 */
  display: flex; /* 启用Flex布局 */
  justify-content: center; /* 内容居中对齐 */
  align-items: center; /* 垂直居中 */
  max-width: 100%; /* 确保宽度不超过视口 */
  margin: 0 auto; /* 水平居中 */
}

/* 导航内容容器布局 */
.nav-container {
  display: flex; /* 启用Flex布局 */
  justify-content: center; /* 内容居中对齐 */
  align-items: center; /* 垂直居中 */
  max-width: 1200px; /* 最大宽度限制 */
  margin: 0 auto; /* 水平居中 */
  padding: 0 20px; /* 添加左右内边距（可选） */
}

/* 主导航链接列表样式 */
.main-nav {
  display: flex; /* 启用Flex布局 */
  list-style: none; /* 移除列表默认样式 */
}
/* 单个导航项样式 */
.nav-item {
  position: relative; /* 相对定位（用于伪元素定位） */
  padding: 10px 30px; /* 内边距 */
  font-weight: 600; /* 粗体 */
  font-size: 16px; /* 字体大小 */
  color: var(--dark); /* 文字颜色使用CSS变量 */
  cursor: pointer; /* 鼠标指针样式 */
  transition: all 0.3s ease; /* 所有属性过渡效果 */
  display: flex; /* 启用Flex布局 */
  align-items: center; /* 垂直居中 */
}

/* 导航项底部指示条（伪元素） */
.nav-item::after {
  content: ''; /* 必须内容属性 */
  position: absolute; /* 绝对定位 */
  bottom: 0; /* 定位到底部 */
  left: 50%; /* 从左侧50%位置开始 */
  width: 0; /* 初始宽度为0 */
  height: 3px; /* 高度 */
  background: var(--secondary); /* 使用CSS变量设置颜色 */
  transform: translateX(-50%); /* 水平居中 */
  transition: width 0.3s ease; /* 宽度过渡动画 */
}

/* 悬停/激活状态下的指示条效果 */
.nav-item:hover::after, 
.nav-item.active::after {
  width: 80%; /* 展开至80%宽度 */
}

/* 悬停/激活状态文字效果 */
.nav-item:hover, 
.nav-item.active {
  color: var(--primary); /* 使用CSS变量改变文字颜色 */
}

/* 导航项内图标样式 */
.nav-item i {
  margin-right: 8px; /* 图标右侧间距 */
  font-size: 18px; /* 图标大小 */
  color: var(--secondary); /* 使用CSS变量设置颜色 */
}
/* 导航链接样式 */
.nav-item a {
    text-decoration: none;             /* 去掉文本装饰（如下划线） */
    color: inherit;                    /* 继承父元素的颜色属性 */
}
/* 欢迎区域样式 */
.welcome-section {
    padding: 60px 40px 30px;  /* 内边距 */
    text-align: center;  /* 文本居中 */
    background: #f8f5f0;  /* 背景 */
    position: relative;  /* 相对定位 */
    overflow: hidden;  /* 隐藏溢出内容 */
}

/* 区域标题样式 */
.section-title {
    font-size: 2.8rem;  /* 字体大小 */
    color: var(--primary);  /* 使用主绿色 */
    margin-bottom: 20px;  /* 下边距 */
    font-family: 'Ma Shan Zheng', cursive;  /* 特殊字体 */
    position: relative;  /* 相对定位 */
    display: inline-block;  /* 行内块元素 */
    text-align: center;  /* 文本居中 */
    width: 100%;  /* 宽度100% */
}

/* 标题下划线效果（伪元素） */
.section-title::after {
    content: '';  /* 伪元素内容 */
    position: absolute;  /* 绝对定位 */
    bottom: -10px;  /* 底部偏移 */
    left: 50%;  /* 水平居中 */
    transform: translateX(-50%);  /* X轴偏移 */
    width: 100px;  /* 宽度 */
    height: 4px;  /* 高度 */
    background: var(--accent);  /* 使用强调色 */
}

/* 欢迎文本样式 */
.welcome-text {
    max-width: 800px;  /* 最大宽度 */
    margin: 40px auto;  /* 外边距 */
    font-size: 1.2rem;  /* 字体大小 */
    line-height: 1.8;  /* 行高 */
}
/* 山脉装饰元素样式 */
.mountain-decoration {
    position: absolute;  /* 绝对定位 */
    z-index: 1;  /* 层级 */
    opacity: 0.1;  /* 透明度 */
}

/* 装饰元素1样式 */
.decoration-1 {
    width: 250px;  /* 宽度 */
    height: 250px;  /* 高度 */
    background: var(--mountain-blue);  /* 使用山蓝色 */
    border-radius: 50% 50% 0 0;  /* 半圆形 */
    top: 10%;  /* 顶部定位 */
    right: 5%;  /* 右侧定位 */
}

/* 装饰元素2样式 */
.decoration-2 {
    width: 180px;  /* 宽度 */
    height: 180px;  /* 高度 */
    background: var(--primary-green);  /* 使用主绿色 */
    border-radius: 0 0 50% 50%;  /* 倒半圆形 */
    bottom: 15%;  /* 底部定位 */
    left: 7%;  /* 左侧定位 */
}
/* 轮播图区域样式 */
.slider-section {
    padding: 10px 0;  /* 上下内边距 */
    background: #f8f5f0;  /* 背景 */
    position: relative;  /* 相对定位 */
}

/* 轮播容器样式 */
.slider-container {
    max-width: 1200px;  /* 最大宽度 */
    margin: 0 auto;  /* 水平居中 */
    position: relative;  /* 相对定位 */
    overflow: hidden;  /* 隐藏溢出内容 */
    border-radius: 15px;  /* 圆角 */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);  /* 阴影 */
    height: 500px;  /* 固定高度 */
}

/* 轮播轨道样式 */
.slider {
    display: flex;  /* 弹性布局 */
    transition: transform 0.5s ease-in-out;  /* 过渡效果 */
    height: 100%;  /* 高度100% */
}

/* 单个轮播项样式 */
.slide {
    min-width: 100%;  /* 最小宽度100% */
    height: 100%;  /* 高度100% */
    position: relative;  /* 相对定位 */
}

/* 轮播图片样式 */
.slide-img {
    width: 100%;  /* 宽度100% */
    height: 100%;  /* 高度100% */
    object-fit: cover;  /* 图片填充方式 */
}

/* 轮播遮罩层样式 */
.slide-overlay {
    position: absolute;  /* 绝对定位 */
    bottom: 0;  /* 底部对齐 */
    left: 0;  /* 左侧对齐 */
    width: 100%;  /* 宽度100% */
    padding: 40px;  /* 内边距 */
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);  /* 渐变遮罩 */
    color: white;  /* 白色文字 */
}

/* 轮播标题样式 */
.slide-title {
    font-size: 2.5rem;  /* 字体大小 */
    margin-bottom: 15px;  /* 下边距 */
    font-family: 'Ma Shan Zheng', cursive;  /* 特殊字体 */
    color: white;  /* 白色文字 */
}

/* 轮播描述文本样式 */
.slide-desc {
    font-size: 1.2rem;  /* 字体大小 */
    max-width: 600px;  /* 最大宽度 */
    color: rgba(255,255,255,0.9);  /* 半透明白色 */
}

/* 轮播导航按钮样式 */
.slider-nav {
    position: absolute;  /* 绝对定位 */
    top: 50%;  /* 垂直居中 */
    transform: translateY(-50%);  /* Y轴偏移 */
    width: 50px;  /* 宽度 */
    height: 50px;  /* 高度 */
    background: rgba(255, 255, 255, 0.8);  /* 半透明白色背景 */
    border-radius: 50%;  /* 圆形 */
    display: flex;  /* 弹性布局 */
    align-items: center;  /* 垂直居中 */
    justify-content: center;  /* 水平居中 */
    cursor: pointer;  /* 手型光标 */
    z-index: 10;  /* 层级 */
    transition: all 0.3s ease;  /* 过渡效果 */
}

/* 轮播导航按钮悬停效果 */
.slider-nav:hover {
    background: var(--primary);  /* 背景变绿色 */
    color: white;  /* 文字变白 */
}

/* 上一张按钮位置 */
.prev-btn {
    left: 20px;  /* 左侧定位 */
}

/* 下一张按钮位置 */
.next-btn {
    right: 20px;  /* 右侧定位 */
}

/* 轮播指示器容器样式 */
.slider-indicators {
    position: absolute;  /* 绝对定位 */
    bottom: 20px;  /* 底部定位 */
    left: 50%;  /* 水平居中 */
    transform: translateX(-50%);  /* X轴偏移 */
    display: flex;  /* 弹性布局 */
    gap: 10px;  /* 项目间距 */
    z-index: 10;  /* 层级 */
}

/* 单个指示器样式 */
.indicator {
    width: 15px;  /* 宽度 */
    height: 15px;  /* 高度 */
    border-radius: 50%;  /* 圆形 */
    background: rgba(255,255,255,0.5);  /* 半透明白色 */
    cursor: pointer;  /* 手型光标 */
    transition: all 0.3s ease;  /* 过渡效果 */
}

/* 活动状态指示器样式 */
.indicator.active {
    background: var(--primary);  /* 白色背景 */
    transform: scale(1.2);  /* 放大效果 */
}

/* 景区地图区域样式 */
.map-section {
    padding: 80px 5%;  /* 内边距 */
    background: transparent;  /* 设置透明背景 */
    position: relative;  /* 相对定位 */
}

/* 地图标签页样式 */
.map-tabs {
    display: flex;  /* 弹性布局 */
    justify-content: center;  /* 水平居中 */
    gap: 20px;  /* 项目间距 */
    margin-top: 20px;  /* 上边距 */
    margin-bottom: 20px;  /* 下边距 */
}

/* 单个标签样式 */
.map-tab {
    padding: 10px 30px;  /* 内边距 */
    background: white;  /* 白色背景 */
    border-radius: 50px;  /* 圆角 */
    font-weight: 600;  /* 字体粗细 */
    cursor: pointer;  /* 手型光标 */
    transition: all 0.3s ease;  /* 过渡效果 */
    border: 2px solid var(--primary);  /* 绿色边框 */
    color: var(--primary);  /* 绿色文字 */
}

/* 活动状态标签样式 */
.map-tab.active {
    background: var(--primary);  /* 绿色背景 */
    color: white;  /* 白色文字 */
}

/* 地图容器样式 */
.map-container {
    max-width: 1200px;  /* 最大宽度 */
    margin: 0 auto;  /* 水平居中 */
    background: white;  /* 白色背景 */
    border-radius: 12px;  /* 圆角 */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);  /* 阴影 */
    overflow: hidden;  /* 隐藏溢出内容 */
    position: relative;  /* 相对定位 */
    height: 580px;  /* 固定高度 */
}

/* 地图图片样式 */
.map-image {
    width: 100%;  /* 宽度100% */
    height: 100%;  /* 高度100% */
    object-fit: fill; /* 完整显示，不裁剪 */
    display: none;  /* 默认隐藏 */
}

/* 活动状态地图图片 */
.map-image.active {
    display: block;  /* 显示 */
}

/* 地图信息区域样式 */
.map-info {
    position: absolute;  /* 绝对定位 */
    bottom: 0;  /* 底部对齐 */
    left: 0;  /* 左侧对齐 */
    width: 100%;  /* 宽度100% */
    background: rgba(255, 255, 255, 0.95);  /* 半透明白色背景 */
    padding: 20px;  /* 内边距 */
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);  /* 阴影 */
    display: flex;  /* 弹性布局 */
    justify-content: space-between;  /* 两端对齐 */
    align-items: center;  /* 垂直居中 */
}

/* 地图详情样式 */
.map-details {
    flex: 1;  /* 弹性扩展 */
}

/* 地图标题样式 */
.map-title {
    font-size: 1.5rem;  /* 字体大小 */
    color: var(--primary-green);  /* 绿色文字 */
    margin-bottom: 20px;  /* 下边距 */
    font-family: 'Ma Shan Zheng', cursive;  /* 特殊字体 */
}

/* 地图描述文本样式 */
.map-description {
    color: var(--text);  /* 使用文本色 */
    max-width: 600px;  /* 最大宽度 */
}

/* 地图操作按钮区域 */
.map-actions {
    display: flex;  /* 弹性布局 */
    gap: 15px;  /* 项目间距 */
}

/* 地图按钮基础样式 */
.map-btn {
    padding: 12px 25px;  /* 内边距 */
    border-radius: 50px;  /* 圆角 */
    font-weight: 600;  /* 字体粗细 */
    cursor: pointer;  /* 手型光标 */
    display: flex;  /* 弹性布局 */
    align-items: center;  /* 垂直居中 */
    gap: 8px;  /* 项目间距 */
    transition: all 0.3s ease;  /* 过渡效果 */
}

/* 主要按钮样式 */
.map-btn.primary {
    background: var(--primary-green);  /* 绿色背景 */
    color: white;  /* 白色文字 */
    border: none;  /* 无边框 */
}

/* 次要按钮样式 */
.map-btn.secondary {
    background: transparent;  /* 透明背景 */
    color: var(--primary-green);  /* 绿色文字 */
    border: 2px solid var(--primary-green);  /* 绿色边框 */
}

/* 按钮悬停效果 */
.map-btn:hover {
    transform: translateY(-3px);  /* 上移效果 */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);  /* 阴影 */
}

/* 路线概览信息区样式 */
.route-overview {
    max-width: 1200px;  /* 最大宽度 */
    margin: 30px auto 0;  /* 外边距 */
    background: white;  /* 白色背景 */
    border-radius: 12px;  /* 圆角 */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);  /* 阴影 */
    padding: 30px;  /* 内边距 */
    display: flex;  /* 弹性布局 */
    flex-wrap: wrap;  /* 允许换行 */
    gap: 30px;  /* 项目间距 */
}

/* 概览区块样式 */
.overview-section {
    flex: 1;  /* 弹性扩展 */
    min-width: 250px;  /* 最小宽度 */
}

/* 概览标题样式 */
.overview-title {
    font-family: 'Ma Shan Zheng', cursive;  /* 特殊字体 */
    font-size: 1.5rem;  /* 字体大小 */
    color: var(--primary);  /* 绿色文字 */
    margin-bottom: 15px;  /* 下边距 */
    padding-bottom: 10px;  /* 底部内边距 */
    border-bottom: 2px solid var(--accent);  /* 底部边框 */
}

/* 概览项样式 */
.overview-item {
    margin-bottom: 12px;  /* 下边距 */
    display: flex;  /* 弹性布局 */
    align-items: center;  /* 垂直居中 */
    gap: 10px;  /* 项目间距 */
}

/* 概览项图标样式 */
.overview-item i {
    color: var(--primary);  /* 绿色图标 */
    font-size: 1.2rem;  /* 图标大小 */
    width: 25px;  /* 固定宽度 */
}

/* 概览值样式 */
.overview-value {
    font-weight: 700;  /* 加粗 */
    color: var(--primary);  /* 绿色文字 */
}

/* 概览备注样式 */
.overview-notes {
    padding: 15px;  /* 内边距 */
    background: rgba(212, 192, 111, 0.1);  /* 半透明背景 */
    border-left: 3px solid var(--accent);  /* 左侧边框 */
    margin-top: 10px;  /* 上边距 */
    border-radius: 0 8px 8px 0;  /* 圆角 */
}

/* 路线景点展示区样式 */
.route-attractions {
    max-width: 1200px;
    margin: 30px auto 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 25px 30px;
}

/* 路线景点标题样式 */
.route-attractions-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.route-attractions-title i {
    color: var(--accent);
}

/* 路线景点网格布局 */
.route-attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* 路线景点项样式 */
.route-attraction-item {
    background: #f8f5f0;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.route-attraction-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* 路线景点图片容器 */
.route-attraction-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

.route-attraction-item:hover .route-attraction-img img {
    transform: scale(1.05);
}

/* 路线景点标签 */
.route-attraction-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 路线景点信息 */
.route-attraction-info {
    padding: 15px 20px;
}

.route-attraction-info h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.route-attraction-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.route-attraction-info p i {
    color: var(--primary);
}

/* 旅游线路攻略区域样式 */
.travel-route {
    padding: 80px 5% 40px;  /* 内边距 */
    background: #f8f5f0;  /* 与欢迎区域相同的背景 */
    position: relative;  /* 相对定位 */
}

/* 路线内容容器 */
.route-content {
    max-width: 1200px;  /* 最大宽度 */
    margin: 30px auto 0;  /* 水平居中，增加上边距 */
}

/* 路线区块样式 */
.route-section {
    background: white;  /* 白色背景 */
    border-radius: 12px;  /* 圆角 */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);  /* 阴影 */
    padding: 30px;  /* 内边距 */
    margin-bottom: 30px;  /* 下边距 */
}

/* 路线区块标题样式 */
.route-section-title {
    font-family: 'Ma Shan Zheng', cursive;  /* 特殊字体 */
    font-size: 1.8rem;  /* 字体大小 */
    color: var(--primary);  /* 绿色文字 */
    margin-bottom: 20px;  /* 下边距 */
    padding-bottom: 15px;  /* 底部内边距 */
    border-bottom: 2px solid var(--accent);  /* 底部边框 */
    display: flex;  /* 弹性布局 */
    align-items: center;  /* 垂直居中 */
    gap: 10px;  /* 图标与文字间距 */
}

/* 路线子区块样式 */
.route-subsection {
    margin-bottom: 25px;  /* 下边距 */
}

/* 路线子区块标题样式 */
.route-subsection-title {
    font-size: 1.3rem;  /* 字体大小 */
    color: var(--secondary);  /* 次要色文字 */
    margin-bottom: 15px;  /* 下边距 */
    display: flex;  /* 弹性布局 */
    align-items: center;  /* 垂直居中 */
    gap: 8px;  /* 图标与文字间距 */
}

/* 路线列表样式 */
.route-list {
    list-style: none;  /* 移除默认列表样式 */
}

/* 路线列表项样式 */
.route-item {
    margin-bottom: 12px;  /* 下边距 */
    display: flex;  /* 弹性布局 */
    align-items: center;  /* 垂直居中 */
    gap: 10px;  /* 项目间距 */
    line-height: 1.6;  /* 行高 */
}

/* 路线表情符号样式 */
.route-emoji {
    font-size: 1.2rem;  /* 字体大小 */
    width: 30px;  /* 固定宽度 */
}

/* 路线名称样式 */
.route-name {
    font-weight: 600;  /* 字体粗细 */
    color: var(--primary);  /* 绿色文字 */
}

/* 路线描述样式 */
.route-desc {
    color: var(--text);  /* 文本颜色 */
}

/* 路线卡片样式 */
.route-card {
    background: rgba(212, 192, 111, 0.1);  /* 半透明背景 */
    border-radius: 10px;  /* 圆角 */
    padding: 25px;  /* 内边距 */
    border-left: 4px solid var(--accent);  /* 左侧边框 */
}

/* 路线卡片头部样式 */
.route-card-header {
    display: flex;  /* 弹性布局 */
    align-items: center;  /* 垂直居中 */
    gap: 10px;  /* 项目间距 */
    margin-bottom: 20px;  /* 下边距 */
}

/* 路线卡片表情符号样式 */
.route-card-emoji {
    font-size: 1.5rem;  /* 字体大小 */
}

/* 路线卡片标题样式 */
.route-card-title {
    font-size: 1.3rem;  /* 字体大小 */
    color: var(--primary);  /* 绿色文字 */
    font-weight: 600;  /* 字体粗细 */
}

/* 路线卡片内容样式 */
.route-card-content {
    display: flex;  /* 弹性布局 */
    flex-direction: column;  /* 垂直方向 */
    gap: 15px;  /* 项目间距 */
}

/* 路线卡片项样式 */
.route-card-item {
    display: flex;  /* 弹性布局 */
    align-items: flex-start;  /* 顶部对齐 */
    gap: 10px;  /* 项目间距 */
}

/* 路线卡片项图标样式 */
.route-card-item i {
    color: var(--primary);  /* 绿色图标 */
    font-size: 1.2rem;  /* 图标大小 */
    width: 25px;  /* 固定宽度 */
    margin-top: 2px;  /* 上边距，调整对齐 */
}

/* 路线卡片项标签样式 */
.route-card-label {
    font-weight: 600;  /* 字体粗细 */
    color: var(--secondary);  /* 次要色文字 */
    min-width: 70px;  /* 固定宽度 */
}

/* 路线卡片项值样式 */
.route-card-value {
    color: var(--text);  /* 文本颜色 */
    flex: 1;  /* 弹性扩展 */
}

/* 景点展示区样式 */
.attractions {
    padding: 10px 5%;  /* 内边距 */
    margin-bottom: 20px;  /* 下边距 */
    background: transparent;  /* 背景 */
}

/* 特色景点网格布局 */
.attractions-grid {
    display: grid;  /* 网格布局 */
    grid-template-columns: repeat(3, 1fr);  /* 3列布局 */
    gap: 40px;  /* 项目间距 */
    max-width: 1200px;  /* 最大宽度 */
    margin: 30px auto 0;  /* 水平居中，增加30px上边距 */
}

/* 景点卡片样式 */
.attraction-card {
    background: white;  /* 使用白色 */
    border-radius: 12px;  /* 圆角 */
    overflow: hidden;  /* 隐藏溢出内容 */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);  /* 阴影 */
    transition: all 0.4s ease;  /* 过渡效果 */
    position: relative;  /* 相对定位 */
}

/* 卡片悬停效果 */
.attraction-card:hover {
    transform: translateY(-10px);  /* 上移效果 */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);  /* 阴影增强 */
}

/* 景点图片区域 */
.attraction-img {
    height: 250px;  /* 固定高度 */
    overflow: hidden;  /* 隐藏溢出内容 */
    position: relative;  /* 相对定位 */
}

/* 景点图片样式 */
.attraction-img img {
    width: 100%;  /* 宽度100% */
    height: 100%;  /* 高度100% */
    object-fit: cover;  /* 图片填充方式 */
    transition: transform 0.5s ease;  /* 过渡效果 */
}

/* 图片悬停放大效果 */
.attraction-card:hover .attraction-img img {
    transform: scale(1.1);  /* 放大效果 */
}

/* 景点标签样式 */
.attraction-label {
    position: absolute;  /* 绝对定位 */
    top: 20px;  /* 顶部定位 */
    left: 20px;  /* 左侧定位 */
    background: rgba(255, 255, 255, 0.9);  /* 半透明白色背景 */
    padding: 8px 20px;  /* 内边距 */
    border-radius: 30px;  /* 圆角 */
    font-weight: 600;  /* 字体粗细 */
    color: var(--primary);  /* 绿色文字 */
    z-index: 2;  /* 层级 */
}

/* 景点内容区域 */
.attraction-content {
    padding: 25px;  /* 内边距 */
}

/* 景点标题样式 */
.attraction-content h3 {
    font-family: 'Noto Serif SC', serif;  /* 中文字体 */
    font-size: 1.7rem;  /* 字体大小 */
    color: var(--primary);  /* 使用深色 */
    margin-bottom: 10px;  /* 下边距 */
    text-align: center;  /* 文本居中 */
}

/* 景点描述文本样式 */
.attraction-desc {
    font-size: 1.05rem;  /* 字体大小 */
    color: var(--text);  /* 灰色文字 */
    margin-bottom: 20px;  /* 下边距 */
    line-height: 1.7;  /* 行高 */
}

/* 景点文字特色区域 */
.attraction-features {
    display: flex;  /* 弹性布局 */
    flex-wrap: wrap;  /* 允许换行 */
    margin-bottom: 10px;  /* 下边距 */
    justify-content: center;  /* 水平居中 */
}

/* 单个特色项样式 */
.feature-item {
    display: flex;  /* 弹性布局 */
    align-items: center;  /* 垂直居中 */
    margin: 0 10px 12px;  /* 外边距 */
    color: var(--text);  /* 灰色文字 */
}

/* 特色图标样式 */
.feature-item i {
    color: var(--primary);  /* 使用茶绿色 */
    margin-right: 8px;  /* 右侧外边距 */
}
/* 摄影作品展示区样式 */
.photography-section {
    padding: 40px 2% 60px;  /* 内边距：上40px，左右2%，下60px */
    background: transparent;  /* 背景色 */
    text-align: center;  /* 内容居中 */
    position: relative;  /* 相对定位 */
}

/* 轮播容器样式 */
.photo-slider-container {
    max-width: 1200px;  /* 最大宽度限制 */
    margin: 20px auto 0;  /* 外边距：上20px，左右自动(居中) */
    position: relative;  /* 相对定位 */
    overflow: hidden;  /* 隐藏溢出内容 */
    padding: 0 60px;  /* 左右内边距 */
}

/* 轮播轨道样式 */
.photo-slider {
    display: flex;  /* 弹性布局 */
    transition: transform 0.5s ease-in-out;  /* 平滑过渡效果 */
    gap: 20px;  /* 项目间距 */
}

/* 轮播组样式 */
.photo-slide-group {
    min-width: 100%;  /* 最小宽度100% */
    display: flex;  /* 弹性布局 */
    gap: 20px;  /* 项目间距 */
    padding: 10px 0;  /* 上下内边距 */
}

/* 单个轮播项样式 */
.photo-slide {
    flex: 1;  /* 弹性扩展 */
    min-width: calc(25% - 15px);  /* 最小宽度计算（4列布局） */
    position: relative;  /* 相对定位 */
    border-radius: 10px;  /* 圆角半径 */
    overflow: hidden;  /* 隐藏溢出内容 */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);  /* 阴影效果 */
    aspect-ratio: 4/3;  /* 宽高比4:3 */
}

/* 轮播图片样式 */
.photo-img {
    width: 100%;  /* 宽度100% */
    height: 100%;  /* 高度100% */
    object-fit: cover;  /* 图片填充方式：覆盖 */
    transition: transform 0.3s ease;  /* 悬停动画 */
}

/* 图片悬停效果 */
.photo-slide:hover .photo-img {
    transform: scale(1.05);  /* 轻微放大效果 */
}

/* 图片遮罩层样式 */
.photo-overlay {
    position: absolute;  /* 绝对定位 */
    bottom: 0;  /* 底部对齐 */
    left: 0;  /* 左侧对齐 */
    width: 100%;  /* 宽度100% */
    padding: 15px;  /* 内边距 */
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);  /* 渐变遮罩 */
    color: white;  /* 白色文字 */
    text-align: left;  /* 文字左对齐 */
}

/* 图片标题样式 */
.photo-title {
    font-size: 1.2rem;  /* 字体大小 */
    margin-bottom: 3px;  /* 下边距 */
    font-family: 'Ma Shan Zheng', cursive;  /* 特殊字体 */
}

/* 作者信息样式 */
.photo-author {
    font-size: 0.9rem;  /* 字体大小 */
    opacity: 0.9;  /* 透明度 */
}
/* 导航按钮样式 */
.photo-nav {
    position: absolute;  /* 绝对定位 */
    top: 50%;  /* 垂直居中 */
    transform: translateY(-50%);  /* Y轴偏移 */
    width: 40px;  /* 宽度 */
    height: 40px;  /* 高度 */
    background: rgba(255, 255, 255, 0.9);  /* 半透明白色背景 */
    border-radius: 50%;  /* 圆形 */
    display: flex;  /* 弹性布局 */
    align-items: center;  /* 垂直居中 */
    justify-content: center;  /* 水平居中 */
    cursor: pointer;  /* 手型光标 */
    z-index: 10;  /* 层级 */
    transition: all 0.3s ease;  /* 过渡效果 */
    color: var(--primary-green);  /* 使用主绿色 */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);  /* 阴影 */
}
/* 导航按钮悬停效果 */
.photo-nav:hover {
    background: var(--primary);  /* 背景变绿色 */
    color: white;  /* 文字变白 */
}

/* 上一张按钮位置 */
.photo-prev {
    left: 10px;  /* 左侧定位 */
}

/* 下一张按钮位置 */
.photo-next {
    right: 10px;  /* 右侧定位 */
}

/* 指示器容器样式 */
.photo-indicators {
    position: absolute;  /* 绝对定位 */
    bottom: -30px;  /* 底部定位 */
    left: 50%;  /* 水平居中 */
    transform: translateX(-50%);  /* X轴偏移 */
    display: flex;  /* 弹性布局 */
    gap: 10px;  /* 间距 */
    z-index: 10;  /* 层级 */
}

/* 单个指示器样式 */
.photo-indicator {
    width: 10px;  /* 宽度 */
    height: 10px;  /* 高度 */
    border-radius: 50%;  /* 圆形 */
    background: rgba(0,0,0,0.2);  /* 半透明黑色 */
    cursor: pointer;  /* 手型光标 */
    transition: all 0.3s ease;  /* 过渡效果 */
}

/* 活动状态指示器样式 */
.photo-indicator.active {
    background: var(--primary);  /* 绿色背景 */
    transform: scale(1.2);  /* 放大效果 */
}

/* 服务信息区样式 */
.services {
    padding: 20px 5%;  /* 内边距 */
    background: transparent;  /* 背景 */
    text-align: center;  /* 文本居中 */
}

/* 服务网格布局 */
.services-grid {
    display: grid;  /* 网格布局 */
    grid-template-columns: repeat(3, minmax(100px, 1fr));  /* 自适应列 */
    gap: 30px;  /* 项目间距 */
    max-width: 1200px;  /* 最大宽度 */
    margin: 40px auto 0;  /* 外边距 */
}

/* 服务卡片样式 */
.service-card {
    background: white;  /* 白色背景 */
    border-radius: 12px;  /* 圆角 */
    padding: 40px 30px;  /* 内边距 */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);  /* 阴影 */
    transition: all 0.3s ease;  /* 过渡效果 */
    position: relative;  /* 相对定位 */
    overflow: hidden;  /* 隐藏溢出内容 */
}

/* 卡片悬停效果 */
.service-card:hover {
    transform: translateY(-8px);  /* 上移效果 */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);  /* 阴影增强 */
}

/* 服务图标样式 */
.service-icon {
    width: 80px;  /* 宽度 */
    height: 80px;  /* 高度 */
    background: var(--primary);  /* 茶绿色背景 */
    border-radius: 50%;  /* 圆形 */
    display: flex;  /* 弹性布局 */
    align-items: center;  /* 垂直居中 */
    justify-content: center;  /* 水平居中 */
    margin: 0 auto 25px;  /* 外边距 */
    font-size: 2rem;  /* 图标大小 */
    color: white;  /* 白色图标 */
}

/* 服务标题样式 */
.service-card h3 {
    font-family: 'Noto Serif SC', serif;  /* 中文字体 */
    color: var(--primary);  /* 绿色文字 */
    font-size: 1.6rem;  /* 字体大小 */
    margin-bottom: 15px;  /* 下边距 */
}

/* 服务描述文本样式 */
.service-card p {
    color: var(--text);  /* 灰色文字 */
    margin-bottom: 20px;  /* 下边距 */
    line-height: 1.7;  /* 行高 */
}

/* 服务电话样式 */
.service-phone {
    font-size: 1.5rem;  /* 字体大小 */
    font-weight: 700;  /* 加粗 */
    color: var(--primary);  /* 绿色文字 */
    margin: 20px 0;  /* 外边距 */
    display: block;  /* 块级元素 */
}






/* 底部区域样式 */
footer {
    background: var(--dark); /* 设置背景颜色为变量 --dark 的值 */
    color: rgba(255,255,255,0.8); /* 设置文字颜色为白色，透明度为0.8 */
    padding: 30px 20px 20px; /* 设置内边距：上60px，左右40px，下30px */
}
.footer-container {
    display: grid; /* 使用网格布局 */
    grid-template-columns: repeat(4, minmax(100px, 1fr)); /* 每行四个列，每列最小宽度300像素，最大宽度为可用空间的一份 */
    gap: 10px; /* 设置列间距为40px */
    max-width: 1200px; /* 设置最大宽度为1200px */
    margin: 0 auto; /* 居中对齐 */
}
.footer-col h3 {
    color: white; /* 设置标题颜色为白色 */
    font-size: 1.5rem; /* 设置字体大小为1.5倍根元素字体大小 */
    margin-bottom: 10px; /* 设置下边距为25px */
    position: relative; /* 设置定位为相对定位 */
    padding-bottom: 10px; /* 设置下边距填充为10px */
}
.footer-col h3::after {
    content: ''; /* 生成伪元素内容为空 */
    position: absolute; /* 设置绝对定位 */
    bottom: 0; /* 定位到元素的底部 */
    left: 0; /* 定位到元素的左边 */
    width: 50px; /* 设置宽度为50px */
    height: 2px; /* 设置高度为2px */
    background: var(--accent); /* 设置背景颜色为变量 --accent 的值 */
}
	
.footer-links {
    list-style: none; /* 移除默认的列表符号 */
    padding: 0; /* 移除内边距 */
    margin: 0; /* 移除外边距 */
    display: flex; /* 使用flex布局 */
    flex-direction: column; /* 将子元素排列成列方向 */
}

.footer-links li {
    margin-bottom: 10px; /* 设置每个列表项的下边距为15px */
}
.footer-links a {
    color: rgba(255,255,255,0.7); /* 设置链接颜色为白色，透明度为0.7 */
    text-decoration: none; /* 移除文本装饰 */
    transition: color 0.3s ease; /* 设置颜色过渡效果，持续时间0.3秒 */
    display: flex; /* 使用弹性盒布局 */
    align-items: center; /* 垂直居中对齐 */
    gap: 10px; /* 设置子元素之间的间距为10px */
}
.footer-links a:hover {
    color: white; /* 鼠标悬停时，链接颜色变为白色 */
}
.copyright {
    text-align: center; /* 设置文本居中对齐 */
    padding-top: 20px; /* 设置上边距填充为20px */
    margin-top: 20px; /* 设置上边距为20px */
    border-top: 1px solid rgba(255,255,255,0.1); /* 设置顶部边框为1px实线，颜色为白色，透明度为0.1 */
}
@viewport {
  width: device-width;
  zoom: 1.0;
}

@media screen and (max-width: 768px) {
  body {
    min-width: 1200px; /* 强制保持桌面版宽度 */
    overflow-x: auto; /* 允许横向滚动 */
  }
  .brand-top, .nav-container {
    min-width: 1200px;
  }
}
/* 防止移动端文字自动调整 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* 为所有文本元素设置固定大小 */
body, p, h1, h2, h3, h4, h5, h6, 
.nav-item, .contact-item, .slide-content {
  -webkit-text-size-adjust: none !important;
  text-size-adjust: none !important;
}

/* 民宿推荐区域样式 */
.accommodation-section {
    padding: 40px 5% 40px;  /* 内边距：上40px，左右5%，下40px */
    background: #f8f5f0;  /* 与欢迎区域相同的背景 */
}

/* 民宿网格布局 */
.accommodation-grid {
    display: grid;  /* 网格布局 */
    grid-template-columns: repeat(3, 1fr);  /* 3列布局 */
    gap: 40px;  /* 项目间距 */
    max-width: 1200px;  /* 最大宽度 */
    margin: 30px auto 0;  /* 水平居中 */
}

/* 民宿卡片样式 */
.accommodation-card {
    background: white;  /* 白色背景 */
    border-radius: 12px;  /* 圆角 */
    overflow: hidden;  /* 隐藏溢出内容 */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);  /* 阴影 */
    transition: all 0.4s ease;  /* 过渡效果 */
}

/* 卡片悬停效果 */
.accommodation-card:hover {
    transform: translateY(-10px);  /* 上移效果 */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);  /* 阴影增强 */
}

/* 民宿轮播容器 */
.accommodation-slider {
    position: relative;  /* 相对定位 */
    height: 300px;  /* 固定高度 */
    overflow: hidden;  /* 隐藏溢出内容 */
}

/* 民宿轮播幻灯片 */
.accommodation-slide {
    position: absolute;  /* 绝对定位 */
    top: 0;  /* 顶部对齐 */
    left: 0;  /* 左侧对齐 */
    width: 100%;  /* 宽度100% */
    height: 100%;  /* 高度100% */
    opacity: 0;  /* 默认隐藏 */
    transition: opacity 0.5s ease;  /* 过渡效果 */
}

/* 活动幻灯片 */
.accommodation-slide.active {
    opacity: 1;  /* 显示 */
    z-index: 1;  /* 层级 */
}

/* 民宿图片样式 */
.accommodation-img {
    width: 100%;  /* 宽度100% */
    height: 100%;  /* 高度100% */
    object-fit: cover;  /* 图片填充方式 */
}

/* 民宿轮播导航按钮 */
.accommodation-prev,
.accommodation-next {
    position: absolute;  /* 绝对定位 */
    top: 50%;  /* 垂直居中 */
    transform: translateY(-50%);  /* Y轴偏移 */
    background: rgba(0, 0, 0, 0.5);  /* 半透明黑色背景 */
    color: white;  /* 白色文字 */
    border: none;  /* 无边框 */
    width: 40px;  /* 宽度 */
    height: 40px;  /* 高度 */
    border-radius: 50%;  /* 圆形 */
    cursor: pointer;  /* 手型光标 */
    font-size: 1.2rem;  /* 字体大小 */
    z-index: 10;  /* 层级 */
    transition: all 0.3s ease;  /* 过渡效果 */
}

/* 导航按钮悬停效果 */
.accommodation-prev:hover,
.accommodation-next:hover {
    background: var(--primary);  /* 绿色背景 */
    transform: translateY(-50%) scale(1.1);  /* 放大效果 */
}

/* 上一张按钮位置 */
.accommodation-prev {
    left: 10px;  /* 左侧定位 */
}

/* 下一张按钮位置 */
.accommodation-next {
    right: 10px;  /* 右侧定位 */
}

/* 轮播指示器 */
.accommodation-indicators {
    position: absolute;  /* 绝对定位 */
    bottom: 15px;  /* 底部定位 */
    left: 50%;  /* 水平居中 */
    transform: translateX(-50%);  /* X轴偏移 */
    display: flex;  /* 弹性布局 */
    gap: 8px;  /* 项目间距 */
    z-index: 10;  /* 层级 */
}

/* 单个指示器样式 */
.accommodation-indicator {
    width: 10px;  /* 宽度 */
    height: 10px;  /* 高度 */
    border-radius: 50%;  /* 圆形 */
    background: rgba(255,255,255,0.5);  /* 半透明白色 */
    cursor: pointer;  /* 手型光标 */
    transition: all 0.3s ease;  /* 过渡效果 */
}

/* 活动状态指示器样式 */
.accommodation-indicator.active {
    background: white;  /* 白色背景 */
    transform: scale(1.2);  /* 放大效果 */
}

/* 民宿信息区域 */
.accommodation-info {
    padding: 25px;  /* 内边距 */
}

/* 民宿标题样式 */
.accommodation-title {
    font-family: 'Noto Serif SC', serif;  /* 中文字体 */
    font-size: 1.6rem;  /* 字体大小 */
    color: var(--primary);  /* 绿色文字 */
    margin-bottom: 15px;  /* 下边距 */
    display: flex;  /* 弹性布局 */
    align-items: center;  /* 垂直居中 */
    gap: 10px;  /* 元素间距 */
}

/* 民宿定位标签 */
.accommodation-tag {
    font-size: 0.85rem;  /* 较小字体 */
    font-weight: 400;  /* 正常字重 */
    color: var(--primary);  /* 绿色文字 */
    background: rgba(212, 192, 111, 0.15);  /* 浅色背景 */
    padding: 3px 10px;  /* 内边距 */
    border-radius: 12px;  /* 圆角 */
    white-space: nowrap;  /* 不换行 */
}

/* 民宿描述样式 */
.accommodation-desc {
    color: var(--text);  /* 灰色文字 */
    line-height: 1.7;  /* 行高 */
    margin-bottom: 20px;  /* 下边距 */
    font-size: 0.95rem;  /* 字体大小 */
}

/* 民宿电话按钮样式 */
.accommodation-phone {
    display: inline-flex;  /* 弹性布局 */
    align-items: center;  /* 垂直居中 */
    gap: 8px;  /* 图标与文字间距 */
    background: var(--primary);  /* 绿色背景 */
    color: white;  /* 白色文字 */
    padding: 12px 25px;  /* 内边距 */
    border-radius: 25px;  /* 圆角 */
    text-decoration: none;  /* 无下划线 */
    font-weight: 600;  /* 字体粗细 */
    font-size: 1rem;  /* 字体大小 */
    transition: all 0.3s ease;  /* 过渡效果 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);  /* 阴影 */
}

/* 电话按钮悬停效果 */
.accommodation-phone:hover {
    background: var(--secondary);  /* 次要色背景 */
    transform: translateY(-2px);  /* 上移效果 */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);  /* 阴影增强 */
}

/* 电话按钮图标 */
.accommodation-phone i {
    font-size: 1.1rem;  /* 图标大小 */
}

/* 民宿标题 */
    .accommodation-title {
        font-size: 1.15rem;  /* 字体大小 */
    }

    /* 民宿定位标签 */
    .accommodation-tag {
        font-size: 0.75rem;  /* 较小字体 */
        padding: 2px 8px;  /* 内边距 */
    }

    /* 民宿详细信息容器 */
    .accommodation-details {
    margin-bottom: 20px;  /* 下边距 */
    padding: 15px;  /* 内边距 */
    background: rgba(212, 192, 111, 0.08);  /* 浅色背景 */
    border-radius: 8px;  /* 圆角 */
}

/* 详细信息项 */
.detail-item {
    display: flex;  /* 弹性布局 */
    align-items: flex-start;  /* 顶部对齐 */
    margin-bottom: 12px;  /* 下边距 */
    line-height: 1.6;  /* 行高 */
}

.detail-item:last-child {
    margin-bottom: 0;  /* 最后一项无下边距 */
}

/* 详细信息图标 */
.detail-item i {
    color: var(--primary);  /* 绿色图标 */
    font-size: 1rem;  /* 图标大小 */
    width: 20px;  /* 固定宽度 */
    margin-top: 3px;  /* 上边距，调整对齐 */
    flex-shrink: 0;  /* 防止压缩 */
}

/* 详细信息标签 */
.detail-label {
    font-weight: 600;  /* 字体粗细 */
    color: var(--secondary);  /* 次要色文字 */
    min-width: 50px;  /* 固定宽度 */
    flex-shrink: 0;  /* 防止压缩 */
}

/* 详细信息值 */
.detail-value {
    color: var(--text);  /* 文本颜色 */
    flex: 1;  /* 弹性扩展 */
    font-size: 0.85rem;  /* 字体大小 */
}

/* 野猪谷景点展示区响应式样式 */
@media screen and (max-width: 768px) {
    .route-attractions {
        padding: 20px;
        margin: 20px auto 0;
    }
    
    .route-attractions-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .route-attractions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .route-attraction-img {
        height: 160px;
    }
    
    .route-attraction-info {
        padding: 12px 15px;
    }
    
    .route-attraction-info h4 {
        font-size: 1.1rem;
    }
    
    .route-attraction-info p {
        font-size: 0.9rem;
    }
}