/* 主页全屏背景区域样式 */
.fullscreen-bg {
	position: relative;
	width: 100%;
	height: 100vh;
}

/* 主页背景图片样式 */
.bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* 主页中央Logo容器样式 */
.center-hero-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

/* 主页中央Logo图片样式 */
.center-hero-logo img {
	width: 150px;
  /* 可以根据需要调整大小 */
	height: auto;
	filter: brightness(0) invert(1);
  /* 将 logo 变为白色 */
}

/* 主页向下滚动按钮容器样式 */
.scroll-down {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

/* 主页向下滚动箭头样式 */
.scroll-arrow {
	width: 40px;
	height: auto;
	cursor: pointer;
	animation: bounce 2s infinite;
}

/* 向下滚动箭头动画样式 */
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-20px);
	}

	60% {
		transform: translateY(-10px);
	}
}

/* 主页内容区域样式 */
.main-content {
	position: relative;
	z-index: 1;
	background-color: #fff;
	padding-top: 80px;
  /* 为固定导航栏留出空间 */
}

/* 主页内容区块样式 */
.content-section {
	position: relative;
	padding-top: 0px;
	padding-bottom: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease, transform 0.8s ease;
	background-color: #fff;
}

/* 主页内容区块显示动画样式 */
.content-section.visible {
	opacity: 1;
	transform: translateY(0);
}

/* 主页中央Logo容器样式 */
.center-logo {
	margin-bottom: 10px;
}

/* 主页中央Logo图片样式 */
.center-logo img {
	width: 250px;
	height: auto;
}

/* 主页导航菜单列表样式 */
.main-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: no-wrap;
	margin-right: 20px;
	justify-content: center;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

/* 主页导航菜单链接样式 */
.main-nav a {
	text-decoration: none;
	color: #4A4A4A;
	font-size: 16px;
	position: relative;
	padding-bottom: 5px;
}

/* 主页导航菜单链接悬停效果样式 */
.main-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #8B7355;
	transition: width 0.3s ease;
}

.main-nav a:hover::after {
	width: 100%;
}

/* 导航栏分隔线 */
.nav-divider {
	width: 100%;
	height: 1px;
	background: linear-gradient(to right,
        rgba(139, 115, 85, 0),
        rgba(139, 115, 85, 0.5) 20%,
        rgba(139, 115, 85, 0.5) 80%,
        rgba(139, 115, 85, 0)
    );
	margin-top: 30px;
	margin-right: 0;
	margin-bottom: -10px;
	margin-left: 0;
}

.Cutting-line-image {
	width: 30%;
	height: auto;
	display: block;
	margin: 0 auto;
	margin-top: 0px;
}

/* 页面头部背景样式 */
.page-header {
	background-image: url('../pic/logo/kanshoumon-pattern.svg');
	background-repeat: repeat;
	background-size: 80px 80px;
	background-color: #f8f8f8;
  /* 保持原有的浅灰色背景 */
}

/* 主页第一介绍区域整体样式 */
.intro-section1 {
	padding: 50px 0;
	background-color: #fff;
}

/* 主页第一介绍区域容器样式 */
.intro-container1 {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 60px;
}

/* 主页第一介绍区域图片组样式 */
.intro-images1 {
	flex: 0 0 45%;
	position: relative;
	height: 600px;
}

/* 主页第一介绍区域上方图片样式 */
.intro-image1-1 {
	position: absolute;
	top: 0;
	left: -80px;
	width: 90%;
	height: 350px;
	object-fit: cover;
	border-radius: 20px;
	z-index: 2;
}

/* 主页第一介绍区域下方图片样式 */
.intro-image1-2 {
	position: absolute;
	bottom: 0;
	right: -20px;
	width: 80%;
	height: 350px;
	object-fit: cover;
	border-radius: 20px;
	z-index: 1;
}

/* 主页第一介绍区域文本内容样式 */
.intro-content1 {
	flex: 0 0 50%;
	padding-left: 40px;
}

/* 主页第一介绍区域标题样式 */
.intro-content1 h2 {
	font-size: 22px;
	color: #333;
	margin: 0 0 15px 0;
	font-weight: normal;
	line-height: 1.6;
	text-align: center;
}

/* 主页第一介绍区域段落样式 */
.intro-content1 p {
	font-size: 14px;
	color: #666;
	margin: 20px 0;
	line-height: 1.8;
}

/* 主页第一介绍区域标题区样式 */
.intro-section1-title {
	text-align: center;
	padding: 30px 0;
	background-color: #fff;
}

/* 主页第一介绍区域英文标题样式 */
.intro-section1-title .en-title {
	font-size: 36px;
	color: #333;
	margin: 0 0 10px 0;
	font-weight: normal;
	letter-spacing: 4px;
  /* 增加字母间距 */
}

