* {
	font-family: "Helvetica Neue", "Microsoft YaHei", sans-serif;
}  
html.dark {
	filter: invert(1) hue-rotate(180deg);

	img,
	.snowflake,
	.site-box,
	.back-btn,
	.youxi-box-jindutiao,
	#goToPage {
		filter: invert(1) hue-rotate(180deg);
	}
}
html.dark .site-box img {
	filter: none !important;
}
:root {
	--caidan: #fff;
    --wd: 400;
}

/* 1. 重置基础动画和混合模式 */
::view-transition-old(root),
::view-transition-new(root) {
  animation: none; /* 禁用默认动画 */
  mix-blend-mode: normal; /* 使用正常混合模式 */
}

/* 2. 亮色主题时的层级控制 */
::view-transition-old(root) {
  z-index: 1; /* 旧视图(亮色)在底层 */
}

::view-transition-new(root) {
  z-index: 2147483646; /* 新视图(暗色)在顶层(最大z-index值) */
}

/* 3. 暗色主题时的层级反转 */
html.dark::view-transition-old(root) {
  z-index: 2147483646; /* 旧视图(暗色)在顶层 */
}

html.dark::view-transition-new(root) {
  z-index: 1; /* 新视图(亮色)在底层 */
}

body {
	display: none;
	margin: 0;
	font-size: 16px;
	width: 100%;
	overflow-x: hidden;
}

.mySwiper {
	width: 100%;
	height: 100px;
	margin-bottom: 5px;
}
  
.mySwiper .swiper-slide {
	width: 384px;
	height: 96px;
	border-radius: 4px;
	overflow: hidden;
}

.mySwiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
  

img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	margin-bottom: 10px;
}

p {
	margin: 0;
}

