:root {
	--wc-css-ok: 1
}

html.wc-blocked,html.wc-blocked body {
	margin: 0;
	min-height: 100vh;
	background: #0a2e14;
	overflow: hidden
}

.wc-guard-lock {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 24px;
	text-align: center;
	color: #fff;
	font-family: -apple-system,BlinkMacSystemFont,'Segoe UI','PingFang SC','Microsoft YaHei',sans-serif
}

.wc-guard-lock-title {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 800;
	color: gold
}

.wc-guard-lock-desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255,255,255,.75);
	max-width: 320px
}

html[data-wc-host]::after {
	content: attr(data-wc-host);
	position: fixed;
	inset: 0;
	z-index: 9997;
	pointer-events: none;
	opacity: .035;
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: rotate(-24deg);
	letter-spacing: 4px;
	white-space: nowrap;
	user-select: none
}

:root {
	--wc-pitch: #1a6b2e;
	--wc-pitch-dark: #0d3d18;
	--wc-pitch-light: #2d8a47;
	--wc-gold: #ffd700;
	--wc-gold-light: #fff176;
	--wc-red: #e53935;
	--wc-red-dark: #b71c1c;
	--wc-white: #ffffff;
	--wc-cream: #f0f7e8;
	--wc-card-body: #f4faf0;
	--wc-text-dark: #1a2e1a;
	--wc-text-muted: #3d5c3d;
	--wc-sticky-offset: calc(140px + env(safe-area-inset-bottom, 0px));
	--wc-bg-desk: url('../images/back2.jpg');
	--wc-bg-mob: url('../images/back-m.jpg')
}

*,::after,::before {
	box-sizing: border-box
}

body,div,h1,h2,h3,li,p,ul {
	margin: 0;
	padding: 0;
	border: 0
}

html {
	min-height: 100%
}

body {
	font-size: 12px;
	font-family: "Microsoft YaHei","PingFang SC",sans-serif;
	background-color: #000000;
	min-height: 100vh;
	position: relative;
	color: var(--wc-text-dark);
	padding-bottom: var(--wc-sticky-offset);
	overflow-x: clip;
	overflow-x: hidden
}

.wc-bg-layer {
	position: fixed;
	inset: -4%;
	z-index: 0;
	pointer-events: none;
	background-image: var(--wc-bg-desk, url('../images/back2.jpg'));
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	animation: wc-bg-kenburns 22s ease-in-out infinite alternate;
	will-change: transform
}

@keyframes wc-bg-kenburns {
	0% {
		transform: scale(1) translateY(0)
	}

	100% {
		transform: scale(1.06) translateY(-1.5%)
	}
}

.wc-bg-overlay {
	position: fixed;
	inset: 0;
	background: linear-gradient(180deg,rgba(5,30,12,.25) 0,rgba(5,30,12,.08) 38%,rgba(5,30,12,.42) 100%);
	pointer-events: none;
	z-index: 0;
	animation: wc-overlay-pulse 8s ease-in-out infinite
}

@keyframes wc-overlay-pulse {
	0%,100% {
		opacity: 1
	}

	50% {
		opacity: .88
	}
}

.wc-bg-shimmer {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(105deg,transparent 40%,rgba(255,255,255,.06) 48%,rgba(255,215,0,.1) 50%,rgba(255,255,255,.06) 52%,transparent 60%);
	background-size: 220% 100%;
	animation: wc-shimmer-pass 7s ease-in-out infinite
}

@keyframes wc-shimmer-pass {
	0% {
		background-position: 120% 0
	}

	100% {
		background-position: -120% 0
	}
}

.wc-stadium-glow {
	position: fixed;
	top: -80px;
	left: 50%;
	width: 120%;
	height: 300px;
	transform: translateX(-50%);
	background: radial-gradient(ellipse at center top,rgba(255,235,59,.22) 0,transparent 68%);
	pointer-events: none;
	z-index: 0;
	animation: wc-stadium-glow-pulse 5s ease-in-out infinite
}

@keyframes wc-stadium-glow-pulse {
	0%,100% {
		opacity: .75;
		transform: translateX(-50%) scale(1)
	}

	50% {
		opacity: 1;
		transform: translateX(-50%) scale(1.05)
	}
}

.wc-bg-lights {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0
}

.wc-bg-lights span {
	position: absolute;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	filter: blur(40px);
	animation: wc-light-float 6s ease-in-out infinite
}

.wc-bg-lights span:first-child {
	left: 5%;
	top: 15%;
	background: rgba(76,175,80,.2);
	animation-delay: 0s
}

.wc-bg-lights span:nth-child(2) {
	right: 8%;
	top: 25%;
	background: rgba(255,215,0,.18);
	animation-delay: 2s
}

.wc-bg-lights span:nth-child(3) {
	left: 50%;
	bottom: 10%;
	transform: translateX(-50%);
	background: rgba(229,57,53,.15);
	animation-delay: 4s
}

@keyframes wc-light-float {
	0%,100% {
		opacity: .5;
		transform: translateY(0)
	}

	50% {
		opacity: .9;
		transform: translateY(-12px)
	}
}

.wc-bg-lights span:nth-child(3) {
	animation-name: wc-light-float-center
}

@keyframes wc-light-float-center {
	0%,100% {
		opacity: .4;
		transform: translateX(-50%) translateY(0)
	}

	50% {
		opacity: .8;
		transform: translateX(-50%) translateY(-10px)
	}
}

.wc-sparkles {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0
}

.wc-sparkles i {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--wc-gold);
	box-shadow: 0 0 6px var(--wc-gold);
	animation: wc-sparkle 3s ease-in-out infinite;
	opacity: 0
}

.wc-sparkles i:first-child {
	left: 12%;
	top: 22%;
	animation-delay: 0s
}

.wc-sparkles i:nth-child(2) {
	left: 28%;
	top: 12%;
	animation-delay: .4s
}

.wc-sparkles i:nth-child(3) {
	right: 22%;
	top: 18%;
	animation-delay: .8s
}

.wc-sparkles i:nth-child(4) {
	right: 10%;
	top: 35%;
	animation-delay: 1.2s
}

.wc-sparkles i:nth-child(5) {
	left: 8%;
	bottom: 30%;
	animation-delay: 1.6s
}

.wc-sparkles i:nth-child(6) {
	right: 15%;
	bottom: 22%;
	animation-delay: 2s
}

.wc-sparkles i:nth-child(7) {
	left: 45%;
	top: 8%;
	animation-delay: 2.4s;
	width: 3px;
	height: 3px
}

.wc-sparkles i:nth-child(8) {
	left: 55%;
	bottom: 15%;
	animation-delay: 2.8s
}

@keyframes wc-sparkle {
	0%,100% {
		opacity: 0;
		transform: scale(.5) translateY(0)
	}

	50% {
		opacity: .85;
		transform: scale(1.2) translateY(-8px)
	}
}

.wc-float-balls {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden
}

.wc-float-balls span {
	position: absolute;
	font-size: 22px;
	opacity: .18;
	animation: wc-float 9s ease-in-out infinite
}

.wc-float-balls span::before {
	content: "⚽"
}

.wc-float-balls span:first-child {
	left: 6%;
	top: 18%;
	animation-delay: 0s;
	font-size: 26px
}

.wc-float-balls span:nth-child(2) {
	right: 8%;
	top: 42%;
	animation-delay: 1.5s;
	font-size: 20px
}

.wc-float-balls span:nth-child(3) {
	left: 12%;
	bottom: 20%;
	animation-delay: 3s;
	font-size: 24px
}

.wc-float-balls span:nth-child(4) {
	right: 18%;
	top: 12%;
	animation-delay: 4.5s;
	font-size: 16px;
	opacity: .12
}

.wc-float-balls span:nth-child(5) {
	left: 42%;
	top: 6%;
	animation-delay: 6s;
	font-size: 14px;
	opacity: .1
}

.wc-float-balls span:nth-child(6) {
	right: 5%;
	bottom: 12%;
	animation-delay: 7.5s;
	font-size: 22px
}

@keyframes wc-float {
	0%,100% {
		transform: translateY(0) rotate(0)
	}

	33% {
		transform: translateY(-14px) rotate(12deg)
	}

	66% {
		transform: translateY(-6px) rotate(-8deg)
	}
}

.wc-side-fx {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	width: min(26vw,180px);
	pointer-events: none;
	z-index: 4;
	overflow: hidden
}

.wc-side-fx-left {
	left: 0
}

.wc-side-fx-right {
	right: 0
}

.wc-cf {
	position: absolute;
	top: -16px;
	width: 8px;
	height: 12px;
	border-radius: 1px;
	opacity: 0;
	animation: wc-cf-fall 5.5s linear infinite
}

.wc-side-fx-left .wc-cf:first-child {
	left: 12%;
	animation-delay: 0s;
	background: gold
}

.wc-side-fx-left .wc-cf:nth-child(2) {
	left: 35%;
	animation-delay: .7s;
	background: #e53935;
	width: 6px;
	height: 10px
}

