<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.content {
	width: 70%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	margin: 40px auto;
}

.main {
	width: 73%;
	height: auto;
	position: relative;

}

.inner-box {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.main-right {
	width: 26%;
	height: auto;
	position: relative;
}

.sticky-box {
	position: sticky;
	top: 0px;
	bottom: auto;
}


.m-title {
	width: 96%;
	padding: 0 2%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-transform: capitalize;
	font-size: 20px;
	font-weight: 600;
	background-color: #232A31;
	position: relative;
}


.c-title {
	width: 96%;
	padding: 20px 2%;
	text-transform: capitalize;
	background-color: #fff;
	font-size: 22px;
	text-align: center;
	color: #ddd;
	border-bottom: 3px solid gainsboro;
	border-right: 2px solid #fff;
	border-radius: 10px 10px 0 0;

}

.mt-left {
	width: auto;
	line-height: 2.5;
	display: flex;
	align-items: center;
	padding: 5px;
	color: #fff;
}

.list-box,
.list1,
.list2,
.list3,
.list4 {
	width: 96%;
	height: auto;
	background-color: #fff;
	border: 1px solid #e0e4e9;
	box-shadow: 0 0.14px 2.29266px rgb(0 0 0 / 3%), 0 0.37px 4.42626px rgb(0 0 0 / 5%), 0 3px 7px rgb(0 0 0 / 9%);
	margin-bottom: 20px;
	padding: 10px 2%;
}


.list1 {
	border-radius: 2px;
	overflow: visible;
	margin-bottom: 20px;
}

.list1 .li-box {
	display: flex;
	width: 96%;
}

.list-box {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding-top: 10px;
}

.li-box {
	width: 12%;
	overflow: hidden;
	position: relative;
	padding: 10px 2%;
	transition: all linear 0.3s;
}

.li-box:hover {
	transform: translateY(-10px);
}

.li-img {
	width: 25%;
	height: 70px;
	border-radius: 10px;
	box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
	display: block;
	overflow: hidden;
}

.li-text {
	width: 70%;
	height: auto;
	padding: 2%;
}

.li-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;
}

.li-text p:nth-of-type(1) {
	color: #000;
	width: 90%;
	font-size: 16px;

}

.li-text p:nth-of-type(2) {
	color: #5b636a;
	font-size: 13px;
}

.li-text p:nth-of-type(3) {
	font-size: 13px;
	text-transform: capitalize;
	color: #600CCF;

}

.list-box .li-text p:nth-of-type(1) {
	width: 100%;
	line-height: 1.5;
}

.list-box .li-text p:nth-of-type(2) {
	display: flex;
	align-items: center;
}

.star {
	width: 15px;
	height: 15px;
	margin-right: 5px;
}

.li-play {

	width: 100px;
	display: inline-block;
	zoom: 1;
	padding: 5px 20px;
	color: #fff;
	text-align: center;
	margin: 5px 0;
	text-transform: capitalize;
	font-size: 16px;
	/* border: 1px solid rgba(255, 255, 255, .7); */
	background: #6E47AE;
	text-transform: capitalize;
	transition: all linear 0.1s;
	display: none;
	/* position: absolute;
	right: 10px ;
	bottom: 0px; */
}

.list-box .li-box .li-img {
	width: 100%;
	height: 112px;
}

.list-box .li-box .li-text p:nth-of-type(1) {
	font-size: 18px;
}

.list-box .li-box .li-text p:nth-of-type(2) {
	font-size: 14px;
}

.list-box .li-box .li-text p:nth-of-type(3) {
	font-size: 12px;
}

.list4 {
	width: 96%;
	padding: 10px 2%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.list4 .li-box {
	width: 19%;
	flex-wrap: wrap;
	padding: 0;
	margin-bottom: 20px;

}

.list4 .li-img,
.list4 .li-text {
	width: 100%;
}

.list4 .li-text {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
}

.lt-text p:nth-of-type(2) {
	color: #600CCF;
	text-transform: capitalize;
}

.lt-img {
	width: 25%;
	height: 60px;
	border: 1px solid #C7CDD2;
	border-radius: 10px;
}

.lt-text {
	width: 68%;
}

.list4 .li-img {
	height: 168px;
	border-radius: 0px;
}

.list-box .li-text {
	width: 100%;
}


@media (max-width:1000px) {
	.m-title {
		background-color: transparent;
	}

	.inner-box {
		flex-wrap: wrap;
		flex-direction: row-reverse;
	}

	.mt-left {
		color: #000;
	}

	.main,
	.main-right {
		width: 100%;
		margin: auto;
	}

	.list-box {
		box-shadow: none;
		border: 0px;
	}

	.content {
		width: 96%;
		flex-wrap: wrap;
	}

	.list-box .li-box {
		width: 28%;
	}

	.list-box .li-box .li-img {
		width: 100%;
		height: 90px;
	}

	.list-box .li-box .li-text {
		padding: 0 2%;
	}

	.list-box .li-box .li-text p:nth-of-type(1) {
		line-height: 2;
		font-weight: 400;
		font-size: 16px;
	}

	.list-box .li-box .li-text p:nth-of-type(2) {
		font-size: 13px;
	}

	.list-box .li-box .li-text p:nth-of-type(3) {
		font-size: 13px;
	}

	.li-play {
		width: 70px;
		font-size: 15px;
	}

	.m-box {
		width: 96%;
		margin: auto;
		padding: 10px 0;
		overflow-x: auto;
		box-sizing: border-box;
	}

	.list-box {
		width: 96%;
	}

	.list1 {
		box-shadow: none;
		border: 0px;
	}

	.list4 {
		width: 100%;
		padding: 10px 0;
		border: 0px;
		box-shadow: none;
		width: auto;
		display: inline-flex;
		flex-wrap: nowrap;
		overflow-y: scroll;
		overflow-x: auto;
	}

	.list4 .li-box {
		width: 286px;
		flex-wrap: wrap;
		padding: 0;
		margin: 0 10px 0 0;
	}

	.list4 .li-img,
	.list4 .li-text {
		width: 100%;
	}

	.list4 .li-img {
		border-radius: 10px;
		height: 168px;
	}

	.lt-img {
		width: 25%;
		height: 70px;
	}

	.lt-text {
		width: 68%;
	}
}</pre></body></html>