
/** Player **/
.spine-player {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	background: none;
}
.spine-player * {
	box-sizing: border-box;
	font-family: "PT Sans",Arial,"Helvetica Neue",Helvetica,Tahoma,sans-serif;
	color: #dddddd;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.spine-player-error {
	font-size: 14px;
	z-index: 10;
	border-radius: 4px;
	-webkit-user-select: text;
	-khtml-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.spine-player-hidden {
	display: none;
}

/** Canvas **/
.spine-player canvas {
	border-radius: 4px;
}

/** Slider **/
.spine-player-slider {
	width: 100%;
	height: 16px;
	position: relative;
	cursor: pointer;
}
.spine-player-slider-value {
	position: absolute;
	bottom: 0;
	height: 2px;
	background: rgba(98, 176, 238, 0.6);
	cursor: pointer;
}
.spine-player-slider:hover .spine-player-slider-value {
	height: 4px;
	background: rgba(98, 176, 238, 1);
	transition: height 0.2s;
}
.spine-player-slider-value.hovering {
	height: 4px;
	background: rgba(98, 176, 238, 1);
	transition: height 0.2s;
}
.spine-player-slider.big {
	height: 12px;
	background: rgb(0, 0, 0);
}
.spine-player-slider.big .spine-player-slider-value {
	height: 12px;
	background: rgba(98, 176, 238, 1);
}

/** Column and row layout elements **/
.spine-player-column {
	display: flex;
	flex-direction: column;
}
.spine-player-row {
	display: flex;
	flex-direction: row;
}

/** List **/
.spine-player-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}
.spine-player-list li {
	cursor: pointer;
	margin: 8px 8px;
}
.spine-player-list .selectable {
	display: flex;
	flex-direction: row;
	margin: 0 !important;
	padding: 2px 20px 2px 0 !important;
}
.spine-player-list li.selectable:first-child {
	margin-top: 4px !important;
}
.spine-player-list li.selectable:last-child {
	margin-bottom: 4px !important;
}
.spine-player-list li.selectable:hover {
	background: #6e6e6e;
}
.spine-player-list li.selectable .selectable-circle {
	display: flex;
	flex-direction: row;
	width: 6px;
	min-width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	align-self: center;
	opacity: 0;
	margin: 5px 10px;
}
.spine-player-list li.selectable.selected .selectable-circle {
	opacity: 1;
}
.spine-player-list li.selectable .selectable-text {
	color: #aaa;
}
.spine-player-list li.selectable.selected .selectable-text, .spine-player-list li.selectable:hover .selectable-text {
	color: #ddd;
}

