/* 客房页面头部间距 */
.rooms-page .page-header {
	margin-bottom: 40px;
}

/* 客房页面房间列表间距 */
.rooms-page .rooms-section {
	padding-top: 0;
}

/* 客房页面顶部间距 */
.rooms-page {
	padding-top: 80px;
}
/* 客房页面主区域 */
.rooms-section {
	padding: 60px 20px;
	background-color: #fff;
}

/* 客房页面单个房间项目 */
.room-item {
	max-width: 1200px;
	margin: 0 auto 80px;
}

/* 客房页面房间标题区域 */
.room-title {
	text-align: center;
	margin-bottom: 40px;
}

/* 客房页面房间英文标题 */
.room-title .en-title {
	font-size: 32px;
	color: #333;
	margin-bottom: 10px;
}

/* 客房页面房间日文标题 */
.room-title .jp-title {
	font-size: 18px;
	color: #666;
}

/* 客房页面房间内容区域 */
.room-content {
	display: flex;
	gap: 40px;
}

/* 客房页面房间图片区域 */
.room-images {
	flex: 0 0 60%;
}

/* 客房页面房间主图容器 */
.main-image {
	margin-bottom: 20px;
}

/* 客房页面房间主图 */
.main-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 20px;
}

/* 客房页面房间次要图片网格 */
.sub-images {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* 客房页面房间次要图片 */
.sub-images img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 10px;
	transition: opacity 0.3s ease;
	cursor: pointer;
}

/* 客房页面房间次要图片悬停效果 */
.sub-images img:hover {
	opacity: 0.8;
}

/* 客房页面房间信息区域 */
.room-info {
	flex: 0 0 40%;
}

/* 客房页面房间描述区域 */
.room-description {
	margin-top: 50px;
}

/* 客房页面房间描述文本 */
.room-description p {
	font-size: 14px;
	line-height: 1.6;
	color: #333;
	margin-bottom: 20px;
}

/* 客房页面房间详细信息列表 */
.room-details dl {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 15px;
	margin-bottom: 0px;

	margin-top: 10px;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 客房页面房间详细信息标题 */
.room-details dt {
	font-weight: bold;
	color: #333;
}

/* 客房页面房间详细信息内容 */
.room-details dd {
	margin: 0;
	color: #666;
}

/* 客房页面房间价格区域 */
.room-price {
	margin-top: 10px;
	text-align: center;
	padding: 30px;
	background-color: #f9f9f9;
	border-radius: 10px;
}

/* 客房页面价格显示样式 */
.room-price .price {
	font-size: 24px;
	color: #333;
	margin-bottom: 20px;
}

/* 客房页面预订按钮基础样式 */
.booking-btn {
	display: inline-block;
	padding: 15px 40px;
	background-color: #8B7355;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}

/* 客房页面预订按钮悬停效果 */
.booking-btn:hover {
	background-color: #6B5835;
	color: #fff;
}

/* 客房页面房间分隔线基础样式 */
.room-divider {
	width: 100%;
	height: 1px;
	margin: 60px auto;
	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)
    );
	position: relative;
}

/* 客房页面分隔线装饰符号 */
.room-divider::before {
	content: '✽';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: #8B7355;
	background: #fff;
	padding: 0 20px;
	font-size: 12px;
}

/* 蒙古包展示区 */
.dome-section {
	padding: 20px 0 40px;
	background-color: #fff;
	overflow: hidden;
	text-align: center;
	display: flex;
	margin-left: 100px;
	max-width: 1300px;
}
/* 蒙古包预览内容容器样式 */
.dome-left-container {
	position: relative;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	flex-direction: column; /* div1和div2上下排列 */
	width: 63%; /* 假设div1和div2占70%的宽度 */
}

/* 蒙古包预览滚动区域样式 */
.dome-main-images {
	display: flex;
	padding: 20px 0;
	gap: 0;
	width: 100%;
	margin-left: 200px;
}

/* 蒙古包预览单个项目样式 */
.dome-preview-item {
	flex: 0 0 380px;
	margin-left: -200px;
	border-radius: 20px;
	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) {
    .dome-preview-item:hover {
        transform: translateY(-10px);
        margin-right: 180px;  /* 调整展开空间 */
        z-index: 1;
    }
}
/* 蒙古包预览图片容器样式 */
.dome-preview-image {
	width: 100%;
	height: 250px;
	overflow: hidden;
}

/* 蒙古包预览图片样式 */
.dome-preview-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

/* 客房页面房间次要图片网格 */
.dome-sub-images {
	/* display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;	 */
	display: flex; /* 设置 div2 为 Flexbox 容器 */
    justify-content: space-between; /* 均匀分布图片 */
	gap: 10px;
	height: 150px;
	width: 100%;
}

/* 客房页面房间次要图片 */
.dome-sub-images img {
	/* width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 10px;
	transition: opacity 0.3s ease;
	cursor: pointer; */
	border-radius: 10px;
	flex: 1; /* 每张图片占据宽度的三分之一 */
	max-width: 33.33%; /* 防止图片超出容器 */
	height: 100%; /* 图片高度与 div2 一致 */
	object-fit: cover; /* 保持图片比例 */
}

/* 蒙古包预览信息区域样式 */
.dome-preview-info {
	padding: 25px;
	background: #fff;
	text-align: left;
}

/* 蒙古包预览标题样式 */
.dome-preview-info h3 {
	font-size: 20px;
	color: #333;
	margin: 0 0 10px 0;
}

/* 蒙古包预览距离信息样式 */
.dome-preview-info .distance {
	font-size: 14px;
	color: #666;
	margin: 0;
}

.dome-right-container{
	width: 37%;
	padding: 20px;
	background-color: #f5f5f5;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

  .container {
	display: flex;
	flex-direction: column;
	align-items: center; /* 容器水平居中 */
	text-align: left; /* 文本内容左对齐 */
  }

/* .room-description p {
	font-size: 14px;
	line-height: 1.6;
	color: #333;
	margin-bottom: 20px;
} */
/* 图片放大特效 */
/* 遮罩层样式 */
.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 1000;
	justify-content: center;
	align-items: center;
  }

  /* 放大后的图片样式 */
  .overlay img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 8px;
  }

  /* 关闭按钮样式 */
  .overlay .close-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	color: white;
	font-size: 30px;
	cursor: pointer;
  }


  .dining-section img.Cutting-line-image {
    width: 30%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 30px;
	text-align: center;
}

/* 服务说明区域样式 */
.service-info-section {
    margin: 0.5rem 0;
    padding: 0.5rem;
    background-color: #f0f2f5;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.service-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-title {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.service-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.service-item {
    background: white;
    padding: 0.5rem;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.service-item h4 {
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.2rem;
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item li {
    padding: 0.1rem 0;
    color: #555;
    font-size: 0.85rem;
}

.option-detail {
    color: #666;
    margin: 0.1rem 0;
    font-size: 0.8rem;
    line-height: 1.2;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .service-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-info-section {
        margin: 0.5rem 0;
        padding: 0.5rem;
    }

    .service-title {
        font-size: 1.1rem;
    }
}
