* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
}
body {
    background-color: #f0f7f0;
}
li{
	list-style-type: none;
}
a{
	text-decoration: none;
}
/* 顶部固定导航栏 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}
.logo {
    height: 65px;
}
.ckshow{
	clear: both;
	float: none;
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
}
.nav {
	display: flex;
	gap: 1px;
	float: right;
	width: 900px;
	height: 65px;
	line-height: 60px;
}
.nav li {
	text-decoration: none;
	color: #242414;
	font-size: 16px;
	border-radius: 4px;
	width: 130px;
	float: right;
	text-align: center;
}
.nav li selected{ background-color: #52b788;}
.nav li a {
	text-decoration: none;
	color: #2d6a4f;
	font-size: 16px;
	border-radius: 4px;
	transition: background 0.3s;
	width: 130px;
	float: left;
	text-align: center;
}
.nav a.active, .nav a:hover {
    background-color: #52b788;
    color: white;
}

/* 右侧悬浮栏 */
.float-sidebar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 顶部观园预约图片 */
.float-top {
  margin-bottom: 5px; /* 贴合卷轴顶部 */
}
.float-top-img {
  width: 100%;
  display: block;
}

/* 中间内容区（卷轴样式） */
.float-content {
	width: 100%;
	border-radius: 12px;
	/*position: relative;*/
	/*overflow: hidden;*/
	background-image: url(../images/float_bjcn.png);
	background-repeat: repeat-y;
}
/* 卷轴顶部装饰（可替换为图片） */
.float-content_top{
	background-image: url(../images/float_bjtop.png);
	background-repeat: no-repeat;
	height: 35px;
	width: 181px;
}
.float-content_foot{
	background-image: url(../images/float_bjfoot.png);
	background-repeat: no-repeat;
	height: 24px;
	width: 181px;
	margin-top: -1px;
}
.float-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: url('data:image/float_bjtop.png') repeat-x;
}

/* 功能项 */
.float-item {
  text-align: center;
  margin-bottom: 15px;
  color: #fff;
}
.float-item:last-child {
  margin-bottom: 20px;
}
.float-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 8px;
}
.float-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.float-item p {
  font-size: 16px;
  font-weight: 500;
}

/* 分隔线 */
.divider {
	height: 1px;
	float: left;
	width: 130px;
	margin-bottom: 15px;
	margin-left: 25px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #FFFFFF;
}

/* 二维码 */
.float-qrcode {
  width: 70%;
  margin: 0 auto;
  padding: 9px;
}
.float-qrcode img {
  width: 100%;
  display: block;
}

/* 底部回到顶部按钮 */
.float-bottom {
	width: 66px;
	height: 66px;
	margin-top: 10px;
	display: flex;

}
.float-top-btn {
  font-weight: 600;
}

/* 首屏轮播区域 */
.banner {
    margin-top: 60px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.banner_index{height: 721px;}
.banner_news{height: 600px;}
.banner-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s;
}
.banner-slide.active {
    opacity: 1;
}
.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
}
.banner-dot.active {
    background-color: white;
}

/* 园区展示模块 */
.park-show {
	width: 100%;
	background-color: #23624D;
	display: flex; /* 增加上下内边距，避免卡片贴边 */
	overflow: hidden; /* 隐藏容器外的内容 */
	height: 270px;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
.park-scroll-container {
  position: relative; /* 必须有，否则absolute箭头会飘走 */
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
}
.park-list {
	display: flex; /* 横向排列 */
	gap: 10px; /* 替代margin，统一卡片间距 */
	overflow-x: auto; /* 横向滚动 */
	scroll-behavior: smooth; /* 平滑滚动（和JS的behavior呼应） */
	padding: 5px 0;
  /* 隐藏滚动条（可选，美观） */
  -ms-overflow-style: none;
	scrollbar-width: none;
	background-color: #23624D;
}
.park-list::-webkit-scrollbar {
  display: none; /* 隐藏webkit内核滚动条 */
}
.park-item {
  width: 620px;
  height: 240px;
  flex: 0 0 auto; /* 关键：禁止卡片收缩/拉伸，固定宽度 */
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
  position: relative;
  margin: 0; /* 取消原有的margin，用gap替代 */
}
.park-item img{
	max-width: 620px;
	max-height: 240px;
	text-align: center;
	vertical-align: middle;
}
/* 箭头样式微调（确保不遮挡） */
.park-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999; /* 关键：提高层级，确保在最上层 */
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); /* 可选：加阴影更立体 */
}
.park-arrow-left {
  left: 10px; /* 向左偏移，压在图片左侧 */
}
.park-arrow-right {
  right: 10px; /* 向右偏移，压在图片右侧 */
}
.park-arrow img {
  object-fit: contain;
}

