<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.banner {
	width: 70%;
	height: 388px;
	margin: 20px auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-wrap: wrap;

}

.b-box {
	width: 23%;
	height: 188px;
	position: relative;
	box-shadow: inset 0 0 0 1px hsla(0, 0%, 100%, .1);
	border-radius: 2px;
	display: block;
}

.b-box:nth-of-type(1) {
	width: 50%;
	height: 100%;
}

.b-box img {
	width: 100%;
	height: 100%;
	display: block;


}

.b-text {
	background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .95));
	bottom: 0;
	box-sizing: border-box;
	left: 0;
	padding: 40px 10px 10px;
	pointer-events: none;
	position: absolute;
	width: 100%;
}

.b-text p {

	line-height: 1.5;
	font-weight: 600;

	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.b-text p:nth-of-type(1) {
	color: #fff;
	font-size: 20px;
}

.b-text p:nth-of-type(2) {
	font-size: 14px;
	color: #e9e9e9;

}

@media (max-width: 768px) {
	.banner {
		width: 96%;
		height: auto;
		margin: 20px auto;
		flex-direction: row;
	}


	.b-box:nth-of-type(1) {
		width: 100%;
		height: 230px;
		margin-bottom: 10px;
	}

	.b-box {
		width: 49%;
		margin-bottom: 10px;
	}

	.b-title {
		white-space: wrap;
		bottom: -32%;
		font-size: 66px;
		line-height: 66px;
	}


}</pre></body></html>