/** Switch **/
.spine-player-switch {
	display: flex;
	flex-direction: row;
	margin: 2px 10px;
}
.spine-player-switch-text {
	flex: 1;
	margin-right: 8px;
}
.spine-player-switch-knob-area {
	width: 30px; /* width of the switch */
	height: 10px;
	display: block;
	border-radius: 5px; /* must be half of height */
	background: #6e6e6e;
	position: relative;
	align-self: center;
	justify-self: flex-end;
}
.spine-player-switch.active .spine-player-switch-knob-area {
	background: #5EAFF1;
}
.spine-player-switch-knob {
	display: block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #9e9e9e;
	position: absolute;
	left: 0px;
	top: -2px;
	filter: drop-shadow(0 0 1px #333);
	transition: transform 0.2s;
}
.spine-player-switch.active .spine-player-switch-knob {
	background: #fff;
	transform: translateX(18px);
	transition: transform 0.2s;
}

/** Popup **/
.spine-player-popup-parent {
	position: relative;
}
.spine-player-popup {
	user-select: none;
	position: absolute;
	background: rgba(0, 0, 0, 0.75);
	z-index: 1;
	right: 2px;
	bottom: 40px;
	border-radius: 4px;
	max-height: 400%;
	overflow: auto;
	font-size: 85%;
}
.spine-player-popup-title {
	margin: 4px 15px 2px 15px;
	text-align: center;
}
.spine-player-popup hr {
	margin: 0;
	border: 0;
	border-bottom: 1px solid #cccccc70;
}

/** Player controls **/
.spine-player-controls {
	display: flex;
	flex-direction: column;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	opacity: 1;
	transition: opacity 0.4s;
}
.spine-player-controls-hidden {
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.4s;
}

/** Player buttons **/
.spine-player-buttons {
	display: flex;
	flex-direction: row;
	width: 100%;
	background: rgba(0, 0, 0, 0.5);
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	padding: 2px 8px 3px;
}
.spine-player-button {
	background: none;
	outline: 0;
	border: none;
	width: 32px;
	height: 32px;
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	margin-right: 3px;
	padding-bottom: 3px;
	filter: drop-shadow(0 0 1px #333);
}
.spine-player-button-spacer {
	flex: 1;
}
.spine-player-button-icon-play {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23fff%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Eplay%3C%2Ftitle%3E%3Cg%20id%3D%22play%22%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%2243%2023.3%204%2047%204%201%2043%2023.3%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.spine-player-button-icon-play:hover {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2362B0EE%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Eplay%3C%2Ftitle%3E%3Cg%20id%3D%22play%22%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%2243%2023.3%204%2047%204%201%2043%2023.3%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.spine-player-button-icon-play-selected {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2362B0EE%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Eplay%3C%2Ftitle%3E%3Cg%20id%3D%22play%22%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%2243%2023.3%204%2047%204%201%2043%2023.3%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.spine-player-button-icon-pause {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23fff%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Epause%3C%2Ftitle%3E%3Cg%20id%3D%22pause%22%3E%3Crect%20class%3D%22cls-1%22%20x%3D%226%22%20y%3D%221%22%20width%3D%2213%22%20height%3D%2246%22%2F%3E%3Crect%20class%3D%22cls-1%22%20x%3D%2228%22%20y%3D%221%22%20width%3D%2213%22%20height%3D%2246%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.spine-player-button-icon-pause:hover {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2362B0EE%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Epause%3C%2Ftitle%3E%3Cg%20id%3D%22pause%22%3E%3Crect%20class%3D%22cls-1%22%20x%3D%226%22%20y%3D%221%22%20width%3D%2213%22%20height%3D%2246%22%2F%3E%3Crect%20class%3D%22cls-1%22%20x%3D%2228%22%20y%3D%221%22%20width%3D%2213%22%20height%3D%2246%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.spine-player-button-icon-pause-selected {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2362B0EE%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Epause%3C%2Ftitle%3E%3Cg%20id%3D%22pause%22%3E%3Crect%20class%3D%22cls-1%22%20x%3D%226%22%20y%3D%221%22%20width%3D%2213%22%20height%3D%2246%22%2F%3E%3Crect%20class%3D%22cls-1%22%20x%3D%2228%22%20y%3D%221%22%20width%3D%2213%22%20height%3D%2246%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.spine-player-button-icon-speed {
	background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22playback%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23fff%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Eplayback%3C%2Ftitle%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M48%2C28V20l-4.7-1.18a20.16%2C20.16%2C0%2C0%2C0-2-4.81l2.49-4.15L38.14%2C4.2%2C34%2C6.69a20.16%2C20.16%2C0%2C0%2C0-4.81-2L28%2C0H20L18.82%2C4.7A20.16%2C20.16%2C0%2C0%2C0%2C14%2C6.7L9.86%2C4.2%2C4.2%2C9.86%2C6.69%2C14a20.16%2C20.16%2C0%2C0%2C0-2%2C4.81L0%2C20v8l4.7%2C1.18A20.16%2C20.16%2C0%2C0%2C0%2C6.7%2C34L4.2%2C38.14%2C9.86%2C43.8%2C14%2C41.31a20.16%2C20.16%2C0%2C0%2C0%2C4.81%2C2L20%2C48h8l1.18-4.7a20.16%2C20.16%2C0%2C0%2C0%2C4.81-2l4.15%2C2.49%2C5.66-5.66L41.31%2C34a20.16%2C20.16%2C0%2C0%2C0%2C2-4.81ZM24%2C38A14%2C14%2C0%2C1%2C1%2C38%2C24%2C14%2C14%2C0%2C0%2C1%2C24%2C38Z%22%2F%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%2234%2024%2018%2033%2018%2015%2034%2024%2034%2024%22%2F%3E%3C%2Fsvg%3E");
}
.spine-player-button-icon-speed:hover {
	background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22playback%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2362B0EE%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Eplayback%3C%2Ftitle%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M48%2C28V20l-4.7-1.18a20.16%2C20.16%2C0%2C0%2C0-2-4.81l2.49-4.15L38.14%2C4.2%2C34%2C6.69a20.16%2C20.16%2C0%2C0%2C0-4.81-2L28%2C0H20L18.82%2C4.7A20.16%2C20.16%2C0%2C0%2C0%2C14%2C6.7L9.86%2C4.2%2C4.2%2C9.86%2C6.69%2C14a20.16%2C20.16%2C0%2C0%2C0-2%2C4.81L0%2C20v8l4.7%2C1.18A20.16%2C20.16%2C0%2C0%2C0%2C6.7%2C34L4.2%2C38.14%2C9.86%2C43.8%2C14%2C41.31a20.16%2C20.16%2C0%2C0%2C0%2C4.81%2C2L20%2C48h8l1.18-4.7a20.16%2C20.16%2C0%2C0%2C0%2C4.81-2l4.15%2C2.49%2C5.66-5.66L41.31%2C34a20.16%2C20.16%2C0%2C0%2C0%2C2-4.81ZM24%2C38A14%2C14%2C0%2C1%2C1%2C38%2C24%2C14%2C14%2C0%2C0%2C1%2C24%2C38Z%22%2F%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%2234%2024%2018%2033%2018%2015%2034%2024%2034%2024%22%2F%3E%3C%2Fsvg%3E");
}
.spine-player-button-icon-speed-selected {
	background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22playback%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2362B0EE%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Eplayback%3C%2Ftitle%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M48%2C28V20l-4.7-1.18a20.16%2C20.16%2C0%2C0%2C0-2-4.81l2.49-4.15L38.14%2C4.2%2C34%2C6.69a20.16%2C20.16%2C0%2C0%2C0-4.81-2L28%2C0H20L18.82%2C4.7A20.16%2C20.16%2C0%2C0%2C0%2C14%2C6.7L9.86%2C4.2%2C4.2%2C9.86%2C6.69%2C14a20.16%2C20.16%2C0%2C0%2C0-2%2C4.81L0%2C20v8l4.7%2C1.18A20.16%2C20.16%2C0%2C0%2C0%2C6.7%2C34L4.2%2C38.14%2C9.86%2C43.8%2C14%2C41.31a20.16%2C20.16%2C0%2C0%2C0%2C4.81%2C2L20%2C48h8l1.18-4.7a20.16%2C20.16%2C0%2C0%2C0%2C4.81-2l4.15%2C2.49%2C5.66-5.66L41.31%2C34a20.16%2C20.16%2C0%2C0%2C0%2C2-4.81ZM24%2C38A14%2C14%2C0%2C1%2C1%2C38%2C24%2C14%2C14%2C0%2C0%2C1%2C24%2C38Z%22%2F%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%2234%2024%2018%2033%2018%2015%2034%2024%2034%2024%22%2F%3E%3C%2Fsvg%3E");
}
.spine-player-button-icon-animations {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23fff%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Eanimations%3C%2Ftitle%3E%3Cg%20id%3D%22animations%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M12%2C45V43.22a6.39%2C6.39%2C0%2C0%2C0%2C.63-.81%2C27.83%2C27.83%2C0%2C0%2C1%2C3.79-4.16c.93-.84%2C2.06-1.88%2C2.86-2.71a13.83%2C13.83%2C0%2C0%2C0%2C1.53-1.9l3.9-5.24c1-1.17.95-1.1%2C2.11%2C0l3%2C2.24a4%2C4%2C0%2C0%2C0-2.29%2C2.38c-1.37%2C3-2.39%2C4-2.68%2C4.22l-.23.18c-.54.39-1.81%2C1-1.7%2C1.54l.8%2C1.49a4.5%2C4.5%2C0%2C0%2C1%2C.39%2C1l.57%2C2.15a.69.69%2C0%2C0%2C0%2C.58.48c.47.08%2C1%2C.5%2C1.33.53%2C1.29.1%2C1.79%2C0%2C1.42-.54L26.7%2C42.72a.86.86%2C0%2C0%2C1-.2-.24%2C3.64%2C3.64%2C0%2C0%2C1-.42-2.2A5.39%2C5.39%2C0%2C0%2C1%2C26.61%2C39c1.84-2%2C6.74-6.36%2C6.74-6.36%2C1.71-1.81%2C1.4-2.52.81-3.84a27.38%2C27.38%2C0%2C0%2C0-2-3c-.41-.61-2.08-2.38-2.85-3.28-.43-.5.38-2.08.87-2.82.18-.12-.41.05%2C1.72.07a23.32%2C23.32%2C0%2C0%2C0%2C3.56-.19l1.63.61c.28%2C0%2C1.18-.09%2C1.31-.35l.12-.78c.18-.39.31-1.56-.05-1.75l-.6-.52a2.28%2C2.28%2C0%2C0%2C0-1.61.07l-.2.44c-.14.15-.52.37-.71.29l-2.24%2C0c-.5.12-1.18-.42-1.81-.73L32.05%2C15a8%2C8%2C0%2C0%2C0%2C.8-3.92%2C1.22%2C1.22%2C0%2C0%2C0-.28-.82%2C7.87%2C7.87%2C0%2C0%2C0-1.15-1.06l.11-.73c-.12-.49%2C1-.82%2C1.52-.82l.76-.33c.32%2C0%2C.68-.89.78-1.21L34.94%2C4a11.26%2C11.26%2C0%2C0%2C0%2C0-1.61C34.57.08%2C30.06-1.42%2C28.78%2C2c-.14.38-.62.77.34%2C3.21a1.55%2C1.55%2C0%2C0%2C1-.3%2C1.2L28.4%2C7a4%2C4%2C0%2C0%2C1-1.19.49c-.79%2C0-1.59-.75-4%2C.54C21%2C9.16%2C18.59%2C13%2C17.7%2C14.22a3.21%2C3.21%2C0%2C0%2C0-.61%2C1.58c-.05%2C1.16.7%2C3.74.87%2C5.75.13%2C1.53.21%2C2.52.72%2C3.06%2C1.07%2C1.14%2C2.1-.18%2C2.61-1a2.74%2C2.74%2C0%2C0%2C0-.14-1.86l-.74-.1c-.15-.15-.4-.42-.39-.64-.05-3.48-.22-3.14-.18-5.39%2C1.74-1.46%2C2.4-2.45%2C2.3-2-.2%2C1.15.28%2C2.83.09%2C4.35a6.46%2C6.46%2C0%2C0%2C1-.7%2C2.58s-2.11%2C4.22-2.14%2C4.27l-1.26%2C5.6-.7%2C1.44s-.71.54-1.59%2C1.21a9.67%2C9.67%2C0%2C0%2C0-2.27%2C3.18%2C20.16%2C20.16%2C0%2C0%2C1-1.42%2C2.83l-.87%2C1.31a1.72%2C1.72%2C0%2C0%2C1-.6.61l-1.83%2C1.1a1.39%2C1.39%2C0%2C0%2C0-.16.93l.68%2C1.71a4.07%2C4.07%2C0%2C0%2C1%2C.27%2C1.07l.17%2C1.56a.75.75%2C0%2C0%2C0%2C.71.59%2C18.13%2C18.13%2C0%2C0%2C0%2C3.26-.5c.27-.09-.29-.78-.53-1s-.45-.36-.45-.36A12.78%2C12.78%2C0%2C0%2C1%2C12%2C45Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}
.spine-player-button-icon-animations:hover {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2362B0EE%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Eanimations%3C%2Ftitle%3E%3Cg%20id%3D%22animations%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M12%2C45V43.22a6.39%2C6.39%2C0%2C0%2C0%2C.63-.81%2C27.83%2C27.83%2C0%2C0%2C1%2C3.79-4.16c.93-.84%2C2.06-1.88%2C2.86-2.71a13.83%2C13.83%2C0%2C0%2C0%2C1.53-1.9l3.9-5.24c1-1.17.95-1.1%2C2.11%2C0l3%2C2.24a4%2C4%2C0%2C0%2C0-2.29%2C2.38c-1.37%2C3-2.39%2C4-2.68%2C4.22l-.23.18c-.54.39-1.81%2C1-1.7%2C1.54l.8%2C1.49a4.5%2C4.5%2C0%2C0%2C1%2C.39%2C1l.57%2C2.15a.69.69%2C0%2C0%2C0%2C.58.48c.47.08%2C1%2C.5%2C1.33.53%2C1.29.1%2C1.79%2C0%2C1.42-.54L26.7%2C42.72a.86.86%2C0%2C0%2C1-.2-.24%2C3.64%2C3.64%2C0%2C0%2C1-.42-2.2A5.39%2C5.39%2C0%2C0%2C1%2C26.61%2C39c1.84-2%2C6.74-6.36%2C6.74-6.36%2C1.71-1.81%2C1.4-2.52.81-3.84a27.38%2C27.38%2C0%2C0%2C0-2-3c-.41-.61-2.08-2.38-2.85-3.28-.43-.5.38-2.08.87-2.82.18-.12-.41.05%2C1.72.07a23.32%2C23.32%2C0%2C0%2C0%2C3.56-.19l1.63.61c.28%2C0%2C1.18-.09%2C1.31-.35l.12-.78c.18-.39.31-1.56-.05-1.75l-.6-.52a2.28%2C2.28%2C0%2C0%2C0-1.61.07l-.2.44c-.14.15-.52.37-.71.29l-2.24%2C0c-.5.12-1.18-.42-1.81-.73L32.05%2C15a8%2C8%2C0%2C0%2C0%2C.8-3.92%2C1.22%2C1.22%2C0%2C0%2C0-.28-.82%2C7.87%2C7.87%2C0%2C0%2C0-1.15-1.06l.11-.73c-.12-.49%2C1-.82%2C1.52-.82l.76-.33c.32%2C0%2C.68-.89.78-1.21L34.94%2C4a11.26%2C11.26%2C0%2C0%2C0%2C0-1.61C34.57.08%2C30.06-1.42%2C28.78%2C2c-.14.38-.62.77.34%2C3.21a1.55%2C1.55%2C0%2C0%2C1-.3%2C1.2L28.4%2C7a4%2C4%2C0%2C0%2C1-1.19.49c-.79%2C0-1.59-.75-4%2C.54C21%2C9.16%2C18.59%2C13%2C17.7%2C14.22a3.21%2C3.21%2C0%2C0%2C0-.61%2C1.58c-.05%2C1.16.7%2C3.74.87%2C5.75.13%2C1.53.21%2C2.52.72%2C3.06%2C1.07%2C1.14%2C2.1-.18%2C2.61-1a2.74%2C2.74%2C0%2C0%2C0-.14-1.86l-.74-.1c-.15-.15-.4-.42-.39-.64-.05-3.48-.22-3.14-.18-5.39%2C1.74-1.46%2C2.4-2.45%2C2.3-2-.2%2C1.15.28%2C2.83.09%2C4.35a6.46%2C6.46%2C0%2C0%2C1-.7%2C2.58s-2.11%2C4.22-2.14%2C4.27l-1.26%2C5.6-.7%2C1.44s-.71.54-1.59%2C1.21a9.67%2C9.67%2C0%2C0%2C0-2.27%2C3.18%2C20.16%2C20.16%2C0%2C0%2C1-1.42%2C2.83l-.87%2C1.31a1.72%2C1.72%2C0%2C0%2C1-.6.61l-1.83%2C1.1a1.39%2C1.39%2C0%2C0%2C0-.16.93l.68%2C1.71a4.07%2C4.07%2C0%2C0%2C1%2C.27%2C1.07l.17%2C1.56a.75.75%2C0%2C0%2C0%2C.71.59%2C18.13%2C18.13%2C0%2C0%2C0%2C3.26-.5c.27-.09-.29-.78-.53-1s-.45-.36-.45-.36A12.78%2C12.78%2C0%2C0%2C1%2C12%2C45Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}
.spine-player-button-icon-animations-selected {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2362B0EE%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Eanimations%3C%2Ftitle%3E%3Cg%20id%3D%22animations%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M12%2C45V43.22a6.39%2C6.39%2C0%2C0%2C0%2C.63-.81%2C27.83%2C27.83%2C0%2C0%2C1%2C3.79-4.16c.93-.84%2C2.06-1.88%2C2.86-2.71a13.83%2C13.83%2C0%2C0%2C0%2C1.53-1.9l3.9-5.24c1-1.17.95-1.1%2C2.11%2C0l3%2C2.24a4%2C4%2C0%2C0%2C0-2.29%2C2.38c-1.37%2C3-2.39%2C4-2.68%2C4.22l-.23.18c-.54.39-1.81%2C1-1.7%2C1.54l.8%2C1.49a4.5%2C4.5%2C0%2C0%2C1%2C.39%2C1l.57%2C2.15a.69.69%2C0%2C0%2C0%2C.58.48c.47.08%2C1%2C.5%2C1.33.53%2C1.29.1%2C1.79%2C0%2C1.42-.54L26.7%2C42.72a.86.86%2C0%2C0%2C1-.2-.24%2C3.64%2C3.64%2C0%2C0%2C1-.42-2.2A5.39%2C5.39%2C0%2C0%2C1%2C26.61%2C39c1.84-2%2C6.74-6.36%2C6.74-6.36%2C1.71-1.81%2C1.4-2.52.81-3.84a27.38%2C27.38%2C0%2C0%2C0-2-3c-.41-.61-2.08-2.38-2.85-3.28-.43-.5.38-2.08.87-2.82.18-.12-.41.05%2C1.72.07a23.32%2C23.32%2C0%2C0%2C0%2C3.56-.19l1.63.61c.28%2C0%2C1.18-.09%2C1.31-.35l.12-.78c.18-.39.31-1.56-.05-1.75l-.6-.52a2.28%2C2.28%2C0%2C0%2C0-1.61.07l-.2.44c-.14.15-.52.37-.71.29l-2.24%2C0c-.5.12-1.18-.42-1.81-.73L32.05%2C15a8%2C8%2C0%2C0%2C0%2C.8-3.92%2C1.22%2C1.22%2C0%2C0%2C0-.28-.82%2C7.87%2C7.87%2C0%2C0%2C0-1.15-1.06l.11-.73c-.12-.49%2C1-.82%2C1.52-.82l.76-.33c.32%2C0%2C.68-.89.78-1.21L34.94%2C4a11.26%2C11.26%2C0%2C0%2C0%2C0-1.61C34.57.08%2C30.06-1.42%2C28.78%2C2c-.14.38-.62.77.34%2C3.21a1.55%2C1.55%2C0%2C0%2C1-.3%2C1.2L28.4%2C7a4%2C4%2C0%2C0%2C1-1.19.49c-.79%2C0-1.59-.75-4%2C.54C21%2C9.16%2C18.59%2C13%2C17.7%2C14.22a3.21%2C3.21%2C0%2C0%2C0-.61%2C1.58c-.05%2C1.16.7%2C3.74.87%2C5.75.13%2C1.53.21%2C2.52.72%2C3.06%2C1.07%2C1.14%2C2.1-.18%2C2.61-1a2.74%2C2.74%2C0%2C0%2C0-.14-1.86l-.74-.1c-.15-.15-.4-.42-.39-.64-.05-3.48-.22-3.14-.18-5.39%2C1.74-1.46%2C2.4-2.45%2C2.3-2-.2%2C1.15.28%2C2.83.09%2C4.35a6.46%2C6.46%2C0%2C0%2C1-.7%2C2.58s-2.11%2C4.22-2.14%2C4.27l-1.26%2C5.6-.7%2C1.44s-.71.54-1.59%2C1.21a9.67%2C9.67%2C0%2C0%2C0-2.27%2C3.18%2C20.16%2C20.16%2C0%2C0%2C1-1.42%2C2.83l-.87%2C1.31a1.72%2C1.72%2C0%2C0%2C1-.6.61l-1.83%2C1.1a1.39%2C1.39%2C0%2C0%2C0-.16.93l.68%2C1.71a4.07%2C4.07%2C0%2C0%2C1%2C.27%2C1.07l.17%2C1.56a.75.75%2C0%2C0%2C0%2C.71.59%2C18.13%2C18.13%2C0%2C0%2C0%2C3.26-.5c.27-.09-.29-.78-.53-1s-.45-.36-.45-.36A12.78%2C12.78%2C0%2C0%2C1%2C12%2C45Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}
.spine-player-button-icon-skins {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23fff%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Eskins%3C%2Ftitle%3E%3Cg%20id%3D%22skins%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M36%2C12.54l-6.92%2C1-.79%2C1.2c-1%2C.25-2-.62-3-.55V12.33a1.35%2C1.35%2C0%2C0%2C1%2C.55-1.07c3-2.24%2C3.28-3.75%2C3.28-5.34A5.06%2C5.06%2C0%2C0%2C0%2C24%2C.76c-2.54%2C0-4.38.71-5.49%2C2.13a5.74%2C5.74%2C0%2C0%2C0-.9%2C4.57l2.48-.61a3.17%2C3.17%2C0%2C0%2C1%2C.45-2.4c.6-.75%2C1.75-1.13%2C3.42-1.13%2C2.56%2C0%2C2.56%2C1.24%2C2.56%2C2.56%2C0%2C.92%2C0%2C1.65-2.26%2C3.34a3.92%2C3.92%2C0%2C0%2C0-1.58%2C3.12v1.86c-1-.07-2%2C.8-3%2C.55l-.79-1.2-6.92-1c-2.25%2C0-4.35%2C2.09-5.64%2C3.93L1%2C24c3.83%2C5.11%2C10.22%2C5.11%2C10.22%2C5.11V41.93c0%2C2.34%2C2.68%2C3.88%2C5.59%2C4.86a22.59%2C22.59%2C0%2C0%2C0%2C14.37%2C0c2.91-1%2C5.59-2.52%2C5.59-4.86V29.15S43.17%2C29.15%2C47%2C24l-5.33-7.57C40.38%2C14.63%2C38.27%2C12.54%2C36%2C12.54ZM23.32%2C20.09%2C21%2C17l1.8-.6a3.79%2C3.79%2C0%2C0%2C1%2C2.4%2C0L27%2C17l-2.32%2C3.09A.85.85%2C0%2C0%2C1%2C23.32%2C20.09Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
	width: 31px;
	height: 31px;
}
.spine-player-button-icon-skins:hover {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2362B0EE%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Eskins%3C%2Ftitle%3E%3Cg%20id%3D%22skins%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M36%2C12.54l-6.92%2C1-.79%2C1.2c-1%2C.25-2-.62-3-.55V12.33a1.35%2C1.35%2C0%2C0%2C1%2C.55-1.07c3-2.24%2C3.28-3.75%2C3.28-5.34A5.06%2C5.06%2C0%2C0%2C0%2C24%2C.76c-2.54%2C0-4.38.71-5.49%2C2.13a5.74%2C5.74%2C0%2C0%2C0-.9%2C4.57l2.48-.61a3.17%2C3.17%2C0%2C0%2C1%2C.45-2.4c.6-.75%2C1.75-1.13%2C3.42-1.13%2C2.56%2C0%2C2.56%2C1.24%2C2.56%2C2.56%2C0%2C.92%2C0%2C1.65-2.26%2C3.34a3.92%2C3.92%2C0%2C0%2C0-1.58%2C3.12v1.86c-1-.07-2%2C.8-3%2C.55l-.79-1.2-6.92-1c-2.25%2C0-4.35%2C2.09-5.64%2C3.93L1%2C24c3.83%2C5.11%2C10.22%2C5.11%2C10.22%2C5.11V41.93c0%2C2.34%2C2.68%2C3.88%2C5.59%2C4.86a22.59%2C22.59%2C0%2C0%2C0%2C14.37%2C0c2.91-1%2C5.59-2.52%2C5.59-4.86V29.15S43.17%2C29.15%2C47%2C24l-5.33-7.57C40.38%2C14.63%2C38.27%2C12.54%2C36%2C12.54ZM23.32%2C20.09%2C21%2C17l1.8-.6a3.79%2C3.79%2C0%2C0%2C1%2C2.4%2C0L27%2C17l-2.32%2C3.09A.85.85%2C0%2C0%2C1%2C23.32%2C20.09Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.spine-player-button-icon-skins-selected {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2362B0EE%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Eskins%3C%2Ftitle%3E%3Cg%20id%3D%22skins%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M36%2C12.54l-6.92%2C1-.79%2C1.2c-1%2C.25-2-.62-3-.55V12.33a1.35%2C1.35%2C0%2C0%2C1%2C.55-1.07c3-2.24%2C3.28-3.75%2C3.28-5.34A5.06%2C5.06%2C0%2C0%2C0%2C24%2C.76c-2.54%2C0-4.38.71-5.49%2C2.13a5.74%2C5.74%2C0%2C0%2C0-.9%2C4.57l2.48-.61a3.17%2C3.17%2C0%2C0%2C1%2C.45-2.4c.6-.75%2C1.75-1.13%2C3.42-1.13%2C2.56%2C0%2C2.56%2C1.24%2C2.56%2C2.56%2C0%2C.92%2C0%2C1.65-2.26%2C3.34a3.92%2C3.92%2C0%2C0%2C0-1.58%2C3.12v1.86c-1-.07-2%2C.8-3%2C.55l-.79-1.2-6.92-1c-2.25%2C0-4.35%2C2.09-5.64%2C3.93L1%2C24c3.83%2C5.11%2C10.22%2C5.11%2C10.22%2C5.11V41.93c0%2C2.34%2C2.68%2C3.88%2C5.59%2C4.86a22.59%2C22.59%2C0%2C0%2C0%2C14.37%2C0c2.91-1%2C5.59-2.52%2C5.59-4.86V29.15S43.17%2C29.15%2C47%2C24l-5.33-7.57C40.38%2C14.63%2C38.27%2C12.54%2C36%2C12.54ZM23.32%2C20.09%2C21%2C17l1.8-.6a3.79%2C3.79%2C0%2C0%2C1%2C2.4%2C0L27%2C17l-2.32%2C3.09A.85.85%2C0%2C0%2C1%2C23.32%2C20.09Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.spine-player-button-icon-settings {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23fff%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Esettings%3C%2Ftitle%3E%3Cg%20id%3D%22settings%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M40%2C3H8A5%2C5%2C0%2C0%2C0%2C3%2C8V40a5%2C5%2C0%2C0%2C0%2C5%2C5H40a5%2C5%2C0%2C0%2C0%2C5-5V8A5%2C5%2C0%2C0%2C0%2C40%2C3ZM16%2C40H9V33h7Zm0-12H9V21h7Zm0-12H9V9h7ZM39%2C38H20V35H39Zm0-12H20V23H39Zm0-12H20V11H39Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
	margin-top: 1px;
}
.spine-player-button-icon-settings:hover {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2362B0EE%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Esettings%3C%2Ftitle%3E%3Cg%20id%3D%22settings%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M40%2C3H8A5%2C5%2C0%2C0%2C0%2C3%2C8V40a5%2C5%2C0%2C0%2C0%2C5%2C5H40a5%2C5%2C0%2C0%2C0%2C5-5V8A5%2C5%2C0%2C0%2C0%2C40%2C3ZM16%2C40H9V33h7Zm0-12H9V21h7Zm0-12H9V9h7ZM39%2C38H20V35H39Zm0-12H20V23H39Zm0-12H20V11H39Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.spine-player-button-icon-settings-selected {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2362B0EE%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Esettings%3C%2Ftitle%3E%3Cg%20id%3D%22settings%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M40%2C3H8A5%2C5%2C0%2C0%2C0%2C3%2C8V40a5%2C5%2C0%2C0%2C0%2C5%2C5H40a5%2C5%2C0%2C0%2C0%2C5-5V8A5%2C5%2C0%2C0%2C0%2C40%2C3ZM16%2C40H9V33h7Zm0-12H9V21h7Zm0-12H9V9h7ZM39%2C38H20V35H39Zm0-12H20V23H39Zm0-12H20V11H39Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.spine-player-button-icon-fullscreen {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23fff%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Eexpand%3C%2Ftitle%3E%3Cg%20id%3D%22settings%22%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%2230.14%208%2040%208%2040%2017.86%2044.5%2017.86%2044.5%203.5%2030.14%203.5%2030.14%208%22%2F%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%228%2017.86%208%208%2017.86%208%2017.86%203.5%203.5%203.5%203.5%2017.86%208%2017.86%22%2F%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%2240%2030.14%2040%2040%2030.14%2040%2030.14%2044.5%2044.5%2044.5%2044.5%2030.14%2040%2030.14%22%2F%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%2217.86%2040%208%2040%208%2030.14%203.5%2030.14%203.5%2044.5%2017.86%2044.5%2017.86%2040%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
	margin-top: 1px;
}
.spine-player-button-icon-fullscreen:hover {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2362B0EE%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Eexpand%3C%2Ftitle%3E%3Cg%20id%3D%22settings%22%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%2230.14%208%2040%208%2040%2017.86%2044.5%2017.86%2044.5%203.5%2030.14%203.5%2030.14%208%22%2F%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%228%2017.86%208%208%2017.86%208%2017.86%203.5%203.5%203.5%203.5%2017.86%208%2017.86%22%2F%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%2240%2030.14%2040%2040%2030.14%2040%2030.14%2044.5%2044.5%2044.5%2044.5%2030.14%2040%2030.14%22%2F%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%2217.86%2040%208%2040%208%2030.14%203.5%2030.14%203.5%2044.5%2017.86%2044.5%2017.86%2040%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.spine-player-button-icon-fullscreen-selected {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2362B0EE%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Eexpand%3C%2Ftitle%3E%3Cg%20id%3D%22settings%22%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%2230.14%208%2040%208%2040%2017.86%2044.5%2017.86%2044.5%203.5%2030.14%203.5%2030.14%208%22%2F%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%228%2017.86%208%208%2017.86%208%2017.86%203.5%203.5%203.5%203.5%2017.86%208%2017.86%22%2F%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%2240%2030.14%2040%2040%2030.14%2040%2030.14%2044.5%2044.5%2044.5%2044.5%2030.14%2040%2030.14%22%2F%3E%3Cpolygon%20class%3D%22cls-1%22%20points%3D%2217.86%2040%208%2040%208%2030.14%203.5%2030.14%203.5%2044.5%2017.86%2044.5%2017.86%2040%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.spine-player-button-icon-spine-logo {
	height: 20px;
	position: relative;
	top: 1px;
	margin: 0 8px !important;
	align-self: center;
	border: none !important;
	width: auto !important;
	cursor: pointer;
	transition: transform 0.2s;
	box-shadow: none !important;
	filter: drop-shadow(0 0 1px #333);
}
.spine-player-button-icon-spine-logo:hover {
	transform: scale(1.05);
	transition: transform 0.2s;
}

/** Speed slider **/
.spine-player-speed-slider {
	width: 150px;
}

/** Player editor **/
.spine-player-editor-container {
	display: flex;
	flex-direction: row;
	height: 100%;
	width: 100%;
}
.spine-player-editor-code {
	flex: 1;
	overflow: auto;
}
.spine-player-editor-player {
	flex: 1;
	border: none;
	background: black;
}
.CodeMirror {
	height: 100%;
}/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {margin:0;padding:0;}
table {border-collapse:collapse;border-spacing:0;}
address,caption,cite,code,dfn,em,strong,th,var {font-weight:normal;font-style:normal;}
ol,ul {list-style:none;}
caption {text-align:left;}
h1,h2,h3,h4,h5,h6 {font-weight:normal;font-size:100%;}
q:before,q:after {content:'';}
fieldset,img,abbr,acronym {border:0;}
.c:before,.c:after {content:"";display:table;}
.c:after {clear:both;}
.c {zoom:1;}
body {font:0.16rem/1.5 'font1',simsun !important;padding-top:0 !important;text-align:justify;background-color:#e5e5e5;}
.widget-header {min-width:10rem;}
a {text-decoration:none;}
#actTitleWrap {top:0 !important;}
.hide {display:block;width:0;height:0;overflow:hidden;}
.pr {position:relative;}
.pa {position:absolute;}
.fl {float:left;}
.fr {float:right;}
.last {margin-right:0!important;}
* {
    outline: none;
    webkit-focus-ring-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/*footer*/
#afooter {line-height:1.4;color:#ffffff;background-color:#0e0e0e;padding:0.2rem 0;text-align:center;font-size: .18rem;}
#afooter a {color:#ffffff;}
#footer_ieg {width:100%;}
.widget-header {z-index:10;}
body,html {width:100%;overflow-x:hidden;box-sizing: border-box;background: #4b2720;}
.stage{position: fixed;top: 0;left: 0;z-index: 999;pointer-events: none;}

.db {
    text-indent: -9999em;
    display: block;
    overflow: hidden;
}

.sp{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/sp.png) no-repeat;background-size: 19.2rem auto;}
.gray{filter:grayscale(.7) !important;}
.part a{transition: .2s transform linear;overflow: visible;}
.part a:hover{transform: translateY(-.06rem);}
@media only screen and (max-width: 1400px) {
	body{background: #000;}
}
@font-face {
	font-family:'font1';
	src: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/font1.ttf);
}
@font-face {
	font-family:'font2';
	src: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/font2.ttf);
}
@font-face {
	font-family:'font3';
	src: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/font3.ttf);
}
.nav_box{position: fixed;left:-5rem;top: 50%;transform: translateY(-50%);z-index: 99;transition: .4s left linear;}
.nav_box.show{left: .2rem;}
.nav_box a,.line{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/nav_bg1.png);background-size: 1.35rem auto;background-repeat: no-repeat;transition: .2s all linear;}
.nav_box a.on,.nav_box a:hover,.nav_item:hover>a{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/nav_bg2.png);}
.nav_ct>a{display: block;width: 1.35rem;height: .5rem;margin-bottom: .16rem;}
.nav_item{margin-bottom: .16rem;}
.nav_item>a{display: block;width: 1.35rem;height: .44rem;}
.btn_nav1{background-position: 0 0;}
.btn_nav3{background-position: 0 -.53rem;}
.btn_nav4{background-position: 0 -2.77rem;}
.btn_nav5{background-position: 0 -3.31rem;margin-bottom: .06rem !important;}
.btn_nav6{background-position: 0 -3.84rem;}

.btnlist{width: 1.35rem;}
.line{background-position: 0 -4.71rem;width: 1.35rem;height: .03rem;margin: .1rem auto;}

.login{background-position:-.59rem -4.45rem;width: .17rem;height: .2rem;margin: 0 auto;}
.nav_icon{display: flex;justify-content: space-around;align-items: center;}
.share{background-position: -0.09rem -4.81rem;width:0.17rem;height:0.2rem;}
.qqbtn{background-position: -0.58rem -4.81rem;width:0.18rem;height:0.2rem;}
.game1{background-position:-1.05rem -4.82rem;width:0.21rem;height:0.16rem;}
.logineg_box a,.logineg_box a:hover{background: none;}
.logineg_box a{font-size: .16rem;color: #d6b261;text-align: center;line-height: .26rem;}
.down1{background-position:0 -5.66rem;width:1.34rem;height:0.33rem;margin: 0.14rem auto 0;}
.start1{background-position: 0 -5.16rem;width:1.34rem;height:0.34rem;margin: .14rem auto 0;}
.nav_list{height: 0;overflow: hidden;transition: height .4s linear;width: 1.5rem;}
.nav_item:hover .nav_list{height: 1.2rem;padding-top: .1rem;}
.nav_item:hover .nav_list1{height: 1.8rem;padding-top: .1rem;}
.nav_list a,.nav_list a:hover{display: block;background:url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/nav_line1.png) no-repeat 50% 100%;background-size: 100% auto;width: 1.31rem;height: .3rem;font-size: .12rem;color: #ffd57e;text-align: left;line-height: .3rem;transition: all .2s linear;white-space: nowrap;}
.nav_list a:hover{color: #faebca;}
.nav_list a em{opacity: 0;transition: all .2s linear;}
.nav_list a:hover em{opacity: 1;padding-left: .06rem;}

.btn_float1{width: 2.4rem;height: 2.4rem;position: fixed;top: 72vh;right: .2rem;z-index: 999;background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/float1.png) no-repeat 50% 0;background-size:2.4rem auto;cursor: pointer;animation: scale1 1s ease-in-out both infinite alternate;}
.btn_float1 img{display: block;width: 100%;position: absolute;top: 0;left: 0;}
/*.btn_float1:hover{animation: none;background: none;}*/
.rpic_box{position: fixed;top: 0;right: -8rem;z-index:999;height: 100vh;width: 3.44rem;cursor: default;}
/*.btn_float1:hover .rpic_box{right: 0;transition: .4s ease right;}*/
.rpic_ct{height: 100%;overflow-y: auto;position: relative;overflow-x: hidden;}
.rpic_ct::-webkit-scrollbar{width: 0;border-radius: .1rem;}
.rpic_ct::-webkit-scrollbar-track{width:0;background-color: #eaf1f2;border: 1px solid #fbfcfc;border-radius: .1rem;}
.rpic_ct::-webkit-scrollbar-thumb{width: 0;background-color: #7073ce;border-radius: .1rem;}

.rpic_box img{display: block;width: 3.44rem;}
.btn_down{width: 0.88rem; height: .2rem; position: absolute; right: .14rem; top: 2.3rem; background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/hd_btn1.png) no-repeat 50% 0; background-size: 100% auto;transition: .4s all linear;}
.btn_down:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}
.btn_link{position: absolute; width: 1.2rem; height: .2rem; right: .14rem; top: 2.52rem; background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/hd_btn2.png) no-repeat 50% 0; background-size: 100% auto;transition: .4s all linear;cursor: default;}

@keyframes scale1{
	from{transform: translateY(0);}
	to{transform: translateY(-.08rem);}
}
.wrap{position: relative;}
.head{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/hd.jpg) no-repeat 50%  0;width: 100%;background-size: 100% auto;height: 12.8rem;}
.video_box{width: 100%;position: absolute;top: -.7rem;left: 0;-webkit-mask-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/mask1.png);-webkit-mask-size: 19.2rem 11rem;}
.video_box video{width: 100%;display: block;}
.logo1{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/logo.png) no-repeat 50% 0;width:6.92rem;height: 5.67rem;background-size: 100% auto;position: absolute;top: 0;left:0;z-index: 2;}
.slogan{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/slogan.png) no-repeat 50% 0;width: 19.2rem;height: 10.04rem;background-size: 100% auto;position: absolute;top: 1rem;left: 50%;margin-left: -9.6rem;}

.hd_box{position: absolute;width: 100%;left: 0;top: .3rem;z-index: 2;}
.btn_hdvd{background-position:-11.18rem -0.27rem;width:1.26rem;height:1.26rem;position: absolute;top: 3.96rem;left: 13.66rem;}
.hd_box a{transition: .1s filter linear;}
.hd_box a:hover{filter: brightness(1.1);}
.s1_btnbox1{display: flex;justify-content: center;align-content: flex-start;margin: 0 auto;position: absolute;left: 0;top: 8.46rem;width: 100%;padding-top: 1px;box-sizing: border-box;padding-left: 2.04rem;}
.s1_btnbox1 a{width:7.04rem;height:2.44rem;margin:0 -.6rem;clip-path: polygon(1.35rem .8rem,100% 0%,5.66rem 1.56rem,0% 100%);}
.s1_btnbox1 a.s1_btn1{background-position: -0.08rem -1.85rem;margin-top: .86rem;}
.s1_btnbox1 a.s1_btn2{background-position: -7.42rem -1.73rem;}

.btn_hdxz,.btn_hdqd{display: block;background-position:-0.04rem -0.15rem;width:4.74rem;height:1.65rem;margin: 0 auto .18rem;position: absolute;z-index: 2;top: 8.3rem;left: 7.46rem;clip-path: polygon(.85rem .54rem,100% 0%,3.82rem .98rem,0% 100%);}
.btn_hdxz{background-position: -5.61rem -0.07rem;}



.bg1{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/rp1.jpg) no-repeat 50% 0,url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/rp1_1.jpg) no-repeat 50% 16.28rem ,url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/rp1_2.jpg) no-repeat 50% 36.76rem,url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/rp1_3.jpg) no-repeat 50% 60.74rem;background-size: 100% auto;position: relative;margin:0 auto;padding-bottom: 2.58rem;padding-top: 1px;padding-left: .6rem;background-color: #4b2720;}
.bg2{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/rp2.jpg) no-repeat 50% 0,url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/rp2_1.jpg) no-repeat 50% 25.46rem;background-size: 100% auto;position: relative;padding-bottom: 3.44rem;padding-top: 1px;box-sizing: border-box;padding-left: .6rem;}
.bg3{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/rp3.jpg) repeat-y 50% 0 #572b22;background-size: 100% auto;position: relative;box-sizing: border-box;padding-left: .6rem;padding-top: 1px;}
.bg1:after{content: '';background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/rp_mask1.png) no-repeat 50% 0;width: 100%;height: 5.2rem;background-size: 100% auto;position: absolute;left: 0;top: -5.2rem;pointer-events: none;}
.bg2:after{content: '';background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/rp_mask2.png) no-repeat 50% 0;width: 100%;height: 4.52rem;background-size: 100% auto;position: absolute;left: 0;top: -4.52rem;pointer-events: none;}
.bg3:after{content: '';background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/rp_mask3.png) no-repeat 50% 0;width: 100%;height: 4.52rem;background-size: 100% auto;position: absolute;left: 0;top: -4.52rem;pointer-events: none;}

.part0{margin: -1.26rem auto 0;position: relative;width: 14.4rem;}
.tit0{background-position: -0.31rem -4.4rem;width:14.39rem;height:1.01rem;margin: 0 auto;}
.s0_box{width: 14.3rem;height:6.98rem;margin: .2rem auto 0;position: relative;}
.s0_box img{display: block;margin: 0 auto;width: 100%;}
.s0_time{font-size: .18rem;color: #45321a;text-align: center;line-height: .3rem;margin: .18rem auto 0;background-position:  -5.78rem -31.03rem;width:8.57rem;height:0.3rem;font-weight: bold;letter-spacing: .02rem;}
.s0_txt1{font-family: 'font2';font-size: .45rem;color: #ffd57e;text-align: center;line-height: .54rem;}

.part1{margin: 1.06rem auto 0;position: relative;z-index: 2;width: 14.4rem;}
.tit1{background-position:-0.29rem -5.54rem;width:14.3rem;height:1.02rem;position: relative;z-index: 13;margin: 0 auto;}
.s1_box{width: 19.2rem;margin: -1.18rem 0 0 -2.7rem;height: 10.1rem;position: relative;z-index: 3;}
.s1_ct{display: none;position: relative;}
.s1_pic1{display: block;width:19.2rem;margin: 0 auto;position: absolute;top: 0;left: 0;z-index: 3;pointer-events: none;}
.player-container{width: 100%;height: 11.1rem;margin: 0 auto;position: absolute;top: 0;left:0;pointer-events: none;}
.player-container3{left: -4rem;}
.player-container4{left: -3.2rem;}
.s1_info1{width: 5.5rem;position: absolute;top: 2rem;left:3.4rem;}
.s1_info1:before{content: '';background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s1_bg2.png) no-repeat 50% 0;width: 3.44rem;height: 3.4rem;background-size: 100% auto;position: absolute;top: -1.3rem;left: -.48rem;pointer-events: none;}
.s1_info2:before{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s1_bg2_2.png);}
.s1_info3:before{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s1_bg2_1.png);}
.s1_info4:before{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s1_bg2_3.png);}
.s1_name{display: flex;justify-content: flex-start;align-items: center;font-family: 'font2';font-size: .58rem;color: #ffd57e;text-align: left;line-height: .7rem;position: relative;z-index: 2;}

.s1_star,.s1_star2{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s1_star1.png) no-repeat 50% 0;width: 1.78rem;height: .4rem;background-size: 100% auto;margin-left: .1rem;position: relative;top: .06rem;}
.s1_star2{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s1_star2.png);width: 1.45rem;}
.s1_item1{display: flex;justify-content: flex-start;align-items: center;margin: .1rem auto 0;position: relative;z-index: 3;}
.s1_icon1{display: block;width: .43rem;}
.s1_txt1{font-size: .24rem;color: #ffd57e;text-align: left;line-height: .34rem;margin-left: .14rem;width: .9rem;}
.s1_audio{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s1_bg3.png) no-repeat 50% 0;width: 2.41rem;height: .31rem;background-size: 100% auto;box-sizing: border-box;padding-left: .16rem;font-size: .18rem;color: #ffe287;text-align: left;line-height: .3rem;position: relative;}
.btn_s1ad{position: absolute;top: 50%;right: .16rem;display: flex;justify-content: center;align-items: center;transform: translateY(-50%);}
.btn_s1ad:hover{transform: translateY(-50%) !important;}
.btn_s1ad i{width: .02rem;height: .15rem;margin: 0 .02rem;background: #caad79;}
.btn_s1ad i:nth-child(1),.btn_s1ad i:nth-child(5){height: .02rem;}
.btn_s1ad i:nth-child(2),.btn_s1ad i:nth-child(4){height: .08rem;}

.btn_s1ad.on i{animation: s1amin 1s linear infinite alternate both;}
.btn_s1ad.on i:nth-child(3){animation: s1amin1 1s linear infinite alternate both;}
@keyframes s1amin{
	from{transform: scaleY(1);}
	to{transform: scaleY(1.8);}
}
@keyframes s1amin1{
	from{transform: scaleY(1);}
	to{transform: scaleY(.4);}
}
.s1_intr1{font-size: .17rem;color: #eec88c;line-height: .24rem;width: 4.64rem;height: 1.78rem;margin-top: .2rem;}

.s1_vdbox{width: 4.66rem;height: 2.96rem;position: relative;}
.s1_vdbox i{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s1_vdmask1.png) no-repeat 50% 0;width: 4.8rem;height: 3.15rem;background-size: 100% auto;position: absolute;top: -.09rem;left: -.08rem;}
.s1_vdct{width: 100%;height: 100%;overflow: hidden;border-radius: .2rem 0 .2rem 0;background: #000000;}
.s1_vdct video{display: block;width: 100%;height: 100%;object-fit: cover;}


.s1_ct1 .s1_info1 .s1_vdbox{margin-top: 0.8rem;}

.s1_swiper{width: 3.6rem;height: 6.8rem;position: absolute;top: 1.7rem;right: 2.4rem;overflow: hidden;-webkit-mask-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s1_mask3.png);-webkit-mask-size: 3.6rem 6.8rem;}

.btn_s1prev1{background-position: -16.89rem -18.4rem;width:0.16rem;height:0.09rem;position: absolute;top: 1.5rem;right: 3.88rem;}
.btn_s1next1{background-position: -16.49rem -18.4rem;width:0.16rem;height:0.09rem;position: absolute;top: 8.8rem;right: 3.88rem;}

.btn_s1prev2{background-position: -13.26rem -0.43rem;width:0.53rem;height:0.66rem;position: absolute;top: 4.52rem;left: 2.2rem;}
.btn_s1next2{background-position: -14.14rem -0.43rem;width:0.53rem;height:0.65rem;position: absolute;top: 4.52rem;right:1.2rem;}


.s1_swiper .swiper-slide{width: 3.6rem;height: 1.55rem;cursor: pointer;}
.s1-pagination{position: absolute;top: 9.14rem !important;left: 0;width: 100%;display: flex;justify-content: center;align-items: center;transform: none !important;}
.s1-pagination span{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/sp.png) no-repeat -15.97rem -0.65rem;width:0.16rem;height:0.2rem;background-size: 19.2rem auto;margin: 0 .1rem !important;opacity: 1;}
.s1-pagination span.swiper-pagination-bullet-active{background-position:-15.55rem -0.62rem;width:0.2rem;height:0.24rem;}
.s1_rbox1{width: 2.87rem;height: 1.26rem;position: absolute;top: 50%;right: 0;margin-top: -.63rem;overflow: hidden;transition: .2s all linear;background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s1_bg1.png) no-repeat 50% 0;border-radius: .24rem 0 .2rem 0;background-size: 100% auto;}
.s1_rbox1 img{display: block;height: 100%;width: auto;position: absolute;top: 0;right: 0;}
.s1_rbox1:after{content: '';background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s1_mask2.png) no-repeat 50% 0;width: 100%;height: 100%;background-size: 100% auto;position: absolute;top: 0;left: 0;transition: .2s all linear;}
.s1_rinfo{position: absolute;bottom: -.06rem;left:0;display: flex;justify-content: center;align-items: center;z-index: 20;filter: drop-shadow(0 0 .1rem #000);}
.s1_iconl{background-position: -15.98rem -3.08rem;width:0.43rem;height:0.11rem;margin-top: -.08rem;}
.s1_icon2{background-position: -17.15rem -3.09rem;width:0.89rem;height:0.11rem;margin-top: -.09rem;}

.s1_rinfo p{transform: scale(.5);margin: 0 -.2rem;text-align: center;}
.s1_rinfo p span{font-family: 'font2';font-size: .3rem;color: #ffffff;text-align: center;line-height: .4rem;margin: 0 auto;padding: 0 .1rem;}
.s1_rinfo p em{display: block;font-size: .2rem;color: #ffffff;text-align: center;line-height: .24rem;text-transform: uppercase;white-space: nowrap;}

.s1_swiper .swiper-slide-active .s1_rbox1{width: 3.51rem;height: 1.55rem;margin-top: -.77rem;background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s1_bg1_1.png) no-repeat 50% 0;background-size: 100% auto;}
.s1_swiper .swiper-slide-active .s1_rbox1:after{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s1_mask1.png);}

.s1_swiper .swiper-slide:hover .s1_rbox1{filter: brightness(1.2);}
.s1_swiper .swiper-slide-active:hover .s1_rbox1{width: 3.51rem;height: 1.55rem;filter: brightness(1);}

.part2{margin: .97rem auto 0;position: relative;padding-top: 1px;width: 14.4rem;}
.tit2{background-position: -0.29rem -6.82rem;width:14.39rem;height:1.01rem;margin: 0 auto;}
.s2_box{width: 19.2rem;height: 11.2rem;margin: -1.9rem 0 0 -3rem;position: relative;}
.s2_show,.s2_ct{width: 100%;height: 100%;position: relative;}
/* .s2_show:before{content: '';background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s2_bg1.png) no-repeat 50% 0;width: 6.91rem;height: 6.91rem;position: absolute;top: 1.2rem;left: 3.5rem;background-size: 100% auto;} */
.s2_pic{width: 18rem;display: block;position: absolute;top: 0;left: 0;}
.s2_name1{position: absolute;left: 3.66rem;top: 8.06rem;display: flex;justify-content: center;align-items: center;text-shadow: 0 0 .1rem #000000;}
.s2_icon1{background-position:-16.78rem -0.56rem;width:0.38rem;height:0.31rem;}
.s2_icon2{background-position:-17.44rem -0.56rem;width:0.38rem;height:0.31rem;}
.s2_name1 span{font-family: 'font2';font-size: .58rem;color: #fddf85;text-align: center;line-height: .7rem;padding: 0 .16rem;}


.s2_vdbox{width: 6.82rem;height: 4.33rem;position: absolute;top: 3.06rem;left: 10.78rem;}
.s2_vdbox i{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s2_vdmask1.png) no-repeat 50% 0;width: 7.01rem;height: 4.58rem;background-size: 100% auto;position: absolute;top: -.13rem;left: -.12rem;}
.s2_vdct1{width: 100%;height: 100%;overflow: hidden;border-radius: .4rem 0 .2rem 0;background: #000000;position: relative;}
.s2_vdct1 video{display: block;width: 100%;height: 100%;object-fit: cover;}
.s2_vdct1 video.vd_klf{position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);height: 132%;}
.s2_swiper{width: 7rem;position: absolute;top: 7.88rem;left: 10.78rem;overflow: hidden;z-index: 11;}
.s2_swiper .swiper-slide{width: 1.37rem;cursor: pointer;pointer-events: all !important;}
.s2_swiper .swiper-slide p{width: 1.37rem;height: 1.36rem;margin: 0 auto;background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s2_bg3.png) no-repeat 50% 0;background-size: 100% auto;display: flex;justify-content: center;align-items: center;}
.s2_swiper .swiper-slide p img{width: 1.12rem;border-radius: 50%;margin: 0 auto;opacity: .66;}
.s2_swiper .swiper-slide-active p{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s2_bg2.png);transform: scale(1.1);}
.s2_swiper .swiper-slide-active p img{opacity: 1;}

.s2-pagination{top: 8.4rem !important;}


.part3{margin: .4rem auto 0;position: relative;width: 14.4rem;}
.tit3{background-position:-0.22rem -32.19rem;width:14.39rem;height:1.01rem;margin: 0 auto;}
.s3_swiper{width: 14.3rem;margin: 0 auto;overflow: hidden;}
.s3_swiper .swiper-slide{width: 8.51rem;height: 6.9rem;}
.s3_swiper .swiper-slide img{display: block;width: 100%;}

.s3_btn1{background-position: -15.7rem -2.26rem;width:2.78rem;height:0.36rem;position: absolute;top: 9.2rem;right:0;display: flex;justify-content: center;align-items: center;}
.s3_btn1 a{width: 50%;height: 100%;}

.s3_info{width: 14.3rem;margin: .24rem auto 0;}
.s3_ct{display: flex;justify-content:flex-start;align-items: flex-start;text-shadow: 0 0 .1rem #000000;height: 1rem;display: none;}
.s3_ct.show{display: flex;}
.s3_name1{font-family: 'font2';font-size: .48rem;color: #dab67d;text-align: left;line-height: .6rem;margin-right: .6rem;white-space: nowrap;}
.s3_txt1{font-size: .2rem;color: #eec88c;line-height: .32rem;text-align: left;}

.part4{margin: 0.6rem auto 0;position: relative;width: 14.4rem;}
.tit4{background-position: -0.29rem -8.48rem;width:14.3rem;height:1.02rem;margin: 0 auto;}

.s4_show{width: 14rem;margin: .6rem auto 0;position: relative;}
.s4_show .swiper-container{overflow: hidden;width: 100%;}
.s4_show .swiper-container .swiper-slide{height: 5.84rem;position: relative;cursor: pointer;}
.s4_show .swiper-container .swiper-slide img{position: absolute;top: 0;left: 50%;width: 4.49rem;margin-left: -2.24rem;opacity: 0;}
.s4_show .swiper-container .swiper-slide img.s4_def,.s4_show .swiper-container .swiper-slide:hover img.s4_act{opacity: 1;}
.s4_show .swiper-container .swiper-slide img.s4_act,.s4_show .swiper-container .swiper-slide:hover img.s4_def{opacity: 0;}

.s4_prev,.s4_next{background-position:  -13.26rem -0.43rem;width:0.53rem;height:0.66rem;position: absolute;top: 50%;margin-top: -.33rem;left: -.6rem;}
.s4_next{left: auto;right: -.6rem;background-position: -14.14rem -0.43rem;}

.part5_1{margin: 1.2rem auto 0;position: relative;}
.tit5_1{background-position: -0.42rem -10.06rem;width:14.3rem;height:1.02rem;margin: 0 auto;}
.s5_show1{margin: .2rem auto 0;background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s5_show.png) no-repeat 50% 0;width: 9.72rem;height: 26rem;background-size: 100% auto;}

.part5{margin: -1rem auto 0;position: relative;z-index: 2;width: 14.4rem;}
.tit5{background-position:-0.4rem -11.65rem;width:14.3rem;height:1.07rem;margin: 0 auto;}
.s5_box{display: flex;justify-content: space-between;align-items: flex-start;width: 14.4rem;margin: .2rem auto 0;position: relative;}
.s5_fr{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s5_bg2.png) no-repeat 50% 0;width: 7.56rem;height: 5.68rem;background-size: 100% auto;box-sizing: border-box;padding-top: .34rem;position: relative;}
.s5_sub1{width:7.56rem;height:0.45rem;margin: 0 auto;position: relative;}
.btn_s5rule{background-position: -13.77rem -18.92rem;width:0.25rem;height:0.25rem;position: absolute;top: 0;right: 2.34rem;}
.s5_txt1{font-size: .2rem;color: #ae4635;text-align: left;line-height: .26rem;margin:0 auto;padding-left: .36rem;}
.btn_s5lb{font-size: .2rem;color: #ad4535;line-height: .3rem;text-decoration: underline !important;text-underline-offset: .1rem;position: absolute;top: .8rem;right: .36rem;}
.list_s5{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s5_bg3.png) no-repeat 50% 0;width: 7.29rem;height: 4.3rem;background-size: 100% auto;margin: .16rem auto 0;box-sizing: border-box;padding-top: .14rem;}
.list_s5 li{height: 1.02rem;width: 6.9rem;background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s5_line1.png) no-repeat 100% 100%;background-size: 4.65rem auto;display: flex;justify-content: space-between;align-items: center;margin: 0 auto;}
.list_s5 li:last-child{background: none;}
.s5_dj{width: 1.8rem;background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s5_djbg1.png) no-repeat 50% 0;background-size: 100% auto;height: .8rem;}
.s5_dj img{display: block;width: auto;height: 100%;margin: 0 auto;}
.s5rw_txt{width: 2.4rem;font-size: .19rem;color: #fff8dd;line-height: .24rem;}
.s5rw_txt span{font-size: .28rem;line-height: .34rem;color: #ffd57e;font-family: 'font2';}
.btn_s5lq,.btn_s5ylq {background-position: -0.33rem -18.96rem;width:2.31rem;height:0.64rem;font-size: 0;text-indent: -999em;}
.btn_s5ylq{background-position:-3.06rem -19rem;}

.s5_fl{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s5_bg1.png) no-repeat 50% 0;width: 6.26rem;height: 5.68rem;background-size: 100% auto;box-sizing: border-box;padding-top: 1.04rem;}
.s5_pic{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s5_pic1.png) no-repeat 50% 0;width: 5.72rem;height: 3.44rem;margin: 0 auto .14rem;background-size: 100% auto;}
.s5_fl .btn_s5lq,.s5_fl .btn_s5ylq{margin: 0 auto;background-position:-6.35rem -18.89rem;width:3.07rem;height:0.81rem;}
.s5_fl .btn_s5ylq{background-position: -9.95rem -18.89rem;}

.part6{margin: 1rem auto 0;width: 14.4rem;position: relative;z-index: 4 !important;}
.tit6{background-position: -0.43rem -13.62rem;width:14.37rem;height:1.07rem;margin: 0 auto;}
.s6_box{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s6_bg1.png) no-repeat 50% 0;width: 14.41rem;height: 7.54rem;background-size: 100% auto;margin: -.24rem auto 0;display: flex;justify-content: space-between;align-items: flex-start;box-sizing: border-box;padding: 2.78rem .18rem 0;position: relative;}