/* 园区介绍模块 */
.cnshow{
	background-image: url(../images/inbg.jpg);
	min-height: 2736px;
	width: 100%;
	background-position: center top;
}
.park-tabs {
	display: flex;
	justify-content: center;
	padding-top: 20px;
}
.park-tab {
	border-radius: 20px;
}

.intro-content {
	border-radius: 8px;
	background-image: url(../images/park_bg.png);
	background-repeat: no-repeat;
	height: 226px;
	width: 1200px;
}
.intro-content h3 {
	color: #BE9474;
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: bold;
	padding-top: 30px;
	padding-left: 80px;
}
.intro-content p {
	color: #575748;
	line-height: 1.6;
	font-size: 14px;
	width: 1100px;
	padding-left: 50px;
}
.intro-btn {
	width: 1200px;
	border-radius: 4px;
	text-decoration: none;
	margin-top: 15px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	text-align: center;
	height: 30px;
}


/* 容器（和之前园区介绍保持一致，1200px居中） */
.tomb-intro .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}



/* 模块标题 */

.section_topic{
	align-items: center;
	width: 1200px;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 20px;
}

/* 墓型卡片列表 */
.tomb-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	margin-bottom: 30px;
}

/* 卡片整体（分上中下三部分） */
.tomb-card {
	display: flex;
	flex-direction: column;
	background-color: transparent;
	width: 286px;
}
/* 卡片顶部（圆角装饰） */
.tomb-card-top {
	height: 28px;
	width: 286px;
	background-image: url(../images/tomb_top.png);
	background-repeat: no-repeat;
}
/* 卡片中部（内容区，自动扩展） */
.tomb-card-middle {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-image: url(../images/tomb_cn.png);
	background-repeat: repeat-y;
	padding-right: 20px;
	padding-left: 20px;
}
/* 卡片底部（圆角装饰） */
.tomb-card-bottom {
	height: 31px;
	border-radius: 0 0 12px 12px;
	background-image: url(../images/tomb_foot.png);
	background-repeat: no-repeat;
	width: 286px;
}

/* 卡片内图片 */
.tomb-img {
	width: 100%;
	border: 1px solid #1F8A80;
	margin-bottom: 20px;
	padding: 5px;
}
.tomb-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* 卡片内文字信息 */
.tomb-info {
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}
.tomb-park {
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}
.tomb-area, .tomb-spec {
  font-size: 14px;
  color: #333326;
  margin-bottom: 5px;
}

/* 详情按钮 */
.tomb-btn {
	display: inline-block;
	text-decoration: none;
	border-radius: 4px; /* 当内容多时，按钮自动靠下 */
	background-image: url(../images/park_xq.png);
	background-repeat: no-repeat;
	height: 28px;
	width: 78px;
}
.tomb-btn:hover {
  background-color: #40916c;
}

/* 园区动态模块整体 */
.news-intro {
  width: 100%;
}

/* 容器（与之前模块保持1200px居中一致） */
.news-intro .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 模块标题（与墓型介绍样式统一） */
.news-intro .section-title-news {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

}
.section-title-news {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
  	background-image: url(../images/news_text.png);
	background-repeat: no-repeat;
	height: 83px;
	width: 1200px;
}

/* 新闻列表：2行2列网格布局 */
.news-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px; /* 项与项之间的间距 */
}

/* 新闻项：使用背景图实现四角装饰 */
.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
	height: 180px;
  padding: 10px;
  border: 1px solid #23624D;
  background-color: #fff;
  transition: background-color 0.3s ease; /* 也可以把过渡放这里，更规范 */
}
.news-item:hover {
  background-color: #d1e7dd; /* 浅绿背景，匹配设计图第一个项的绿色 */
}
/* 新闻图片 */
.news-img {
	width: 196px;
	flex-shrink: 0;
	margin-left: 8px;
	margin-top: 8px;
}
.news-img img {
  width: 100%;
  height: 135px;
  object-fit: cover;
  border-radius: 8px;
}


