.park-list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 12px
}

.park-list .park-item {
	width: 33.333333%;
	margin-bottom: 20px;
	cursor: pointer
}

.park-list .park-item .img-box {
	width: 100%;
	height: 236px;
	overflow: hidden
}

.park-list .park-item .img-box img {
	width: 100%;
	height: 100%;
	transition: transform 0.8s ease-in-out
}

.park-list .park-item .img-box img:hover {
	transform: scale(1.2)
}

.park-list .park-item .btn-wrap {
	width: 100%
}

.park-list .park-item .btn-wrap .btn-box {
	width: 100%;
	display: flex;
	position: relative
}

.park-list .park-item .btn-wrap .btn {
	width: 100%;
	height: 42px;
	line-height: 42px;
	text-align: center
}

.park-list .park-item .btn-wrap .btn p {
	font-family: MicrosoftYaHeiSemibold;
	font-size: 16px;
	color: #073AD1
}

.park-list .park-item .btn-wrap .line {
	position: absolute;
	width: 1px;
	height: 25px;
	background: #CCCCCC;
	left: 50%;
	top: 10px
}

.park-list .park-item .info-txt {
	width: 100%;
	height: calc(100% - 236px);
	padding: 14px 9px 0;
	border-right: 1px solid #CCCCCC;
	border-left: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC
}

.park-list .park-item .info-txt .txt-box {
	width: 100%;
	height: calc(100% - 42px);
	padding: 0 11px 6px;
	border-bottom: 1px solid #CCCCCC
}

.park-list .park-item .info-txt .txt-box h3 {
	font-family: MicrosoftYaHeiSemibold;
	font-size: 24px;
	color: #333333;
	line-height: 38px
}

.park-list .park-item .info-txt .txt-box .col-list p {
	font-family: MicrosoftYaHei;
	font-size: 16px;
	color: #3C3C3C;
	line-height: 30px
}

.park-list .park-item .info-txt:hover {
	background: #073AD1
}

.park-list .park-item .info-txt:hover .txt-box h3 {
	color: #fff !important
}

.park-list .park-item .info-txt:hover .txt-box .col-list p {
	color: #fff
}

.park-list .park-item .info-txt:hover .btn-wrap .btn-box .line {
	background: #fff
}

.park-list .park-item .info-txt:hover .btn-wrap .btn-box .btn p {
	color: #fff
}