/* 主页第一介绍区域日文标题样式 */
.intro-section1-title .jp-title {
	font-size: 16px;
	color: #666;
	margin: 0;
	letter-spacing: 2px;
  /* 增加字间距 */
}

/* 主页第二介绍区域整体样式 */
.intro-section2 {
	padding: 50px 0;
	background-color: #fff;
}

/* 主页第二介绍区域容器样式 */
.intro-container2 {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0 60px;
}

/* 主页第二介绍区域文本内容样式 */
.intro-content2 {
	flex: 0 0 35%;
  /* 调整文字部分宽度 */
	padding-right: 40px;
}

/* 主页第二介绍区域标题样式 */
.intro-content2 h2 {
	font-size: 24px;
	color: #333;
	margin: 0 0 15px 0;
	font-weight: normal;
	line-height: 1.6;
}

/* 主页第二介绍区域段落样式 */
.intro-content2 p {
	font-size: 16px;
	color: #666;
	margin: 20px 0;
	line-height: 1.8;
}

/* 主页第二介绍区域图片组样式 */
.intro-images2 {
	flex: 0 0 65%;
  /* 调整图片部分宽度 */
	display: flex;
	gap: 20px;
}

/* 主页第二介绍区域小图组样式 */
.small-images {
	flex: 0 0 35%;
  /* 调整小图区域宽度 */
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* 主页第二介绍区域小图样式 */
.intro-image2-1,
.intro-image2-2,
.intro-image2-3 {
	width: 100%;
	height: 180px;
  /* 调整小图高度 */
	object-fit: cover;
	border-radius: 10px;
}

/* 主页第二介绍区域大图容器样式 */
.large-image {
	flex: 0 0 65%;
  /* 调整大图区域宽度 */
}

/* 主页第二介绍区域大图样式 */
.intro-image2-4 {
	width: 100%;
	height: 580px;
  /* 调整大图高度，等于三张小图加间距的总高度 */
	object-fit: cover;
	border-radius: 20px;
}

/* 移动端图片滑动器（PC端隐藏）样式 */
.mobile-image-slider {
	display: none;
}

/* 主页第三介绍区域整体样式 */
.intro-section3 {
	padding: 50px 0;
	background-color: #fff;
}

/* 主页第三介绍区域容器样式 */
.intro-container3 {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 60px;
}

/* 主页第三介绍区域左侧图片容器样式 */
.intro-image3 {
	flex: 0 0 55%;
	padding-right: 40px;
}

/* 主页第三介绍区域图片包装器样式 */
.image-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}

/* 主页第三介绍区域图片悬停放大效果样式 */
.hover-zoom {
	width: 100%;
	height: 500px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

/* 主页第三介绍区域图片悬停放大动画样式 */
.image-wrapper:hover .hover-zoom {
	transform: scale(1.05);
}

/* 主页第三介绍区域图片遮罩层样式 */
.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
	opacity: 0;
	transition: opacity 0.3s ease;
}

/* 主页第三介绍区域图片遮罩层悬停效果样式 */
.image-wrapper:hover .image-overlay {
	opacity: 1;
}

/* 主页第三介绍区域右侧内容容器样式 */
.intro-content3 {
	flex: 0 0 45%;
}

/* 主页第三介绍区域标题样式 */
.intro-content3 h2 {
	font-size: 24px;
	color: #333;
	margin: 0 0 15px 0;
	font-weight: normal;
	line-height: 1.6;
}

/* 主页第三介绍区域文本样式 */
.intro-content3 p {
	font-size: 16px;
	color: #666;
	margin: 20px 0;
	line-height: 1.8;
}

/* 主页服务区块整体样式 */
.services-section {
	padding: 60px 20px;
	background-color: #fff;
}

/* 主页服务区块网格布局样式 */
.services-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
  /* 改为6列以便精确控制 */
	grid-template-rows: auto auto auto;
	gap: 20px;
}

/* 主页服务区块第一行布局样式 */
.services-grid .service-item:nth-child(1) {
	grid-column: span 2;
  /* 每个占2列 */
}

.services-grid .service-item:nth-child(2) {
	grid-column: span 2;
}

.services-grid .service-item:nth-child(3) {
	grid-column: span 2;
}

/* 主页服务区块中间行布局样式 */
.services-grid .service-item:nth-child(4) {
	grid-column: span 3;
  /* 各占3列，确保完全相等 */
}

.services-grid .service-item:nth-child(5) {
	grid-column: span 3;
}

/* 主页服务区块最后一行布局样式 */
.services-grid .service-item:nth-child(6) {
	grid-column: span 2;
}

.services-grid .service-item:nth-child(7) {
	grid-column: span 2;
}

