:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #888;
	--gray-light: #999;
    --gray-dark: #666;
    /* --primary: #11754f; */
	--primary: #00A692;
    --primary-gray: #14CBB5;
    --primary-dark: #024a2f;
    --secondary: #cdb03d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f4f4f4;
    --light-b: #f8f9fa;
    --dark: #363636;
    --black: #000;
    --rgb-white: 255,255,255;
    --rgb-primary: 17,117,79;
    --rgb-primary-dark: 2,74,47;
    --rgb-dark: 54,54,54;
    --rgb-black: 0,0,0;
    --rgb-gray: 134,134,134;
    --rgb-secondary: 205,176,61;
    --breakpoint-xs: 0;
}

* {
  padding: 0;
  margin: 0;
}

a{
	color: var(--dark);
    text-decoration: none;
	transition: all 0.2s ease-out;
}
a:hover{
	color: var(--primary);
    text-decoration: none;
}

li {
  list-style: none;
}

p,li,ul{
	padding: 0;
	margin: 0;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
}

body{
	font-family: "微软雅黑", Microsoft YaHei, PingFang SC, Heiti SC, tahoma, arial, Hiragino Sans GB, sans-serif;
	font-size: 16px !important;
	font-weight: 400;
	color: var(--dark);
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-ms-user-select: none;
}


._pc{
	display: none;
}
._web{
	display: block;
}
@media (min-width: 992px){
	._pc{
		display: block;
	}
	._web{
		display: none;
	}
}

.d-flex {
    display: flex;
    align-items: center;
}

.mb-distance {
  margin-bottom: 20px;
}

/* 标题 */
.x-home-block .x-home-title-wrap{
	text-align: center;
}
.x-home-block .x-home-title-wrap .title{
	color: var(--dark);
	margin-bottom: 5px;
}
.x-home-title-wrap{
	margin-bottom: 10px;
}
.x-home-title-wrap .title{
	font-size: 22px;
	font-weight: 500;
}
.x-home-title-wrap .desc{
	font-size: 14px;
	color: var(--gray);
	font-style: italic;
}

/* 按钮1 */
.toggle-btn{
	padding-top: 10px;
	text-align: center;
	position: relative;
}
.toggle-btn span{
	display: inline-block;
	font-size: 14px;
	color: var(--white);
	text-align: center;
	border-radius: 20px;
	background-color: var(--dark);
	padding: 8px 24px;
}
.toggle-btn:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 52px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 90%);
}

@media (min-width: 992px){
	.x-home-title-wrap{
		margin-bottom: 20px;
	}
	.x-home-title-wrap .title{
		font-size: 30px;
		/* font-weight: 500; */
	}
	.x-home-title-wrap .desc{
		font-size: 16px;
		/* color: var(--gray); */
		/* font-style: italic; */
	}
	
	.mb-distance {
	  margin-bottom: 40px;
	}

}

/* swiper导航条 */
.swiper-pagination-bullet{
	width: 24px;
	height: 6px;
	border-radius: 6px;
}
.swiper-pagination-bullet-active{
	background-color: var(--primary);
}


/* 头部 */
header {
    border-bottom: 1px solid #ECECEC;
	margin-bottom: 2px;
}
.head-wrap{
	width: 100%;
	height: 1.387rem;
	display: grid;
	grid-template-columns: 10% 80% 10%;
	align-items: center;
}
.head-wrap .logo{
	text-align: center;
}
.head-wrap .logo a{
	display: inline-block;
}
.head-wrap .logo img{
	height: 34px;
}
.head-wrap .phone{
	text-align: right;
}
.head-wrap .phone span{
	font-size: 20px;
	font-weight: 500;
	margin-left: 5px;
}
.head-wrap .phone ._web i{
	font-size: 0.533rem;
	color: var(--black);
}
.head-wrap .nav{
	width: 100%;
	height: 100%;
}
.head-wrap .nav-list{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.head-wrap .nav-list li{
	height: 100%;
	line-height: 72px;
	font-weight: 500;
	margin: 0 5px;
	cursor: pointer;
}
.head-wrap .nav-list li a{
	display: inline-block;
	padding: 0 10px;
	transition: all 0.2s ease-out;
}
.head-wrap .nav-list li.active{
	border-bottom: 2px solid var(--primary);
}
.head-wrap .nav-list li.active a{
	color: var(--primary);
}
.mobile-nav__toggler i{
	font-size: 0.533rem;
	color: var(--black);
}
.mobile-nav__wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transition: -webkit-transform 500ms ease;
	transition: -webkit-transform 500ms ease;
	transition: transform 500ms ease;
	transition: transform 500ms ease, -webkit-transform 500ms ease;
	z-index: 999;
	opacity: 0;
}
.mobile-nav__wrapper.expanded {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	opacity: 1;
}
.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-color: #000;
  opacity: 0.8; */
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  cursor: pointer;
}
.mobile-nav__content {
  width: 315px;
  background-color: var(--white);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
}
.mobile-nav__content .navs {
	margin-left: 10px;
	margin-right: 10px;
}
.mobile-nav__content .navs li:not(:last-child) {
	border-bottom: 1px solid rgba(125, 125, 125, 0.15);
}
.mobile-nav__wrapper .mobile-navs li{
	padding: 15px 0;
}
.mobile-nav__wrapper .mobile-navs li.active a{
	color: var(--primary);
}

