.price .title{
	position: relative;
	font-size: 34px;
	color: #343434;
	text-align: center;
	margin-bottom: 80px;
}
.price .title:before{
	position: absolute;
	bottom: -26px;
	content: "";
	width: 100px;
	height: 5px;
	background-color: #ff0000;
	left: 50%;
	transform: translateX(-50%);
}
.price .content{
	background-image: none;
	height: 655px;
}
.price .content ul {
	padding-top: 0;
}
.price .content li{
	box-shadow: 0px 0px 10px rgba(0,0,0,0.09);
}
@media screen and (max-width:768px) {
	.price .title{
		font-size: 20px;
		margin-bottom: 30px;
	}
	.price .title:before{
		width: 60px;
		height: 3px;
	}
	.price .content ul li{
		margin-bottom: 40px;
		width: 90%;
		margin-left: 5%;
	}
	.price .content{
		height: auto;
	}
	.price .content ul li:nth-child(2){
		margin-left: 5%;
		margin-bottom: 40px;
	}
}