.services-grid .service-item:nth-child(8) {
	grid-column: span 2;
}

/* 主页服务区块单个项目样式 */
.service-item {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/9;
	border-radius: 20px;
  /* 添加圆角 */
}

/* 主页服务区块链接样式 */
.service-item a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: #fff;
	border-radius: 20px;
  /* 链接也需要圆角 */
	overflow: hidden;
  /* 确保内容不会超出圆角 */
}

/* 主页服务区块图片样式 */
.service-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

/* 主页服务区块内容层样式 */
.service-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.3);
	transition: background 0.3s ease;
	border-radius: 20px;
  /* 半透明遮罩也需要圆角 */
}

/* 主页服务区块标题样式 */
.service-content h2 {
	font-size: 32px;
	margin: 0 0 10px 0;
	text-align: center;
}

/* 主页服务区块描述文本样式 */
.service-content p {
	font-size: 16px;
	margin: 0;
	text-align: center;
}

/* 主页服务区块图片悬停效果样式 */
.service-item:hover img {
	transform: scale(1.1);
}

/* 主页服务区块内容层悬停效果样式 */
.service-item:hover .service-content {
	background: rgba(0, 0, 0, 0.5);
}

/* 主页分隔线样式 */
.section-divider {
	width: 100%;
	max-width: 1200px;
	height: 1px;
	margin: 0 auto;
	background: linear-gradient(to right,
        rgba(139, 115, 85, 0),
        rgba(139, 115, 85, 0.5) 50%,
        rgba(139, 115, 85, 0)
    );
	margin-top: 20px;
	margin-bottom: 20px;
}

/* 主页第一介绍区域标题区样式 */
.spots-preview-title {
	text-align: center;
	padding: 20px 0;
	background-color: #fff;
}

/* 主页第一介绍区域英文标题样式 */
.spots-preview-title .en-title {
	font-size: 36px;
	color: #333;
	margin: 0 0 10px 0;
	font-weight: normal;
	letter-spacing: 4px;
  /* 增加字母间距 */
}

/* 主页第一介绍区域日文标题样式 */
.spots-preview-title .jp-title {
	font-size: 16px;
	color: #666;
	margin: 0;
	letter-spacing: 2px;
  /* 增加字间距 */
}
/* 周边景点预览区域容器样式 */
.spots-preview-section {
	padding: 20px 0 40px;
	background-color: #fff;
	overflow: hidden;
}

/* 周边景点预览内容容器样式 */
.spots-preview-container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

/* 周边景点预览滚动区域样式 */
.spots-preview-scroll {
	display: flex;
	padding: 20px 0;
	gap: 0;
	margin-left: 130px;
}

/* 周边景点预览单个项目样式 */
.spot-preview-item {
	flex: 0 0 380px;
	margin-left: -170px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	position: relative;
	background: #fff;
	cursor: pointer;
}

/* PC端悬浮效果样式 */
@media (min-width: 769px) {
    .spot-preview-item:hover {
        transform: translateY(-10px);
        margin-right: 180px;  /* 调整展开空间 */
        z-index: 1;
    }
}

/* 周边景点预览图片容器样式 */
.spot-preview-image {
	width: 100%;
	height: 250px;
	overflow: hidden;
}

/* 周边景点预览图片样式 */
.spot-preview-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

/* 周边景点预览信息区域样式 */
.spot-preview-info {
	padding: 25px;
	background: #fff;
}

/* 周边景点预览标题样式 */
.spot-preview-info h3 {
	font-size: 20px;
	color: #333;
	margin: 0 0 10px 0;
}

/* 周边景点预览距离信息样式 */
.spot-preview-info .distance {
	font-size: 14px;
	color: #666;
	margin: 0;
}

/* 周边景点预览更多按钮区域样式 */
.spots-more {
	text-align: center;
	margin-top: 40px;
}

/* 交通资讯页面主区域样式 */
.access-section {
	padding: 50px 0;
	background-color: #000;
	color: #fff;
	background-image: url('../pic/access/access-bg.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
}

/* 交通资讯页面背景遮罩样式 */
.access-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

/* 交通资讯页面标题区域样式 */
.access-section .intro-section1-title {
	position: relative;
	background-color: transparent;
}

/* 交通资讯页面英文和日文标题样式 */
.access-section .en-title,
.access-section .jp-title {
	color: #fff;
}

/* 交通资讯页面内容容器样式 */
.access-container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 60px;
}

/* 交通资讯页面内容区域样式 */
.access-content {
	text-align: center;
}

/* 交通资讯页面标题样式 */
.access-content h2 {
	font-size: 24px;
	font-weight: normal;
	line-height: 1.6;
	margin-bottom: 40px;
}

/* 交通资讯页面更多链接样式 */
.access-section .more-link {
	border-color: #fff;
	color: #fff;
}

