body {
	background-color: #F0F2F5;
	margin: 0;
	user-select: none;
}

a {
	transition: all 0.2s linear;
	text-decoration: none;
}

/* 导航topnavCSS */
@keyframes wys-menu-open {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.wys-topnav {
	width: 100%;
	z-index: 999;
	position: fixed;
	top: 32px;
}

.wys-topnav-content {
	text-align: left;
	height: 44px;
	max-width: 1094px;
	box-shadow: 0px 0px 10px rgba(200, 200, 200, 0.4);
	background-color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(4px);
	border-radius: 100px;
}

.wys-topnav-title {
	margin-left: 12px;
	height: 44px;
	padding: 10px;
	display: inline-block;
}

.wys-topnav-title img {
	height: 24px;
	float: left;
	margin-right: 6px;
}

.wys-topnav-title a {
	font-size: 18px;
}

#wys-topnav-menu {
	float: right;
	margin-right: 12px;
}

#wys-topnav-menu-open {
	/*手机适配*/
	float: right;
}

#wys-topnav-menu li,
#wys-topnav-menu-open li {
	display: inline-block;
	height: 100%;
}

#wys-topnav-menu-open li a {
	padding: 13.5px 16px;
	color: #000;
	display: block;
	font-size: 14px;
}

#wys-topnav-menu li a {
	color: #888888;
	display: block;
	cursor: pointer;
	font-size: 14px;
	overflow: hidden;
	padding: 12.5px 16px;
	position: relative;
	font-weight: bold;
}

#wys-topnav-menu li.wys-topnav-active a {
	color: #000000;
}

#wys-topnav-menu li a:hover {
	color: #000000;
}

#wys-topnav-menu li a:after {
	content: '';
	height: 4px;
	width: 80%;
	position: absolute;
	left: -100%;
	bottom: 0;
	background-color: rgb(30, 144, 255);
	transition: all .2s ease-in-out;
}

#wys-topnav-menu li.wys-topnav-active a:after {
	left: calc(20% / 2);
}


#wys-topnav-menu li a:hover:after {
	left: calc(20% / 2);
}

/* 懒得写，直接从开放平台搬过来 */
#wys-topnav-link {
	border-radius: 10px;
	padding: 8px;
	width: 184px;
	top: 56px;
	left: calc(100% - 212px);
	background-color: rgba(255, 255, 255, 0.9);
	z-index: 9997;
	position: fixed;
	display: none;
	backdrop-filter: blur(10px);
	box-shadow: 0px 0px 10px rgba(200, 200, 200, 0.4);
	list-style-type: none;
	animation: wys-menu-open 0.3s ease-out;
}

#wys-topnav-link li a {
	display: block;
	color: #000;
	padding: 14px 16px;
	text-decoration: none;
	transition: background-color .5s;
}

/* 主页面CSS */
.wys-main {
	margin-top: 96px;
}

.wys-content {
	width: 100%;
	max-width: 1096px;
}

.wys-plate {
	padding: 16px;
	margin-top: 12px;
	box-shadow: 0px 0px 10px rgba(200, 200, 200, 0.4);
	border-radius: 10px;
	background-color: #fff;
	color: #000;
	margin-bottom: 12px;
}

h1 spen {
	color: #1E90FF;
}

.wys-air-16px {
	height: 24px;
}

.wys-air-48px {
	height: 48px;
}

/* 列表组件CSS */
.wys-list-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 80%;

}

.wys-list-container li {
	list-style-type: none;
}


.wys-list {
	width: calc(33.3% - 24px);
	border: 1px solid #f0f0f0;
	padding: 8px;
	border-radius: 20px;
	margin-bottom: 16px;
}

.wys-list .lg {
	margin-top: 56px;
	margin-bottom: 24px;
	width: 128px;
	border-radius: 100px;
}

.wys-list h1 {
	margin: 0;
}

.wys-list .bn {
	font-size: 20px;
	margin-left: 6px;
	margin-right: 6px;
	display: inline-block;
	color: #888;
}

.wys-list .bn:hover {
	color: #1E90FF;
}

.wys-ulog-box {
	width: 40%;
}




button {
	background-color: rgb(30, 144, 255);
	padding: 8px 20px;
	border: none;
	border-radius: 5px;
	transition: 0.25s;
	color: white;
	margin-top: 5px;
	margin-bottom: 5px;
}

