/* 介绍 */
.intro-wrap{
	display: flex;
	flex-direction: column;
	position: relative;
	/* margin-bottom: 20px; */
}
.intro-wrap .x-home-title-wrap{
	text-align: center;
}
.intro-wrap .img{
	width: 100%;
	/* flex: 0 0 790px; */
}
.intro-wrap .img img{
	border-radius: 5px;
}
.intro-wrap .txt .intro-box{
	background-color: var(--white);
	border-radius: 5px;
	padding: 15px;
	width: 100%;
}
.intro-wrap .txt .detail-wrap{
	max-height: 150px;
	line-height: 28px;
	text-align: justify;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all 0.3s ease-out;
}
.intro-wrap .txt .detail-wrap.open {
    max-height: none !important;
	transition: all 0.3s ease-out;
}
.toggle-btn.open:before{
	content: none;
}

/* 碑型 */
.tomb-list{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 15px;
	grid-row-gap: 15px;
}
.tomb-list li{
	padding: 10px 10px 0;
	background: #fff;
	box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.06), -2px -2px 4px 0 rgba(0, 0, 0, 0.06);
	border-radius: 5px;
	transition: all 0.2s ease-in-out;
}
.tomb-list li:hover{
	box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1), -5px -5px 10px 0 rgba(0, 0, 0, 0.1);
}
.tomb-list li .img-wrap{
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}
.tomb-list li .img-wrap .consult {
	width: 60%;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}
.tomb-list li .img-wrap .consult a{
	color: var(--white);
	font-size: 14px;
	padding: 6px 12px;
	line-height: 1;
	border-radius: 5px;
	text-align: center;
	background-color: var(--red);
}
/* .tomb-list li .img-wrap img{
	transition: all 0.4s ease-in-out;
}
.tomb-list li:hover .img-wrap img{
	transform: scale(1.2);
} */
/* .tomb-list li .img-wrap .overflow{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	line-height: 40px;
	font-size: 16px;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.6);
	text-align: center;
	padding: 0 20px;
} */
.tomb-list li .txt-wrap{
	text-align: center;
	font-size: 16px;
	color: var(--dark);
	padding: 8px;
	/* border: 1px solid #f5f5f5; */
	/* transition: all 0.2s ease-out; */
}
/* .tomb-list li .txt-wrap{
	text-align: center;
	padding: 0.267rem 0;
}
.tomb-list li .txt-wrap ._name{
	font-size: 0.427rem;
}
.tomb-list li:hover .txt-wrap ._name{
	color: var(--dark);
}
.tomb-list li .txt-wrap ._stats{
	font-size: 0.32rem;
	color: var(--gray-dark);
	line-height: 1;
	margin: 10px 0;
}
.tomb-list li .txt-wrap ._stats span:nth-child(1){
	padding-right: 0.133rem;
}
.tomb-list li .txt-wrap ._stats span:nth-child(2){
	padding: 0 0.133rem;
	border-left: 1px solid var(--gray-dark);
	border-right: 1px solid var(--gray-dark);
}
.tomb-list li .txt-wrap ._stats span:nth-child(3){
	padding-left: 0.133rem;
}
.tomb-list li .txt-wrap ._price{
	font-size: 0.48rem;
	font-weight: bold;
	color: var(--red);
} */

