
/** 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:#2b0e0d;}
.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;}
.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/mingchao20250724/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);}

@font-face {
	font-family:'font1';
	src: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/font1.ttf);
}
@font-face {
	font-family:'font2';
	src: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/font2.ttf);
}
@font-face {
	font-family:'font3';
	src: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/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/mingchao20250724/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/mingchao20250724/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 -.61rem;}
.btn_nav4{background-position: 0 -2.27rem;}
.btn_nav5{background-position: 0 -2.86rem;margin-bottom: .06rem !important;}
.btn_nav6{background-position: 0 -3.46rem;}

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

.login{background-position:-0.6rem -4.12rem;width:0.16rem;height:0.18rem;margin: 0 auto;}
.nav_icon, .logineg_box{display: flex;justify-content: space-around;align-items: center;}
.share{background-position: -0.1rem -4.48rem;width:0.15rem;height:0.18rem;}
.qqbtn{background-position:-0.6rem -4.48rem;width:0.16rem;height:0.18rem;}
.game1{background-position:-1.07rem -4.49rem;width:0.19rem;height:0.14rem;}
.logineg_box a,.logineg_box a:hover{background: none;}
.logineg_box a{font-size: .16rem;color: #faebca;text-align: center;line-height: .26rem;}
.down1{background-position:0 -5.22rem;width:1.35rem;height:0.32rem;margin: 0.14rem auto 0;}
.start1{background-position:0 -4.83rem;width:1.35rem;height:0.32rem;margin: .14rem auto 0;}
.nav_list{height: 0;overflow: hidden;transition: height .4s linear;}
.nav_item:hover .nav_list{height: 1.2rem;padding-top: .1rem;}
.nav_list a,.nav_list a:hover{display: block;background:url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/nav_line1.png) no-repeat 50% 100%;background-size: 100% auto;width: 1.33rem;height: .3rem;margin: 0 auto;font-size: .12rem;color: #ffd57e;text-align: left;line-height: .3rem;transition: all .2s linear;}
.nav_list a:hover{color: #ffffff;}
.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.08rem;position: fixed;top: 72vh;right: .2rem;z-index: 999;background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/float1.png) no-repeat 50% 0;background-size:2.19rem 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/mingchao20250724/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/mingchao20250724/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);}
}

.head{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/hd.jpg) no-repeat 50% 100%;width: 100%;background-size: 100% auto;height: 11.8rem;}
.video_box{width: 100%;position: absolute;top: 0;left: 0;-webkit-mask-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/mask1.png);-webkit-mask-size: 19.2rem 10.8rem;}
.video_box video{width: 100%;display: block;}
.logo1{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/logo1.png) no-repeat 50% 0;width:3.67rem;height: .66rem;background-size: 100% auto;position: absolute;top: .45rem;left:.3rem;z-index: 2;}

.hd_box{position: absolute;width: 100%;left: 0;bottom: 1.18rem;}

.s1_btnbox1{display: flex;justify-content: center;align-items: center;margin: 0 auto;}
.s1_btnbox1 a{width:6.02rem;height:1.64rem;margin: 0 .06rem;}
.s1_btn1{background-position: -0.59rem -0.35rem;}
.s1_btn2{background-position: -6.97rem -0.36rem;}
.s1_btn1:hover{background-position: -0.59rem -2.26rem;}
.s1_btn2:hover{background-position: -6.97rem -2.25rem;}

.btn_hdxz,.btn_hdqd{display: block;background-position: -13.62rem -0.53rem;width:3.39rem;height:1.13rem;margin: 0 auto .18rem;position: relative;z-index: 2;}
.btn_hdxz{background-position: -13.62rem -1.73rem;}

.slogan{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/slogan.png) no-repeat 50% 0;width: 13.22rem;height: 3.86rem;background-size: 100% auto;position: relative;margin-bottom: -.16rem;margin-left: 4.34rem;}
.btn_hdvd{background-position: -17.59rem -0.54rem;width:1.34rem;height:1.37rem;position: absolute;top: 1.38rem;left: 8.9rem;}

.bg1{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/rp1.jpg) no-repeat 50% 0 #431717;background-size: 100% auto;position: relative;margin: 2.86rem auto 0;padding-bottom: 2.58rem;padding-top: 1px;}
.bg2{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/rp2.jpg) no-repeat 50% 0 #48261a;background-size: 100% auto;position: relative;padding-bottom: 3.98rem;padding-top: 1px;box-sizing: border-box;padding-left: .6rem;}
.bg3{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/rp3.jpg) no-repeat 50% 0;background-size: 100% auto;position: relative;height: 17.8rem;box-sizing: border-box;padding-left: .6rem;padding-top: 1px;}
.bg1:after{content: '';background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/rp_mask1.png) no-repeat 50% 0;width: 100%;height: 8.8rem;background-size: 100% auto;position: absolute;left: 0;top: -8.78rem;pointer-events: none;}
.bg2:after{content: '';background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/rp_mask2.png) no-repeat 50% 0;width: 100%;height: 8.6rem;background-size: 100% auto;position: absolute;left: 0;top: -8.58rem;pointer-events: none;}
.bg3:after{content: '';background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/rp_mask3.png) no-repeat 50% 0;width: 100%;height: 9rem;background-size: 100% auto;position: absolute;left: 0;top: -8.98rem;pointer-events: none;}

.part1{margin: -1.94rem auto 0;position: relative;z-index: 2;transform-origin: 0 50% !important;transform: scale(.96) !important;}
.tit1{background-position: -0.56rem -17.78rem;width:14.3rem;height:1.02rem;margin-left: 3.42rem;position: relative;z-index: 3;}
.s1_box{width: 100%;margin: -1.18rem auto 0;height: 10.1rem;position: relative;}
.s1_ct{display: none;position: relative;}
.s1_pic1{display: block;width: 100%;margin: 0 auto;}
.player-container{width: 100%;height: 11.1rem;margin: 0 auto;position: absolute;top: 0;left: 1rem;}
.s1_info1{width: 5.5rem;position: absolute;top: 2rem;left: 4.34rem;}
.s1_info1:before{content: '';background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s1_bg2.png) no-repeat 50% 0;width: 4.47rem;height: 4.42rem;background-size: 100% auto;position: absolute;top: -1.12rem;left: -.88rem;pointer-events: none;}
.s1_info2:before{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s1_bg2_1.png);}
.s1_info3:before{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s1_bg2_2.png);}
.s1_name{display: flex;justify-content: flex-start;align-items: center;font-family: 'font2';font-size: .58rem;color: #dab67d;text-align: left;line-height: .7rem;}

.s1_star,.s1_star2{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/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/mingchao20250724/images/s1_star2.png);width: 1.45rem;}
.s1_item1{display: flex;justify-content: flex-start;align-items: center;margin: .1rem auto 0;}
.s1_icon1{display: block;width: .35rem;}
.s1_txt1{font-size: .24rem;color: #d5d5d5;text-align: left;line-height: .34rem;margin-left: .14rem;width: .9rem;}
.s1_audio{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s1_bg3.png) no-repeat 50% 0;width: 2.4rem;height: .3rem;background-size: 100% auto;box-sizing: border-box;padding-left: .16rem;font-size: .18rem;color: #ffffff;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/mingchao20250724/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{left: 2.4rem;top: 1.4rem;}
.s1_ct1 .s1_info1 .s1_vdbox{margin-top: 1.4rem;}

.s1_swiper{width: 3.6rem;height: 6.8rem;position: absolute;top: 1.7rem;right: 1rem;overflow: hidden;-webkit-mask-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/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: -15.28rem -3.21rem;width:0.53rem;height:0.66rem;position: absolute;top: 4.52rem;left: 3.2rem;}
.btn_s1next2{background-position: -16.52rem -3.21rem;width:0.53rem;height:0.66rem;position: absolute;top: 4.52rem;right: .24rem;}


.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/mingchao20250724/images/sp.png) no-repeat -2.64rem -16.76rem;width:0.17rem;height:0.21rem;background-size: 19.2rem auto;margin: 0 .1rem !important;opacity: 1;}
.s1-pagination span.swiper-pagination-bullet-active{background-position: -3.01rem -16.74rem;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: #492019;border-radius: .24rem 0 .2rem 0;}
.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/mingchao20250724/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;}
.s1_iconl{background-position: -12.13rem -22.3rem;width:0.43rem;height:0.11rem;margin-top: -.08rem;}
.s1_icon2{background-position: -13.3rem -22.3rem;width:0.43rem;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;}

.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/mingchao20250724/images/s1_bg1.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/mingchao20250724/images/s1_mask1.png);}

.s1_swiper .swiper-slide:hover .s1_rbox1{width: 3rem;height: 1.3rem;filter: brightness(1.2);}
.s1_swiper .swiper-slide-active:hover .s1_rbox1{width: 3.51rem;height: 1.55rem;filter: brightness(1);}
.part2{margin: .57rem auto 0;position: relative;padding-top: 1px;transform-origin: 0 50% !important;transform: scale(.96) !important;}
.tit2{background-position: -0.51rem -19.2rem;width:14.39rem;height:1.01rem;margin-left: 3.4rem;}
.s2_box{width: 100%;height: 11.2rem;margin: -1.9rem auto 0;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/mingchao20250724/images/s2_bg1.png) no-repeat 50% 0;width: 6.91rem;height: 6.91rem;position: absolute;top: .9rem;left: 3.5rem;background-size: 100% auto;}
.s2_pic{width: 100%;display: block;}
.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: -4.3rem -16.75rem;width:0.38rem;height:0.31rem;}
.s2_icon2{background-position: -5.23rem -16.75rem;width:0.38rem;height:0.31rem;}
.s2_name1 span{font-family: 'font2';font-size: .58rem;color: #dab67d;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/mingchao20250724/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.75rem;cursor: pointer;pointer-events: all !important;}
.s2_swiper .swiper-slide p{width: 1.68rem;height: 1.68rem;margin: 0 auto;background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s2_icon2.png);background-size: 10.73rem auto;}
.s2_swiper .swiper-slide-active p{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s2_icon1.png);transition: .2s all linear;}
.s2_btn1{background-position: 0 0;}
.s2_btn2{background-position: -1.78rem 0;}
.s2_btn3{background-position: -3.56rem 0;}
.s2_btn4{background-position: -5.34rem 0;}
.s2_btn5{background-position: -7.26rem 0;}
.s2_btn6{background-position: -9.04rem 0;}

.btn_s2prev1{background-position: -15.28rem -3.21rem;width:0.53rem;height:0.66rem;position: absolute;top: 4rem;left: 2.6rem;z-index: 11;}
.btn_s2next1{background-position: -16.52rem -3.21rem;width:0.53rem;height:0.66rem;position: absolute;top: 4rem;right: .7rem;z-index: 11;}

.part3{margin: .4rem auto 0;position: relative;padding-left: 1.74rem;transform-origin: 0 50% !important;transform: scale(.94) !important;}
.tit3{background-position: -1.57rem -21.11rem;width:8.11rem;height:0.8rem;margin: 0 auto;}
.s3_line1{width: 14.3rem;height: .01rem;background: #b5aea1;margin: .24rem auto 0;display: block;}
.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: -11.61rem -21.14rem;width:2.78rem;height:0.36rem;position: absolute;top: 9.6rem;right: 1.54rem;display: flex;justify-content: center;align-items: center;}
.s3_btn1 a{width: 50%;height: 100%;}

.s3_info{width: 14.3rem;margin: .54rem 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;transform-origin: 0 50% !important;transform: scale(.96) !important;padding-left: 1.74rem;}
.tit4{background-position: -1.56rem -22.68rem;width:8.14rem;height:0.8rem;margin: 0 auto;}
.s4_show{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s4_show.png) no-repeat 50% 0;width: 7.18rem;height:13.54rem;background-size: 100% auto;margin: .2rem auto 0;}

.part5{margin: -2rem auto 0;position: relative;z-index: 2;}
.tit5{background-position: -0.45rem -7.13rem;width:11.11rem;height:0.8rem;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/mingchao20250724/images/s5_bg2.png) no-repeat 50% 0;width: 7.66rem;height: 5.88rem;background-size: 100% auto;box-sizing: border-box;padding-top: .4rem;position: relative;}
.s5_sub1{width:5.17rem;height:0.45rem;margin: 0 auto;position: relative;}
.btn_s5rule{background-position: -17.71rem -2.11rem;width:0.37rem;height:0.37rem;position: absolute;top: 0;right: 1.1rem;}
.s5_txt1{font-size: .2rem;color: #fff8dd;text-align: left;line-height: .26rem;margin:0 auto;padding-left: .42rem;}
.btn_s5lb{font-size: .2rem;color: #e8c374;line-height: .3rem;text-decoration: underline !important;text-underline-offset: .1rem;position: absolute;top: .8rem;right: .38rem;}
.list_s5{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s5_bg3.png) no-repeat 50% 0;width: 6.89rem;height: 4.3rem;background-size: 100% auto;margin: .16rem auto 0;box-sizing: border-box;padding-top: .1rem;}
.list_s5 li{height: 1.02rem;width: 6.42rem;background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s5_line1.png) no-repeat 100% 100%;background-size: 4.34rem 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/mingchao20250724/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.2rem;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: -11.15rem -5.79rem;width:2.08rem;height:0.76rem;font-size: 0;text-indent: -999em;}
.btn_s5ylq{background-position: -8.85rem -5.79rem;}

.s5_fl{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s5_bg1.png) no-repeat 50% 0;width: 6.36rem;height: 5.88rem;background-size: 100% auto;box-sizing: border-box;padding-top: .9rem;}
.s5_pic{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s5_pic1.png) no-repeat 50% 0;width: 5.63rem;height: 3.76rem;margin: 0 auto;background-size: 100% auto;}
.s5_fl .btn_s5lq,.s5_fl .btn_s5ylq{margin: 0 auto;background-position: -14.97rem -5.34rem;width:2.48rem;height:0.9rem;}
.s5_fl .btn_s5ylq{background-position: -14.97rem -4.24rem;}

.part6{margin: 1.14rem auto 0;}
.tit6{background-position: -0.56rem -8.35rem;width:14.36rem;height:0.88rem;margin: 0 auto;}
.s6_box{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s6_bg1.png) no-repeat 50% 0;width: 14.63rem;height: 6.2rem;background-size: 100% auto;margin: -.5rem auto 0;display: flex;justify-content: center;align-items: flex-start;box-sizing: border-box;padding-top: .82rem;position: relative;}

.s6_fl{width: 7.6rem;}
.s6_hb1{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s6_hb1.png) no-repeat 50% 0;width: 4.49rem;height: 3.88rem;background-size: 100% auto;position: relative;box-sizing: border-box;padding-top: 2rem;padding-right: .24rem;}
.s6hb_num1{font-size: .4rem;color: #fff6ae;text-align: center;line-height: .6rem;background-image: linear-gradient(#fffad3,#fffad3,#fff7b5,#fff7b5);-webkit-background-clip: text;-webkit-text-fill-color: transparent;filter: drop-shadow(0 0 .04rem #ba4f3a);}
.s6hb_num1 span{font-size: .55rem;font-family: 'font3';font-weight: bold;padding-right: .04rem;}
.s6hb_num2{background-position: -14.03rem -9.91rem;width:3.47rem;height:0.41rem;margin: .12rem auto 0;font-size: .2rem;color: #fff8dd;text-align: center;line-height: .36rem;}

.s6hb_num3{width: 3.68rem;position: absolute;right: -3.1rem;top: 1.14rem;}
.s6hb_num3 span{font-size: .68rem;color: #fff6ae;font-family: 'font3';display: block;text-align: center;line-height: .8rem;background-image: linear-gradient(#f4e8a2,#f4e8a2,#bca261,#bca261);-webkit-background-clip: text;-webkit-text-fill-color: transparent;filter: drop-shadow(0 0 .04rem #0f1622);}
.s6hb_num3 em{display: block;background-image: linear-gradient(#f4e8a2,#f4e8a2,#bca261,#bca261);-webkit-background-clip: text;-webkit-text-fill-color: transparent;filter: drop-shadow(0 0 .04rem #0f1622);font-size: .36rem;color: #fff6ae;text-align: center;line-height: .5rem;margin: .2rem auto 0;}

.s6hb_num3 p{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s6_tips1.png) no-repeat 50% 0;width: 3.46rem;height: .32rem;background-size: 100% auto;margin:  .1rem auto 0;font-size: .19rem;color: #d3bf7c;text-align: center;line-height: .32rem;}
.s6hb_num3 p i{font-style: normal;}

.s6btn_box1{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s6_line1.png) no-repeat 0% 44%;width: 7rem;background-size: 6.92rem auto;margin-left: .3rem;margin-top: -.14rem;}
.btn_s6cy1{background-position: -0.27rem -9.58rem;width:3.41rem;height:1.16rem;display: block;margin: 0 auto;}
.btn_s6lq{background-position: -4.12rem -9.59rem;width:3.41rem;height:1.16rem;display: block;margin: 0 auto;}
.s6_ylq{background-position: -8.24rem -9.46rem;width:4.1rem;height:1.16rem;margin: 0 auto;}


.list_s6rw{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s6_bg2.png) no-repeat 50% 0;width: 5.89rem;height: 2.3rem;background-size: 100% auto;margin-top: 2.38rem;margin-right: .3rem;}

.list_s6rw li{width: 5.54rem;margin: 0 auto;height: 1.15rem;display: flex;justify-content: space-between;align-items: center;}

.btn_s6yq1,.btn_s6yq1_gray,.btn_s6lq1,.btn_s6ylq1{background-position: -2.46rem -11.05rem;width:1.91rem;height:0.8rem;}
.btn_s6yq1_gray{background-position: -0.36rem -11.05rem;}
.btn_s6lq1{background-position: -6.57rem -11.05rem;}
.btn_s6ylq1{background-position: -4.47rem -11.05rem;}

.s6_txt1{font-size: .28rem;color: #ffd57e;line-height: .38rem;text-align: left;font-family: 'font2';}
.s6_txt1 a{color: #ffd57e;display: inline-block;vertical-align: top;position: relative;text-decoration: underline !important;text-underline-offset: .06rem;}
.s6_txt1 a:hover{transform: translateY(0);}
.s6_txt1 a em{position: absolute;background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s6_bg3.png) no-repeat 50% 0;width: 2.83rem;height: .8rem;font-size: .19rem;color: #ffd57e;text-align: left;line-height: .24rem;font-family: 'font1';background-size: 100% auto;top: -.8rem;left: 50%;margin-left: -1.62rem;opacity: 0;transform: translateY(.2rem);transition: .2s all linear;display: flex;justify-content: center;align-items: center;box-sizing: border-box;padding:0 .16rem .1rem;pointer-events: none;}
.s6_txt1 a:hover em{opacity: 1;transform: translateY(0);pointer-events: all;}
.s6_txt2{font-size: .19rem;color: #fff8dd;text-align: left;line-height: .28rem;margin-top: .06rem;}
.s6_tips1{position: absolute;right: .3rem;bottom: -.34rem;font-size: .16rem;color: #b7995f;text-align: right;line-height: .34rem;}
.s6_tips1 a{text-decoration: underline !important;color: #b7995f;text-underline-offset: .06rem;display: inline-block;vertical-align: top;}

.part7{margin: 1.12rem auto 0;position: relative;}
.tit7{background-position: -0.55rem -12.23rem;width:13.51rem;height:0.88rem;margin: 0 auto;}
.s7_box{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_bg1.png) no-repeat 50% 0;width: 14.45rem;height: 9.88rem;margin: .24rem auto 0;position: relative;display: flex;justify-content: center;align-items: flex-start;background-size: 100% auto;}

.s7_fl{width: 7.06rem;padding-top: .48rem;}
.s7_hb1{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_hb1.png) no-repeat 50% 0;width: 6.93rem;height: 4.9rem;background-size: 100% auto;position: relative;box-sizing: border-box;padding-left: .22rem;}
.s7_hbicon1{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_icon1.png) no-repeat 50% 0;width: 1.11rem;height: 1.13rem;background-size: 100% auto;position: absolute;top: .43rem;right: 1.3rem;}
.s7_hbtxt1{font-size: .26rem;color: #d1642e;text-align: center;line-height: .4rem;padding-top: 1.84rem;}

.btn_s7qiang,.btn_s7gray,.btn_s7suo{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_btn1.gif) no-repeat 50% 0;width: 1.7rem;height: 1.7rem;background-size: 100% auto;margin: 0 auto;position: relative;}
.btn_s7gray{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_btn2.png) no-repeat 50% 0;background-size: 100% auto;}
.btn_s7suo{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_btn1.png) no-repeat 50% 0;background-size: 100% auto;pointer-events: none;}
.btn_s7suo:hover{transform: none !important;}
.btn_s7suo:after{content: '';background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_suo.png) no-repeat 50% 0;width: 2.06rem;height: 2.2rem;background-size: 100% auto;position: absolute;top: 50%;left: 50%;transform: translate(-50%,-44%);}
.s7_hbtxt2{font-size: .21rem;color: #fffaea;text-align: center;line-height: .3rem;margin: .2rem auto 0;}

.s7_rwbox{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_bg2.png) no-repeat 50% 0;width: 6.49rem;background-size: 100% auto;margin: .16rem auto 0;position: relative;border-radius: .4rem 0 .4rem 0;padding: .16rem 0;}
.s7_rwtxt1{background-position: -9.74rem -10.85rem;width:5.86rem;height:0.37rem;margin: 0 auto;}
.s7_rwtxt2{background-position: -9.74rem -11.38rem;width:5.86rem;height:0.37rem;margin: 0 auto;}

.s7_rwitem{width: 5.86rem;height:0.54rem;display: flex;justify-content: space-between;align-items: center;margin: 0 auto;flex-shrink: 0;}
.s7_rwitem p{font-size: .19rem;color: #fff8dd;text-align: left;line-height: .3rem;}
.s7_rwitem p a{text-decoration: underline !important;text-underline-offset: .06rem;color: #fff8dd;position: relative;}
.s7_rwitem p a em{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_bg3.png) no-repeat 50% 0;width: 5.53rem;height: .8rem;background-size: 100% auto;position: absolute;top: .4rem;left: 0;font-size: .19rem;color: #ffd57e;line-height: .24rem;display: flex;justify-content: center;align-items: center;box-sizing: border-box;padding: .12rem .1rem 0;white-space: nowrap;opacity: 0;transform: translateY(-.2rem);transition: .2s all linear;pointer-events: none;}
.s7_rwitem2{position: relative;z-index: 2;}
.s7_rwitem2 p a em{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_bg4.png) no-repeat 50% 0;width: 3.61rem;height: .52rem;background-size: 100% auto;}
.s7_rwitem p a:hover em{opacity: 1;transform: translateY(0);pointer-events: all;}

.btn_s7qyq,.btn_s7qwc1,.btn_s7lq1,.btn_s7ywc1,.btn_s7ylq1{background-position: -0.49rem -16.54rem;width:1.61rem;height:0.68rem;}
.s7_rwitem2>a{margin-top: .1rem;}
.btn_s7qwc1{background-position: -0.61rem -13.5rem;}
.btn_s7lq1{background-position:-2.41rem -13.5rem;}
.btn_s7ywc1{background-position: -4.24rem -13.5rem;}
.btn_s7ylq1{background-position: -6.04rem -13.5rem;}

.s7_rwitem1{margin: .1rem auto 0;}

.s7_fr{width: 6.4rem;padding-top: .4rem;}
.s7_pttxt1{font-size: .19rem;color: #fff8dd;text-align: right;line-height: .3rem;}
.s7_ptbox{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_ptbg1.png) no-repeat 50% 0;width: 6.39rem;height: 8.5rem;background-size: 100% auto;margin: .14rem auto 0;position: relative;}
.s7_pt{width: 6.39rem;height: 8.5rem;position: absolute;top: 0;left: 0;background-size: 100% auto;}
.s7_pt.show{opacity: 0;}
.s7_pt1{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_pt1.png);}
.s7_pt2{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_pt2.png);}
.s7_pt3{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_pt3.png);}
.s7_pt4{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_pt4.png);}
.s7_pt5{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_pt5.png);}
.s7_pt6{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_pt6.png);}
.s7_pt7{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_pt7.png);}
.s7_pt8{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_pt8.png);}
.s7_pt9{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_pt9.png);}
.s7_pt10{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_pt10.png);}
.s7_pt11{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_pt11.png);}
.s7_pt12{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s7_pt12.png);}

.part8{margin: 1.18rem auto 0;position: relative;}
.tit8{background-position: -0.17rem -14.49rem;width:13.31rem;height:0.88rem;margin: 0 auto;}
.s8_mdbox{background-position: -0.8rem -15.65rem;width:12.48rem;height:0.79rem;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: .06rem;}
.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.34rem;}
.s8_box1{width: 9.4rem;left: 0;height: 9rem;position: relative;}
.s8_elem1{width: 9.4rem;position: absolute;top: 0;left: 0;}
.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/mingchao20250724/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/mingchao20250724/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/mingchao20250724/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_cjbox2 p:after{content: '';background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/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/mingchao20250724/images/s8_djbg5.png);top: 0;}
.s8_cjbox2 p.s8_gift4:after{top: -.06rem;}
.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_gift3{right: 0.3rem;top: 1.52rem;}
.s8_cjbox2 p.s8_gift4{right: 0;top: 3.12rem;}
.s8_cjbox2 p.s8_gift5{right: .33rem;top: 4.66rem;}
.s8_cjbox2 p.s8_gift8{top:  4.8rem;right: 0;}

.btn_s8cj,.btn_s8ycj{background-position:-15.25rem -13.1rem;width:3.36rem;height:1.54rem;display: block;position: absolute;top: 6.5rem;left: 50%;margin-left: -1.68rem;z-index: 5;box-sizing: border-box;padding-top: 0.14rem;color: #503924;text-align: center;}
.btn_s8cj p{padding-top: .76rem;font-size: .18rem;color: #7e2931;text-align: center;line-height: .26rem;}

.btn_s8rule{position: absolute;top: 8.1rem;left: 50%;margin-left: -1.68rem;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: -8.76rem -13.59rem;width:3.23rem;height:0.47rem;position: relative;}
.btn_s8lb{background-position:-12.83rem -13.29rem;width:1.71rem;height:0.83rem;position: absolute;top:-.2rem;right: 0;}


.list_s8rw{margin: .22rem auto 0;background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/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/mingchao20250724/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: -15.67rem -14.91rem;width:1.47rem;height:0.7rem;margin-right: -.1rem;}
.btn_s8qyq{background-position: -17.28rem -14.89rem;}
.btn_s8qfx{background-position: -17.28rem -15.69rem;}
.btn_s8qjq{background-position: -17.28rem -16.49rem;}
.btn_s8lq1{background-position: -15.67rem -15.71rem;}
.btn_s8ylq{background-position: -14.07rem -15.71rem;}
.btn_s8ywc{background-position: -14.07rem -14.91rem;}





.part9{margin: -1.94rem auto 0;position: relative;z-index: 2;}
.tit9{background-position: -1.36rem -4.46rem;width:12.91rem;height:0.8rem;margin: 0 auto;}
.s9_txt1{font-size: .2rem;color: #fbfbd3;text-align: center;line-height: .3rem;margin: .16rem auto 0;}
.s9_txt2{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s9_txt1.png) no-repeat 50% 0;background-size: 100% auto;margin: .36rem auto 0;width: 14.23rem;height: .86rem;}

.s9_show{width: 12.04rem;height: 8.28rem;margin: .26rem 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: -15.28rem -3.21rem;width:0.53rem;height:0.66rem;position: absolute;top: 50%;margin-top: -.33rem;left: -1.28rem;cursor: pointer;}
.s9_next,.btn_qbnext{background-position: -16.52rem -3.21rem;width:0.53rem;height:0.66rem;position: absolute;top: 50%;margin-top: -.33rem;right: -1.28rem;cursor: pointer;}
.s9_tips{font-size: .18rem;color: #b7995f;text-align: right;line-height: .3rem;position: absolute;left: 0;bottom: -.3rem;width: 100%;}
.btn_qbprev{left: -.82rem;}
.btn_qbnext{right: -.82rem;}




.part_qb{height: 7.78rem;position: relative;margin: 1rem auto 0;}
.tit_qb{background-position:-1.22rem -5.87rem;width:6.91rem;height:0.8rem;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.9rem; height:2.96rem; display: block; position: relative;box-sizing: border-box;padding-top:.26rem;}
.qb_box .swiper-container .swiper-slide:before{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/s10_mask1.png) no-repeat 50% 0;background-size: 100% auto;width:4.14rem; height:2.88rem;position: absolute;top: 50%;left: 50%;content: '';pointer-events: none;transform: translate(-50%,-50%);z-index: 3;}
.qb_box a{ display: block; width: 3.66rem;height: 2.4rem;margin: 0 auto;overflow: hidden;position: relative;z-index: 1;border-radius: 0 .35rem 0 .35rem;}
.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/mingchao20250724/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/mingchao20250724/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/mingchao20250724/images/s10_icon.png);background-size: 10.29rem auto; }

.channel li p { color: #faebca; font-size: .2rem;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.27rem 0; }
.wx { background-position:-4.53rem 0 ; }
.wb { background-position: -6.75rem 0; }
.kjq { background-position: -9.01rem 0; }




.parthy{padding-bottom: 3.2rem;margin: -2rem auto 0;position: relative;z-index: 2;}
.hy_tit1{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/n_tit1.png) no-repeat 50% 0;width: 11.93rem;height: .8rem;margin: 0 auto;background-size: 100% auto;margin: 0 auto;}
.hy_box{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/n_gift1.png) no-repeat 50% 0;width: 14.45rem;height: 5.08rem;background-size: 100% auto;margin: .2rem auto 0;position: relative;box-sizing: border-box;padding-top: .22rem;}
.hy_txt1{font-size: .28rem;color: #ffd57e;text-align: center;line-height: .38rem;font-family: 'font2';height: .4rem;}
.btn_hylq,.btn_hyylq{background: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/n_btn1.png) no-repeat 50% 0;width: 3.08rem;height: .9rem;background-size: 100% auto;margin: 3.2rem auto 0;}
.btn_hyylq{background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/images/n_btn2.png);}



.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/mingchao20250724/images/pop1.png) no-repeat 50% 0;width: 10.12rem;height: 8.41rem;background-size: 100% auto;box-sizing: border-box;padding-top: 1.6rem;}
.pop_close{background:url(https://wegame.gtimg.com/tgp_act/release/wegame/mingchao20250724/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;}
.tab_rule td{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/mingchao20250724/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/mingchao20250724/images/pop3.png) no-repeat 50% 0;width: 10.15rem;height: 5.11rem;background-size: 100% auto;}

/*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;}
.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;}*/

.s6btn_box1 .btn_s5lq, .s6btn_box1 .btn_s5ylq{
  margin: 0 auto;
  transform: scale(1.2) !important;
}
