:root {
    --white: #fff;
    --gray: #888;
	--gray-light: #999;
    --gray-dark: #666;
    --secondary: #f34718;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --body-color: #4a4a4a;
    --black: #000;
	--primary: #0f9074;
	--primary-dark: #10614f;
	--primary-light: #49bda3;
	--gold: #ffdc80;
	--red: #a5222c;
	--red-light: #f03752;
	--rgb-red: 165, 34, 44;
}

* {
  padding: 0;
  margin: 0;
}

a{
	color: #2a2a2a;
    text-decoration: none;
	transition: all 0.2s ease-out;
}
a:hover,
a:focus {
    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;
} */

body {
    margin: 0;
    font-family: KlarheitKurrent, sans-serif, "Microsoft YaHei", "PingFang SC";
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--body-color);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: var(--white);
}

/*  display: grid;
    grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 15px;
	grid-row-gap: 15px;
 */

/* 布局 */
._pc{
	display: none;
}
._web{
	display: block;
}
.mb-distance {
  margin-bottom: 20px;
}
.pt-2{
    padding-top: 0.267rem !important;
}

@media (min-width: 992px){
	._pc{
		display: block;
	}
	._web{
		display: none;
	}
	.container{
		max-width: 1430px;
	}
}

/* 标题 */
.home-title-wrap{
	margin-bottom: 20px;
	text-align: center;
}
.home-title-wrap .title{
	font-size: 22px;
	position: relative;
	z-index: 2;
	display: inline-flex;
	letter-spacing: 1px;
	color: var(--dark);
	margin-bottom: 0;
}
.home-title-wrap .title:after {
  content: "";
  position: absolute;
  display: block;
  z-index: -1;
  height: 8px;
  left: 0;
  right: 0;
  bottom: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #80dec9, rgba(255, 255, 255, 0));
}
.home-title-wrap .subtitle{
	margin-top: 6px;
	font-weight: lighter;
	color: var(--gray);
}

/* 更多按钮 */
.home-more-wrap {
    text-align: center;
    padding-top: 20px;
}
.home-more-wrap a {
	font-size: 14px;
	color: var(--dark);
    display: inline-flex;
    height: 38px;
    align-items: center;
    justify-content: center;
    width: 160px;
    border-radius: 20px;
    border: 2px solid var(--dark);
    background-color: var(--white);
    transition: all .2s ease-in-out;
}
.home-more-wrap a:hover{
	color: var(--white);
	background-color: var(--dark);
}

/* 咨询按钮 */
.home-consult-wrap{
	text-align: center;
}
.home-consult-wrap a{
	background-color: var(--red);
}
.home-consult-wrap a:hover{
	color: var(--white);
	background-color: var(--red-light)
}

.btn-red {
    background-color: var(--red);
}



/* swiper样式 */
.swiper-container-horizontal>.swiper-pagination-bullets, 
.swiper-pagination-custom, .swiper-pagination-fraction{
	bottom: 8px;
}
.swiper-pagination-bullet{
	width: 6px;
	height: 6px;
}
.swiper-pagination-bullet-active{
	background: var(--dark)
}

@media (min-width: 992px){
	/* 标题 */
	.home-title-wrap{
		margin-bottom: 40px;
	}
	.home-title-wrap .title{
		font-size: 32px;
		letter-spacing: 2px;
	}
	.home-title-wrap .title:after {
	    height: 12px;
	}
	.home-title-wrap .subtitle{
		font-size: 18px;
		margin-top: 10px;
	}
	
	/* 更多 */
	.home-more-wrap a{
		height: 44px;
		width: 240px;
		border-radius: 22px;
		font-size: 18px;
	}
}


/* 分页器 */
.pagination-wrap {
	padding-top: 15px;
	margin-top: 15px;
}
.pagination {
	display: flex;
	justify-content: center
}
.pagination>li {
	margin-right: 2px;
}
.pagination>li a,
.pagination>li span {
	display: flex;
	height: 38px;
	line-height: 1.1;
	padding: 0 12px;
	align-items: center;
	background-color: var(--light)
}
.pagination>li a:hover,
.pagination>li span:hover {
	color: var(--primary);
	background-color: rgba(var(--rgb-red), .12)
}
.pagination>li.active a,
.pagination>li.active span {
	color: var(--white);
	background-color: var(--primary)
}