.wc-side-fx-left .wc-cf:nth-child(3) {
	left: 55%;
	animation-delay: 1.4s;
	background: #4caf50
}

.wc-side-fx-left .wc-cf:nth-child(4) {
	left: 78%;
	animation-delay: 2.1s;
	background: #fff
}

.wc-side-fx-left .wc-cf:nth-child(5) {
	left: 22%;
	animation-delay: 2.8s;
	background: #ff9800
}

.wc-side-fx-left .wc-cf:nth-child(6) {
	left: 48%;
	animation-delay: 3.5s;
	background: #2196f3;
	width: 7px
}

.wc-side-fx-left .wc-cf:nth-child(7) {
	left: 68%;
	animation-delay: 4.2s;
	background: gold
}

.wc-side-fx-left .wc-cf:nth-child(8) {
	left: 8%;
	animation-delay: 4.9s;
	background: #e91e63
}

.wc-side-fx-right .wc-cf:first-child {
	right: 15%;
	left: auto;
	animation-delay: .3s;
	background: gold
}

.wc-side-fx-right .wc-cf:nth-child(2) {
	right: 38%;
	left: auto;
	animation-delay: 1s;
	background: #4caf50
}

.wc-side-fx-right .wc-cf:nth-child(3) {
	right: 58%;
	left: auto;
	animation-delay: 1.7s;
	background: #e53935
}

.wc-side-fx-right .wc-cf:nth-child(4) {
	right: 80%;
	left: auto;
	animation-delay: 2.4s;
	background: #fff176
}

.wc-side-fx-right .wc-cf:nth-child(5) {
	right: 25%;
	left: auto;
	animation-delay: 3.1s;
	background: #2196f3
}

.wc-side-fx-right .wc-cf:nth-child(6) {
	right: 50%;
	left: auto;
	animation-delay: 3.8s;
	background: #ff9800
}

.wc-side-fx-right .wc-cf:nth-child(7) {
	right: 72%;
	left: auto;
	animation-delay: 4.5s;
	background: gold
}

.wc-side-fx-right .wc-cf:nth-child(8) {
	right: 10%;
	left: auto;
	animation-delay: 5.2s;
	background: #e91e63
}

@keyframes wc-cf-fall {
	0% {
		opacity: 0;
		transform: translateY(0) rotate(0) translateX(0)
	}

	8% {
		opacity: .9
	}

	100% {
		opacity: .35;
		transform: translateY(105vh) rotate(680deg) translateX(24px)
	}
}

.wc-side-fx-right .wc-cf {
	animation-name: wc-cf-fall-right
}

@keyframes wc-cf-fall-right {
	0% {
		opacity: 0;
		transform: translateY(0) rotate(0) translateX(0)
	}

	8% {
		opacity: .9
	}

	100% {
		opacity: .35;
		transform: translateY(105vh) rotate(-680deg) translateX(-24px)
	}
}

.wc-rib {
	position: absolute;
	top: -70px;
	width: 5px;
	height: 48px;
	border-radius: 3px;
	opacity: 0;
	animation: wc-rib-fall 7s ease-in-out infinite
}