.s6_fl,.s6_fr{width: 6.88rem;position: relative;}
.s6_icon1{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s6_icon.png) no-repeat 50% 0;width: 1.4rem;height: 1.34rem;background-size: 100% auto;position: absolute;top: -1.16rem;right: .74rem;}
.s6_txt1{font-size: .2rem;color: #ffe1d1;text-align: center;line-height: .3rem;font-family: 'font3';text-align: center;height: .3rem;}

.btn_s6qiang,.btn_s6gray,.btn_s6suo,.btn_s6wcy{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s6_qiang.png) no-repeat 50% 0;width: 1.9rem;height: 1.96rem;background-size: 100% auto;margin: 0 auto;position: relative;}
.btn_s6gray{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s6_ylq.png) no-repeat 50% 0;background-size: 100% auto;}
.btn_s6suo{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s6_qiang.png) no-repeat 50% 0;background-size: 100% auto;pointer-events: none;}
.btn_s6wcy{background: url(//wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s6_wcy.png) no-repeat 50% 0;background-size: 100% auto;pointer-events: none;}
.btn_s6suo:hover,.btn_s6wcy:hover{transform: none !important;}
.btn_s6suo:after{content: '';background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s6_suo.png) no-repeat 50% 0;width: 100%;height: 100%;background-size: 100% auto;position: absolute;top: 0;left: 0;}

.s6_num1{font-size: .2rem;color: #fbe6b8;text-align: center;line-height: .3rem;margin: -.04rem auto 0;}
.s6_rwitem,.s7_rwitem{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s6_line1.png) no-repeat 50% 0;width: 6.57rem;margin: .82rem auto 0;background-size: 100% auto;display: flex;justify-content: space-between;align-items: center;height: 1.06rem;padding-top: .1rem;padding-left: .06rem;}

.s6_rwtxt1{font-size: .28rem;color: #ffd57e;text-align: left;line-height: .4rem;font-family: 'font2';}
.s6_rwtxt2{background-position: .19rem;color: #fff8dd;text-align: left;line-height: .3rem;}

.btn_s6js,.btn_s6qwc1,.btn_s6lq1,.btn_s6ywc1,.btn_s6ylq1,.btn_s6qyq1,.btn_s6yyq1{background-position:-0.18rem -20.21rem;width:2.17rem;height:0.58rem;}
.btn_s6js{background-position: -2.7rem -20.21rem;}
.btn_s6lq1{background-position:-7.61rem -20.21rem;}
.btn_s6ywc1{background-position:-5.13rem -20.21rem;}
.btn_s6ylq1{background-position:-10.04rem -20.21rem;}
.btn_s6qyq1{background-position: -0.13rem -22.21rem;}
.btn_s6yyq1{background-position: -2.63rem -22.21rem;}

.s6_bottom{display: flex;justify-content: space-between;align-items: center;margin: .1rem auto 0;width: 14.3rem;}
.s7_bottom{justify-content: flex-end;}
.btn_s6tips,.s6_tips1{font-size: .16rem;color: #f0c773;text-align: center;line-height: .24rem;text-underline-offset: .06rem;overflow: visible;position: relative;}
.btn_s6tips:hover,.btn_s7tips2:hover,.btn_s7tips1:hover{transform: none !important;}
.btn_s6tips:hover em,.btn_s7tips2:hover em,.btn_s7tips1:hover em{display: block;}
.btn_s6tips em,.btn_s7tips2 em,.btn_s7tips1 em{position: absolute;top: .3rem;left: 0;background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s6_bg3.png) no-repeat 50% 0;width: 5.53rem;height: .77rem;background-size: 100% auto;box-sizing: border-box;padding: .16rem 0 0 .14rem;font-size: .19rem;color: #fff8dd;text-align: left;line-height: .26rem;display: none;font-family: 'font1';}
.s6_tips1{text-decoration: none;}
.s6_tips1 a{display: inline-block;text-decoration: underline !important;color: #f0c773;}

.part7{margin: .7rem auto 0;position: relative;width: 14.4rem;}
.tit7{background-position:-0.18rem -15.47rem;width:14.38rem;height:1.07rem;margin: 0 auto;}
.s7_bg{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s7_bg1.png) no-repeat 50% 0;width: 14.41rem;height: 9.08rem;background-size: 100% auto;margin: .3rem auto 0;box-sizing: border-box;padding-top: .4rem;}

.s7_box{width: 13.5rem;margin: 0 auto;display: flex;justify-content: space-between;align-items: flex-start;height: 6.04rem;}
.s7_fl{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s7_hb.png) no-repeat 50% 0;width: 4.67rem;height: 4.92rem;background-size: 100% auto;box-sizing: border-box;padding-top: 1.08rem;margin-top: .32rem;flex-shrink: 0;}
.s7_txt1{font-size: .21rem;color: #663f11;text-align: center;line-height: .3rem;margin: 0 auto .2rem;}

.s7_num{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s7_bg3.png) no-repeat 50% 0;width: 4rem;height: .37rem;background-size: 100% auto;margin: .26rem auto 0;font-size: .18rem;color: #fbe6b8;text-align: center;line-height: .37rem;}
.btn_s7list{display: block;font-size: .18rem;color: #ffe287;text-align: center;line-height: .28rem;text-decoration: underline !important;text-underline-offset: .06rem;width: 1.5rem;margin: .6rem auto 0;}
.s7_fr{width: 8.4rem;flex-shrink: 0;}
.list_s7{display: flex;justify-content: flex-start;align-content: flex-start;flex-wrap: wrap;}
.list_s7 li{width: 2.1rem;margin-bottom: .14rem;}
.s7_card{position: relative;width: 1.92rem;height: 2.12rem;position: relative;margin: 0 auto;}
.s7_card img{display: block;width: 100%;}
.s7_card em{position: absolute;right: -.04rem;top: -.08rem;background-color: #c2341c;border-radius:.38rem;min-width: .38rem;height: .38rem;box-shadow: 0 .02rem .1rem rgba(0,0,0,.5);background-image: linear-gradient(to bottom,#e93f22,#e73e22,#d1381e,#b9311b);font-size: .22rem;color: #ffffff;text-align: center;line-height: .34rem;box-sizing: border-box;padding: 0 .08rem;border-top: .01rem solid #ff7e46;}

.btn_s7zs,.btn_s7yzs{background-position:  -5.73rem -22.28rem;width:1.34rem;height:0.49rem;display: block;margin: 0 auto;}
.btn_s7yzs{background-position: -7.43rem -22.28rem;}

.s7_box1{width: 14.08rem;margin: 0 auto;}

.s7_rwbox{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s7_bg2.png) no-repeat 50% 100%;width: 6.87rem;background-size: 100% auto;}
.s7_rwtxt1{background-position: -0.57rem -21.37rem;width:6.89rem;height:0.38rem;margin: 0 auto .16rem;}
.s7_rwtxt2{background-position: -7.8rem -21.37rem;width:6.89rem;height:0.38rem;margin: 0 auto .16rem;}

.s7_rwitem{margin: 0 auto;height: .94rem;}
.s7_rwitem:nth-child(2){background: none;padding: 0;}

.btn_s7tips2,.btn_s7tips1{position: relative;}
.s6_rwtxt1 a{color: #ffd57e;text-decoration: underline !important;text-underline-offset: .06rem;}
.btn_s7tips2 em{left: -1.34rem;background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s7_bg5.png);top: .4rem;}
.btn_s7tips1 em{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s7_bg6.png);top: .4rem;width: 3.11rem;padding-right: .1rem;}

.part8{margin: .66rem auto 0;position: relative;width: 14.4rem;}
.tit8{background-position:-0.55rem -17.21rem;width:14.25rem;height:1.07rem;margin: 0 auto;}
.s8_mdbox{background-position:-0.84rem -23.42rem;width:12.4rem;height:0.71rem;margin: .14rem auto 0;display: flex;justify-content: center;align-items: center;font-size: .22rem;color: #ffd57e;text-align: center;line-height: .38rem;box-sizing: border-box;padding-bottom: .02rem;}
.s8_mdct{width:5.1rem;height: .35rem;overflow: hidden;color: #faebca;}

.s8_md_list{animation: scroll1 5s linear infinite;}
@keyframes scroll1{
	0% {
	    transform: translateY(0);
	}
	100% {
	    transform: translateY(-50%);
	}
}


.s8_box{display: flex;justify-content: space-between;align-items: flex-start;margin: .1rem auto 0;width:14.4rem;}
.s8_box1{width: 9.4rem;left: 0;height: 9rem;position: relative;}
.s8_elem1{width:11.08rem;position: absolute;top: -1rem;left: -.6rem;}
.s8_cjbox{width: 4.74rem;height: 9rem;position: absolute;left: 0;top: 0;z-index: 2;}
.s8_cjbox2{left: auto;right: 0;}

.s8_cjbox p{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s8_djbg2.png) no-repeat 50% 0;width: 1.64rem;height: 1.66rem;background-size: 100% auto;position: absolute;transition: .4s background linear;}
.s8_cjbox p img{display: block;width: auto;height: 100%;position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);}
.s8_cjbox p.s8_gift4 img{left: 0;transform: translate(0,-50%);}
.s8_cjbox p.s8_gift5 img{transform: translate(-55%,-50%);}
.s9_num1{z-index: 3;}
.s8_cjbox p.s8_gift1{width:2.47rem;height: 2.5rem;background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s8_djbg2.png) no-repeat 50% 0;top:3.22rem;left: 2.18rem;background-size: 100% auto;}
.s8_cjbox p.on{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s8_djbg1.png) !important;background-size: 100% auto;}

.s8_gift2{top: .2rem;left: 1.23rem;}
.s8_gift3{top: 1.69rem;left:0.32rem;}
.s8_gift4{top: 3.3rem;left: 0;}
.s8_gift5{top: 4.86rem;left: .39rem;}
.s8_gift6{top: 6.18rem;left: 1.38rem;}
.s8_cjbox p.s8_gift7{top: 6.14rem;left: 6.4rem;}
.s8_cjbox p.s8_gift8{top:  4.66rem;left: 7.46rem;}

.s8_cjbox2 p:after{content: '';background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s8_djbg6.png) no-repeat 50% 0;background-size: 100% auto;width: 100%;height: 100%;position: absolute;top: 0;left: 0;}
.s8_cjbox2 p.s8_gift1:after{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s8_djbg5.png);top: 0;}
.s8_cjbox2.J_lottery p:after{display: none;}
.s8_cjbox2 p{left: auto !important;}
.s8_cjbox2 p.s8_gift1{right: 2rem;}