/* 新闻内容 */
.news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-content h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
  line-height: 2;
}
.news-content p {
  font-size: 16px;
  color: #555;
  line-height: 2;
}

.section-title-less {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	background-image: url(../images/bless_text.jpg);
	background-repeat: no-repeat;
	height: 44px;
	width: 1200px;
	margin-top: 50px;
}
.less_list{
	width: 1198px;
	border: 1px solid #BCD1BC;
	padding: 10px;
	float: left;
}
.less_list li{
	margin: 12px;
	float: left;
	width: 266px;
}
.less_list_top{
	font-size: 18px;
	line-height: 64px;
	color: #333333;
	background-image: url(../images/bless_show_top.png);
	background-repeat: no-repeat;
	text-align: center;
	height: 86px;
	width: 266px;
}
.less_list_cn{
	background-image: url(../images/bless_show_cn.png);
	background-repeat: repeat-y;
	width: 266px;
}
.less_list_foot{
	background-image: url(../images/bless_show_foot.png);
	background-repeat: no-repeat;
	height: 15px;
	width: 266px;
}
.less_list_cn img{
	margin: 10px;
	height: 305px;
	width: 245px;
}

.service_title{
	background-image: url(../images/service_bg.jpg);
	background-repeat: repeat-x;
	height: 42px;
	width: 100%;
}
.service_text{
	font-size: 20px;
	line-height: 42px;
	color: #000000;
	background-image: url(../images/service_text.png);
	background-repeat: no-repeat;
	text-align: center;
	clear: both;
	height: 42px;
	width: 179px;
	margin-right: auto;
	margin-left: auto;
}
.service_cn{
	background-image: url(../images/service_cnbg.jpg);
	height: 534px;
	width: 100%;
	background-position: center;
}

.service_list{
float: left;
	width: 1100px;
	margin-top: 80px;
	margin-left: 60px;
}
.service_lefttu{
	float: left;
	width: 166px;
	margin: 10px;
}
.service_list_li{
	float: left;
	height: 90px;
	width: 92px;
	margin-top: 25px;
		margin-left: 30px;
}
.service_list_li p{
	float: left;
	height: 40px;
	width: 92px;
	font-size: 18px;
	line-height: 40px;
	color: #FFFFFF;
}
.service_list_li02{
	float: left;
	height: 90px;
	width: 130px;
	margin-top: 25px;text-align: center;margin-left: 10px;
}

.service_list_li02 p{
	float: left;
	height: 40px;
	width: 130px;
	font-size: 18px;
	line-height: 40px;
	color: #FFFFFF;
	font-size: 14px;
	line-height: 30px;
	text-align: center;
}

.service_list_li_jian{
	float: left;
	height: 13px;
	width: 52px;
	margin-top: 60px;
	margin-left: 30px;
}
/* 底部联系信息模块整体 */
.footer-contact {
  width: 100%;
  padding: 40px 0;
  background-color: #fff;
}
.footer-contact .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* 左侧 Logo 区域 */
.contact-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

/* 信息框通用样式 */
.contact-info-left,
.contact-info-right {
	flex: 1;
	border: 1px dashed #82b3a6;
	border-radius: 8px;
	padding: 8px;
	width: 430px;
	height: 150px;
}
.info-box {
	float: left;
	margin-bottom: 10px;
	width: 100%;
	margin-left: 10px;
}
.info-box:last-child {
  margin-bottom: 0;
}

/* 标题样式（工作时间） */
.info-title {
	height: 36px;
	width: 149px;
	float: left;
}
/* 工作时间文字 */
.info-time {
	font-size: 16px;
	color: #333;
	float: left;
	width: 245px;
	line-height: 36px;
	height: 36px;
}