.transition-all {
	transition-duration: .3s;
	transition-property: all;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.bj {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 110vw;
	height: 110vh;
	object-fit: cover;
	border-radius: 0;
}

.box {
	width: 100%;
	max-width: 1150px;
	margin: 0 auto;
	background-color: #080717BB;
	height: 100%;
	/* min-height: 100vh; */
	/* margin-top: 20px; */
	padding: 10px;
	/* border-radius: 12px; */
	/* border: 3px solid rgba(0, 0, 0, .1); */
	animation: yundon 3s linear infinite;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	scrollbar-width: none;
}
.box::-webkit-scrollbar {
    display: none;
}
.snowflake {
	position: fixed;
	color: #fff;
	font-size: 20px;
	pointer-events: none;
	opacity: .95;
	height: auto;
	z-index: 100;
}

.top {
	width: 100%;
	height: 50px;
	background-color: rgba(0, 0, 0, 0);
	line-height: 60px;
	color: #fff;
	font-weight: 800;
	text-align: right;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.top-btns {
	width: 100px;
	display: flex;
	justify-content: space-between;
}
.mask {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .3);
	z-index: 2;
	display: none;
}

.tab {
	position: fixed;
	top: 0;
	right: -300px;
	width: 300px;
	height: 100%;
	background-color: rgba(0, 0, 0, 1);
	z-index: 3;
}

.tab p {
	border-bottom: 1px solid var(--caidan);
	color: var(--caidan);
	text-align: center;
	margin: 0;
	padding: 10px 0;
	cursor: pointer;
	font-weight: 900;
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center;
	gap: 10px;
}
.tab-item {
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid var(--caidan);
	color: var(--caidan);
	text-align: center;
	margin: 0;
	cursor: pointer;
	font-weight: 900;
	width: 100%;
	gap: 10px;
}
.tab-item-name {
	padding-left: auto;
	text-align: center;
	padding: 10px 0;
}
.tab-item-i {
	padding-right: auto;
	border-left: 1px solid var(--caidan);
	width: 50px;
}

.tab i {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: var(--caidan);
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	transform: rotate(90deg);
}

.marquee-container {
	margin-left: -10px;
	margin-bottom: 10px;
	width: 101.8%;
	padding: 5px 0 0;
	overflow: hidden;
	color: #333;
	position: relative;
	background-color: rgba(0, 0, 0, .5);
	color: rgb(136 142 168);
	height: 30px;
	border-top: 1px solid rgb(232, 102, 37);
	border-bottom: 1px solid rgb(232, 102, 37);
	border-left: none;
	border-right: none;
}


.marquee-text {
	position: absolute;
	white-space: nowrap;
	animation: marquee 20s linear infinite;
	min-width: 75%;
}

@keyframes marquee {
	0% {
		transform: translateX(150%);
	}

	100% {
		transform: translateX(-150%);
	}

}

.marquee-text.paused {
	animation-play-state: paused;
}

.button {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
}

.button p {
	flex: 1 1 calc(25% - 10px);
	text-align: center;
	color: #888ea8;
	background-color: rgba(0, 0, 0, .7);
	line-height: 32.5px;
	font-size: 14px;
	cursor: pointer;
	border-radius: 5px;
	box-shadow: 0px 1px 3px rgba(232, 102, 37, 0.9);
}

.button p {
	transition-duration: .15s;
	transition-property: all;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	cursor: pointer;
	transition: background-color .3s ease-in-out, color .3s ease-in-out;
}

.button p:hover {
	background-color: rgba(232, 102, 37);
	color: #fff;
}

.button p:active {
	transform: scale(0.98);
}

.back-btn {
	margin: 0;
	display: none;
	color: #fff;
}
.back-btn svg{
	width: 50px;
	height: 50px;
	margin: 0 auto;
}
h3 {
	margin: 10px 0;
	font-size: 30px;
	text-align: center;
	color: #000;
	border: 1px solid #f3c314;
	border-radius: 5px;
	background-image: radial-gradient(circle 763px at 18.3% 24.1%, rgba(255, 249, 137, 1) 7.4%, rgba(226, 183, 40, 1) 58.3%);
}

h2 {
	text-align: center;
	color: #FAF0D7;
}
.sticky {
	position: sticky;
	top: 0;
	z-index: 1;
}
.sticky-tab {
	display: flex;
	align-items: center;
    justify-content: space-between;
	background-color: rgb(17, 18, 19);
	color: #888ea8;
	border-radius: 12px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 0 0 10px;
}
.sticky-tab .input-wrapper {
	display: flex;
	align-items: center;
	background-color: rgb(43, 48, 54);
	margin-left: 10px;
	padding: 0 10px;
	border-radius: 10px;
	width: 400px;
}
.input-wrapper input {
	flex: 1;
	border: none;
	outline: none;
	background: transparent;
	color: white;
	font-size: 12px;
	padding: 8px 0;
}
input::placeholder {
	color: #888EA8;
	transition: color .3s ease-in-out;
}
.input-wrapper-icon {
  width: 15px;
  height: 15px;
  background: url(https://png-res.png999.com/rtpBlog/img/icon_search.png) no-repeat center;
  background-size: contain;
  cursor: pointer;
}
.pagination-controls {
	margin-right: 10px;
    display: flex;
    align-items: center;
    gap: 5px 15px;
}
.dropdown-wrapper {
	width: 40px;
	position: relative;
	display: inline-block;
	background: rgba(43,48,54,0.7);
	color: #888EA8;
	padding: 8px 10px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 12px;
}

.dropdown-selected::after {
	content: '';
	float: right;
	margin-top: 6px;
	width: 7px;
	height: 7px;
	background: url(https://png-res.png999.com/rtpBlog/img/icon_scroll_big.png) no-repeat center;
	background-size: 10px 15px;
	transform: rotate(-90deg);
	transition: transform .3s ease-in-out;
}
.dropdown-selected.show::after {
	transform: rotate(90deg);
}
.dropdown-options {
	position: absolute;
	top: 150%;
	left: 0;
	right: 0;
	background: rgba(43,48,54,0.95);
	border-radius: 6px;
	opacity: 0;
	z-index: -1;
	transition: opacity .3s ease-in-out, top .3s ease-in-out;
}
.dropdown-options.show {
	top: 120%;
	opacity: 1;
	z-index: 1;
}
.dropdown-options div {
	display: none;
}
.dropdown-options.show div {
	display: block;
	padding: 8px 10px;
	cursor: pointer;
	transition: background-color .3s ease-in-out, color .3s ease-in-out;
}

.dropdown-options div:hover {
	border-radius: 6px;
	background-color: #E86625;
	color: #fff;
}

.pagination-controls button, 
.pagination-controls input {
    padding: 8px 10px;
    border: 0px solid #ddd;
    border-radius: 6px;
    background: rgba(43,48,54,0.7);
	font-size: 12px !important;
	color: #888EA8;
	cursor: pointer;
	opacity: .8;
	transition: opacity .3s ease-in-out;
}
.pagination-controls button:hover:not(:disabled), 
.pagination-controls input:hover {
	opacity: 1;
}
#prevPage, #nextPage {
	padding: 15px;
	background: url(https://png-res.png999.com/rtpBlog/img/icon_scroll_big.png) no-repeat center;
	background-size: 10px 15px;
	background-color: rgba(43,48,54,0.7);
}
#prevPage {
	transform: scaleX(-1);
}
#prevPage:disabled, #nextPage:disabled {
	opacity: .5;
	background-color: #000;
	cursor: auto;
}
#goToPage {
	padding: 8px 15px;
	background: #E86625;
	color: #fff;
}
#pageJump {
	width: 25px !important;
}
#pageJump::-webkit-inner-spin-button,
#pageJump::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
.pagination-controls button:hover {
    background-color: #e0e0e0;
}

