* {
	margin: 0;
	padding: 0;
}

body {
	background: #14181F;
	overflow: hidden;
}


/* .winners{
	margin-bottom: 1.86rem;
} */

.winner_name{
	font-weight: bold;
	font-size: 0.8rem;
	color: #F2A366;
	line-height: 1.23rem;
	text-align: center;
	margin-bottom: 0.8rem;
}


.tab-container {
	margin: 0 auto;
	position: relative;
	width: 58%;
}

.tab-wrapper {
	overflow: hidden;
	position: relative;
	width: 9.3rem;
	margin: 0 auto;
}

.tab-slider {
	display: flex;
	transition: transform 0.3s ease;
	will-change: transform;
}

.tab-slide {
	flex: 0 0 auto;
	padding: 0.1rem 0.43rem;
	margin: 0 0.15rem;
	border-radius: 0.04rem;
	font-weight: normal;
	font-size: 0.16rem;
	color: #F2A467;
	border: 0.01rem solid #F2A366;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	user-select: none;
}

.tab-slide.active {
	background: #F2A366;
	color: #0A0E12;
}

/* 导航箭头 */
.nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	border: none;
	background: none;
}
.nav-arrow.prev {
	left: 0;
}

.nav-arrow.next {
	right: 0;
}
.nav-arrow img{
	width: 0.08rem;
	height: auto;
}



/* 下方内容区域 */
.content-container {
	position: relative;
	height: auto;
	overflow: hidden;
}

.content-slider {
	display: flex;
	height: 100%;
	transition: transform 0.3s ease;
}

.content-slide {
	flex: 0 0 100%;
	height: 100%;
}


.winners_body{
	display: flex;
	flex-wrap: wrap;
}
.winners_body .winners_item {
	width: 5.76rem;
	height: 4.82rem;
	padding: 0.08rem;
	box-sizing: border-box;
	position: relative;
	margin-right: 0.21rem;
	margin-top: 0.8rem;
}
.winners_body .winners_item:nth-child(3n){
	margin-right: 0;
}
.winners_body .winners_item::before {
	content: "";
	position: absolute;
	width: 97%;
	height: 97%;
	border: 0.03rem solid #707070;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: 0.5s;
	opacity: 0;
}

.winners_body .winners_item:hover::before {
	width: 99.5%;
	height: 99.5%;
	opacity: 1;
}

.winners_body .winners_item .winners_img {
	width: 100%;
	height: 3.32rem;
}

.winners_body .winners_txt {
	width: 100%;
	height: calc(100% - 3.32rem);
	border: 0.01rem solid #303A4A;
	padding: 0.23rem 0.21rem 0.27rem;
}

.winners_body .winners_txt .winners_name {
	font-weight: normal;
	font-size: 0.2rem;
	color: #FFFFFF;
	margin-bottom: 0.28rem;
	position: relative;
	width: fit-content;
}

.winners_body .winners_txt .winners_name::before {
	content: "";
	position: absolute;
	width: 0.48rem;
	height: 0.02rem;
	background: linear-gradient(90deg, rgba(216, 216, 216, 0) 0%, rgba(216, 216, 216, 0.49) 51%, rgba(216, 216, 216, 0) 100%);
	bottom: -0.06rem;
	left: 50%;
	transform: translateX(-50%);
}

.winners_body .winners_txt .winners_title {
	font-weight: bold;
	font-size: 0.22rem;
	color: #FFFFFF;
}


@media only screen and (max-width: 1024px) {
	.winner_name{
		font-size: 0.44rem;
		line-height: 1.5;
	}

	.tab-container{
		width: 100%;
	}
	.nav-arrow{
		display: none;
	}


	.winners_body{
		margin-top: 0.4rem;
		gap: 0.2rem;
	}
	.winners_body .winners_item{
		width: calc(50% - 0.1rem);
        margin: 0;
        height: 3.8rem;
	}
	.winners_body .winners_item .winners_img{
		height: 2.2rem;
	}
	.winners_body .winners_txt{
		height: calc(100% - 2.2rem);
	}
}