/* 交通资讯页面更多链接悬停效果样式 */
.access-section .more-link:hover {
	background-color: #fff;
	color: #000;
}

/* 主页新闻区域样式 */
.index-news-section {
	position: relative;
	padding: 20px;
}
.index-news-list {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 0 150px; /* 增加两端的空白 */
}
.index-news-item {
	flex: 1;
	max-width: 30%;
	overflow: hidden;
	border-radius: 10px;
	position: relative;
	margin: 0 10px;
	height: 200px; /* 增加高度 */
}
.index-news-list-date {
	width: 120px;
	padding-top: 5px;
	color: #666;
	font-size: 14px;
}
.index-news-title {
	font-size: 0.5em;
	margin: 0;
	color: #f9f9f9;
}
/* 新闻标题链接样式 */
.index-news-title a {
	color: #f40000;
	text-decoration: none;
	transition: color 0.3s ease;
}

/* 新闻标题链接悬停效果样式 */
.index-news-title a:hover {
	color: #8B7355;
}
.index-news-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.index-news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* 确保图片按比例填充容器 */
	display: block;
	transition: transform 0.3s ease;
}
.index-news-item:hover .index-news-image img {
	transform: scale(1.1);
}

.index-news-list-item:hover .news-image img {
	transform: scale(1.1);
}

.index-news-content-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.5);
	color: white;
	padding: 10px;
	text-align: center;
}

/* 新闻区域标题样式 */
.index-news-title {
	text-align: center;
	font-size: 24px;
	margin-bottom: 40px;
	color: #4A4A4A;
}

/* 新闻更多按钮区域样式 */
.index-news-more {
	text-align: center;
	margin: 40px 0;
}
.index-news-content-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.5);
	color: white;
	padding: 10px;
	text-align: center;
}
/* 新闻文字样式 */
.index-news-content {
	text-align:center;
	font-size: 14px;
	margin-bottom: 0px;
	color: #e9e9e9;
}






/* Intro Section 通用样式 */
.intro-section {
    padding: 100px 5%;
    text-align: center;
}

/* Section 1 - 沉浸式背景体验 */
.intro-overview {
    position: relative;
    color: white;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('pic/intro/hotel-overview.jpg') center/cover;
    filter: brightness(60%);
}

.intro-content {
    position: relative;
    z-index: 1;
}

/* Section 2 - 交错式展示 */
.intro-highlights .intro-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.intro-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    width: 30%;
}

.intro-item img {
    width: 100%;
    transition: transform 0.3s ease;
}

.intro-item:hover img {
    transform: scale(1.1);
}

.overlay-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    text-align: left;
}

/* Section 3 - 现代卡片式展示 */
.intro-groups .intro-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.group-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease;
}

.group-card:hover {
    transform: translateY(-10px);
}

.group-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* 景色展示轮播图 */
.carousel-gallery-section {
	padding: 40px 20px;
	background: #fff;
  }

  .carousel-gallery-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	gap: 30px;
	justify-content: space-between;
	flex-wrap: nowrap;
  }

  .carousel-box {
	flex: 0 0 50%;
	box-sizing: border-box;
	max-width: 50%;
	overflow: hidden; /* 防止被子元素撑宽 */
  }

  .carousel-box h3 {
	text-align: center;
	margin-bottom: 10px;
	font-size: 20px;
	color: #333;
  }

  .image-carousel {
	width: 100%;
	max-width: 100%;
	height: 220px;
	overflow: hidden;
	position: relative;
	border-radius: 15px;
	background-color: #f8f8f8;
  }

  .image-track {
	display: flex;
	flex-wrap: nowrap;
	width: fit-content; /* 内容多也不会影响父容器 */
	max-width: 100%;     /* 限制自身宽度 */
	/* transition: transform 0.5s ease-in-out; */
	will-change: transform;
  }

  .image-track img {
	width: 200px;
	height: 200px;
	object-fit: cover;
	margin-right: 15px;
	border-radius: 15px;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	flex-shrink: 0;
  }

  /* 弹出大图样式 */
  .image-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0, 0, 0, 0.9);
	justify-content: center;
	align-items: center;
  }

  .image-modal-content {
	max-width: 90%;
	max-height: 90%;
	border-radius: 10px;
  }

  .image-modal-close {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
  }

  /* 移动端样式 */
  @media (max-width: 768px) {
	.carousel-gallery-container {
	  flex-direction: column;
	  gap: 40px;
	}

	.carousel-box {
	  flex: 1 1 100%;
	  max-width: 100%;
	}

	.image-track img {
	  width: 160px;
	  height: 160px;
	  margin-right: 15px;
	}

	.image-carousel {
	  height: 180px;
	}
  }