.wc-side-fx-left .wc-rib:nth-child(9) {
	left: 20%;
	animation-delay: 0s;
	background: linear-gradient(180deg,gold,#ff9800)
}

.wc-side-fx-left .wc-rib:nth-child(10) {
	left: 45%;
	animation-delay: 1.5s;
	background: linear-gradient(180deg,#e53935,#ff5252);
	height: 56px
}

.wc-side-fx-left .wc-rib:nth-child(11) {
	left: 70%;
	animation-delay: 3s;
	background: linear-gradient(180deg,#4caf50,#81c784)
}

.wc-side-fx-left .wc-rib:nth-child(12) {
	left: 32%;
	animation-delay: 4.5s;
	background: linear-gradient(180deg,#2196f3,#64b5f6);
	width: 4px
}

.wc-side-fx-left .wc-rib:nth-child(13) {
	left: 85%;
	animation-delay: 6s;
	background: linear-gradient(180deg,gold,#fff176)
}

.wc-side-fx-right .wc-rib:nth-child(9) {
	right: 22%;
	left: auto;
	animation-delay: .8s;
	background: linear-gradient(180deg,gold,#ff9800)
}

.wc-side-fx-right .wc-rib:nth-child(10) {
	right: 48%;
	left: auto;
	animation-delay: 2.2s;
	background: linear-gradient(180deg,#e53935,#ff5252)
}

.wc-side-fx-right .wc-rib:nth-child(11) {
	right: 68%;
	left: auto;
	animation-delay: 3.6s;
	background: linear-gradient(180deg,#4caf50,#81c784);
	height: 52px
}

.wc-side-fx-right .wc-rib:nth-child(12) {
	right: 30%;
	left: auto;
	animation-delay: 5s;
	background: linear-gradient(180deg,#e91e63,#f48fb1)
}

.wc-side-fx-right .wc-rib:nth-child(13) {
	right: 82%;
	left: auto;
	animation-delay: 6.4s;
	background: linear-gradient(180deg,#2196f3,#90caf9)
}

@keyframes wc-rib-fall {
	0% {
		opacity: 0;
		transform: translateY(0) rotate(-18deg) scaleY(.6)
	}

	10% {
		opacity: .85
	}

	50% {
		transform: translateY(50vh) rotate(25deg) scaleY(1)
	}

	100% {
		opacity: .4;
		transform: translateY(108vh) rotate(-35deg) scaleY(.8)
	}
}

.wc-side-fx-right .wc-rib {
	animation-name: wc-rib-fall-right
}

@keyframes wc-rib-fall-right {
	0% {
		opacity: 0;
		transform: translateY(0) rotate(18deg) scaleY(.6)
	}

	10% {
		opacity: .85
	}

	50% {
		transform: translateY(50vh) rotate(-25deg) scaleY(1)
	}

	100% {
		opacity: .4;
		transform: translateY(108vh) rotate(35deg) scaleY(.8)
	}
}

.wc-fw {
	position: absolute;
	width: 8px;
	height: 8px
}

.wc-fw i {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 3px;
	height: 16px;
	margin-left: -1.5px;
	margin-top: -16px;
	transform-origin: 50% 100%;
	border-radius: 2px;
	opacity: 0;
	box-shadow: 0 0 6px currentColor
}

.wc-fw i:first-child {
	transform: rotate(0);
	color: gold;
	animation: wc-fw-ray 3.2s ease-out infinite
}

.wc-fw i:nth-child(2) {
	transform: rotate(45deg);
	color: #ff5252;
	animation: wc-fw-ray 3.2s ease-out 50ms infinite
}

.wc-fw i:nth-child(3) {
	transform: rotate(90deg);
	color: #4caf50;
	animation: wc-fw-ray 3.2s ease-out .1s infinite
}

.wc-fw i:nth-child(4) {
	transform: rotate(135deg);
	color: #fff176;
	animation: wc-fw-ray 3.2s ease-out .15s infinite
}

.wc-fw i:nth-child(5) {
	transform: rotate(180deg);
	color: #ff9800;
	animation: wc-fw-ray 3.2s ease-out .2s infinite
}

.wc-fw i:nth-child(6) {
	transform: rotate(225deg);
	color: #e91e63;
	animation: wc-fw-ray 3.2s ease-out .25s infinite
}

.wc-fw i:nth-child(7) {
	transform: rotate(270deg);
	color: #2196f3;
	animation: wc-fw-ray 3.2s ease-out .3s infinite
}

.wc-fw i:nth-child(8) {
	transform: rotate(315deg);
	color: gold;
	animation: wc-fw-ray 3.2s ease-out .35s infinite
}

.wc-fw i {
	background: currentColor
}

@keyframes wc-fw-ray {
	0%,100% {
		opacity: 0;
		height: 0
	}

	12% {
		opacity: 1;
		height: 18px
	}

	35% {
		opacity: .75;
		height: 22px
	}

	55% {
		opacity: 0;
		height: 8px
	}
}

.wc-side-fx-left .wc-fw:nth-child(14) {
	left: 30%;
	top: 18%;
	animation: wc-fw-host 3.2s ease-out infinite
}

.wc-side-fx-left .wc-fw:nth-child(15) {
	left: 65%;
	top: 42%;
	animation: wc-fw-host 3.8s ease-out 1.2s infinite
}

.wc-side-fx-left .wc-fw:nth-child(16) {
	left: 45%;
	top: 68%;
	animation: wc-fw-host 3.5s ease-out 2.4s infinite
}

.wc-side-fx-right .wc-fw:nth-child(14) {
	right: 28%;
	left: auto;
	top: 22%;
	animation: wc-fw-host 3.4s ease-out .6s infinite
}

.wc-side-fx-right .wc-fw:nth-child(15) {
	right: 62%;
	left: auto;
	top: 48%;
	animation: wc-fw-host 3.6s ease-out 1.8s infinite
}

.wc-side-fx-right .wc-fw:nth-child(16) {
	right: 40%;
	left: auto;
	top: 72%;
	animation: wc-fw-host 3.3s ease-out 2.8s infinite
}

@keyframes wc-fw-host {
	0%,100% {
		transform: scale(.3);
		filter: brightness(.5)
	}

	8% {
		transform: scale(1);
		filter: brightness(1.4)
	}

	25% {
		transform: scale(1.05);
		filter: brightness(1)
	}

	45% {
		transform: scale(.85);
		filter: brightness(.7)
	}
}

.wc-side-fx-right .wc-fw:nth-child(14),.wc-side-fx-right .wc-fw:nth-child(15),.wc-side-fx-right .wc-fw:nth-child(16) {
	animation-name: wc-fw-host-right
}

@keyframes wc-fw-host-right {
	0%,100% {
		transform: scale(.3);
		filter: brightness(.5)
	}

	8% {
		transform: scale(1);
		filter: brightness(1.4)
	}

	25% {
		transform: scale(1.05);
		filter: brightness(1)
	}

	45% {
		transform: scale(.85);
		filter: brightness(.7)
	}
}

@media screen and (min-width:520px) {
	.wc-side-fx {
		display: block
	}
}

@media screen and (min-width:900px) {
	.wc-side-fx {
		width: min(22vw,220px)
	}

	.wc-cf {
		width: 9px;
		height: 14px
	}

	.wc-rib {
		height: 58px
	}

	.wc-fw i {
		height: 20px;
		margin-top: -20px
	}
}

.page-wrap {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100vh;
	padding: 0 12px 28px;
	width: 100%;
	max-width: 440px;
	margin: 0 auto
}

ul {
	list-style: none;
	width: 100%
}

a {
	text-decoration: none;
	color: inherit
}

.wc-hero {
	width: 100%;
	margin-bottom: 6px
}

.wc-hero-arch {
	background: linear-gradient(160deg,var(--wc-pitch-dark) 0,var(--wc-pitch) 50%,var(--wc-pitch-light) 100%);
	border-radius: 0 0 50% 50%/0 0 18% 18%;
	padding: 20px 16px 28px;
	text-align: center;
	position: relative;
	box-shadow: 0 8px 32px rgba(0,0,0,.45),inset 0 -4px 0 var(--wc-gold);
	border: 2px solid rgba(255,215,0,.5);
	border-top: none
}

.wc-hero-arch::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: repeating-linear-gradient(0deg,transparent,transparent 14px,rgba(255,255,255,.04) 14px,rgba(255,255,255,.04) 16px);
	pointer-events: none
}

.wc-hero-inner {
	position: relative;
	z-index: 1
}

.wc-trophy {
	font-size: 42px;
	line-height: 1;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .5));
	animation: wc-trophy-pulse 2s ease-in-out infinite
}

@keyframes wc-trophy-pulse {
	0%,100% {
		transform: scale(1)
	}

	50% {
		transform: scale(1.08)
	}
}

.wc-hero-badge {
	display: inline-block;
	margin-top: 8px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 3px;
	color: var(--wc-pitch-dark);
	background: linear-gradient(90deg,var(--wc-gold),var(--wc-gold-light),var(--wc-gold));
	padding: 4px 14px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,.3)
}

.wc-hero-title {
	font-size: 36px;
	font-weight: 900;
	color: var(--wc-white);
	letter-spacing: 4px;
	margin-top: 10px;
	text-shadow: 0 2px 0 var(--wc-pitch-dark),0 4px 12px rgba(0,0,0,.6),0 0 30px rgba(255,215,0,.3)
}

.wc-hero-desc {
	margin-top: 6px;
	font-size: 12px;
	color: rgba(255,255,255,.88);
	letter-spacing: 1px
}

.wc-features {
	display: flex;
	gap: 8px;
	margin: -14px 0 0;
	padding: 0 4px;
	position: relative;
	z-index: 2
}

.wc-feat {
	flex: 1;
	background: rgba(255,255,255,.95);
	border-radius: 10px;
	padding: 10px 4px;
	text-align: center;
	box-shadow: 0 4px 14px rgba(0,0,0,.25);
	border: 1px solid rgba(255,215,0,.6)
}

.wc-feat em {
	display: block;
	font-style: normal;
	font-size: 20px;
	margin-bottom: 4px
}

.wc-ico-shield-feat {
	width: 22px;
	height: 26px;
	margin: 0 auto 4px;
	box-shadow: 0 2px 5px rgba(0,0,0,.45),0 0 10px rgba(76,175,80,.45)
}

.wc-feat span {
	font-size: 11px;
	font-weight: 700;
	color: var(--wc-pitch-dark)
}

.wc-ticker {
	margin-top: 12px;
	background: var(--wc-red);
	border-radius: 6px;
	overflow: hidden;
	height: 28px;
	border: 1px solid rgba(255,215,0,.4);
	box-shadow: 0 2px 8px rgba(183,28,28,.4)
}

.wc-ticker-track {
	display: flex;
	gap: 40px;
	white-space: nowrap;
	animation: wc-ticker-scroll 18s linear infinite;
	padding: 6px 0
}

.wc-ticker-track span {
	font-size: 11px;
	color: #fff;
	font-weight: 600;
	flex-shrink: 0
}

@keyframes wc-ticker-scroll {
	0% {
		transform: translateX(0)
	}

	100% {
		transform: translateX(-50%)
	}
}

.wc-section-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	align-self: center;
	margin: 18px 0 14px;
	max-width: 100%
}

.wc-section-deco {
	display: flex;
	align-items: flex-start;
	flex-shrink: 0;
	padding-top: 2px;
	filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .38))
}

.wc-mini-pennant {
	display: flex;
	flex-direction: column;
	align-items: center;
	transform-origin: top center;
	animation: wc-mini-pennant-sway 3.5s ease-in-out infinite
}

.wc-section-deco-r .wc-mini-pennant {
	animation-delay: .85s
}

.wc-mini-pennant-hanger {
	display: block;
	width: 2px;
	height: 11px;
	border-radius: 1px;
	background: linear-gradient(180deg,gold 0,#c9a000 70%,rgba(201,160,0,.4) 100%);
	box-shadow: 0 0 6px rgba(255,215,0,.45);
	animation: wc-mini-hanger-shine 2s ease-in-out infinite;
	font-style: normal
}

.wc-mini-pennant-body {
	position: relative;
	display: block;
	width: 28px;
	margin-top: 2px;
	padding: 7px 5px 14px;
	text-align: center;
	border: 1.5px solid rgba(255,215,0,.7);
	clip-path: polygon(0 0,100% 0,100% 86%,50% 100%,0 86%);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.35),0 4px 12px rgba(0,0,0,.28);
	overflow: hidden;
	font-style: normal
}

.wc-mini-pennant-body::before {
	content: "";
	position: absolute;
	top: -40%;
	left: -70%;
	width: 55%;
	height: 180%;
	background: linear-gradient(90deg,transparent,rgba(255,255,255,.28),transparent);
	transform: skewX(-18deg);
	animation: wc-mini-pennant-shine 3s ease-in-out infinite;
	pointer-events: none
}

.wc-mini-pennant-body::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 3px;
	width: 6px;
	height: 5px;
	margin-left: -3px;
	background: linear-gradient(180deg,gold,#c9a000);
	clip-path: polygon(15% 0,85% 0,100% 100%,0 100%);
	opacity: .9
}

.wc-mini-pennant-red {
	background: linear-gradient(180deg,#e53935 0,#c62828 52%,#b71c1c 100%)
}

.wc-mini-pennant-gold {
	background: linear-gradient(180deg,#fff59d 0,gold 48%,#e6b800 100%)
}

.wc-mini-pennant-body b {
	position: relative;
	z-index: 1;
	display: block;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	font-style: normal
}

.wc-mini-pennant-red b {
	color: gold;
	text-shadow: 0 1px 2px rgba(0,0,0,.55)
}

.wc-mini-pennant-gold b {
	color: #b71c1c;
	text-shadow: 0 1px 1px rgba(255,255,255,.45)
}

@keyframes wc-mini-pennant-sway {
	0%,100% {
		transform: rotate(-3deg) translateY(0)
	}

	50% {
		transform: rotate(3deg) translateY(3px)
	}
}

@keyframes wc-mini-hanger-shine {
	0%,100% {
		opacity: .82
	}

	50% {
		opacity: 1
	}
}

@keyframes wc-mini-pennant-shine {
	0% {
		left: -75%
	}

	100% {
		left: 125%
	}
}

.wc-section-label {
	position: relative;
	z-index: 3;
	display: inline-block;
	flex-shrink: 1;
	margin: 0;
	padding: 8px 14px;
	max-width: 92%;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 1.5px;
	line-height: 1.35;
	text-align: center;
	color: #b71c1c;
	border-radius: 0;
	border: 2px solid #c9a000;
	background: linear-gradient(180deg,#fff59d 0,gold 42%,#f0b400 100%);
	box-shadow: 0 3px 14px rgba(0,0,0,.38),inset 0 1px 0 rgba(255,255,255,.55),inset 0 -2px 0 rgba(180,120,0,.35);
	text-shadow: 0 1px 0 rgba(255,255,255,.45);
	overflow: hidden;
	isolation: isolate
}

.wc-section-label::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -80%;
	width: 55%;
	background: linear-gradient(90deg,transparent 0,rgba(255,255,255,.15) 30%,rgba(255,255,255,.75) 50%,rgba(255,255,255,.15) 70%,transparent 100%);
	transform: skewX(-22deg);
	animation: wc-section-shine 2.6s ease-in-out infinite;
	pointer-events: none;
	z-index: 0
}

.wc-section-label::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 2px;
	background: linear-gradient(90deg,transparent,rgba(255,255,255,.85),transparent);
	pointer-events: none;
	z-index: 0
}

@keyframes wc-section-shine {
	0% {
		left: -85%;
		opacity: 0
	}

	12% {
		opacity: 1
	}

	48% {
		left: 130%;
		opacity: 1
	}

	58% {
		opacity: 0
	}

	100% {
		left: 130%;
		opacity: 0
	}
}

@media screen and (min-width:769px) {
	.wc-section-wrap {
		gap: 12px
	}

	.wc-mini-pennant-body {
		width: 32px;
		padding: 8px 6px 16px
	}

	.wc-mini-pennant-body b {
		font-size: 13px
	}

	.wc-mini-pennant-hanger {
		height: 12px
	}

	.wc-section-label {
		font-size: 14px;
		padding: 9px 16px;
		letter-spacing: 2px;
		max-width: 360px
	}
}

.list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	counter-reset: wc-card
}

.list li {
	width: 100%;
	max-width: 400px;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0,0,0,.4),0 0 0 2px rgba(255,215,0,.35);
	transition: transform .2s ease,box-shadow .2s ease;
	position: relative
}

.list>li:not(.wc-mid-promo) {
	counter-increment: wc-card
}

.list>li:not(.wc-mid-promo)::before {
	content: counter(wc-card);
	position: absolute;
	right: 12px;
	top: 10px;
	left: auto;
	width: 24px;
	height: 24px;
	background: var(--wc-gold);
	color: var(--wc-pitch-dark);
	font-size: 12px;
	font-weight: 900;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 4;
	box-shadow: 0 2px 8px rgba(0,0,0,.35);
	border: 2px solid #fff;
	pointer-events: none
}

.list li:hover {
	transform: scale(1.02) translateY(-2px);
	box-shadow: 0 10px 28px rgba(0,0,0,.5),0 0 0 2px var(--wc-gold),0 0 24px rgba(255,215,0,.2)
}

.list>li:not(.wc-mid-promo) {
	animation: wc-card-in .6s cubic-bezier(.22,1,.36,1) backwards
}

.list>li:not(.wc-mid-promo):first-child {
	animation-delay: 80ms
}

.list>li:not(.wc-mid-promo):nth-child(2) {
	animation-delay: .14s
}

.list>li:not(.wc-mid-promo):nth-child(3) {
	animation-delay: .2s
}

.list>li:not(.wc-mid-promo):nth-child(4) {
	animation-delay: .26s
}

.list>li:not(.wc-mid-promo):nth-child(5) {
	animation-delay: .32s
}

.list>li:not(.wc-mid-promo):nth-child(6) {
	animation-delay: .38s
}

.list>li:not(.wc-mid-promo):nth-child(7) {
	animation-delay: .44s
}

.list>li:not(.wc-mid-promo):nth-child(8) {
	animation-delay: .5s
}

@keyframes wc-card-in {
	0% {
		opacity: 0;
		transform: translateY(20px) scale(.96)
	}

	100% {
		opacity: 1;
		transform: translateY(0) scale(1)
	}
}

.wc-mid-promo {
	animation: wc-card-in .55s cubic-bezier(.22,1,.36,1) .35s backwards
}

.card-link {
	display: flex;
	flex-direction: column;
	width: 100%
}

.card-head {
	background: linear-gradient(90deg,var(--wc-pitch-dark),var(--wc-pitch),var(--wc-pitch-dark));
	padding: 10px 38px 10px 28px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border-bottom: 2px solid var(--wc-gold)
}

.card-head::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: repeating-linear-gradient(90deg,var(--wc-gold) 0,var(--wc-gold) 8px,transparent 8px,transparent 16px)
}

.card-hot {
	display: none;
	position: absolute;
	left: 28px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--wc-red);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	padding: 2px 6px;
	border-radius: 4px;
	letter-spacing: .5px;
	animation: wc-hot-blink 1.5s ease-in-out infinite
}

