.content-min {
	width: 100%;
	height: 100%;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 0 10px;
}

.content-min .swiper-item-container {
	background-image: url("../img/bg-t.png");
	background-repeat: repeat-x;
	padding: 20px 0;
	width: 100%;
	min-height: 100px;
}

.content-min .swiper-wrapper-t {
	display: flex;
	gap: 4px;
}

.content-min .swiper-wrapper-t .top-heng {
	gap: 6px;
	width: 100px;
	height: 100%;
	cursor: pointer;
	border-radius: 86px;
	border: 2px solid #17064b;
	background: #441774;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: all 300ms ease-out;
	overflow: hidden;
}

.content-min .swiper-wrapper-t .top-heng:hover {
	z-index: 22;
	transform: scale(1.1);
}

.content-min .swiper-wrapper-t .top-heng:hover span {
	color: #FAC609;
}

.content-min .swiper-wrapper-t .top-heng:hover i {
	color: #fff;
}

.content-min .swiper-wrapper-t .top-heng:hover::before {
	transform: scaleX(1);
}

.content-min .swiper-wrapper-t .top-heng::before {
	border-radius: 86px;
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #35137a;
	transform: scaleX(0);
	-webkit-transform-origin: left;
	transform-origin: left;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.content-min .swiper-wrapper-t .top-heng span {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
}

.content-min .swiper-wrapper-t .top-heng i {
	color: #773db5;
	font-size: 18px;
}

.content-min .list-m {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-evenly;
}

.content-min .re-m {
	margin: 15px 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.content-min .re-m .title {
	width: 100%;
	background: #280e5b;
	color: #FAC609;
	min-height: 60px;
	font-weight: bold;
	font-size: 25px;
	display: flex;
	align-items: center;
	padding-left: 10px;
	margin-bottom: 10px;
}

.content-min .re-m .more {
	width: 100%;
	min-height: 35px;
	padding: 15px 0px;
	font-weight: bold;
	font-size: 21px;
	border-radius: 6px;
	color: #441774;
	background: #FAC609;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}

.content-min .info-m {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
	margin: 20px 0;
	background: #280e5b;
	border-radius: 10px;
}

.content-min .info-m .title {
	letter-spacing: 2px;
	font-weight: bold;
	color: #FAC609;
	font-size: 23px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.content-min .info-m .info-text {
	letter-spacing: 2px;
	color: #fff;
	font-size: 21px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.content-min .info-m .card {
	box-shadow: 0px 5px 6px 0px rgba(0, 0, 0, 0.22);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24%;
	height: 140px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 300ms ease-out;
	position: relative;
}

.content-min .info-m .card.width {
	width: 13%;
	height: 150px;
}

.content-min .info-m .card:hover .name {
	transform: scaleY(1);
}
.content-min .info-m .card:hover .developer {
	transform: scaleY(1);
}

.content-min .info-m .card img {
	width: 100%;
	height: 100%;
	border-radius: 8px;
}

.content-min .info-m .card .name {
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;
	position: absolute;
	left: 0;
	border-radius: 8px;
	bottom: 25px;
	width: 100%;
	height: 100%;
	color: #fff;
	background: linear-gradient(0deg, #032dcf 0%, #0456e2 54%, rgba(0, 82, 255, 0.734331) 100%);
	transition-timing-function: ease-out;
	transform: scaleY(0);
	transform-origin: bottom;
	transition-duration: 0.3s;
}

.content-min .info-m .card .developer {
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;
	position: absolute;
	left: 0;
	border-radius: 8px;
	bottom: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	background: linear-gradient(0deg, #032dcf 0%, #0456e2 54%, rgba(0, 82, 255, 0.734331) 100%);
	transition-timing-function: ease-out;
	transform: scaleY(0);
	transform-origin: bottom;
	transition-duration: 0.3s;
}