/* 底部 */
footer{
	margin-bottom: 50px;
}
.foot-wrap{
	background-color: var(--dark);
	padding: 20px 0;
}
.foot-wrap .foot-link{
	height: 36px;
	overflow: hidden;
	display: flex;
	align-items: center;
	color: var(--gray-light);
}
.foot-wrap .foot-link>p{
	width: 30%;
	margin-top: -2px;
}
.foot-wrap .foot-link ul{
	height: 44px;
	display: flex;
	align-items: center;
	overflow: scroll;
}
.foot-wrap .foot-link ul li{
	font-size: 0.373rem;
	margin-right: 0.267rem;
	white-space: nowrap;
}
.foot-wrap .foot-link a{
	color: var(--gray-light);
	transition: all 0.3s ease-out;
}
.foot-wrap .foot-link ul li:hover a{
	color: var(--primary);
}
.foot-wrap .foot-info{
	display: flex;
	flex-direction: column;
	justify-content: space-between;	
}
.foot-wrap .info-L{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.foot-wrap .info-L .logo img{
	height: 40px;
}
.foot-wrap .info-L .phone{
	display: flex;
	align-items: center;
	position: relative;
	color: var(--white);
	margin-left: 0px;
	margin-top: 10px;
}
.foot-wrap .info-L .phone::before{
	content: none;
}
.foot-wrap .info-L .phone>i{
	font-size: 30px;
	margin-right: 10px;
}
.foot-wrap .info-L .phone p span{
	display: block;
}
.foot-wrap .info-L .phone p span:nth-child(1){
	font-weight: 600;
}
.foot-wrap .info-L .phone p span:nth-child(2){
	font-size: 14px;
}
.foot-wrap .info-R{
	text-align: center;
	/* margin-top: 40px; */
}
.foot-wrap .info-R>img{
	height: 120px;
	margin-bottom: 10px;
	margin-top: 10px;
}
.foot-wrap .info-R>p{
	color: var(--white);
}
.foot-wrap .info-R>p span{
	display: block;
	font-size: 14px;
	line-height: 1.6;
}
.foot-root{
	background-color: #2e2e2e;
	padding: 15px 0;
	color: var(--white);
	font-size: 14px;
	text-align: center;
	line-height: 2;
}
.foot-root a{
	color: var(--white);
	font-size: 14px;
}
.foot-root .record{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.foot-root .record .beian{
	display: flex;
	flex-direction: column;
}
.foot-root .statement{
	font-size: 10px;
	color: var(--gray);
}

/* 底部悬浮导航 */
.navBar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9;
	background-color: rgba(var(--rgb-white), .9);
	display: flex;
	/* padding-left: 60px; */
	padding-left: 10px;
	padding-right: 10px;
	align-items: center;
	border-radius: 14px 14px 0 0;
	box-shadow: 0 -4px 8px 0 rgba(var(--rgb-black), .15)
}
.navBar>.kefu-img {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background-color: #eaeaea;
	background-image: url("../img/wanghan.png");
	background-repeat: no-repeat;
	background-size: cover;
	/* position: absolute; */
	bottom: 0;
	left: 0;
}
.navBar>.txt {
	text-align: center;
	margin-right: 0;
	min-width: 108px
}
.navBar>.txt .num {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--red)
}
.navBar>.txt .tips {
	font-size: 12px;
	transform: scale(.75);
	transform-origin: center;
	color: var(--gray)
}
.navBar>.btn-wrap {
	flex-grow: 1;
	min-width: 0;
	display: flex;
	justify-content: space-between;
	padding-top: 5px;
	padding-bottom: 5px;
}
.navBar>.btn-wrap .f-btn {
	display: flex;
	height: 40px;
	align-items: center;
	justify-content: center;
	flex: 0 0 48.5%;
	min-width: 0;
	border-radius: 22px;
	font-size: 14px;
}
.navBar>.btn-wrap .f-btn.online {
	background-color: var(--white);
	border: 1px solid var(--primary);
	color: var(--primary)
}
.navBar>.btn-wrap .f-btn.tel {
	background-color: var(--red);
	color: var(--white)
}