.card-hot.is-on {
	display: block
}

@keyframes wc-hot-blink {
	0%,100% {
		opacity: 1
	}

	50% {
		opacity: .7
	}
}

h2 {
	font-size: 18px;
	font-weight: 800;
	color: var(--wc-white);
	text-align: center;
	text-shadow: 0 1px 3px rgba(0,0,0,.5);
	letter-spacing: .5px;
	width: 100%;
	margin: 0;
	padding: 0
}

.card-body {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	background: linear-gradient(180deg,var(--wc-card-body) 0,#e8f5e0 100%);
	background-image: repeating-linear-gradient(90deg,transparent,transparent 20px,rgba(45,138,71,.06) 20px,rgba(45,138,71,.06) 22px),linear-gradient(180deg,var(--wc-card-body) 0,#e8f5e0 100%)
}

.list li .icon {
	width: 76px;
	height: 76px;
	min-width: 76px;
	border-radius: 12px;
	background-size: 100% 100%!important;
	border: 3px solid var(--wc-pitch);
	box-shadow: 0 3px 10px rgba(0,0,0,.2);
	flex-shrink: 0
}

.text {
	flex: 1;
	min-width: 0
}

h3 {
	font-family: "Microsoft YaHei",sans-serif;
	font-size: 12.5px;
	font-weight: 400;
	color: #000000;
	text-align: justify;
	line-height: 1.7
}

strong {
	color: #002099;
	font-size: 20px;
	font-weight: 900;
	text-shadow: 0 0 12px rgba(229,57,53,.35)
}

.card-foot {
	background: linear-gradient(90deg,#c9a000,var(--wc-gold),#ffe566,var(--wc-gold),#c9a000);
	background-size: 200% 100%;
	padding: 0;
	text-align: center;
	animation: wc-cta-shine 3s linear infinite
}

@keyframes wc-cta-shine {
	0% {
		background-position: 0 center
	}

	100% {
		background-position: 200% center
	}
}

.card-cta {
	display: block;
	padding: 10px;
	font-size: 14px;
	font-weight: 800;
	color: var(--wc-pitch-dark);
	letter-spacing: 3px;
	text-shadow: 0 1px 0 rgba(255,255,255,.5);
	transition: letter-spacing .25s ease
}

.card-link:active .card-cta {
	letter-spacing: 4px
}

.list li:hover .card-cta {
	letter-spacing: 5px;
	transition: letter-spacing .2s
}

.list li:hover .icon {
	border-color: var(--wc-gold);
	box-shadow: 0 0 16px rgba(255,215,0,.5)
}

.wc-footer {
	margin-top: 20px;
	margin-bottom: 10px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: center;
	position: relative;
	z-index: 2;
	flex-shrink: 0;
	box-sizing: border-box
}

.wc-bottom-spacer {
	display: none;
	width: 100%;
	height: 0;
	min-height: 0;
	flex-shrink: 0;
	pointer-events: none
}

.wc-footer-bar {
	position: relative;
	width: fit-content;
	max-width: calc(100% - 8px);
	margin-left: auto;
	margin-right: auto;
	padding: 9px 22px;
	border-radius: 0;
	overflow: hidden;
	clip-path: polygon(0 50%,16px 0,calc(100% - 16px) 0,100% 50%,calc(100% - 16px) 100%,16px 100%);
	background: linear-gradient(180deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.34) 100%);
	border: none;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 6px 16px rgba(0,0,0,.4),0 2px 4px rgba(0,0,0,.25),inset 0 1px 0 rgba(255,255,255,.22),inset 0 -2px 6px rgba(0,0,0,.38)
}

.wc-footer-bar::after {
	content: "";
	position: absolute;
	left: 18px;
	right: 18px;
	top: 0;
	height: 1px;
	background: linear-gradient(90deg,transparent,rgba(255,215,0,.45),rgba(255,215,0,.45),transparent);
	pointer-events: none;
	z-index: 3
}

.wc-footer-sweep {
	position: absolute;
	top: 0;
	bottom: 0;
	left: -45%;
	width: 40%;
	background: linear-gradient(90deg,transparent 0,rgba(255,255,255,.06) 25%,rgba(255,255,255,.28) 48%,rgba(255,215,0,.35) 50%,rgba(255,255,255,.28) 52%,rgba(255,255,255,.06) 75%,transparent 100%);
	transform: skewX(-18deg);
	pointer-events: none;
	z-index: 2;
	animation: wc-footer-sweep-move 3.2s ease-in-out infinite
}

@keyframes wc-footer-sweep-move {
	0% {
		left: -50%;
		opacity: 0
	}

	8% {
		opacity: 1
	}

	45% {
		left: 110%;
		opacity: 1
	}

	55% {
		opacity: 0
	}

	100% {
		left: 110%;
		opacity: 0
	}
}

.wc-footer-text {
	position: relative;
	z-index: 1;
	margin: 0;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 0;
	font-size: 11px;
	line-height: 1.35
}

.wc-footer-item {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	white-space: nowrap;
	flex-shrink: 0
}

.wc-footer-ico {
	font-style: normal;
	font-size: 12px;
	line-height: 1;
	flex-shrink: 0;
	filter: drop-shadow(0 0 4px rgba(255, 215, 0, .4))
}

.wc-footer-ball {
	font-size: 14px;
	line-height: 1;
	filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .45))
}