.s8_cjbox2 p.s8_gift2{right: 1.28rem;top: .02rem;}
.s8_cjbox2 p.s8_gift2 img{left: 40%;}
.s8_cjbox2 p.s8_gift3{right: 0.3rem;top: 1.52rem;}
.s8_cjbox2 p.s8_gift3 img{left: 28%;}
.s8_cjbox2 p.s8_gift4{right: 0;top: 3.12rem;}
.s8_cjbox2 p.s8_gift5{right: .33rem;top: 4.66rem;}

.btn_s8cj{background-position:-0.67rem -25.43rem;width:3.56rem;height:1.18rem;display: block;position: absolute;top: 6.8rem;left: 50%;margin-left: -1.84rem;z-index: 5;box-sizing: border-box;padding-top: 0.14rem;color: #503924;text-align: center;}
.btn_s8cj p{padding-top: .64rem;font-size: .18rem;color: #533515;text-align: center;line-height: .26rem;}

.btn_s8rule{position: absolute;top: 8.1rem;left: 50%;margin-left: -1.88rem;width: 3.36rem;font-size: .22rem;color: #faebca;text-align: center;line-height: .3rem;text-decoration: underline !important;text-underline-offset: .06rem;z-index: 5;}
.btn_s8rule:hover{filter: brightness(1.2);}

.s8_box2{width: 4.84rem;position: relative;margin-top: .4rem;}

.s8_sub{background-position: -0.69rem -24.66rem;width:3.15rem;height:0.38rem;position: relative;}
.btn_s8lb{background-position:-5.21rem -25.5rem;width:2.31rem;height:0.64rem;position: absolute;top:-.12rem;right: 0;}


.list_s8rw{margin: .22rem auto 0;background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s8_bg1.png) no-repeat 50% 0;width: 4.78rem;height: 6.43rem;background-size: 100% auto;}
.list_s8rw li{width: 4.78rem;height:1.07rem;margin: 0 auto;display: flex;justify-content: space-between;align-items: center;box-sizing: border-box;padding: 0 .2rem;background-size: 100% auto;position: relative;position: relative;}
.list_s8rw li:last-child:after{display: none;}
.list_s8rw li:after{content: '';background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s8_line1.png) no-repeat 50% 0;background-size: 100% auto;width: 4.79rem;height: .38rem;position: absolute;left: 0;bottom: -.18rem;}
.s8rw_txt1{font-size: .22rem;color: #ffd57e;text-align: left;line-height: .26rem;font-family: 'font2';}
.s8rw_txt2{font-size: .16rem;color: #faebca;text-align: left;line-height: .24rem;margin-top: .06rem;}

.btn_s8qwc,.btn_s8qyq,.btn_s8qfx,.btn_s8qjq,.btn_s8lq1,.btn_s8ylq,.btn_s8ywc{background-position: -9.57rem -22.27rem;width:1.43rem;height:0.55rem;margin-right: -.1rem;}
.btn_s8qyq{background-position:-12.77rem -22.27rem;}
.btn_s8qfx{background-position:-14.47rem -22.27rem;}
.btn_s8qjq{background-position:-15.97rem -22.27rem;}
.btn_s8lq1{background-position:-15.74rem -23.61rem;}
.btn_s8ylq{background-position:-14.14rem -23.59rem;}
.btn_s8ywc{background-position:-11.17rem -22.27rem;}





.part9{margin: -1.2rem auto 0;position: relative;z-index: 2;width: 14.4rem;}
.tit9{background-position:-0.33rem -27.17rem;width:14.25rem;height:1.07rem;margin: 0 auto;}
.s9_txt1{font-size: .2rem;color: #faebca;text-align: center;line-height: .3rem;margin: .06rem auto 0;}
.s9_txt2{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s9_txt1.png) no-repeat 50% 0;background-size: 100% auto;margin: .06rem auto 0;width: 14.39rem;height: .86rem;}

.s9_show{width: 11.84rem;height: 8.18rem;margin: .1rem auto 0;position: relative;}
.s9_show .swiper-container{width: 100%;overflow: hidden;}
.s9_show .swiper-container .swiper-slide img{display: block;width: 100%;}
.s9_prev,.btn_qbprev{background-position: -13.26rem -0.43rem;width:0.53rem;height:0.66rem;position: absolute;top: 50%;margin-top: -.33rem;left: -1.28rem;cursor: pointer;}
.s9_next,.btn_qbnext{background-position:-14.14rem -0.43rem;width:0.53rem;height:0.65rem;position: absolute;top: 50%;margin-top: -.33rem;right: -1.28rem;cursor: pointer;}
.s9_tips{font-size: .18rem;color: #faebca;text-align: right;line-height: .3rem;position: absolute;left: 0;bottom: -.36rem;width: 100%;}
.btn_qbprev{left: -.76rem;}
.btn_qbnext{right: -.76rem;}




.part_qb{position: relative;margin: .8rem auto 0;width: 14.4rem;padding-bottom: .6rem;}
.tit_qb{background-position:-0.36rem -29.05rem;width:14.27rem;height:1.07rem;margin: 0 auto;}

.qb_box{margin:.3rem auto 0;width: 12.9rem;position: relative;}
.qb_box .swiper-container{height:2.9rem; width: 12.9rem;overflow: hidden;}

.qb_box .swiper-container .swiper-slide {width:3.94rem; height:2.68rem; display: block; position: relative;box-sizing: border-box;padding-top:.14rem;}
.qb_box .swiper-container .swiper-slide:after{content: '';width:3.94rem; height:2.68rem;background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s10_mask1.png) no-repeat 50% 0;background-size: 100% auto;position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);}
.qb_box a{ display: block; width: 3.67rem;height: 2.42rem;margin: 0 auto;overflow: hidden;position: relative;z-index: 4;border-radius: 0 .35rem 0 .35rem;box-sizing: border-box;border: .01rem solid #ffe287;}
.qb_box a img {display: block; width: 100%;object-fit: cover; transition: .1s all linear; margin: 0 auto;height: 100%;}
.qb_box a:hover { transform: none !important;}
.qb_box a:hover img{ transform: scale(1.02);}


.s10_line{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s10_line1.png) no-repeat 100% 0;width: 6.78rem;height: .85rem;background-size: 6.78rem auto;margin: .2rem auto 0;}

.channel { width: 100%; display: flex;justify-content: center; height: 2rem;box-sizing: border-box;margin: .1rem auto 0;}

.channel li { position: relative; display: flex; flex-direction: column; align-items: center; width: 2.24rem; height: 1.7rem;}

.channel li span {opacity: 0; position: absolute; top: -5%; left: 50%; transform: translateX(-50%); background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/codebg.png) no-repeat 100% /100% 100%; width: 1.6rem; height: 1.6rem;}

.channel li span img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80%; }