/* 陵园地址、电话 */
.info-address{
	font-size: 16px;
	color: #333;
	float: left;
	width: 300px;
	margin-right: 0;
	margin-bottom: 10px;
	line-height: 30px;
}
.info-tel {
	color: #885a3e;
}
.info-location {
	float: left;
	width: 50px;
	height: 50px;
	margin-top: 20px;
}

/* 销售中心地址 */
.info-center {
  font-size: 16px;
  color: #333;
  margin: 10px 0;
  line-height: 1.6;
}

/* 右侧二维码 */
.contact-qrcode {
  width: 110px;
  height: 110px;
}
.contact-qrcode img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer{
	font-size: 16px;
	color: #FFFFFF;
	text-align: center;
	height: 75px;
	width: 100%;
	background-color: #477463;
	line-height: 75px;
}
.footer a{ color: #FFFFFF; }
/* 墓型模块  */
.mo_top{
	background-color: #13867C;
	height: 40px;
	width: 100%;
}
.mo_bg{
	background-image: url(../images/mobg.jpg);
	background-repeat: no-repeat;
	width: 100%;
	background-color: #E9F2EF;
}
.mo_show_cntop{
	height: 70px;
	width: 100%;
}
.mo_show_text{
	font-size: 26px;
	line-height: 69px;
	color: #FFFFFF;
	background-image: url(../images/mo_text.png);
	background-repeat: no-repeat;
	text-align: center;
	clear: both;
	height: 69px;
	width: 191px;
	margin-right: auto;
	margin-left: auto;
}
.mo_show{
	clear: both;
	width: 513px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 50px;
}
.mo_show_top{
	background-image: url(../images/mo_show_top.png);
	background-repeat: no-repeat;
	height: 27px;
	width: 513px;
}
.mo_show_cn{
	background-image: url(../images/mo_show_cn.png);
	background-repeat: repeat-y;
	width: 513px;
}
.mo_show_foot{
	background-image: url(../images/mo_show_foot.png);
	background-repeat: no-repeat;
	height: 31px;
	width: 513px;
}
.mo_show_tipoc{
	background-image: url(../images/mo_show_text.png);
	background-repeat: no-repeat;
	clear: both;
	height: 52px;
	width: 175px;
	margin-right: auto;
	margin-left: auto;
	font-size: 28px;
	line-height: 52px;
	text-align: center;
}
.mo_show_details{
	font-size: 14px;
	line-height: 30px;
	width: 440px;
	margin: 30px;
}
.mo_show_pic{
	width: 315px;
	height: 315px;
	border-radius: 50%;
	overflow: hidden; /* 部分浏览器需配合display: block生效 */
	display: block;
	object-fit: cover;
	object-position: center;
	clear: both;
	margin-right: auto;
	margin-left: auto;
}
.mo_show_footlist {
	width: 700px;
	margin-top: 100px;
	margin-left: 250px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-bottom: 170px;
}

.mo_show_footlist_left,
.mo_show_footlist_right {
    width: 50px;
    flex-shrink: 0;
}

.mo_footlist {
	width: 540px;
	display: flex;
	align-items: center;
	padding-left: 30px;
}

.mo_footlist ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.mo_footlist li {
    background-image: url(../images/mo_list_bg.png);
    background-repeat: no-repeat;
    height: 105px;
    width: 105px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mo_footlist_pic {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mo_footlist_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.mo_list_shai{
	background-image: url(../images/mo_list_shai.png);
	background-repeat: repeat-x;
	height: 43px;
	width: 1200px;
	border: 1px solid #13867C;
	line-height: 40px;
	font-size: 16px;
	text-indent: 20px;
}
/* 墓型列表模块整体 - 最终版 */
.tomb-list-container {
  width: 100%;
  max-width: 1200px; /* 总宽固定1200px */
  margin: 0 auto;
  padding: 20px 0;
}

/* 关键：用网格布局实现两列，自动换行 */
.tomb-list-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 强制两列均分 */
  gap: 20px; /* 列、行之间的间距 */
}

/* 单个墓型项 - 左图右文，匹配数据库显示逻辑 */
.tomb-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #d1e7dd;
  border-radius: 8px;
  min-height: 140px;
  width: 100%; /* 每项占满列宽 */
}
.tomb-item-img {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}
.tomb-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.tomb-item-info {
  flex: 1;
  font-size: 16px;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tomb-item-info p {
  margin: 6px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tomb-detail {
  color: #2d9485;
  text-decoration: none;
  font-size: 16px;
}


.mo_show_spic{
	width: 420px;
	height: 420px;
	border-radius: 50%;
	overflow: hidden; /* 部分浏览器需配合display: block生效 */
	display: block;
	object-fit: cover;
	object-position: center;
	clear: both;
	margin-right: auto;
	margin-left: auto;
}
.mo_show_stext{
	font-size: 28px;
	line-height: 50px;
	text-align: center;
	width: 100%;
	margin-top: 50px;
}
.mo_show_smtext{
	font-size: 18px;
	line-height: 50px;
	text-align: center;
	width: 100%;
}
.mo_list_smshai{
	background-image: url(../images/mo_list_shai.png);
	background-repeat: repeat-x;
	height: 43px;
	width: 1200px;
	border: 1px solid #13867C;
	line-height: 40px;
	font-size: 16px;
	text-align: center;
}
.mo_list_smshai b{
	padding-right: 15px;
	padding-left: 15px;
}
.mo_list_smxq{
	padding: 20px;
	width: 1200px;
	border-radius: 10px;
	border: 1px solid #13867C;
	margin-top: 20px;
	margin-bottom: 20px;
	line-height: 30px;
}
.mo_list_sman{
	margin-right: auto;
	margin-left: auto;
	clear: both;
	text-align: center;
	padding-bottom: 200px;
	padding-top: 50px;
}
.mo_booking_cn{
	clear: both;
	width: 560px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 80px;
}
.mo_booking_cn li{
	width: 100%;
	margin-bottom: 20px;
}
.mo_booking_input{
	line-height: 70px;
	height: 70px;
	border: 1px solid #449B8C;
	width: 100%;
	border-radius: 10px;
	color: #999999;
	text-indent: 10px;
	font-size: 16px;
}
.mo_booking_textarea{
	border: 1px solid #449B8C;
	width: 100%;
	border-radius: 10px;
	color: #999999;
	text-indent: 10px;
	font-size: 16px;
	padding: 6px;
}
.mo_booking_text{
	font-size: 22px;
	line-height: 90px;
	height: 90px;
}
/*文章模块*/

.news_topic{
	font-size: 24px;
	line-height: 80px;
	height: 80px;
	width: 100%;
	text-align: center;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCCCCC;
}
.news_show_k{
	background-color: #E3F7EB;
	background-image: url(../images/news_top_bg.jpg);
	background-repeat: repeat-x;
	width: 100%;
}
.news_show_time{
	font-size: 16px;
	line-height: 40px;
	color: #FFFFFF;
	text-align: center;
	width: 100%;
}
.news_show{
	font-size: 16px;
	line-height: 30px;
	width: 100%;
	padding: 30px;
}
.news_bg{
	background-image: url(../images/news_bg.jpg);
	background-repeat: no-repeat;
	width: 100%;
	background-color: #DAF1E9;
}
.news_foot{
	height: 100px;
	width: 100%;
}
.news_sou{
	line-height: 55px;
	height: 55px;
	border: 1px solid #449B8C;
	width: 590px;
	border-radius: 10px;
	color: #999999;
	font-size: 16px;
	clear: both;
	margin-right: auto;
	margin-left: auto;
	margin-top: 30px;
}
.news_sou_an{
	width: 30px;
	height: 30px;
	float: right;
	margin-right: 10px;
}
.news_sou_an img{ width: 100%; height: 100%;}
.news_sou_right{
	height: 48px;
	width: 520px;float: left;
	margin-left: 5px;
	margin-top: 1px;
}
.news_sou input{
	height: 48px;
	width: 520px;
	border: 1px solid #FCFEFD;
	float: left;
	background-color: #FCFEFD;
	font-size: 16px;
	color: #333333;
}
.news_list_k{
	background-color: #FFFFFF;
	padding: 20px;
	clear: both;
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
}

/* 新闻列表模块整体 */
.news-list-container {
  width: 100%;
  max-width: 1200px; /* 总宽固定1200px */
  margin: 0 auto;
  padding: 20px 0;
}

/* 关键：网格布局实现两列，自动按顺序排列 */
.news-list-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 强制两列均分 */
  gap: 20px; /* 列、行之间的间距 */
}

/* 单个新闻项：左图右文，带绿色边框 */
.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px;
  border: 1px solid #23624D;
  background-color: #fff;
}
.news-item-img {
  width: 160px;
  height: 120px;
  flex-shrink: 0;
}
.news-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.news-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-item-content h3 {
  font-size: 18px;
  color: #222;
  margin: 0 0 10px 0;
	/* 核心：限制显示行数 */
	-webkit-line-clamp: 2;
	/* 必须搭配，设置为弹性盒子 */
	display: -webkit-box;
	/* 文字垂直排列 */
	-webkit-box-orient: vertical;
	/* 超出部分隐藏 */
	overflow: hidden;
	/* 可选：文字超出不换行（配合多行） */
	word-break: break-all;
}
.news-item-content p {
  font-size: 16px;
  color: #555;
  margin: 0 0 10px 0;
  line-height: 1.5;
	/* 核心：限制显示行数 */
	-webkit-line-clamp: 3;
	/* 必须搭配，设置为弹性盒子 */
	display: -webkit-box;
	/* 文字垂直排列 */
	-webkit-box-orient: vertical;
	/* 超出部分隐藏 */
	overflow: hidden;
	/* 可选：文字超出不换行（配合多行） */
	word-break: break-all;
}
.news-date {
  font-size: 16px;
  color: #666;
  text-align: right;
  display: block;
}

/* 分页样式（和之前墓型列表保持一致） */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #d1e7dd;
  border-radius: 4px;
  background-color: #fff;
  color: #666;
  text-decoration: none;
  font-size: 16px;
}
.page-btn.active {
  background-color: #23624D;
  color: #fff;
  border-color: #23624D;
}
.page-btn:hover {
  opacity: 0.8;
}
.news_bg2{
	background-image: url(../images/news_bg2.jpg);
	background-repeat: no-repeat;
	width: 100%;
	background-color: #DAF1E9;
}