.wc-ico-shield {
	display: inline-block;
	width: 13px;
	height: 15px;
	font-size: 0;
	line-height: 0;
	vertical-align: middle;
	position: relative;
	background: linear-gradient(165deg,#fff176 0,gold 22%,#43a047 55%,#1b5e20 100%);
	clip-path: polygon(50% 0%,100% 20%,100% 62%,50% 100%,0% 62%,0% 20%);
	box-shadow: 0 1px 3px rgba(0,0,0,.65),0 0 8px rgba(76,175,80,.5);
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .55))
}

.wc-ico-shield::before {
	content: "";
	position: absolute;
	inset: 1px 2px auto;
	height: 45%;
	background: linear-gradient(180deg,rgba(255,255,255,.45),transparent);
	clip-path: polygon(50% 0%,100% 35%,50% 100%,0% 35%);
	pointer-events: none
}

.wc-ico-trophy {
	display: inline-block;
	width: 14px;
	height: 15px;
	position: relative;
	flex-shrink: 0;
	font-size: 0;
	line-height: 0;
	vertical-align: middle;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .55)) drop-shadow(0 0 6px rgba(255, 215, 0, .45))
}

.wc-ico-trophy::before {
	content: "";
	position: absolute;
	left: 3px;
	right: 3px;
	top: 0;
	height: 9px;
	background: linear-gradient(165deg,#fff9c4 0,gold 38%,#ffb300 72%,#c9a000 100%);
	border-radius: 3px 3px 5px 5px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.5),0 1px 2px rgba(0,0,0,.4)
}

.wc-ico-trophy::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 9px;
	height: 3px;
	background: linear-gradient(180deg,#e6b800,#8d6e00);
	border-radius: 0 0 2px 2px;
	box-shadow: 0 1px 1px rgba(0,0,0,.35)
}

.wc-footer-txt {
	font-weight: 600;
	letter-spacing: .3px;
	background: linear-gradient(105deg,rgba(255,255,255,.75) 0,rgba(255,255,255,.75) 42%,#fff 48%,#ffec78 50%,#fff 52%,rgba(255,255,255,.75) 58%,rgba(255,255,255,.75) 100%);
	background-size: 220% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: wc-footer-text-glint 3.2s ease-in-out infinite;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .4))
}

@keyframes wc-footer-text-glint {
	0% {
		background-position: 120% center
	}

	45% {
		background-position: -20% center
	}

	100% {
		background-position: -20% center
	}
}

.wc-footer-sep {
	display: inline-block;
	width: 1px;
	height: 10px;
	margin: 0 8px;
	background: rgba(255,255,255,.22);
	flex-shrink: 0;
	vertical-align: middle
}

.wc-promo-box {
	width: 100%;
	max-width: 400px;
	display: flex;
	align-items: stretch;
	gap: 10px;
	margin: 0 auto 10px;
	padding: 12px 14px;
	border-radius: 14px;
	background: linear-gradient(135deg,rgba(183,28,28,.92),rgba(229,57,53,.88));
	border: 2px solid var(--wc-gold);
	box-shadow: 0 4px 20px rgba(183,28,28,.45),0 0 24px rgba(255,215,0,.2);
	animation: wc-promo-glow 2s ease-in-out infinite;
	position: relative
}

.wc-random-cta {
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	user-select: none;
	position: relative
}

.wc-random-cta:active {
	transform: scale(.98)
}

.wc-live-bar.wc-random-cta::before,.wc-promo-box.wc-random-cta::before,.wc-scroll-hint.wc-random-cta::before {
	display: none
}

.wc-random-cta:not(.wc-promo-box)::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(circle at center,rgba(255,255,255,.45) 0,transparent 65%);
	opacity: 0;
	transform: scale(.5);
	transition: opacity .35s ease,transform .35s ease;
	pointer-events: none
}

.wc-random-cta:active:not(.wc-promo-box)::after {
	opacity: 1;
	transform: scale(1.15)
}

.wc-promo-box::after {
	content: "👆 点击领取世界杯专属彩金";
	display: block;
	width: 100%;
	text-align: center;
	font-size: 9px;
	color: rgba(255,255,255,.85);
	margin-top: 8px;
	letter-spacing: .5px
}

.wc-promo-box {
	flex-wrap: wrap
}

.wc-promo-left,.wc-promo-right {
	flex: 1
}

@keyframes wc-promo-glow {
	0%,100% {
		box-shadow: 0 4px 20px rgba(183,28,28,.45),0 0 16px rgba(255,215,0,.15)
	}

	50% {
		box-shadow: 0 4px 24px rgba(183,28,28,.55),0 0 32px rgba(255,215,0,.35)
	}
}

.wc-promo-tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 800;
	color: var(--wc-red-dark);
	background: var(--wc-gold);
	padding: 2px 8px;
	border-radius: 10px;
	margin-bottom: 4px;
	animation: wc-tag-blink 1.2s step-end infinite
}

@keyframes wc-tag-blink {
	0%,100% {
		opacity: 1
	}

	50% {
		opacity: .65
	}
}

.wc-promo-title {
	font-size: 11px;
	color: rgba(255,255,255,.95);
	margin: 0
}

.wc-promo-num {
	font-size: 36px;
	font-weight: 900;
	color: var(--wc-gold);
	line-height: 1.1;
	text-shadow: 0 2px 8px rgba(0,0,0,.4);
	margin: 2px 0 0
}

.wc-promo-num span {
	font-size: 14px;
	font-weight: 700;
	margin-left: 2px
}

.wc-promo-right {
	flex-shrink: 0;
	text-align: center;
	padding-left: 10px;
	border-left: 1px dashed rgba(255,255,255,.35)
}

.wc-promo-cd-label {
	font-size: 9px;
	color: rgba(255,255,255,.85);
	margin: 0 0 6px;
	white-space: nowrap
}

.wc-countdown {
	display: flex;
	align-items: center;
	gap: 2px
}

.wc-cd-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: rgba(0,0,0,.35);
	border-radius: 6px;
	padding: 4px 6px;
	min-width: 32px
}

.wc-cd-block em {
	font-style: normal;
	font-size: 18px;
	font-weight: 900;
	color: var(--wc-gold);
	line-height: 1
}

.wc-cd-block i {
	font-style: normal;
	font-size: 8px;
	color: rgba(255,255,255,.7);
	margin-top: 2px
}

.wc-cd-dot {
	font-size: 16px;
	font-weight: 900;
	color: var(--wc-gold);
	padding-bottom: 10px
}

.wc-live-bar {
	width: 100%;
	max-width: 400px;
	margin: 0 auto 8px;
	padding: 8px 12px;
	border-radius: 10px;
	background:  rgb(0 19 112 / 85%);
	border: 1px solid rgba(255,215,0,.35);
	font-size: 11px;
	color: rgba(255,255,255,.9);
	display: flex;
	align-items: center;
	gap: 8px;
	transition: border-color .2s,box-shadow .2s
}

.wc-live-bar:hover {
	border-color: var(--wc-gold);
	box-shadow: 0 0 12px rgba(255,215,0,.25)
}

.wc-live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #4caf50;
	flex-shrink: 0;
	box-shadow: 0 0 8px #4caf50;
	animation: wc-live-pulse 1.5s ease-in-out infinite
}

@keyframes wc-live-pulse {
	0%,100% {
		transform: scale(1);
		opacity: 1
	}

	50% {
		transform: scale(1.3);
		opacity: .7
	}
}

.wc-live-bar strong {
	color: var(--wc-gold);
	font-size: 14px;
	-webkit-text-fill-color: var(--wc-gold)
}

.wc-live-bar u {
	text-decoration: none;
	color: var(--wc-gold-light);
	font-weight: 700;
	animation: wc-live-link-blink 1.2s ease-in-out infinite
}

@keyframes wc-live-link-blink {
	0%,100% {
		opacity: 1
	}

	50% {
		opacity: .75
	}
}

.wc-scroll-hint {
	text-align: center;
	margin: 4px 0 10px;
	animation: wc-bounce-hint 1.5s ease-in-out infinite
}

.wc-scroll-hint span {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	color: var(--wc-gold);
	background: rgba(0,0,0,.45);
	padding: 5px 16px;
	border-radius: 20px;
	border: 1px solid rgba(255,215,0,.5);
	text-shadow: 0 1px 3px rgba(0,0,0,.8)
}

