*{
	margin: 0;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
}
body{
	color: #333333;
	font-size: 16px !important;
	background-color: #fff;
}
a{
	color: #333;
	text-decoration: none;
	display: block;
	cursor: pointer;
}
a:hover{
	color: #ce1a2c;
}
.app{
	width: calc(100% - 10px);
	max-width: 1200px;
	margin: 0 auto;
}

.banner{
	width: 100%;
	display: block;
}
.banner-con{
	position: relative;
}

.btn{
	display: flex;
	justify-content: space-between;
	line-height: 38px;
	font-size: 14px;
	width: 150px;
	color: #999;
	cursor: pointer;
	margin: 68px auto 126px auto;
	box-shadow: 0px 2px 9px 0px rgba(48, 48, 48, 0.16);
	background-color: #fff;
}
.btn:hover{
	box-shadow: 0px 2px 9px 0px rgba(48, 48, 48, 0.1);
}
.btn-a{
	width: 38px;
	height: 38px;
	background-color: #CE1A2C;
	display: inline-block;
	background-image: url(../icon/right.png);
	background-position: center;
	background-repeat: no-repeat;
}
.btn-p{
	text-align: center;
	width: calc(100% - 30px);
	transition: all .2s;
}
.btn:hover .btn-p{
	transform: translate(10px);
	color: #CE1A2C;
}

.title{
	text-align: center;
	height: 196px;
	width: 536px;
	border-bottom: 1px solid #cccccc;
	margin: auto;
	margin-bottom: 70px;
	padding: 100px 0 0px 0;
	position: relative;
	
}
.title::after,.title::before{
	content:"";
	position: absolute;
	bottom: -1px;
	left: 50%;
	transform: translate(-50%);
	width: 44px;
	height: 2px;
	background-color: #fff;
}
.title::after{
	width: 10px;
	height: 10px;
	background-color: #CE1A2C;
	bottom: -5px;
}
.title-txt{
	font-size: 24px;
}
.title-sub{
	font-size: 18px;
	color: #999;
	margin-top: 12px;
}

.single-1{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.single-2{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.single-3{
	
}
.single-4{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}