#pageInfo {
    margin: 0 10px;
}
.yangshi {
	background-color: rgb(17, 18, 19);
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	padding: 10px;
}

.yangshi .yangshi-box {
	padding-bottom: 10px;
    /* border: 1px solid hsla(0, 0%, 100%, .1); */
    border-left: none;
    border-right: none;
    min-height: 100px;
    display: flex;
    align-items: center;
	overflow-x: scroll;
}

.yangshi .yangshi-box::-webkit-scrollbar {
	height: 5px;
}

.yangshi .yangshi-box::-webkit-scrollbar-thumb {
    background-color: #888EA8; 
    border-radius: 5px;
	cursor: pointer;
}

.yangshi .yangshi-box::-webkit-scrollbar-track {
    background-color: rgb(17, 18, 19);
    border-radius: 10px;
	cursor: pointer;
}
.site-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-shrink: 0;
	width: 95px;
	height: 65px;
	margin: 5px;
	margin-bottom: 0px;
	padding: 5px 10px;
	background-color: rgb(17, 18, 19);
	border-radius: 6px;
	cursor: pointer;
	transition: filter .3s ease-in-out;
}
.site-box img {
	margin: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.site-box:hover {
	/* filter: brightness(1.3) drop-shadow(0 0 10px rgba(255, 255, 255, .5)); */
	border-radius: 6px;
	outline: 3px solid rgba(232, 102, 37, 0.8);
	outline-offset: 0px;
}

.site-box.active {
	/* filter: brightness(1.3) drop-shadow(0 0 20px rgba(243, 195, 20, .8)); */
	border-radius: 6px;
	outline: 3px solid rgba(232, 102, 37, 0.8);
	outline-offset: 0px;
}
.site-name {
	color: #888EA8;
	font-weight: 700;
	font-size: 11px;
	text-align: center;
}
input {
	width: 100%;
	font-size: 20px;
	border: none;
	padding: 10px;
	border-radius: 5px;
	border-bottom: 3px solid rgba(0, 0, 0, 0);
}

.logo {
	width: 150px;
	height: 36px;
	left: calc(50% - 100px);
	top: 10px;
	opacity: 1;
	cursor: pointer;
	transition: opacity .3s ease-in-out;
}
.logo:hover {
	opacity: .8;
}
.logo-btn,.style-btn {
	height: 30px;
	width: 30px;
	padding: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, .5);
	opacity: .5;
	transition: opacity .3s ease-in-out;
	cursor: pointer;
}
.logo-btn:hover,.style-btn:hover {
	opacity: 1;
}
.style-dart {
	display: inline-block;
    width: 20px;
    height: 20px;
	background: url(https://png-res.png999.com/rtpBlog/img/icon_moon.png) no-repeat center;
	background-size: contain;
}
.style-light {
	display: inline-block;
    width: 20px;
    height: 20px;
	background: url(https://png-res.png999.com/rtpBlog/img/icon_sun.png) no-repeat center;
	background-size: contain;
	filter: invert(1) hue-rotate(180deg);
}
@keyframes yundon {
	0% {
		border-color: #f1f1f1;
	}

	50% {
		border-color: skyblue;
	}

	100% {
		border-color: #f1f1f1;
	}
}

.youxi-box-mask-box {
	overflow: hidden;
	height: 158px;
	padding: 10px;
	margin: -5px;
	margin-bottom: 0px;
	box-shadow: inset 1px 0px 3px 2px rgba(232, 102, 37, .8);
}
.youxi-box-mask-box img {
	transition: transform .3s ease-in-out;
}
.youxi-box-mask-box:hover img {
	transform: scale(1.1);
}

.youxi-box-mask-box:hover div {
	top: -180px;
}

.youxi-box {
	display: inline-block;
	width: calc(16.5% - 25px);
	margin: 5px 0;
	background-color: #11121380;
	border-radius: 5px;
	padding: 5px;
	position: relative;
	min-height: 232px;
	border: 1px solid rgb(232, 102, 37);
}

.youxi-box img {
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.youxi-box-mask {
	z-index: 1;
	top: 10%;
	left: -25%;
	width: 150%;
	height: 250px;
	transform: scale(1.1);
	background-color: rgba(0, 0, 0, .5);
	border-radius: 12px;
	cursor: pointer;
	position: relative;
	/* animation: yyy .5s ease-in-out 1; */
}

.youxi-box-mask p {
	background-color: #e0de31;
	background-image: linear-gradient(19deg, #e0de31 0%, #d6860f 100%);
	color: #121212;
	font-size: 12px;
	font-weight: 900;
	width: 60%;
	border-radius: 5px;
	text-align: center;
	padding: 2.5px 0;
	margin: 0 auto;
	position: relative;
	top: 30%;
}

@keyframes yyy {
	0% {
		top: -135px;
	}

	100% {
		top: 0;
	}
}

.youxi-box-jindutiao {
	margin: 0 5px;
	width: 95%;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
	height: 18px;
	margin-bottom: 5px;
	line-height: 18px;
	color: #fff;
	text-align: center;
	background-color: #3b3f5c66;
}

.youxi-box-jindutiao p {
	position: absolute;
	font-size: 12px;
	font-weight: 700;
}

.youxi-box-jindutiao i {
	display: block;
	height: 20px;
	width: 48%;
	background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-size: 1rem 1rem;
	background-color: #FFF349;
	animation: moveStripe .5s linear infinite;
}
@keyframes moveStripe {
	from {
		background-position: 0 0;
	}
	to {
		background-position: 1rem 0;
	}
}
.youxi-box-xinxi {
	/* background-color: #333; */
	color: #f1f1f1;
	text-align: center;
	border-radius: 12px;
	padding: 5px 0;
	font-size: 12px;
	color: #888ea8;
}
.youxi-box-xinxi div{
	/* margin: 2.5px 0; */
	padding: 0 5px;
}
.material-symbols-rounded-array {
	display: flex;
	gap: 5px;
}
@keyframes breathing {
	0% {
	  opacity: 1;
	}
	50% {
	  opacity: 0.3;
	}
	100% {
	  opacity: 1;
	}
  }
.beli-scatter {
	color: #f6c344;
	line-height: 1.5;
	letter-spacing: 0.3em;
	animation: breathing 1s infinite ease-in-out;
}
.material-symbols-rounded {
	border-radius: 50%;
	margin: 1.5px;
	padding: 1.5px;
	border: 1px solid;
	font-size: 10px !important;
	gap: 8px !important;
}
.icon-cuowu {
	color: red;
}

.icon-dagou {
	color: #00ff00;
	font-weight: 900;
}

.bottom {
	max-width: 1150px;
	text-align: center;
	color: #929AAB;
	margin: 0 auto;
	padding: 5vh 10px;
	background-color: rgba(0, 0, 0, .7);
}

.wenzi-box-page {
	margin: 0 auto;
	background-color: rgba(0, 0, 0, .5);
	border-radius: 12px;
	color: #fff;
	text-align: center;
	max-width: 120px;
	width: 20%;
	padding: 10px 15px;
}

.help p {
	margin-top: 5vh;
	background-color: rgba(0, 0, 0, .8);
}

.help p:hover {
	color: rgba(255, 255, 255, .8);
}

.tab-title {
	color: #fff;
	text-align: center;
	font-size: 22px;
	margin-top: 17px;
	text-decoration: underline;
}

table {
	width: 100%;
	margin-top: 20px;
	border-collapse: collapse;
	border-spacing: 0;
}

th {
	background-color: #EAE2CF;
	color: #333;
	border: 1px solid #bbb;
}

td {
	border: 1px solid #bbb;
	color: #333;
	font-family: sans-serif;
	font-size: 85%;
	padding: 10px;
	vertical-align: top;
}

tr {
	background-color: #F3F5EF;
}

tr:nth-child(2n) {
	background-color: #F0F0E5;
}

tr:hover {
	background-color: #f1f1f1;
}


.tabbox {
	height: calc(100vh - 44px);
	overflow-y: auto;
}
.kuai{
	margin-top: 10px;
	margin-left: 15px;
	display: flex;
	flex-wrap: wrap;
	gap: 0 15px;
}
.bottom-btns {
	display: flex;
	position: fixed;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 1170px;
	height: 50px;
	background-color: #080717BB;
	backdrop-filter: blur(10px);
	z-index: 3;
	transition: backdrop-filter .3s ease-in-out;
}
.bottom-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 15px;
	color: #888EA8;
	position: relative;
	flex: 1 1 calc(25%);
	overflow: hidden;
	cursor: pointer;
	transition: color .3s ease-in-out;
}
.bottom-btn-icon {
	margin: 7.5px 5px 0 0;
}
.bottom-btn.active {
	color: #E86625;
}
.bottom-btn.active::before {
	width: 100%;
	left: 0;
}
.bottom-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 0;
	height: 1px;
	background-color: #E86625;
	transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}
.bottom-btn:hover {
	color: #E86625;
}
.bottom-btn:hover::before {
	width: 100%;
	left: 0;
}
.back-top {
    position: fixed;
    bottom: 8vh;
    right: -5vw;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: url(https://png-res.png999.com/rtpBlog/img/icon_scroll_big.png)  no-repeat center;
	background-size: contain;
    background-color: #000;
    opacity: .8;
    cursor: pointer;
    z-index: 100;
    transform: rotate(-90deg);
    transition: transform 0.5s ease, opacity 0.3s ease, right .3s ease-in-out;
}
.back-top:hover {
    opacity: 1;
    transform: scale(1.1) rotate(-90deg);
}
@media screen and (max-width:1000px) {
	.box {
		padding: 5px;
	}
	.button {
		width: 98vw;
	}
	.sticky {
		width: 98vw;
	}
	.kuai {
		width: 92.5vw;
	}
	.youxi-box {
		width: calc(50% - 22.5px);
	}
	.yangshi img {
		width: 110px !important;
	}
	.sticky-tab {
		margin-top: -2px;
		flex-direction: column;
		gap: 10px;
	}
	.sticky-tab .input-wrapper {
		width: 80vw;
	}
	.dropdown-wrapper {
		padding: 5px;
		font-size: 10px;
	}
	.button p {
		flex: 1 1 calc(50% - 10px);
	}
	.site-box {
		flex-shrink: none;
	}
	.pagination-controls {
		font-size: 10px;
		gap: 5px 10px;
	}
	.input-wrapper-icon {
		width: 10px;
		height: 10px;
	}
	.pagination-controls button, 
	.pagination-controls input {
		padding: 5px;
		font-size: 10px !important;
	}
	#prevPage, #nextPage {
		padding: 10px;
	}
	#goToPage {
		padding: 7px;
	}
	.dropdown-selected {
		text-align: center;
	}
	.dropdown-selected::after {
		margin-top: 4.5px;
		margin-right: 2px;
		background-size: 7.5px;
	}
	.input-wrapper input {
		font-size: 8px;
	}
	.sticky-tab .input-wrapper {
		margin-right: 5px;
	}
	.youxi-box-xinxi {
		font-size: 10px;
	}
	.bottom-btns {
		width: 100vw;
	}
	.bottom-btn {
		flex-direction: column;
	}
	.bottom {
		margin-bottom: 20px;
	}
}