/*园区风景*/
/* 园区风光轮播 - 仅修改样式 开始 */
.scenery-carousel {
  width: 880px;
  margin: 0 auto;
  position: relative;
}

/* 大图容器 + 箭头下移（放在大图下方） */
.scenery-banner-box {
  position: relative;
  width: 100%;
  height: 450px;
  margin-bottom: 15px; /* 给箭头留出间距 */
}
.scenery-banner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.scenery-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.scenery-item.active {
  opacity: 1;
}
.scenery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 箭头图片按钮样式 */
.scenery-arrow {
  background: transparent !important;
  border: none !important;
  padding: 0;
}
.scenery-arrow img {
  width: 40px;
  height: 40px;
  display: block;
}
/* 箭头：放在大图正下方，居中 */
.scenery-arrow {
  position: absolute;
  bottom: -80px; /* 下移到图片下方 */
  width: 40px;
  height: 30px;
  background: rgba(0,0,0,0.2);
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 99;
  font-size: 18px;
}
.scenery-prev {
  left: 20px;
}
.scenery-next {
  right: 20px;
}

/* 缩略图横向滚动容器（核心改动） */
.scenery-thumb-box {
	width: 80%;
	overflow: hidden;
	position: relative;
	clear: both;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}
.scenery-thumb-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.scenery-thumb {
  display: flex;
  gap: 15px;
  padding: 5px 0;
}
.thumb-item {
	width: 120px;
	height: 80px;
	flex-shrink: 0;
	cursor: pointer;
	opacity: 0.7;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	border-radius: 4px;
	margin: 8px;
}
.thumb-item.active {
  opacity: 1;
  border-color: #c19a6b;
  transform: scale(1.05);
}
.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 隐藏滚动条（美观） */
.scenery-thumb-wrapper::-webkit-scrollbar {
  height: 0;
}
/* 园区风光轮播 - 仅修改样式 结束 */
/*祈福模块*/
.less_bg{
	background-image: url(../images/less_bg.jpg);
	background-repeat: no-repeat;
	width: 100%;
	background-color: #F4F0E6;
}
.less_show_text{
	background-image: url(../images/less_text.png);
	background-repeat: no-repeat;
	text-align: center;
	clear: both;
	height: 61px;
	width: 370px;
	margin-right: auto;
	margin-left: auto;
}
.less_show{
	clear: both;
	width: 513px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 50px;
}
.less_show_top{
	background-image: url(../images/less_show_top.png);
	background-repeat: no-repeat;
	height: 27px;
	width: 513px;
}
.less_show_cn{
	background-image: url(../images/less_show_cn.png);
	background-repeat: repeat-y;
	width: 513px;
}
.less_show_foot{
	background-image: url(../images/less_show_foot.png);
	background-repeat: no-repeat;
	height: 31px;
	width: 513px;
}
.less_show_tipoc{
	background-image: url(../images/less_show_text.png);
	background-repeat: no-repeat;
	clear: both;
	height: 52px;
	width: 175px;
	margin-right: auto;
	margin-left: auto;
	font-size: 28px;
	line-height: 52px;
	text-align: center;
}
.less_footlist {
	width: 640px;
	display: flex;
	align-items: center;
	padding-left: 30px;
}