.navBar .roll_text {
    width: 7.8rem;
    height: 0.933rem;
    border-radius: 5px;
    background-color: #000;
    position: absolute;
    bottom: 100%;
    left: 0.171rem;
    font-size: 22px;
    display: flex;
	flex-direction: row-reverse;
    align-items: center;
    padding: 0 0.392rem 0 0.171rem;
    margin-bottom: 0.171rem;
}
.navBar .roll_text::before {
	content: "";
	position: absolute;
    top: 100%;
	border-left: 0.13333333rem solid transparent;
	border-right: 0.13333333rem solid transparent;
	border-top: 0.10666667rem solid #000000;
	left: 0.86666667rem;
}
.navBar .roll_text .off{
	line-height: 1;
}
.navBar .roll_text .off i{
	font-size: 18px;
	color: #FFFFFF;
}
.navBar .roll_text .swiper-container{
	width: 100%;
	height: 100%;
}
.navBar .roll_text .swiper-slide{
	font-size: 0.32rem;
	color: #FFFFFF;
	line-height: 0.933rem;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 陵园环境弹窗 */
.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;
}

@media (min-width: 992px){
	/* 头部 */
	.head-wrap{
		height: 72px;
		grid-template-columns: 20% 50% 30%;
	} 
	.head-wrap .logo{
		text-align: left;
	}
	.head-wrap .logo img{
		height: 40px;
	}
	.head-wrap .phone span{
		margin-left: 0px;
	}
	.head-wrap .phone{
		position: relative;
	}
	.head-wrap .phone::before {
	  content: '';
	  Position: absolute;
	  left: 50px;
	  top: 55%;
	  transform: translateY(-50%);
	  height: 20px;
	  width: 1px;
	  background: rgba(0, 0, 0, 0.2);
	}
	.head-wrap .nav-list li{
		font-size: 18px;
	}
	
	
	/* 底部 */
	footer {
	  margin-bottom: 0px;
	}
	.foot-wrap{
		padding: 40px 0;
	}
	.foot-wrap .foot-link>p {
	    width: auto;
	}
	.foot-wrap .foot-link ul{
		overflow: auto;
	}
	.foot-wrap .foot-link ul li{
		margin-right: 10px;
		font-size: 14px;
	}
	.foot-wrap .foot-info{
		flex-direction: row;
	}
	.foot-wrap .info-L{
		flex-direction: row;
	}
	.foot-wrap .info-L .logo img{
		height: 44px;
	}
	.foot-wrap .info-L .phone{
		display: flex;
		flex-direction: row;
		align-items: center;
		position: relative;
		color: var(--white);
		margin-left: 40px;
	}
	.foot-wrap .info-L .phone::before{
		content: "";
		height: 25px;
		width: 2px;
		background-color: var(--white);
		position: absolute;
		left: -20px;
		top: 50%;
		transform: translateY(-50%);
	}
	.foot-root .record{
		display: flex;
		flex-direction: row;
		justify-content: center;
	}
	.foot-root .record .beian{
		display: flex;
		flex-direction: row;
	}
	.foot-root .statement{
		font-size: 14px;
	}
	.navBar {
		display: none !important;
	}
	
	/* 环境弹窗 */
	.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;
	}
}

/* 内容为空提示 */
.empty {
	text-align: center;
    margin: 0.26667rem auto;
	 position: relative;
}
.empty img {
    width: 6.4rem;
    height: 6.4rem;
}
.empty .txt {
	text-align: center;
	color: #999;
    font-size: 0.42667rem;
	position: absolute;
    top: 70%;
	left: 50%;
	transform: translateX(-50%);
}
@media (min-width: 992px){
	.empty {
	    margin: 20px auto;
	    text-align: center;
	    position: relative;
	}
	.empty img {
	    width: 400px;
	    height: 400px;
	}
	.empty .txt {
	    font-size: 18px;
	    top: 75%;
	}
}


/* bootstrap分页器 */
.pagination{
	justify-content: center;
}
.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.0799rem;
    border-bottom-left-radius: 0.0799rem;
}
.page-item:last-child .page-link {
    border-top-right-radius: 0.0799rem;
    border-bottom-right-radius: 0.0799rem;
}
.page-link {
    position: relative;
    display: block;
	font-size: 14px;
    padding: 0.26667rem 0.40rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #3C3C3C;
    background-color: #fff;
    border: 1px solid #dee2e6;
}
.page-item.active .page-link{
    z-index: 3;
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}
.page-item:hover .page-link{
	color: var(--primary);
}
.page-item.active:hover .page-link{
	color: #fff;
}

