.bg{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover;

}
.bg .text{
	color: white; /* 文字颜色 */
	font-size: 24px; /* 文字大小 */
	display: flex;
	padding: 40px 20px;
	font-size: 18px;
}
.bg .l{
	width: 14%;
	font-size: 28px;
	font-weight: 600;
	writing-mode: vertical-lr;
}
.bg .r{
	width: 80%;
	line-height: 30px;
}
.bg .r p{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 12;
	overflow: hidden;
	text-overflow: ellipsis;
	max-height: 500px;
	margin-bottom: 8px;
	word-break: break-all;
}
.more{
	text-align: right;
	border: 2px solid #fff;
	padding: 2px 20px;
	border-radius: 5px;
	float: right;
	margin-top: 40px;
}