.channel li a { width: 1.28rem; height: 1.3rem;background-image:url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/s10_icon.png);background-size: 10.26rem auto; }

.channel li p { color: #faebca; font-size: .22rem;line-height: .3rem;margin: 0 auto;}
.channel li:hover span {
    animation: ani 1s forwards;
}
@keyframes ani {
    0% {
        opacity: 0;
        transform: translate(-50%, 20%);
    }

    to {
        opacity: 1;
        transform: translateX(-50%);

    }
}

.weGame { background-position: 0 0; }
.qq { background-position: -2.25rem 0; }
.wx { background-position:-4.5rem 0 ; }
.wb { background-position: -6.72rem 0; }
.kjq { background-position: -8.98rem 0; }





.pop{display: none;position: relative;box-sizing: border-box;}
.pop_close1{font-size: .8rem;line-height: 1rem;position: absolute;top: -.5rem;right: -.8rem;color: #ffffff;}
.pop_video,.popvdbox {width:10rem;height:6rem;position:relative;}
.popvdbox video{display: block;width: 100%;}
.pop1{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/pop1.png) no-repeat 50% 0;width: 10.03rem;height: 8.3rem;background-size: 100% auto;box-sizing: border-box;padding-top: 1.6rem;}
.pop_close{background:url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/p_close.png);width: .21rem;height: .21rem;position: absolute;top: .3rem;right: .4rem;background-size: 100% auto;}
.pop_rule{width:9.3rem;margin: 0 auto;height:6.4rem;overflow-y: auto;padding-right: .3rem;box-sizing: border-box;overflow-x: hidden;}
.pop_rule p{width: 9.06rem;margin-bottom: .2rem;font-size: .16rem;color: #ffffff;line-height: .28rem;}
.pop_rule p span{display: block;color: #ffffff;font-size: .20rem;line-height: 1.6;margin-bottom: .1rem;}
.pop_rule p em{color: #fbcb65;}
.pop_rule p b{letter-spacing: .02rem;font-weight: normal;}
.tab_rule{width: 70%;margin: 0 auto .3rem;font-size: .14rem;color: #ffffff;line-height: .2rem;text-align: center;}

.tab_rule td,.tab_rule th{border: 1px solid #ffffff;height: .24rem;padding: .04rem .1rem;width: 20%;}
.tab_rule1 td:first-child{width: 50%;}

.tab_rule th{font-size: .16rem;color: #ffffff;}
.pop_rule::-webkit-scrollbar {width:0.06rem;border-radius:0.06rem;}
.pop_rule::-webkit-scrollbar-track {width:0.06rem;background-color:#736856;border-radius:0.06rem;}
.pop_rule::-webkit-scrollbar-thumb {width:0.06rem;background-color:#dab979;border-radius:0.06rem;}

.pop2{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/pop2.png) no-repeat 50% 0;width: 6rem;height: 4.26rem;background-size: 100% auto;}
.p_tips{width: 100%;height: 100%;display: flex;justify-content: center;align-items: center;font-size: .4rem;color: #ffffff;text-align: center;line-height: .6rem;}

.pop3{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/pop3.png) no-repeat 50% 0;width: 10.03rem;height:4rem;background-size: 100% auto;box-sizing: border-box;padding-top: 1.44rem;}
.p_txt1{display: flex;justify-content: center;align-items: center;font-size: .24rem;color: #ffffff;text-align: center;line-height: .3rem;height: 1.58rem;}
.pbtn_box{display: flex;justify-content: center;align-items: center;margin: 0 auto;}
.pbtn_box a{width: 2.17rem;height: .58rem;margin: 0 .15rem;}
.btn_yes{background-position:  -0.35rem -30.92rem;}
.btn_no{background-position:  -2.95rem -30.92rem;}


.pop4{width: 11rem;height: 7.8rem;}
.pop_close2{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/p_close1.png) no-repeat 50% 0;width: .35rem;height: .35rem;background-size: 100% auto;position: absolute;top: 0.84rem;right: 0;z-index: 12;}
.swiper-button-disabled{opacity: 0;}
.p_swiper{width: 100%;height: 100%;position: relative;}
.p_swiper .swiper-container{width: 100%;height: 100%;position: relative;overflow: hidden;}
.p_subtit1{font-size: .46rem;color: #dfdabd;text-align: center;line-height: .56rem;}
.p_swiper img{width: 10.6rem;display: block;margin: 0 auto;}

.p_info{display: flex;justify-content: center;align-items: flex-start;margin: -.1rem auto 0;font-size: .16rem;color: #dfdabd;line-height: .3rem;}
.p_info i{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/p_icon1.png) no-repeat 50% 0;width: .12rem;height: .13rem;background-size: 100% auto;margin-top: .08rem;margin-right: .1rem;}
.p_info p{max-width: 8.8rem;}

.p_prev{background-position: -13.26rem -0.43rem;width:0.53rem;height:0.66rem;position: absolute;top: 45%;margin-top: -.33rem;left: -1rem;}
.p_next{background-position: -14.14rem -0.43rem;width:0.53rem;height:0.66rem;position: absolute;top: 45%;margin-top: -.33rem;right: -1rem;}

.pop5{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250828/images/pop4.png) no-repeat 50% 0;width: 10.03rem;height: 7.6rem;background-size: 100% auto;padding-top: 1.6rem;}
.card_table{width: 90%;margin: 0 auto;}
.card_table table{width: 100%;font-size: .2rem;color: #ffffff;border: 1px solid #ffffff;}
.card_table table th,.card_table table td{border: 1px solid #ffffff;height: .4rem;text-align: center;word-break: break-all;}
.card_table table td{width: 14%;box-sizing: border-box;text-align: center;padding: 0;}
.card_table table th:nth-child(2){width: 5rem;box-sizing: border-box;padding: 0 .1rem;text-align: left;}
.card_table table td a{font-size: .2rem;color: #ffffff;text-align: center;text-decoration: underline !important;text-underline-offset: .06rem;}
.card_table table tr th {text-align: center !important;}
.card_table table .ellip {word-break: break-all;white-space: nowrap;text-overflow: ellipsis;overflow: hidden;}
/*animation In&Out*/
.toRight,
.toRightSmall,
.toLeft,
.toLeftSmall,
.toBottom,
.toBottomSmall,
.toTop,
.toTopSmall,
.scaleIn {
    transition: all .6s;
    opacity: 0;
}
.tit2.toBottomSmall{transition: transform .6s;}

.toRight {
    transform: translate3d(-1000px, 0, 0);
}

.toRightSmall {
    transform: translate3d(-200px, 0, 0);
}

.toLeft {
    transform: translate3d(1000px, 0, 0);
}

.toLeftSmall {
    transform: translate3d(200px, 0, 0);
}

.toBottom {
    transform: translate3d(0, -1000px, 0);
}

.toBottomSmall {
    transform: translate3d(0, -200px, 0);
}

.toTop {
    transform: translate3d(0, 1000px, 0);
}

.toTopSmall {
    transform: translate3d(0, 200px, 0);
}

.scaleIn {
    transform: scale(1.4, 1.4);
}
.part{pointer-events: none;z-index: 2;}
/*.part{transform: scale(.92);}*/
.part.head{transform: scale(1);}
.s1_pic,.s1_bgbox,.s1_video1{transform: scale(1.1);}
.part.head,
.part.show{pointer-events: all;}
.part.show .toRight,
.part.show .toRightSmall,
.part.show .toLeft,
.part.show .toLeftSmall,
.part.show .toBottom,
.part.show .toBottomSmall,
.part.show .toTop,
.part.show .toTopSmall {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.part.show .scaleIn {
    transform: scale(1, 1);
    opacity: 1;
}

/*transition delay*/
.part.show .delay1 {
    transition-delay: .1s;
}

.part.show .delay2 {
    transition-delay: .2s;
}

.part.show .delay3 {
    transition-delay: .3s;
}

.part.show .delay4 {
    transition-delay: .4s;
}

.part.show .delay5 {
    transition-delay: .5s;
}

.part.show .delay6 {
    transition-delay: .6s;
}

.part.show .delay7 {
    transition-delay: .7s;
}

.part.show .delay8 {
    transition-delay: .8s;
}

.part.show .delay9 {
    transition-delay: .9s;
}

.part.show .delay10 {
    transition-delay: 1s;
}

/*::-webkit-scrollbar {width:0.06rem;border-radius:0.06rem;}
::-webkit-scrollbar-track {width:0.06rem;background-color:#75614c;border-radius:0.06rem;}
::-webkit-scrollbar-thumb {width:0.06rem;background-color:#ffe26e;border-radius:0.06rem;}*/
.part7,.part8,.part9{transform: scale(.9);transform-origin: 50% 50%;}