/* 环境 */
.environment{
	padding: 40px 0;
	/* margin: 40px auto; */
	background: url("../img/environment.png") no-repeat center center fixed;
	background-size: cover;
	overflow-y: hidden;
}
.environment .container{
	position: relative;
	overflow-y: hidden;
}
.environment .swiper-container{
	position: static;
}
.environment .swiper-container .swiper-slide{
	border: #fff 5px solid;
	cursor: pointer;
}
.swiper-button-next, 
.swiper-button-prev{
	color: var(--white);
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev{
	right: -60px;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: -60px;
}
.environment .x-home-title-wrap .title{
	color: var(--white) !important;
}
.environment .x-home-title-wrap .desc{
	color: var(--white);
}
.environment .txt-wap{
	background-color: var(--white);
	text-align: center;
	padding-top: 5px;
}

/* 陵园环境弹窗 */
.mask {
	display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    overflow: hidden;
    background: rgba(0, 0, 0, .8);
}
.img-mask.block{
	display: block;
}
.pop-body {
	width: 100%;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.pop-body .swiper-container{
	position: static;
	border-radius: 5px;
}
.pop-body .head {
	position: absolute;
	cursor: pointer;
	right: 10px;
	top: -60px;
}
.pop-body .head i {
	color: #FFFFFF;
	font-size: 0.85334rem;
}
.imgs-body .img-pop img{
	border-radius: 5px;
	width: 100%;
	height: 100%;
}
.imgs-body .swiper-container .txt-wap{
	font-size: 16px;
	background-color: var(--white);
	text-align: center;
	padding: 5px;
}

/* 资讯 */
.info-list{
	padding: 10px 10px 40px 10px;
	margin-top: -10px;
}
.info-list .swiper-slide a{
	display: inline-block;
	padding: 25px;
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.11);
}
.info-list .swiper-slide .title{
	width: 100%;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 10px;
	border-left: 5px solid var(--dark);
	padding-left: 20px;
	position: relative;
	left: -25px;
	transition: all 0.2s ease-in-out;
}
.info-list .swiper-slide:hover .title{
	color: var(--primary);
	border-left: 5px solid var(--primary);
}
.info-list .swiper-slide .time{
	color: var(--gray-light);
	margin-bottom: 15px;
}
.info-list .swiper-slide .cover img{
	border-radius: 5px;
}


/* 联系我们 */
.contact-wrap{
	padding: 40px 0;
	background-image: url("../img/map_bg.png");
}
.contact-wrap .x-home-title-wrap .title{
	color: var(--white);
}
.contact-wrap .x-home-title-wrap .desc{
	color: var(--white);
}
.contact-block{
	display: flex;
	flex-direction: column;
	position: relative;
}
.contact-block .txt-wrap{
	width: 100%;
	/* flex: 0 0 400px; */
	margin-right: 0px;
	margin-bottom: 20px;
}
.contact-block .map-wrap{
	flex-grow: 1;
	min-width: 0;
}
.contact-block .touch-list li{
	font-size: 16px;
	color: var(--gray);
}
.contact-block .touch-list li span{
	color: var(--white);
	margin-left: 5px;
}
.contact-block .map-wrap .baidumap {
  width: 100%;
  height: 34vh;
}
	
/* 布局 */
.hidden-xs{
	display: none;
}
.md-space {
	margin-top: 0.40rem;
}
	
/* 更多 */
.more-warp .title{
	font-size: 0.3734rem;
}
.more-warp .icon i {
	font-size: 0.5334rem;
}
.more-warp a{
	height: 0.96rem;
	line-height: 0.96rem;
	margin-top: 20px;
}



@media (min-width: 992px) {
	/* 介绍 */
	.intro-wrap{
		flex-direction: row;
		/* margin-bottom: 40px; */
	}
	.intro-wrap .x-home-title-wrap{
		text-align: left;
	}
	.intro-wrap .img{
		flex: 0 0 790px;
	}
	.intro-wrap .img img{
		border-radius: 5px 0px 0px 5px;
	}
	.intro-wrap .txt{
		flex-grow: 1;
		min-width: 0;
		background-color: var(--light);
		position: relative;
	}
	.intro-wrap .txt .intro-box{
		background-color: var(--white);
		border-radius: 5px;
		padding: 25px;
		width: 100%;
		position: absolute;
		left: -30px;
		top: 50%;
		transform: translateY(-50%);
	}
	.intro-wrap .txt .detail-wrap{
		min-height: 0;
		max-height: 260px;
		line-height: 28px;
		padding-right: 20px;
		text-align: justify;
		overflow-y: auto;
		overflow-x: hidden;
	}
	/* 自定义整个滚动条 */
	.intro-wrap ::-webkit-scrollbar {
		width: 10px; /* 滚动条宽度 */
	}
	.intro-wrap ::-webkit-scrollbar-track {
		background: #f2f2f2; /* 轨道颜色 */
		border-radius: 10px;
	}
	.intro-wrap ::-webkit-scrollbar-thumb {
		background: #ccc; /* 滑块颜色 */
		border-radius: 10px;
	}
	
	/* 碑型 */
	.tomb-list{
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		grid-column-gap: 20px;
		grid-row-gap: 20px;
	}
	.tomb-list li .img-wrap .consult{
		width: 40%;
	}
	.tomb-list li .img-wrap .consult a{
	    font-size: 14px;
	    padding: 8px 20px;
	}
	.tomb-list li .txt-wrap{
		padding: 15px 0;
	}
	/* .tomb-list li .txt-wrap ._name{
		font-size: 18px;
	}
	.tomb-list li .txt-wrap ._stats{
		font-size: 14px;
	}
	.tomb-list li .txt-wrap ._stats span:nth-child(1){
		padding-right: 10px;
	}
	.tomb-list li .txt-wrap ._stats span:nth-child(2){
		padding: 0 10px;
		border-left: 1px solid var(--gray-dark);
		border-right: 1px solid var(--gray-dark);
	}
	.tomb-list li .txt-wrap ._stats span:nth-child(3){
		padding-left: 10px;
	}
	.tomb-list li .txt-wrap ._price{
		font-size: 20px;
	} */
	
	/* 环境弹窗 */
	.imgs-body {
	    width: 900px;
	}
	.pop-body .head {
		right: -80px;
		top: -50px;
	}
	.pop-body .head i {
	    color: #FFFFFF;
	    font-size: 40px;
	}
	.pop-body .swiper-container .txt-wap{
		font-size: 18px;
		padding: 8px;
	}
	
	/* 联系我们 */
	.contact-wrap{
		padding: 80px 0;
	}
	.contact-block{
		flex-direction: row;
	}
	.contact-block .txt-wrap{
		flex: 0 0 400px;
		margin-right: 50px;
	}
	.contact-block .map-wrap .baidumap {
		height: 26vh;
	}
	
}