.less_footlist ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.less_footlist li {
    height: 130px;
    width: 175px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.less_footlist li img{ height: 130px;
    width: 175px;}
.less_title{
	background-image: url(../images/lees_bg.jpg);
	background-repeat: repeat-x;
	height: 42px;
	width: 100%;
}
.less_footer{
	font-size: 16px;
	color: #FFFFFF;
	text-align: center;
	height: 62px;
	width: 100%;
	line-height: 62px;
	background-image: url(../images/lees_footbg.jpg);
	background-repeat: repeat-x;
}
.less_footer a{
	color: #FFFFFF;
}
.less-info-left,
.less-info-right {
	flex: 1;
	border: 1px dashed #945F57;
	border-radius: 8px;
	padding: 8px;
	width: 430px;
	height: 150px;
}
.less_list_smshai{
	background-image: url(../images/mo_list_shai.png);
	background-repeat: repeat-x;
	height: 43px;
	width: 1200px;
	border: 1px solid #A39B91;
	line-height: 40px;
	font-size: 22px;
	text-align: center;
	margin-top: 50px;
}
.less_list_smxq{
	padding: 20px;
	width: 1200px;
	border-radius: 10px;
	border: 1px solid #A39B91;
	margin-top: 20px;
	line-height: 30px;
	background-color: #F0EADE;
}
.less_booking_input{
	line-height: 70px;
	height: 70px;
	border: 1px solid #6F665B;
	width: 100%;
	border-radius: 10px;
	color: #999999;
	text-indent: 10px;
	font-size: 16px;
}
.less_booking_textarea{
	border: 1px solid #6F665B;
	width: 100%;
	border-radius: 10px;
	color: #999999;
	text-indent: 10px;
	font-size: 16px;
	padding: 6px;
}

/*园区风景*/
/* 卡片列表容器 —— 两列布局 */
.card-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 10px;
}

