.Attractions {width:100%;overflow-x:hidden;}
/* 顶部大图区域 */
.hero {width: 100vw;max-height:500px;position: relative;overflow: hidden;}
.hero-image {width: 100%;height: 100%;object-fit: cover;}
.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
	text-align: center;
	padding: 20px;
	transition: height 0.3s ease;
}
.hero-title {
	font-size: 2.8rem;
	margin-bottom: 15px;
	text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
	position: relative;
	padding-bottom: 15px;
}
.hero-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: #fff;
	border-radius: 2px;
}
.hero-subtitle {
	font-size: 1.2rem;
	font-weight: 300;
	max-width: 800px;
	line-height: 1.6;
	margin-top: 20px;
}
.breadcrumb {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	color: #fff;
	font-size: 1rem;
	background: rgba(255, 255, 255, 0.2);
	padding: 10px 20px;
	border-radius: 30px;
	backdrop-filter: blur(5px);
	flex-wrap: wrap;
	justify-content: center;
}
.breadcrumb a {
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
}
.breadcrumb a:hover {color: #a7f3d0;}
.breadcrumb span {margin: 0 12px;}
.breadcrumb i {margin-right: 8px;}
/* 内容区域 */
.content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 20px;
	position: relative;
}
/* 导航区域 */
.nav-containertt {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
	position: relative;
}
.nav-itemtt {
	padding: 12px 25px;
	margin: 0 10px 15px;
	cursor: pointer;
	border-radius: 30px;
	background: rgba(26, 94, 52, 0.1);
	transition: all 0.3s ease;
	font-size: 1.1rem;
	border: 0px solid #1a5e32;
	color: #1a5e32;
	display: flex;
	align-items: center;
	text-decoration: none;
}
.nav-itemtt i {
	margin-right: 10px;
	font-size: 1.2rem;
}
.nav-itemtt:hover {
	background: #1a5e32;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(26, 94, 50, 0.3);
}
.nav-itemtt.active {
	background: #1a5e32;
	color: white;
}
/* 天气按钮激活状态 */
.nav-itemtt.weather-active {
	background: #2ecc71;
	border-color: #27ae60;
	color: white;
}
/* 内容区域 */
.main-content {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	padding: 40px;
	margin-bottom: 40px;
}
.section {margin-bottom: 40px;display: none;}
.section.active {display: block;}
.section:last-child {margin-bottom: 0;}
.section-titlett {
	font-size: 1.8rem;
	color: #1a5e32;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #e5e7eb;
	display: flex;
	align-items: center;
}
.section-titlett i {margin-right: 12px;}
.section-text {
	line-height: 1.8;
	color: #374151;
	font-size: 1.05rem;
	margin-bottom: 20px;
}
/* 景点列表样式 */
.attractions-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 30px;
}
.attraction-item {
	background: #f9fafb;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0,0,0,0.08);
	border: 1px solid #e5e7eb;
}
.attraction-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 3px 25px rgba(0,0,0,0.15);
	border-color: #1a5e32;
}
.attraction-image {
	width: 100%;
	height: 280px;
	overflow: hidden;
}
.attraction-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.attraction-item:hover .attraction-image img {
	transform: scale(1.05);
}
.attraction-contents {
	padding: 20px;
}
.attraction-names {
	font-size: 1.4rem;
	color: #1a5e32;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}
.attraction-names i {
	margin-right: 10px;
}
.attraction-desc {
	color: #4b5563;
	line-height: 1.6;
	margin-bottom: 15px;
	height: 80px;
	overflow: hidden;
}
.attraction-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #e5e7eb;
}
.attraction-location {
	display: flex;
	align-items: center;
	color: #6b7280;
	font-size: 0.9rem;
}
.attraction-location i {
	margin-right: 5px;
	color: #1a5e32;
}
.attraction-link {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	background: #1a5e32;
	color: white;
	text-decoration: none;
	border-radius: 20px;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}