@keyframes wc-bounce-hint {
	0%,100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(5px)
	}
}

.wc-mid-promo {
	list-style: none;
	width: 92%;
	max-width: 360px;
	margin: 4px auto!important
}

.wc-mid-promo::before {
	display: none!important;
	content: none!important;
	counter-increment: none!important
}

.wc-mid-promo-inner {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 14px;
	cursor: pointer;
	background: linear-gradient(90deg,#ff6f00,#ff9800,#ffb300);
	border: 2px solid #fff;
	box-shadow: 0 4px 18px rgba(255,111,0,.5);
	animation: wc-mid-shake 4s ease-in-out infinite
}

@keyframes wc-mid-shake {
	0%,100%,92% {
		transform: scale(1)
	}

	94% {
		transform: scale(1.02)
	}

	96% {
		transform: scale(.98)
	}
}

.wc-mid-icon {
	font-size: 28px;
	flex-shrink: 0;
	animation: wc-mid-icon-bounce 1s ease-in-out infinite
}

@keyframes wc-mid-icon-bounce {
	0%,100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-4px)
	}
}

.wc-mid-text {
	flex: 1;
	min-width: 0
}

.wc-mid-title {
	font-size: 13px;
	font-weight: 800;
	color: #fff;
	margin: 0;
	text-shadow: 0 1px 2px rgba(0,0,0,.2)
}

.wc-mid-desc {
	font-size: 11px;
	color: rgba(255,255,255,.95);
	margin: 4px 0 0
}

.wc-mid-desc strong {
	font-size: 14px;
	color: #fff;
	-webkit-text-fill-color: #fff
}

.wc-mid-btn {
	flex-shrink: 0;
	font-size: 12px;
	font-weight: 800;
	color: #e65100;
	background: #fff;
	padding: 8px 12px;
	border-radius: 20px;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(0,0,0,.2)
}

.wc-pennant {
	display: none;
	position: fixed;
	top: 8%;
	z-index: 5;
	width: 96px;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	filter: drop-shadow(0 6px 20px rgba(0, 0, 0, .35));
	transform-origin: top center;
	animation: wc-pennant-sway 5s ease-in-out infinite
}

.wc-pennant-left {
	left: max(8px,env(safe-area-inset-left))
}

.wc-pennant-right {
	right: max(8px,env(safe-area-inset-right));
	animation-delay: 1.5s
}

@keyframes wc-pennant-sway {
	0%,100% {
		transform: rotate(-2deg) translateY(0)
	}

	50% {
		transform: rotate(2deg) translateY(4px)
	}
}

.wc-pennant-hanger {
	width: 3px;
	height: 18px;
	margin: 0 auto;
	background: linear-gradient(180deg,gold,rgba(201,160,0,.5));
	border-radius: 2px;
	box-shadow: 0 0 8px rgba(255,215,0,.5);
	animation: wc-hanger-shine 2s ease-in-out infinite
}

@keyframes wc-hanger-shine {
	0%,100% {
		opacity: .85
	}

	50% {
		opacity: 1
	}
}

.wc-pennant-body {
	position: relative;
	margin-top: 3px;
	padding: 12px 10px 20px;
	text-align: center;
	border: 2px solid rgba(255,215,0,.5);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	clip-path: polygon(0 0,100% 0,100% 86%,50% 100%,0 86%);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.35),0 4px 16px rgba(0,0,0,.2);
	transition: border-color .25s,box-shadow .25s,transform .2s;
	overflow: hidden
}

.wc-pennant-body::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -60%;
	width: 50%;
	height: 200%;
	background: linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);
	transform: skewX(-20deg);
	animation: wc-pennant-shine 3.5s ease-in-out infinite
}

@keyframes wc-pennant-shine {
	0% {
		left: -60%
	}

	100% {
		left: 140%
	}
}

.wc-pennant:hover .wc-pennant-body {
	border-color: rgba(255,215,0,.95);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.4),0 6px 24px rgba(255,215,0,.25)
}

.wc-pennant:active .wc-pennant-body {
	transform: scale(.96)
}

.wc-pennant-body-green {
	background: linear-gradient(180deg,rgba(13,61,24,.72) 0,rgba(26,107,46,.65) 55%,rgba(13,61,24,.7) 100%);
	color: #fff
}

.wc-pennant-body-gold {
	background: linear-gradient(180deg,rgba(183,28,28,.68) 0,rgba(229,57,53,.62) 50%,rgba(139,0,0,.68) 100%);
	color: #fff
}

.wc-pennant-ribbon {
	position: relative;
	z-index: 1;
	display: block;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .5px;
	padding: 3px 8px;
	margin: 0 auto 8px;
	border-radius: 10px;
	background: rgba(255,215,0,.3);
	border: 1px solid rgba(255,215,0,.5);
	color: var(--wc-gold-light);
	white-space: nowrap;
	animation: wc-ribbon-pulse 2s ease-in-out infinite
}

@keyframes wc-ribbon-pulse {
	0%,100% {
		transform: scale(1)
	}

	50% {
		transform: scale(1.04)
	}
}

.wc-pennant-title {
	position: relative;
	z-index: 1;
	display: block;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 1px
}

.wc-pennant-highlight {
	position: relative;
	z-index: 1;
	display: block;
	font-style: normal;
	font-size: 28px;
	font-weight: 900;
	color: var(--wc-gold);
	line-height: 1.05;
	margin: 4px 0 6px;
	text-shadow: 0 2px 8px rgba(0,0,0,.45);
	animation: wc-highlight-glow 2s ease-in-out infinite
}

@keyframes wc-highlight-glow {
	0%,100% {
		filter: brightness(1)
	}

	50% {
		filter: brightness(1.2)
	}
}

.wc-pennant-body-gold .wc-pennant-highlight {
	color: #fff176
}

.wc-pennant-desc {
	position: relative;
	z-index: 1;
	font-size: 9px;
	line-height: 1.5;
	margin: 0 0 8px;
	opacity: .95
}

.wc-pennant-action {
	position: relative;
	z-index: 1;
	display: inline-block;
	font-size: 10px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 12px;
	background: rgba(255,215,0,.35);
	border: 1px solid rgba(255,215,0,.6);
	color: var(--wc-gold-light);
	letter-spacing: .5px;
	animation: wc-action-bounce 2.5s ease-in-out infinite
}

@keyframes wc-action-bounce {
	0%,100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-2px)
	}
}

.wc-pennant-body-gold .wc-pennant-action {
	color: #fff
}

@media screen and (min-width:520px) {
	.wc-pennant {
		display: block;
		animation: wc-pennant-in .9s cubic-bezier(.22,1,.36,1) backwards,wc-pennant-sway 5s ease-in-out .9s infinite
	}

	.wc-pennant-left {
		animation-delay: .15s,.15s
	}

	.wc-pennant-right {
		animation-delay: .35s,1.65s
	}
}

@keyframes wc-pennant-in {
	0% {
		opacity: 0;
		transform: translateY(-30px) scale(.85)
	}

	100% {
		opacity: 1;
		transform: translateY(0) scale(1)
	}
}

@media screen and (min-width:900px) {
	.wc-pennant {
		width: 108px;
		top: 6%
	}

	.wc-pennant-left {
		left: max(12px,calc((100vw - 440px)/ 2 - 128px))
	}

	.wc-pennant-right {
		right: max(12px,calc((100vw - 440px)/ 2 - 128px))
	}

	.wc-pennant-title {
		font-size: 16px
	}

	.wc-pennant-highlight {
		font-size: 32px
	}

	.wc-pennant-desc {
		font-size: 10px
	}

	.wc-pennant-action {
		font-size: 11px;
		padding: 5px 12px
	}
}

.wc-side-rail {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	z-index: 6;
	display: flex;
	flex-direction: column;
	gap: 10px;
	pointer-events: none
}

.wc-side-left {
	left: 0
}

.wc-side-right {
	right: 0
}

.wc-side-chip {
	pointer-events: auto;
	border: 2px solid rgba(255,255,255,.9);
	cursor: pointer;
	font-family: inherit;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 8px 5px;
	min-width: 44px;
	box-shadow: 0 3px 14px rgba(0,0,0,.35);
	transition: transform .2s,box-shadow .2s;
	-webkit-tap-highlight-color: transparent
}

.wc-side-left .wc-side-chip {
	border-radius: 0 12px 12px 0;
	border-left: none;
	background: linear-gradient(90deg,rgba(13,61,24,.92),rgba(26,107,46,.88));
	color: #fff;
	animation: wc-side-left-pulse 2.5s ease-in-out infinite
}

