@charset "utf-8";

.sports-hero {
	--hero-height: 500px;
	--dock-height: 104px;
	--dock-overlap: 0;
	position: relative;
	width: 100%;
	min-height: calc(var(--hero-height) + var(--dock-height) * var(--dock-overlap));
	background: #f3f7fc;
	overflow: visible;
	font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
}

.sports-hero__slides {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: var(--hero-height);
	overflow: hidden;
}

.sports-hero__slides > *,
.sports-hero__slides > * > *,
.sports-hero__slides > * > * > * {
	width: 100%;
	height: 100%;
}

.sports-hero__slides ul,
.sports-hero__slides ol,
.sports-hero__slides li,
.sports-hero__slides a {
	margin: 0;
	padding: 0;
	list-style: none;
	display: block;
	width: 100%;
	height: 100%;
}

.sports-hero__slides img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
}

.sports-hero__overlay {
	position: absolute;
	inset: 0 0 auto;
	height: var(--hero-height);
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.18) 48%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
}

.sports-hero__content {
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
	padding: 80px 50px 0;
	box-sizing: border-box;
	color: #0950b3;
	pointer-events: auto;
}

.sports-hero__title {
	margin: 0;
	font-size: 64px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0.08em;
}

.sports-hero__subtitle {
	margin: 14px 0 0;
	font-size: 48px;
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: 0.04em;
}

.sports-hero__subtitle-en {
	margin: 14px 0 0;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: rgba(9, 80, 179, 0.8);
}

.sports-hero__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
	padding: 10px 16px;
	background: #0a4fae;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	border-radius: 2px;
}

.sports-hero__btn::after {
	content: "\2192";
}

.sports-hero__arrow {
	position: absolute;
	top: calc(var(--hero-height) / 2 - 20px);
	z-index: 3;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: rgba(10, 79, 174, 0.4);
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	transition: background 0.2s ease;
}

.sports-hero__arrow:hover {
	background: rgba(10, 79, 174, 0.75);
}

.sports-hero__arrow--prev {
	left: 18px;
}

.sports-hero__arrow--next {
	right: 18px;
}

.sports-hero__dots {
	position: absolute;
	left: 50%;
	bottom: calc(var(--dock-height) + 18px);
	transform: translateX(-50%);
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 8px;
}

.sports-hero__dot {
	width: 26px;
	height: 4px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.85);
	cursor: pointer;
}

.sports-hero__dot.is-active {
	background: #0a4fae;
}

.sports-hero__dock {
	position: absolute;
	top: calc(var(--hero-height) - var(--dock-height) * (1 - var(--dock-overlap)));
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	width: min(1200px, calc(100% - 100px));
	height: var(--dock-height);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: linear-gradient(90deg, rgba(5, 59, 139, 0.95), rgba(1, 47, 113, 0.95));
	border-radius: 2px;
	overflow: hidden;
}

.sports-hero__dock-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	padding: 0 22px;
	color: #fff;
	text-decoration: none;
	border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.sports-hero__dock-item:last-child {
	border-right: 0;
}

.sports-hero__dock-item strong {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.04em;
}

.sports-hero__dock-item span {
	font-size: 15px;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1280px) {
	.sports-hero {
		--hero-height: 470px;
	}

	.sports-hero__content {
		padding-top: 70px;
	}

	.sports-hero__title {
		font-size: 54px;
	}

	.sports-hero__subtitle {
		font-size: 42px;
	}
}

@media (max-width: 1100px) {
	.sports-hero {
		--hero-height: 360px;
		--dock-height: 92px;
	}

	.sports-hero__content {
		padding: 56px 20px 0;
	}

	.sports-hero__title {
		font-size: 42px;
	}

	.sports-hero__subtitle {
		font-size: 32px;
	}

	.sports-hero__subtitle-en {
		font-size: 15px;
	}

	.sports-hero__dock {
		width: calc(100% - 40px);
	}

	.sports-hero__dock-item strong {
		font-size: 22px;
	}

	.sports-hero__dock-item span {
		font-size: 13px;
	}
}

@media (max-width: 768px) {
	.sports-hero {
		--hero-height: 340px;
		--dock-height: 84px;
	}

	.sports-hero__content {
		padding-top: 48px;
	}

	.sports-hero__title {
		font-size: 32px;
	}

	.sports-hero__subtitle {
		font-size: 24px;
	}

	.sports-hero__btn {
		font-size: 15px;
	}

	.sports-hero__dock {
		grid-template-columns: repeat(2, 1fr);
		height: auto;
	}

	.sports-hero__dock-item {
		min-height: var(--dock-height);
	}

	.sports-hero__dock-item:nth-child(2n) {
		border-right: 0;
	}

	.sports-hero__dock-item:nth-child(1),
	.sports-hero__dock-item:nth-child(2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	}
}