.attraction-link:hover {	background: #106e3c;transform: translateY(-2px);}
.attraction-link i {margin-left: 5px;}
/* 响应式设计 */
@media (max-width: 768px) {
.hero-title {font-size: 2rem;}
.breadcrumb {font-size: 0.9rem;padding: 8px 15px;}
.nav-itemtt {width: 100%;margin: 0 0 10px 0;	justify-content: center;}
.main-content {	padding: 25px;}
.section-titlett {font-size: 1.5rem;}
.attractions-list {grid-template-columns: 1fr;}
}
@media (max-width: 480px) {
.hero-title {font-size: 1.6rem;}
.hero-subtitle {display: none;}
.breadcrumb {width: 90%;bottom: 15px;}
.breadcrumb span {display: none;}
.breadcrumb a {margin: 0 5px;}
.main-content {padding: 20px;}
.attraction-image {height: 180px;}
} 

/* 景点详情主体 */
.attraction-detail {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	padding: 40px;
	margin-bottom: 40px;
}
.detail-header {

	align-items: center;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid #e5e7eb;
    text-align: center;
}
.detail-title {
	font-size: 2.2rem;
	color: #1a5e32;
	display: flex;
	align-items: center;
}
.detail-title i {
	margin-right: 12px;
}
.detail-location {
	display: flex;
	align-items: center;
	color: #6b7280;
	font-size: 1.1rem;
}
.detail-location i {
	margin-right: 8px;
	color: #1a5e32;
}
/* 景点描述 */
.detail-description {
	line-height: 1.8;
	color: #374151;
	font-size: 1.05rem;
	margin-bottom: 40px;
}
.detail-description p {
	margin-bottom: 10px;
    text-indent: 2em;
    line-height: 1.8;
}

.detail-description img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 25px auto;
    border-radius: 8px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.detail-highlights {
	margin: 25px 0;
	background: #f0fdf4;
	padding: 20px;
	border-radius: 10px;
	border-left: 4px solid #1a5e32;
}
.highlight-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.highlight-item:last-child {
	margin-bottom: 0;
}
.highlight-item i {
	color: #1a5e32;
	margin-right: 10px;
	font-size: 1.2rem;
}
/* 简化相册设计 - 2列布局 */
.gallery-section {
	margin: 40px 0;
}
.gallery-title {
	font-size: 1.8rem;
	color: #1a5e32;
	margin-bottom: 25px;
	padding-bottom: 10px;
	border-bottom: 2px solid #e5e7eb;
	display: flex;
	align-items: center;
}
.gallery-title i {
	margin-right: 12px;
}
.gallery-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.gallery-left {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 20px;
}
.gallery-top {
	border-radius: 10px;
	overflow: hidden;
	height: 250px;
}
.gallery-bottom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.gallery-right {
	border-radius: 10px;
	overflow: hidden;
	height: 100%;
}
.gallery-item {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	height: 100%;
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.gallery-item:hover img {
	transform: scale(1.05);
}
.gallery-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
	color: white;
	padding: 15px;
	text-align: center;
}

/* 全景图区域 */
.panorama-section {
	margin: 50px 0;
}
.panorama-title {
	font-size: 1.8rem;
	color: #1a5e32;
	margin-bottom: 25px;
	padding-bottom: 10px;
	border-bottom: 2px solid #e5e7eb;
	display: flex;
	align-items: center;
}
.panorama-title i {
	margin-right: 12px;
}
.panorama-container {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	height: 400px;
}
.panorama-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.panorama-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
	color: white;
	padding: 20px;
	text-align: center;
}
.panorama-overlay h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}
.panorama-overlay p {
	font-size: 1rem;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
}
/* 模态框样式 */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	overflow: hidden;
}
.modal-content {
	position: relative;
	margin: auto;
	width: 100%;
	max-width: 1600px;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.modal-image {
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
}
.modal-caption {
	color: white;
	text-align: center;
	padding: 15px;
	margin-top: 15px;
	max-width: 600px;
}
.modal-caption h3 {
	font-size: 1.3rem;
	margin-bottom: 10px;
}
.close {
	position: absolute;
	top: 20px;
	right: 30px;
	color: white;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	transition: color 0.3s ease;
}
.close:hover {color: #a7f3d0;}

/* 响应式设计 */
@media (max-width: 968px) {
.gallery-container {grid-template-columns: 1fr;}
.gallery-right {height: 300px;}
}
@media (max-width: 768px) {
.hero-title {font-size: 2rem;}
.breadcrumb {font-size: 0.9rem;	padding: 8px 15px;}
.attraction-detail {padding: 25px;}
.detail-header {flex-direction: column;	align-items: flex-start;}
.detail-title {font-size: 1.8rem;margin-bottom: 15px;}
.gallery-bottom {grid-template-columns: 1fr;}
.gallery-top, .gallery-right {height: 200px;}
.panorama-container {height: 300px;}
.modal-content {width: 95%;	height: 85vh;}
}
@media (max-width: 480px) {
.hero-title {font-size: 1.6rem;}
.hero-subtitle {display: none;}
.breadcrumb {width: 90%;bottom: 15px;}
.breadcrumb span {display: none;}
.breadcrumb a {	margin: 0 5px;}
.attraction-detail {padding: 20px;}
.detail-title {font-size: 1.5rem;}
.panorama-container {height: 250px;}
.panorama-overlay {padding: 15px;}
.panorama-overlay h3 {font-size: 1.2rem;}
.close {top: 10px;right: 15px;font-size: 30px;}
}
/* 返回按钮 */
.back-button {
	display: inline-flex;
	align-items: center;
	padding: 12px 20px;
	background: #1a5e32;
	color: white;
	text-decoration: none;
	border-radius: 30px;
	margin-bottom: 30px;
	transition: all 0.3s ease;
}
.back-button:hover {background: #106e3c;transform: translateY(-2px);}
.back-button i {margin-right: 8px;}

/* 页面过渡效果 */
.page-transition {
opacity: 0;
transition: opacity 0.3s ease;
}
.close {
position: absolute;
top: 20px;
right: 30px;
color: white;
font-size: 40px;
font-weight: bold;
cursor: pointer;
transition: color 0.3s ease;
z-index: 1001;
}
.close:hover {color: #a7f3d0;}

/* 响应式设计 - 重点修复手机模式问题 */
@media (max-width: 968px) {
.gallery-container {grid-template-columns: 1fr;gap: 15px;}
.gallery-left {grid-template-rows: auto;gap: 15px;}
.gallery-top, .gallery-right {height: 250px;}
.gallery-bottom {grid-template-columns: 1fr 1fr;gap: 15px;}
.gallery-bottom .gallery-item {height: 200px;}
.hero-overlay {height: 320px;}
.hero-image {width: 100%;height: 320px;object-fit: cover;}
.hero {height: 320px;}
}

@media (max-width: 768px) {
.hero-title {font-size: 2rem;}
.breadcrumb {font-size: 0.9rem;padding: 8px 15px;}
.attraction-detail {padding: 25px;}
.detail-header {flex-direction: column;align-items: flex-start;}

.detail-title {font-size: 1.8rem;margin-bottom: 15px;}
.gallery-bottom {grid-template-columns: 1fr;}
.gallery-bottom .gallery-item {height: 200px;}
.panorama-container {height: 300px;}
.modal-content {width: 95%;height: 85vh;}			
.modal-caption h3 {font-size: 1.2rem;margin-bottom: 10px;}
.hero-overlay {height: 280px;}
.hero-image {width: 100%;height: 280px;object-fit: cover;}
.hero {height: 280px;}
.close {
top: 15px;
right: 20px;
font-size: 35px;
background: rgba(0, 0, 0, 0.5);
border-radius: 50%;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
}
}

@media (max-width: 480px) {
.hero-title {font-size: 1.6rem;}
.hero-subtitle {display: none;}
.breadcrumb {width: 90%;bottom: 15px;padding: 6px 12px;}
.breadcrumb span {display: none;}
.breadcrumb a {margin: 0 5px;font-size: 0.8rem;}
.attraction-detail {padding: 20px;}
.detail-title {font-size: 1.5rem;}
.gallery-top, .gallery-right {height: 200px;}
.gallery-bottom .gallery-item {height: 150px;}
.panorama-container {height: 250px;}
.panorama-overlay {padding: 15px;}
.panorama-overlay h3 {font-size: 1.2rem;}
.close {top: 10px;right: 15px;font-size: 30px;width: 40px;height: 40px;}
.modal-content {width: 98%;height: 80vh;}
.hero-overlay {height: 240px;}
.hero-image {width: 100%;height: 240px;object-fit: cover;}
.hero {height: 240px;}
}


/* 文创产品样式 - wc前缀 */
.wc-products-list {display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 30px;}

.wc-product-item {background: #f9fafb;border-radius: 12px;overflow: hidden;transition: all 0.3s ease;/* box-shadow: 0 4px 10px rgba(0,0,0,0.08); *//* border: 1px solid #e5e7eb; */position: relative;}
.wc-product-item:hover {transform: translateY(-5px);box-shadow: 0 10px 25px rgba(0,0,0,0.15);border-color: #e74c3c;}
.wc-product-image {width: 100%;height: 240px;overflow: hidden;position: relative;}
.wc-product-image img {width: 100%;height: 100%;object-fit: cover;transition: transform 0.5s ease;}
.wc-product-item:hover .wc-product-image img {transform: scale(1.05);}

.wc-product-badge {
position: absolute;
top: 10px;
right: 10px;
background: #e74c3c;
color: white;
padding: 5px 10px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: bold;
z-index: 2;
}

.wc-product-content {padding: 20px;}
.wc-product-name {font-size: 18px;color: #2c3e50;margin-bottom: 10px;font-weight: 500;height:30px;overflow: hidden;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}
.wc-product-price {display: flex;align-items: center;justify-content: space-between;margin-top: 15px;padding-top: 15px;border-top: 1px solid #e5e7eb;}

.wc-price-current {font-size: 1.3rem;color: #e74c3c;font-weight: bold;}
.wc-price-original {font-size: 0.9rem;color: #6b7280;text-decoration: line-through;}


.wc-wishlist-btn {display: flex;align-items: center;justify-content: center;width: 40px;height: 40px;border-radius: 50%;background: #f3f4f6;color: #6b7280;transition: all 0.3s ease;}

.wc-wishlist-btn:hover {background: #fee2e2;color: #ef4444;}
.wc-product-tags {display: flex;flex-wrap: wrap;margin-top: 10px;gap: 5px;}
.wc-product-tag {background: #d1fae5;color: #065f46;padding: 3px 8px;border-radius: 12px;font-size: 0.75rem;}

/* 响应式设计 */
@media (max-width: 768px) {
.hero-title {font-size: 2rem;}
.breadcrumb {font-size: 0.9rem;padding: 8px 15px;}

.nav-item {width: 100%;margin: 0 0 10px 0;justify-content: center;}
.main-content {padding: 25px;}
.section-title {font-size: 1.5rem;}
.wc-products-list {grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));}
}

@media (max-width: 480px) {
.hero-title {font-size: 1.6rem;}
.hero-subtitle {display: none;}
.breadcrumb {width: 90%;bottom: 15px;}
.breadcrumb span {display: none;}
.breadcrumb a {margin: 0 5px;}
.main-content {padding: 20px;}
.wc-products-list {grid-template-columns: 1fr;}
.wc-product-image {height: 200px;}
}