* {
	padding: 0;
    margin: 0;
}

a{
	color: #333;
    text-decoration: none;
}
a:hover{
	color: #333;
    text-decoration: none;
}

li {
  list-style: none;
}

p{
	padding: 0;
	margin: 0;
}

img{
	width: 100%;
	height: 100%;
	vertical-align: middle;
}

body{
	font-family: "微软雅黑", Microsoft YaHei, PingFang SC, Heiti SC, tahoma, arial, Hiragino Sans GB, sans-serif;
	font-size: 16px !important;
	font-weight: 400;
	color: #333333;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-ms-user-select: none;
}

/* 解决vue加载闪烁问题 */
[v-cloak] {
  display: none;
}

/* 文字 */
.b-title{
	/* big-大 */
	font-weight: 500;
	font-size: 18px;
}
.s-title{
	/* small-小 */
	font-size: 14px;
}
.m-title{
	/* minimum-最小 */
	font-size: 12px;
}

/* 布局 */
.d-flex{
	display: flex;
	align-items: center;
}
.d-between{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.all-center{
	display: flex;
	align-items: center;
	justify-content: center;
}
.mb-distance{
	margin-bottom: 50px;
}
.md-space{
	margin-top: 50px;
}

.example{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	
	aspect-ratio: 3 / 2;
	aspect-ratio: 9 / 10;
	
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-row-gap: 10px;
	grid-column-gap: 10px;
	justify-items: center;
	
	overflow: hidden;
	transform: scale(1.08);
	
	margin-left: -10px;
	margin-right: -10px;
	
	transition: all 0.2s ease-in-out;
	
	background-image: url('../img/guide-bg.png');
	background-size: 100% 100%;
	background-size: cover;
	background-repeat: no-repeat;
	
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

@font-face {
  font-family: "iconfont";
  src: url('../fonts/iconfont.woff2') format('woff2'),
       url('../fonts/iconfont.woff') format('woff'),
       url('../fonts/iconfont.ttf') format('truetype');
}


/* 陵园价格 */
.ly-price {
    color: #888888;
    font-size: 14px;
}
.ly-price span {
    font-family: PingFangsc-Medium;
    color: #FB8B05;
    font-size: 20px;
}

/* 当前位置-面包屑导航 */
.location {
    padding: 10px 0;
    font-weight: 500;
    font-size: 14px;
}
.location ul {
    color: #999999;
}
.location ul>li{
    color: #666666;
    /* padding-left: 20px; */
    position: relative;
}
.location ul>li + li {
    padding-left: 20px;
}
.location ul>li + li:before {
    display: inline-block;
    padding-right: 5px;
    color: #ccc;
    content: "/";
    position: absolute;
    left: 6px;
}
.location ul li a{
	font-size: 14px;
	color: #46414E;
}

/* 标题 */
.normal-title{
	text-align: center;
}
.normal-title .title{
	display: inline-block;
	font-weight: 500;
	font-size: 32px;
	color: #333333;
	position: relative;
}
.normal-title .title::after{
	content: "";
	width: 30px;
	height: 2px;
	background: #333333;
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
}

/* 更多 */
.more a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 138px;
	height: 42px;
	line-height: 42px;
	background: #474747;
	border-radius: 2px;
	font-weight: 500;
	color: #FFFFFF;
	margin: 0 auto;
	transition: all 0.2s ease-in-out;
}
.more a i{
	margin-left: 5px;
}
.more a:hover{
	background: #D3DAF7;
	border: 1px solid #7064FC;
	color: #7064FC;
}

/* 陵园名称 */
.ly-name{
	font-weight: 500;
	font-size: 18px;
	color: #333333;
	transition: all 0.2s ease-in-out;
}

/* 页面标题-banner */
.page-banner{
	position: relative;
	/* margin-bottom: 40px; */
}
.page-banner .content{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.page-banner .content .title{
	font-weight: 500;
	font-size: 36px;
	color: #FFFFFF;
	position: relative;
}
.page-banner .content .title::after{
	content: "";
	width: 60px;
	height: 1px;
	background: #FFFFFF;
	position: absolute;
	bottom: -10px;
	left: 0;
}
.page-banner .content .subtit{
	font-weight: 300;
	font-size: 20px;
	color: #FFFFFF;
	margin-top: 30px;
}

/* 显示视频 */
.show_shipin {
	display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    background-color: #fff;
    z-index: 999999;
}
.show_shipin.block{
	display: block;
}
.show_shipin .shipin {
    width: 100%;
    height: 100%;
}
.show_shipin .shipin > video {
    width: 100%;
    height: 100%;
}
.show_shipin ._close{
    position: absolute;
    right: 0;
    top: 0;
}
.show_shipin ._close i{
	font-size: 46px;
	color: #A6A6A6;
	cursor: pointer;
}





@media (max-width: 992px){
	/* 布局 */
	.mb-distance{
		margin-bottom: 0.80rem;
	}
	.md-space {
	    margin-top: 0.66667rem;
	}
	
	/* 标题 */
	.normal-title .title {
	    font-size: 0.5867rem;
	}
	
	/* 更多 */
	.more a {
		font-size: 0.3734rem;
		height: 1.0134rem;
	    line-height: 1.0134rem;
	}
	
	/* 页面标题-banner */
	.page-banner .content .title {
	    font-size: 24px;
	}
	.page-banner .content .title::after{
		bottom: -2px;
	}
	.page-banner .content .subtit{
		font-size: 0.333rem;
		margin-top: 10px;
	}
	
	.ly-name {
	    font-size: 0.519rem;
	}
	
	.ly-price {
	    font-size: 0.333rem;
	}
	.ly-price span {
	    font-size: 0.556rem;
	}
	
	.s-title{
		font-size: 0.370rem;
	}
	
}


@media (max-width: 576px){
	/* 页面标题-banner */
	.page-banner .content .title {
	    font-size: 0.64rem;
	}
	.page-banner .content .title::after{
		bottom: -2px;
	}
	.page-banner .content .subtit{
		font-size: 0.42667rem;
		margin-top: 0.26667rem;
	}
	
	.ly-name {
	    font-size: 0.48rem;
	}
	
	.ly-price {
	    font-size: 0.42667rem;
	}
	.ly-price span {
	    font-size: 0.5334rem;
	}
	
	.s-title{
		font-size: 0.3734rem;
	}
}