/* 内容为空提示 */
.empty {
	margin: 0.26667rem auto;
    text-align: center;
    position: relative;
}
.empty img {
	width: 12rem;
	height: 12rem;
}
.empty .txt {
    text-align: center;
    color: #999;
    position: absolute;
	font-size: 0.8rem;
	top: 70%;
    left: 50%;
    transform: translateX(-50%);
}
@media (min-width: 992px) {
	.pagination-wrap {
		padding-top: 20px;
		margin-top: 20px;
	}
	.pagination>li {
		margin-right: 5px;
	}
	.pagination>li a,
	.pagination>li span {
		padding: 0 15px;
	}
	
	.empty {
	     margin: 20px auto;
	}
	.empty img {
	    width: 400px;
	    height: 400px;
	}
	.empty .txt {
	    font-size: 18px;
	    top: 75%;
	}
}

/* 环境碑型弹窗 */
.mask {
	display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    overflow: hidden;
    background: rgba(0, 0, 0, .95);
}
.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 .swiper-button-next:after, 
.pop-body .swiper-button-prev:after {
  font-size: 2rem;
}
.pop-body .head {
	position: absolute;
	cursor: pointer;
	right: 10px;
	top: -60px;
}
.pop-body .head i {
	color: #FFFFFF;
	font-size: 1.2rem;
}
.imgs-body .img-pop img{
	border-radius: 5px;
	width: 100%;
	height: 100%;
}
.imgs-body .swiper-container .txt-wap{
	font-size: 18px;
	font-weight: 500;
	background-color: var(--white);
	text-align: center;
	padding: 8px;
	margin-top: 2px;
}
.tomb-mask.block{
	display: block;
}
.tomb-body {
	width: 100%;
	top: 60%;
}
.tomb-body .content{
	display: flex;
	flex-direction: column;
}
.tomb-body .content .img-wrap{
	flex: 0 0 100%;
	margin-right: 0px;
	padding: 0 0;
}
.tomb-body .content .txt-wrap{
	text-align: center;
	padding: 20px;
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
	margin-top: -20px;
}
.tomb-body .content .txt-wrap .info-top{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}
.tomb-body .content .txt-wrap .t-title{
    font-size: 18px;
    font-weight: 700;
    font-family: arial;
    color: var(--white);
	margin-bottom: 12px;
}
.tomb-body .content .txt-wrap .md-price{
	color: var(--secondary);
    margin-bottom: 10px;
}
/* .tomb-body .content .txt-wrap .md-price>span {
	font-size: 18px;
}
.tomb-body .content .txt-wrap .md-price>span::after {
    margin-left: 2px;
    font-size: 11px;
    color: rgba(255,255,255,.6);
    font-weight: 400 !important;
} */
.tomb-body .content .txt-wrap .desc{
	color: #a1a1a1;
	font-size: .86em;
	font-family: arial;
	line-height: 1.4em;
    margin-bottom: 10px;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--white);
}
.swiper-button-next, 
.swiper-container-rtl .swiper-button-prev {
    right: -200px;
}
.swiper-button-prev, 
.swiper-container-rtl .swiper-button-next {
    left: -200px;
}



@media (min-width: 992px){
	.imgs-body {
	    width: 900px;
	}
	.pop-body .head {
		right: -200px;
		top: -100px;
	}
	.pop-body .head i {
	    color: #FFFFFF;
	    font-size: 40px;
	}
	.pop-body .swiper-container .txt-wap{
		font-size: 20px;
		font-weight: 500;
		margin-top: 3px;
		padding: 14px;
	}
	
	.tomb-body {
		width: 900px;
		top: 50%;
	}
	.tomb-body .content{
		flex-direction: row;
		background-color: var(--white);
	}
	.tomb-body .content .img-wrap{
		flex: 0 0 600px;
	}
	.tomb-body .content .txt-wrap{
		text-align: left;
		margin-top: 0px;
	}
	.tomb-body .content .txt-wrap .info-top{
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
	.tomb-body .content .txt-wrap .t-title{
	    font-size: 22px;
	    font-weight: 400;
		color: var(--body-color);
	}
	.tomb-body .content .txt-wrap .md-price{
	    margin-bottom: 10px;
	}
	/* .tomb-body .content .txt-wrap .md-price>span::after {
	    color: rgba(0, 0, 0, .6);
	} */
	.tomb-body .content .txt-wrap .desc{
		color: var(--body-color);
	}
}