button:hover {
	filter: brightness(.85);
}

/* 小窗 */

#window {
	display: none;
	z-index: 9998;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(10px);
}

.smallwindow {
	position: fixed;
	/* width: 80%; */
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: auto;
	background-color: white;
	box-shadow: 0px 0px 10px rgba(200, 200, 200, 0.6);
	padding: 24px;
	border-radius: 10px;
}


.btn_close {
	float: right;
	font-size: 20px;
}

.btn_close:hover {
	color: red;
}



/* 页尾footerCSS */
#wys-footer {
	padding: 10px 16px;
	box-shadow: 0px 0px 10px rgba(200, 200, 200, 0.4);
	border-radius: 10px;
	background-color: #fff;
	color: #000;
	margin-bottom: 32px;
}

#wys-footer a {
	color: #000;
	text-decoration: underline;
}

#wys-footer div {
	margin: 16px;
}

.wys-footer-content {
	display: flex;
}

.wys-footer-content div {
	width: 25%;
}

.wys-footer-content h3 {
	margin: 0;
	margin-bottom: 4px;
}

.wys-footer-content p {
	margin: 0;
	margin-bottom: 4px;
}

.wys-footer-content img {
	height: 128px;
	float: right;
}

#wys-footer hr {
	border: none;
	height: 1px;
	background-color: #909090;
}



/* 设备适配CSS */
/* 小屏 */
@media screen and (max-width:1200px) {
	.wys-topnav-content {
		width: calc(100% - 64px);
	}
}


@media screen and (max-width:1110px) {
	.wys-content {
		margin-left: 8px;
		margin-right: 8px;
		width: calc(100% - 16px);
	}

	.wys-list-container {
		width: 100%;
	}
}

/* 移动端 */
@media screen and (max-width:600px) {
	.wys-topnav {
		top: 0;
	}

	.wys-topnav-content {
		width: 100%;
		border-radius: 0;
	}

	.wys-topnav-title {
		margin-left: 4px;
	}

	#wys-topnav-menu {
		margin-right: 0;
	}

	.wys-main {
		margin-top: 56px;
	}

	.wys-footer-content {
		display: block;
	}

	.wys-footer-content img {
		float: none;
		height: 64px;
	}

	.wys-footer-content div {
		width: 100%;
	}

	#wys-footer div {
		margin: 0;
		margin-bottom: 16px;
	}

	.wys-list-container {
		display: block;
	}

	.wys-list {
		width: calc(100% - 16px);
	}

	.wys-air-16px {
		height: 0;
	}
}

@media screen and (max-width:450px) {
	.window_img {
		height: 60%;
		width: 60%;
	}
}

@media (prefers-color-scheme:dark) {

	html {
		color-scheme: dark;
	}

	body {
		background-color: rgb(18, 18, 18);
	}

	.wys-plate {
		background-color: #000;
		box-shadow: 0px 0px 10px rgba(54, 54, 54, 0.4);
		color: #fff;
	}

	/* topnav */
	.wys-topnav-content {
		box-shadow: 0px 0px 10px rgba(54, 54, 54, 0.4);
		background-color: rgba(0, 0, 0, 0.9);

	}

	#wys-topnav-menu-open li a {
		color: #fff;
	}

	#wys-topnav-menu li.wys-topnav-active a {
		color: #fff;
	}

	#wys-topnav-menu li a:hover {
		color: #fff;
	}

	#wys-topnav-link {
		background-color: rgba(44, 44, 44, 0.6);

		box-shadow: 0px 0px 10px rgba(54, 54, 54, 0.4);
	}

	#wys-topnav-link li a {
		color: #fff;
	}

	/* list */
	.wys-list {
		border: 1px solid #222;
	}


	/* footer */
	#wys-footer {
		box-shadow: 0px 0px 10px rgba(54, 54, 54, 0.4);
		background-color: #000;
		color: #fff;
	}

	#wys-footer a {
		color: #fff;
		text-decoration: underline;
	}

	#wys-footer hr {
		background-color: #222;
	}

	/* window */
	.smallwindow {
		background-color: rgb(11, 11, 11);
		box-shadow: 0px 0px 10px rgba(55, 55, 55, 0.4);
	}
}