/* 单个卡片 —— 绿色边框 + 内边距空隙 */
.card-item {
  border: 1px solid #4CAF50; /* 绿色边框 */
  border-radius: 12px;        /* 整体圆角 */
  padding: 15px;              /* 图片与边框之间的空隙 */
  background: #fff;
  transition: all 0.3s ease;  /* 平滑过渡 */
  cursor: pointer;
}

/* 鼠标悬浮轻微变色 */
.card-item:hover {
  background-color: #f5fff5;
  border-color: #3d9b41;
}

/* 图片样式 —— 圆角 + 不铺满 */
.card-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px; /* 图片四个角圆弧 */
  display: block;
}

/* 图片下方文字 */
.card-title {
  text-align: center;
  margin-top: 12px;
  font-size: 16px;
  color: #333;
}
.card-date {
  text-align: center;
  margin-top: 6px;
  font-size: 14px;
  color: #999;
}
.yuan-nav{
	font-size: 16px;
	line-height: 40px;
	color: #FFFFFF;
	text-align: center;
	display: block;
	height: 40px;
	width: 130px;
	float: left;
}
.yuan-nav span{
	height: 40px;
	width: 130px;
	background-image: url(../images/yuan-nav.jpg);
	background-repeat: repeat-x;
	float: left;
}