.wc-side-right .wc-side-chip {
	border-radius: 12px 0 0 12px;
	border-right: none;
	background: linear-gradient(270deg,#c9a000,var(--wc-gold),#ffe566);
	color: var(--wc-pitch-dark);
	animation: wc-side-right-pulse 2.5s ease-in-out infinite .6s
}

.wc-side-chip-red {
	background: linear-gradient(270deg,#b71c1c,#e53935,#ff5252)!important;
	color: #fff!important
}

.wc-side-chip-alt {
	animation-delay: 1.2s!important
}

@keyframes wc-side-left-pulse {
	0%,100% {
		transform: translateX(0);
		box-shadow: 0 3px 14px rgba(0,0,0,.35)
	}

	50% {
		transform: translateX(3px);
		box-shadow: 0 4px 18px rgba(255,215,0,.35)
	}
}

@keyframes wc-side-right-pulse {
	0%,100% {
		transform: translateX(0)
	}

	50% {
		transform: translateX(-3px)
	}
}

.wc-side-chip:active {
	transform: scale(.95)
}

.wc-side-chip-icon {
	font-size: 18px;
	line-height: 1
}

.wc-side-chip-num {
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	color: var(--wc-red-dark)
}

.wc-side-chip-txt {
	font-size: 9px;
	font-weight: 800;
	line-height: 1.25;
	margin-top: 3px;
	text-align: center
}

.wc-side-chip-red .wc-side-chip-txt {
	color: #fff
}

.wc-toast {
	position: fixed;
	left: 50%;
	bottom: 88px;
	transform: translateX(-50%) translateY(12px);
	z-index: 200;
	background: rgba(13,61,24,.95);
	color: var(--wc-gold);
	font-size: 12px;
	font-weight: 700;
	padding: 10px 18px;
	border-radius: 24px;
	border: 1px solid rgba(255,215,0,.6);
	box-shadow: 0 4px 20px rgba(0,0,0,.4);
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s,transform .25s;
	white-space: nowrap;
	max-width: 90vw;
	overflow: hidden;
	text-overflow: ellipsis
}

.wc-toast.is-show {
	opacity: 1;
	transform: translateX(-50%) translateY(0)
}

.wc-sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 8px 10px max(8px,env(safe-area-inset-bottom,0px));
	background: linear-gradient(180deg,transparent,rgba(0,0,0,.5) 30%);
	pointer-events: none;
	box-sizing: border-box
}

.wc-sticky-inner {
	max-width: 440px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 14px;
	background: linear-gradient(90deg, #4812cd, #a2a4ff);
	border: 2px solid var(--wc-gold);
	box-shadow: 0 -4px 24px rgba(0,0,0,.4);
	pointer-events: auto;
	animation: wc-sticky-pulse 2.5s ease-in-out infinite
}

@keyframes wc-sticky-pulse {
	0%,100% {
		box-shadow: 0 -4px 24px rgba(0,0,0,.4)
	}

	50% {
		box-shadow: 0 -4px 28px rgba(0,0,0,.5),0 0 20px rgba(255,215,0,.25)
	}
}

.wc-sticky-text {
	flex: 1;
	min-width: 0
}

.wc-sticky-text em {
	display: flex;
	align-items: center;
	gap: 6px;
	font-style: normal;
	font-size: 12px;
	font-weight: 800;
	color: var(--wc-gold)
}

.wc-sticky-trophy {
	width: 15px;
	height: 16px
}

.wc-sticky-text span {
	display: block;
	font-size: 10px;
	color: rgba(255,255,255,.85);
	margin-top: 2px
}

.wc-sticky-btn {
	flex-shrink: 0;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 14px;
	font-weight: 800;
	color: var(--wc-pitch-dark);
	padding: 10px 20px;
	border-radius: 24px;
	background: linear-gradient(180deg,#fff176,var(--wc-gold),#c9a000);
	box-shadow: 0 3px 12px rgba(0,0,0,.3);
	animation: wc-btn-scale 1.5s ease-in-out infinite;
	white-space: nowrap
}

@keyframes wc-btn-scale {
	0%,100% {
		transform: scale(1)
	}

	50% {
		transform: scale(1.06)
	}
}

.wc-sticky-btn:active {
	transform: scale(.96)
}

.wc-sticky-btn {
	transition: transform .2s ease,box-shadow .2s ease
}

.wc-sticky-btn:hover {
	box-shadow: 0 4px 20px rgba(255,215,0,.45)
}

.iconlogo {
	background: url(../images/logo6.png) repeat-y center
}

.footer {
	font-size: 16px;
	width: 280px;
	margin: 30px auto;
	text-align: center
}

.download,.login {
	background-size: 100% 100%;
	width: 100px;
	height: 38px;
	display: flex;
	align-items: center;
	padding-right: 15px;
	justify-content: flex-end;
	color: #fff!important
}

.login {
	margin-left: 6px
}

@media (prefers-reduced-motion:reduce) {
	.list>li,.wc-bg-layer,.wc-bg-lights span,.wc-bg-overlay,.wc-bg-shimmer,.wc-float-balls span,.wc-page-enter>*,.wc-pennant,.wc-pennant-action,.wc-pennant-body::before,.wc-pennant-highlight,.wc-pennant-ribbon,.wc-side-fx,.wc-side-fx .wc-cf,.wc-side-fx .wc-fw,.wc-side-fx .wc-fw i,.wc-side-fx .wc-rib,.wc-sparkles i,.wc-stadium-glow {
		animation: none!important
	}

	.wc-footer-sweep,.wc-footer-txt,.wc-mini-pennant,.wc-mini-pennant-body::before,.wc-mini-pennant-hanger,.wc-section-label::before {
		animation: none!important
	}

	.wc-footer-txt {
		color: rgba(255,255,255,.88);
		background: 0 0;
		-webkit-background-clip: unset;
		background-clip: unset
	}
}

@media screen and (min-width:769px) {
	.wc-footer-bar {
		padding: 10px 26px;
		clip-path: polygon(0 50%,18px 0,calc(100% - 18px) 0,100% 50%,calc(100% - 18px) 100%,18px 100%)
	}

	.wc-footer-txt {
		font-size: 12px
	}

	.wc-footer-ico {
		font-size: 13px
	}

	.wc-ico-shield {
		width: 14px;
		height: 16px
	}

	.wc-footer-sep {
		margin: 0 10px;
		height: 11px
	}
}

@media screen and (max-width:768px) {
	.wc-bg-layer {
		background-image: var(--wc-bg-mob, var(--wc-bg-desk, url('../images/back-m.jpg')));
		animation: wc-bg-kenburns-mobile 18s ease-in-out infinite alternate;
		inset: 0
	}@	keyframes wc-bg-kenburns-mobile {
		0%{transform: scale(1)
	}

	100% {
		transform: scale(1.04)
	}
}

.wc-bg-shimmer {
	animation-duration: 10s;
	opacity: .7
}

.wc-sparkles i {
	opacity: .5
}

.wc-bg-overlay {
	background: linear-gradient(180deg,rgba(5,30,12,.08) 0,transparent 28%,transparent 55%,rgba(5,30,12,.18) 100%)
}

.wc-stadium-glow {
	height: 180px;
	opacity: .6
}

.wc-float-balls span {
	opacity: .22
}

.page-wrap {
	max-width: 100%;
	padding: 0 10px var(--wc-sticky-offset);
	padding-top: max(4px,env(safe-area-inset-top,0px));
	min-height: auto;
	box-sizing: border-box;
	overflow-x: hidden
}

.wc-hero {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	z-index: 2;
	margin-bottom: 4px;
	padding: 0;
	pointer-events: none;
	width: 100%
}

.wc-hero-arch {
	border-radius: 14px;
	padding: 10px 12px 12px;
	margin: 0;
	background: rgb(123 82 247 / 78%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 4px 20px rgba(0,0,0,.25);
	border: 1px solid rgba(255,215,0,.45);
	border-top: 1px solid rgba(255,215,0,.45);
	pointer-events: auto
}

.wc-hero-arch::before {
	display: none
}

.wc-trophy {
	font-size: 26px;
	animation: none
}

.wc-hero-badge {
	font-size: 8px;
	letter-spacing: 2px;
	padding: 2px 10px;
	margin-top: 4px
}

.wc-hero-title {
	font-size: 22px;
	letter-spacing: 2px;
	margin-top: 4px
}

.wc-hero-desc {
	font-size: 10px;
	margin-top: 2px
}

.wc-features {
	margin-top: 6px;
	gap: 6px;
	pointer-events: auto
}

.wc-feat {
	padding: 6px 2px;
	background: rgba(255,255,255,.82);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 8px
}

.wc-feat em {
	font-size: 15px;
	margin-bottom: 2px
}

.wc-ico-shield-feat {
	width: 18px;
	height: 22px
}

.wc-feat span {
	font-size: 9px
}

.wc-ticker {
	height: 22px;
	margin-top: 6px;
	background: rgba(229,57,53,.88);
	pointer-events: auto
}

.wc-ticker-track {
	padding: 4px 0
}

.wc-ticker-track span {
	font-size: 10px
}

.wc-section-wrap {
	margin: 12px 0 10px;
	gap: 6px
}

.wc-mini-pennant {
	transform: scale(.88)
}

.wc-mini-pennant-body {
	width: 22px;
	padding: 5px 3px 11px
}

.wc-mini-pennant-body b {
	font-size: 10px
}

.wc-mini-pennant-hanger {
	height: 9px
}

.wc-section-label {
	padding: 6px 10px;
	font-size: 10px;
	letter-spacing: 1px;
	max-width: 72%
}

.wc-promo-box {
	padding: 10px 12px;
	gap: 8px
}

.wc-promo-num {
	font-size: 28px
}

.wc-cd-block em {
	font-size: 15px
}

.wc-live-bar {
	font-size: 10px;
	padding: 6px 10px
}

.wc-scroll-hint span {
	font-size: 11px;
	padding: 4px 12px
}

.wc-pennant,.wc-side-fx {
	display: none!important
}

.wc-side-rail {
	top: 48%
}

.wc-side-chip {
	min-width: 38px;
	padding: 6px 4px
}

.wc-side-chip-icon {
	font-size: 15px
}

.wc-side-chip-num {
	font-size: 13px
}

.wc-side-chip-txt {
	font-size: 8px
}

.wc-promo-box::after {
	font-size: 8px
}

.wc-live-bar span {
	font-size: 9px;
	line-height: 1.4
}

.wc-mid-promo {
	width: 92%
}

.wc-mid-title {
	font-size: 12px
}

.wc-mid-btn {
	padding: 6px 10px;
	font-size: 11px
}

html {
	scroll-padding-bottom: var(--wc-sticky-offset)
}

body {
	padding-bottom: 0
}

.page-wrap {
	padding-bottom: var(--wc-sticky-offset)
}

.wc-bottom-spacer {
	display: block;
	min-height: 8px;
	height: 8px
}

.list {
	margin-bottom: 4px
}

.wc-footer {
	margin-top: 12px;
	margin-bottom: 6px;
	padding-bottom: 0;
	width: 100%;
	justify-content: center
}

.wc-footer-bar {
	max-width: calc(100% - 4px);
	padding: 8px 16px;
	clip-path: polygon(0 50%,11px 0,calc(100% - 11px) 0,100% 50%,calc(100% - 11px) 100%,11px 100%)
}

.wc-footer-bar::after {
	left: 14px;
	right: 14px
}

.wc-footer-txt {
	font-size: 9px;
	letter-spacing: 0
}

.wc-footer-ico {
	font-size: 10px
}

.wc-footer-ball {
	font-size: 13px
}

.wc-ico-shield {
	width: 11px;
	height: 13px
}

.wc-footer-sep {
	margin: 0 5px;
	height: 8px
}

.list {
	gap: 10px;
	width: 100%
}

.list li {
	width: 92%;
	max-width: 360px;
	margin: 0 auto;
	box-shadow: 0 3px 14px rgba(0,0,0,.22);
	border-radius: 12px
}

.list>li:not(.wc-mid-promo)::before {
	width: 22px;
	height: 22px;
	font-size: 11px;
	right: 10px;
	top: 8px
}

.list li:hover {
	transform: none
}

.card-head {
	min-height: 34px;
	padding: 6px 34px 6px 22px;
	background:  rgb(133 113 243 / 82%);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px)
}

.card-hot {
	left: 22px;
	font-size: 8px;
	padding: 1px 5px
}

h2 {
	font-size: 14px
}

.card-link {
	position: relative
}

.card-body {
	padding: 8px 10px 40px;
	background: rgba(244,250,240,.72);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	gap: 8px
}

.list li .icon {
	width: 52px;
	height: 52px;
	min-width: 52px;
	border-width: 2px;
	border-radius: 10px
}

h3 {
	font-size: 11.5px;
	line-height: 1.55
}

strong {
	font-size: 15px
}

.card-foot {
	position: absolute;
	right: 8px;
	bottom: 8px;
	left: auto;
	width: auto;
	background: 0 0;
	animation: none;
	padding: 0
}

.card-cta {
	display: inline-block;
	padding: 5px 12px;
	font-size: 11px;
	letter-spacing: 1px;
	border-radius: 20px;
	background: linear-gradient(90deg, #e08afb, #ffffff, #fdeea3);
	box-shadow: 0 2px 8px rgba(0,0,0,.2)
}

.card-ctb {
	display: inline-block;
	padding: 5px 12px;
	font-size: 11px;
	letter-spacing: 1px;
	border-radius: 20px;
	background: linear-gradient(90deg, #aaffff, #ffffff, #ffaaff);
	box-shadow: 0 2px 8px rgba(0,0,0,.2)
}

.paymethod {
	display: block
}}

@media screen and (max-width:400px) {
	.wc-hero-desc {
		display: none
	}

	.wc-ticker {
		display: none
	}

	.wc-feat span {
		font-size: 8px
	}

	.list li {
		width: 94%
	}

	.list li .icon {
		width: 46px;
		height: 46px;
		min-width: 46px
	}

	.wc-side-chip-alt {
		display: none
	}

	.wc-side-chip {
		min-width: 34px;
		padding: 5px 3px
	}
}

html.wc-in-iframe {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch
}

html.wc-in-iframe body {
	width: 100%;
	min-height: 100%;
	height: auto;
	margin: 0;
	overflow: visible;
	touch-action: pan-y;
	padding-bottom: var(--wc-sticky-offset)
}

html.wc-in-iframe .page-wrap {
	min-height: 100vh
}

html.wc-in-iframe .wc-bg-layer,html.wc-in-iframe .wc-bg-lights,html.wc-in-iframe .wc-bg-overlay,html.wc-in-iframe .wc-bg-shimmer,html.wc-in-iframe .wc-float-balls,html.wc-in-iframe .wc-sparkles,html.wc-in-iframe .wc-stadium-glow {
	position: fixed!important;
	top: 0!important;
	right: 0!important;
	bottom: 0!important;
	left: 0!important;
	width: 100%!important;
	height: 100%!important;
	min-height: 0!important;
	animation: none!important;
	will-change: auto!important;
	transform: none!important
}

html.wc-in-iframe .wc-bg-layer {
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat
}

@media screen and (max-width:768px) {
	html.wc-in-iframe .wc-bg-layer {
		background-image: var(--wc-bg-mob, var(--wc-bg-desk, url('../images/back-m.jpg')))
	}
}

html.wc-in-iframe .wc-sticky-bar {
	position: fixed!important;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100
}
/* ===== perf lite: iframe / QQ / ���������Ż� ===== */
html.wc-perf-lite .wc-bg-shimmer,
html.wc-perf-lite .wc-stadium-glow,
html.wc-perf-lite .wc-bg-lights,
html.wc-perf-lite .wc-sparkles,
html.wc-perf-lite .wc-float-balls,
html.wc-perf-lite .wc-side-fx,
html.wc-perf-lite .wc-pennant,
html.wc-perf-lite .wc-side-rail {
	display: none!important
}

html.wc-perf-lite .wc-bg-layer,
html.wc-perf-lite .wc-bg-overlay,
html.wc-perf-lite .wc-ticker-track,
html.wc-perf-lite .wc-promo-box,
html.wc-perf-lite .wc-sticky-btn,
html.wc-perf-lite .wc-live-dot,
html.wc-perf-lite .list>li,
html.wc-perf-lite .card-hot,
html.wc-perf-lite .card-cta,
html.wc-perf-lite .wc-footer-sweep,
html.wc-perf-lite .wc-mini-pennant,
html.wc-perf-lite .wc-mini-pennant-body,
html.wc-perf-lite .wc-section-label,
html.wc-perf-lite .wc-trophy {
	animation: none!important;
	transition: none!important;
	filter: none!important;
	backdrop-filter: none!important;
	-webkit-backdrop-filter: none!important;
	will-change: auto!important;
	transform: none!important
}

html.wc-perf-lite .wc-bg-layer {
	position: fixed!important;
	inset: 0;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	transform: none!important
}

html.wc-perf-lite .wc-bg-overlay {
	position: fixed!important;
	inset: 0;
	opacity: .55!important
}

html.wc-perf-lite .wc-ticker {
	overflow: hidden
}

html.wc-perf-lite .wc-ticker-track {
	display: flex;
	flex-wrap: nowrap;
	width: max-content;
	transform: none!important
}

html.wc-perf-lite .list>li,
html.wc-perf-lite .card-link,
html.wc-perf-lite .wc-promo-box,
html.wc-perf-lite .wc-sticky-inner {
	box-shadow: none!important
}

html.wc-perf-lite .card-link {
	backdrop-filter: none!important;
	-webkit-backdrop-filter: none!important
}


/* CTA统一布局：PC与移动端完全一致，按钮组居中、间距固定10px */
.card-foot {
  right: 0;
  left: 0;
  bottom: 8px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 8px;
  background: transparent;
  animation: none;
}
.card-cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
}
.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
}
.card-link:active .card-cta,
.list li:hover .card-cta {
  letter-spacing: 10px;
}
@media (max-width: 360px) {
  .card-cta { padding: 5px 9px; font-size: 10px; letter-spacing: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .card-foot, .card-cta { animation: none !important; transition: none !important; }
}
