:root {
	--primary: #323130;
	--secondary: #666666;
	--hover: #2980b9;
	--border: #edebe9;
	--body-bg: #F7F9FD;
	--card-bg: #ffffff;
	--nav-bg: #ffffff;
	--ads-bg: #00668d;
	--activate: #216592;
}
[data-theme="blue"] {
	--primary: #323130;
	--secondary: #666666;
	--hover: #2980b9;
	--border: #edebe9;
	--body-bg: #F7F9FD;
	--card-bg: #ffffff;
	--nav-bg: #ffffff;
	--ads-bg: #00668d;
	--activate: #216592;
}
[data-theme="green"] {
	--primary: #323130;
	--secondary: #666666;
	--hover: #2ecc71;
	--border: #edebe9;
	--body-bg: #F7F9FD;
	--card-bg: #ffffff;
	--nav-bg: #ffffff;
	--ads-bg: #2ecc71;
	--activate: #209150;
}
[data-theme="nature"] {
	--primary: #2D4A3D;
	--secondary: #5A7B6E;
	--hover: #4CAF93;
	--border: #D1E7DD;
	--body-bg: #F8FFF8;
	--card-bg: #FFFFFF;
	--nav-bg: #F0F7F0;
	--ads-bg: #388E81;
	--activate: #2E7D6E;
}
[data-theme="pink‌"] {
	--primary: #4A1E3A;
	--secondary: #8C5A6E;
	--hover: #D44C8C;
	--border: #F0D6E3;
	--body-bg: #FFF9FC;
	--card-bg: #FFFFFF;
	--nav-bg: #FFFAFC;
	--ads-bg: #C93775;
	--activate: #B82C6C;
}
[data-theme="red"] {
	--primary: #323130;
	--secondary: #666666;
	--hover: #ff0000;
	--border: #edebe9;
	--body-bg: #F7F9FD;
	--card-bg: #ffffff;
	--nav-bg: #ffffff;
	--ads-bg: #a10000;
	--activate: #a80000;
}
[data-theme="red-flame"] {
	--primary: #2C0A0D;
	--secondary: #7A4A4D;
	--hover: #E74C3C;
	--border: #E8C8C6;
	--body-bg: #FFF5F3;
	--card-bg: #FFFFFF;
	--nav-bg: #FFEFED;
	--ads-bg: #C0392B;
	--activate: #D35400;
}
[data-theme="purple"] {
	--primary: #2D0A31;
	--secondary: #6A5D7B;
	--hover: #9B59B6;
	--border: #E0D0E3;
	--body-bg: #F8F0F8;
	--card-bg: #FFFFFF;
	--nav-bg: #F5EDF7;
	--ads-bg: #5B2C6F;
	--activate: #8E44AD;
}
[data-theme="purple-night"] {
	--primary: #E1D6E8;
	--secondary: #A99EBC;
	--hover: #BB86FC;
	--border: #443C68;
	--body-bg: #1A1429;
	--card-bg: #251F36;
	--nav-bg: #1E1830;
	--ads-bg: #4A3560;
	--activate: #9A6DD7;
}
[data-theme="black"] {
	--primary: #323130;
	--secondary: #666666;
	--hover: #000000;
	--border: #edebe9;
	--body-bg: #F7F9FD;
	--card-bg: #ffffff;
	--nav-bg: #ffffff;
	--ads-bg: #000000;
	--activate: #4e4e4e;
}
[data-theme="night"] {
	--primary: #E8EBED;
	--secondary: #A8B0B8;
	--hover: #4A9FE5;
	--border: #3A4048;
	--body-bg: #0F1215;
	--card-bg: #1A1E22;
	--nav-bg: #15191D;
	--ads-bg: #2A3038;
	--activate: #2a3038;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 
		-apple-system,        /* 苹果系统字体 (San Francisco) */
		BlinkMacSystemFont,   /* macOS Chrome/Edge 的系统字体 */
		'Segoe UI',           /* Windows 系统字体 */
		Roboto,               /* Android 和 Chrome OS 字体 */
		'Helvetica Neue',     /* macOS 旧版备用字体 */
		Arial,                /* 通用备用字体 */
		'Noto Sans',          /* Google 的多语言字体 */
		sans-serif,           /* 通用无衬线字体回退 */
		'Apple color Emoji',  /* 苹果系统表情符号 */
		'Segoe UI Emoji',     /* Windows 系统表情符号 */
		'Segoe UI Symbol',    /* Windows 符号字体 */
		'Noto color Emoji';   /* Google 彩色表情符号 */
}
/* 整个滚动条 */
::-webkit-scrollbar {
	width: 8px; /* 滚动条宽度 */
}
/* 滚动条轨道 */
::-webkit-scrollbar-track {
	background: var(--border); /* 轨道颜色 */
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
	background: var(--secondary); /* 滑块颜色 */
	border-radius: 50px; /* 滑块圆角 */
}
/* 滑块悬停 */
::-webkit-scrollbar-thumb:hover {
	background: var(--hover); /* 滑块悬停颜色 */
}
html {
	scroll-behavior: smooth;
	overflow-y: scroll;
}
body {
	background-color: var(--body-bg);
	color: var(--primary);
	line-height: 1.6;
	height: 100vh;
}
a {
	text-decoration: none;
	color: var(--secondary);
	cursor: pointer;
}
a:hover{
	color: var(--hover);
}
input, textarea {
	outline: none;
}
textarea {
	width: 100%;
}
h2 {
	font-size: 22px;
	line-height: 1;
}
i {
	min-width: 15px;
	text-align: center;
}
button{
	cursor: pointer;
}
.hidden {
	display: none !important;
}
.tr{
	text-align: right!important;
}
.tl{
	text-align: left!important;
}
.fl{
	float: left!important;
}
.fr{
	float: right!important;
}
.fs12 {
	font-size: 12px!important;
}
.fs14 {
	font-size: 14px!important;
}
.fs16 {
	font-size: 16px!important;
}
.fs18 {
	font-size: 18px!important;
}
.fs20 {
	font-size: 20px!important;
}
.fs22 {
	font-size: 22px!important;
}
.bt{
	border-top:1px solid var(--border);
}
.br{
	border-right:1px solid var(--border);
}
.bb{
	border-bottom:1px solid var(--border);
}
.bl{
	border-left:1px solid var(--border);
}
.t-a-c{
	text-align: center;
}
.btn {
	display: inline-block;
	background: var(--hover);
	color: white;
	border-radius: 3px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
	font-size: 14px;
	text-align: center;
	border: none;
}
.btn:hover {
	color: white;
	background: var(--activate);
	box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}
.close-btn {
	width: 31px;
	height: 31px;
	background-color: var(--border);
	color: white;
	border: none;
	font-size: 16px;
	border-radius: 100%;
	transition: background-color 0.3s ease;
	cursor: pointer;
}
.close-btn:hover {
	background-color: var(--hover);
}
.j-end{
	 justify-self: end;
}
#no-results {
	display: none;
	text-align: center;
}
.top {
	height: 96px;
}
.nav {
	width: 100%;
	height: 72px;
	background-color: var(--nav-bg);
	position: fixed;
	z-index: 2;
	border-bottom: 1px solid var(--border);
}
.top-nav {
	margin: 0 auto;
	display: flex;
	align-items: center;
}
.logo {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.logo .back {
	width: 31px;
	height: 31px;
	background-color: var(--hover);
	border-radius: 100%;
}
.logo .back .heart {
	border-radius: 100%;
	height: 25px;
	width: 25px;
	margin: 3px 0 0 3px;
	background-color: var(--hover);
}
.logo .anchor {
	background-color: var(--nav-bg);
	width: 6px;
	height: 6px;
	border-radius: 100%;
	position: absolute;
}
.logo .point1 {
	right: 7px;
	top: 5px;
}
.logo .point2 {
	left: 4px;
	top: 12px;
}
.logo .point3 {
	right: 7px;
	top: 19px;
}
.logo .line1 {
	height: 2px;
	width: 20px;
	background-color: var(--nav-bg);
	position: absolute;
	transform: rotate(-28deg);
	left:4px;
	top: 11px;
}
.logo .line2 {
	height: 2px;
	width: 20px;
	background-color: var(--nav-bg);
	position: absolute;
	transform: rotate(28deg);
	left: 4px;
	top: 17px;
}
.logo .title {
	height: 26px;
	margin: 1px 60px 0 7px;
	line-height: 26px;
}
.main-nav {
	display: flex;
	flex-grow: 1;
}
.main-nav a{
	padding: 0 18px;
	height: 72px;
	display: flex;
	align-items: center;
	transition: all 0.2s;
	position: relative;
}
.main-nav a:hover, .main-nav a.active, .main-nav .active a {
	color: var(--hover);
}
.main-nav a.active::after,.main-nav .active a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 18px;
	right: 18px;
	height: 3px;
	background-color: var(--hover);
}
.main-nav .add-container {
	height: 72px;
	display: flex;
	align-items: center;
	transition: all 0.2s;
	position: relative;
}
.main-nav .add-container:hover .nav-card {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(-10px);
}
.nav-actions {
	display: flex;
	align-items: center;
	gap: 25px;
}
.nav-actions a {
	font-size: 18px;
	color: var(--primary);
}
.nav-actions a:hover {
	color: var(--hover);
}
.nav-actions .theme-btn {
	font-size: 16px;
}
.search-box {
	width: 290px;
	height: 40px;
	background-color: var(--nav-bg);
	border-radius: 100px;
	display: flex;
	align-items: center;
	padding: 0 14px;
	transition: all 0.2s;
	position: relative;
	border: 1px solid var(--border);
}
.search-box:hover:active {
	background-color: var(--body-bg);
}
.search-box input {
	background: transparent;
	border: none;
	color: var(--primary);
	padding: 0 12px;
	width: 100%;
	font-size: 15px;
}
.search-box input::placeholder {
	color: var(--secondary);
	font-size: 14px;
}
.search-box .clear-btn {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--secondary);
	cursor: pointer;
	font-size: 16px;
	display: none;
}
.action-icon {
	color: var(--primary);
	cursor: pointer;
	font-size: 20px;
}
.top-nav, .container{
	max-width: 1552px;
	width: calc(100% - 20px);
}
.container {
	margin: 0 auto;
	padding-bottom: 34px;
}
.plus .container, .plus .top-nav{
	max-width: 2000px;
	width: calc(100% - 200px);
}
.plus .fa-expand{
	color: var(--hover);
}
.container .header {
	padding: 40px;
	color: white;
	align-items: center;
	background: var(--ads-bg);
}
.god-cards {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}
.god-card {
	flex: 1;
	background: var(--card-bg);
	border-radius: 3px;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s;
	display: flex;
	flex-direction: column;
	height: 100%;
	font-size: 14px;
}
.god-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.god-image {
	width: 100%;
	overflow: hidden;
	height: fit-content;
	//padding: 10px 10px 0 10px;
}
.god-image img {
	width: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}
.god-card:hover .god-image img {
	transform: scale(1.02);
}
.god-content {
	padding: 10px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	padding: 10px 10px 18px 10px;
}
.god-title {
	font-size: 20px;
	color: var(--primary);
	margin-bottom: 10px;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.god-card:hover .god-title {
	color: var(--hover);
}
.god-card:hover .god-description {
	color: var(--primary);
}
.god-card:hover .god-rating {
	color: var(--hover);
}
.god-description {
	color: var(--secondary);
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.god-footer {
	display: flex;
	justify-content: space-between;
	padding: 10px 15px;
	background-color: rgba(0, 0, 0, 0.05);
	border-top: 1px solid var(--border);
	color: var(--secondary);
}
.god-rating {
	color: var(--activate);
}
.pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}
.down .header {
	display: flex;
}
.container .header h1 {
	font-size: 32px;
	margin-bottom: 8px;
	font-weight: 700;
}
.container h2 {
	margin-bottom: 20px;
	color: var(--primary);
	position: relative;
	padding-left: 15px;
	border-left: 4px solid var(--secondary);
}
.down h2 {
	color: var(--hover);
	border-left: 4px solid var(--hover);
}
.url-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 1%;
	margin-bottom: 20px;
}
.app-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 1%;
	margin-bottom: 20px;
}
.app-card {
	background-color: var(--card-bg);
	border-radius: 10px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	text-align: center;
	padding: 20px;
	width: 19.2%;
	transition: transform 0.2s;
	margin-bottom: 2%;
}
.app-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.app-card img {
	float: left;
	margin: 0 10px 0 0;
	width: 48px;
	height: 48px;
	margin-bottom: 10px;
	border-radius: 0px;
	filter: brightness(1.05) contrast(1.05) saturate(1.1);
}
.url-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.url-card:hover a .title{
	text-decoration: none;
	color: var(--hover);
}
.url-card img {
	width: 48px;
	height: 48px;
	margin: 0 10px 0 0;
	border-radius: 0px;
	filter: brightness(1.05) contrast(1.05) saturate(1.1);
}
.url-card {
	background-color: var(--card-bg);
	border-radius: 3px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	text-align: left;
	padding: .938rem;
	width: 19.2%;
	transition: transform 0.2s;
	margin-bottom: 1%;
}
.container .title {
	font-size: 16px;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--primary);
	font-weight: 500;
	white-space: nowrap; 
}
.container .booklist .title {
	font-weight: normal;
	white-space: normal;
}
.container .url-body {
	display: flex !important;
}
.url-card .url-info {
	overflow: hidden;
	padding-right: 5px;
	flex: 1 1 auto !important;
	font-size: .875rem !important;
}
.url-card .url-info p {
	padding-top: 4px;
	font-size: .75rem !important;
	color: var(--secondary);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
}
.h-g {
	position: relative;
	overflow: hidden;
}
.h-g::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
	transition: all 0.7s;
}
.h-g:hover::after {
	left: 100%;
}
.app-card p {
	margin: 0px 0 0;
	font-size: 14px;
	color: var(--secondary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.app-card a {
	border-bottom: 1px solid var(--card-bg);
	border-top: 1px solid var(--card-bg);
	padding: 5px 10px;
	border-radius: 0px;
	font-size: 12px;
	margin-top: 10px;
	width: 100%;
	display: block;
	text-align: center;
	transition: background-color 0.2s;
	color: var(--primary);
	background: var(--body-bg);
}
.app-card:hover a {
	color: var(--hover);
	background-color: var(--card-bg);
	transform: translateY(-2px);
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	border-bottom: 1px solid var(--hover);
}
footer {
	color: var(--secondary);
	font-size: 14px;
	line-height: 1.5;
	background-color: var(--nav-bg);
	border-top: 1px solid var(--border);
}
footer .container{
	padding: 0;
}
.footer-copyright {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 24px 0;
}
.footer-link {
	padding: 24px 0;
	border-bottom: 1px solid var(--border);
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.copyright {
	display: flex;
	flex-direction: row;
	gap: 10px;
}
.friend-links-container {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 20px;
}
.app-cards .TopIco {
	width: 35px;
	height: 35px;
	background: url(../img/TopIco.png);
	top: -2px;
	left: -2px;
	position: absolute;
	font-size: 0px;
}
.app-cards .NewIco {
	width: 47px;
	height: 43px;
	background: url(../img/NewIco.png) -6px -3px no-repeat;
	top: -2px;
	left: -2px;
	position: absolute;
	font-size: 0px;
}
.modal {
	z-index: 2024888;
	position: absolute;
	top: 140px;
}
.modal-header {
	min-height: 16.428571429px;
	padding: 10px 10px 8px 15px;
	border-bottom: 1px solid var(--border);
	display: grid;
	align-items: center;
	grid-template-columns: 9fr 1fr;
}
.modal-header h4 {
	text-align: left;
}
.modal-body {
	padding: 20px 0;
	font-size: 14px;
}
.modal-body .ewm{
	display: inline-block;
	margin: 0 25px;
}
.modal-body .ewm img{
	border-radius: 3px;
}
.modal-backdrop.fade {
	opacity: 0;
	filter: alpha(opacity=0);
}
.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3122;
	display: none;
	overflow: auto;
}
.modal-footer {
	padding: 10px;
	border-top: 1px solid var(--border);
	font-size: 85%;
}
/* 不同颜色 */
.qunbj1 {background: #ff6b6b;}
.qunbj2 {background: #48dbfb;}
.qunbj3 {background: #1dd1a1;}
.qunbj4 {background: #f368e0;}
.qunbj5 {background: #ff9f43;}
.qunbj6 {background: #54a0ff;}
.qunbj7 {background: #5f27cd;}
.qunbj8 {background: #00d2d3;}
.qunbj9 {background: #ff9ff3;}
.qunbj10 {background: #feca57;}
.qunbj11 {background: #48dbfb;}
.qunbj12 {background: #1dd1a1;}
.qunbj13 {background: #ff6b6b;}
.qunbj14 {background: #5f27cd;}
.qunbj15 {background: #00d2d3;}
.qunbj16 {background: #f368e0;}
.qunbj17 {background: #ff9f43;}
.qunbj18 {background: #54a0ff;}
.qunbj19 {background: #1dd1a1;}
.qunbj20 {background: #ff6b6b;}
.qun-card .item {
	position: relative;
}
.qun-card .angle_fix {
	position: absolute;
	right: 0px;
	top: 0px;
}
.qun-card .item .link .fa {
	font-size: 16px;
	text-align: center;
	padding-left: 2px;
	opacity: .6;
}
.qun-card .item .fr {
	float: right;
}
.qun-card .item .a:hover h3 {
	color: var(--hover);
}
.qun-card .item .article_btm {
	border-top: 1px solid var(--border);
	padding: 8px 0 0 0;
	border-radius: 0 0 4px 4px;
	display: flex;
	justify-content: space-between;
}
.qun-card .item .a img {
	box-shadow: 0 0px 1px 0 rgba(0,0,0,.2);
	float: left;
	width: 32px;
	height: 32px;
	border-radius: 100%;
}
.qun-card .item .a h3 {
	max-width: 80%;
	margin-left: 44px;
	margin-bottom: 8px;
	margin-top: 3px;
}
.qun-card .item .a p {
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-left: 44px;
	color: var(--secondary);
	font-size: 12px;
	height: 1.5em;
	line-height: 1.5em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 16px;
}
.qun-card .item .a:hover h3 {
	opacity: 1;
}
.qun-card .item .view {
	font-size: 14px;
	opacity: .6;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.qun-card .item .view .fa {
	padding-right: 22px;
}
.qun-card .item .qunbj {
	box-shadow: 0 0px 1px 0 rgba(0, 0, 0, .2);
	float: left;
	width: 32px;
	height: 32px;
	border-radius: 100%;
	font-size: 20px;
	color: #ffffff;
	text-align: center;
	font-weight: 500;
	line-height: 30px;
}
.qun-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 1%;
	margin-bottom: 20px;
}
.qun-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.qun-card:hover .title {
	color: var(--hover);
}
.qun-card:hover a {
	text-decoration: none;
	color: var(--hover);
}
.qun-card {
	background-color: var(--card-bg);
	border-radius: 3px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	text-align: left;
	padding: .938rem .938rem .469rem .938rem;
	width: 19.2%;
	transition: transform 0.2s;
	margin-bottom: 1%;
}
.panel textarea {
	padding: 3px 6px;
	border: 1px solid #ccc;
	border-radius: 3px;
}
.container .add {
	color: var(--primary);
	}
.panel {
	color: var(--hover);
	background: var(--card-bg);
	padding: 20px;
	border: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.panel a{
	color: var(--hover);
	}
.panel .row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 25px;
	text-align: left;
	padding-top: 30px;
}
.panel .btn {
	padding: 6px 20px;
	float: left;
	margin-top: 1px;
}
.panel .btn:hover {
	background-color: var(--activate);
}
.panel .loading {
	margin-left: 10px;
	float: left;
	line-height: 34px;
	color: var(--hover);
	display: none;
}
.container .success {
	display: none;
	color: var(--hover);
	text-align: center;
}
.form-control {
	display: block;
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: var(--secondary);
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 3px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	-webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
}
.input-group .form-control, .input-group-addon, .input-group-btn {
	display: table-cell;
}
.input-group {
	position: relative;
	display: table;
	border-collapse: separate;
}
.input-group-addon {
	padding: 6px 12px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: #555;
	text-align: center;
	background-color: #eee;
	border: 1px solid #ccc;
	border-radius: 3px;
}
.input-group-addon:first-child {
	border-right: 0;
}
.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:first-child>.btn-group:not(:first-child)>.btn, .input-group-btn:first-child>.btn:not(:first-child), .input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group>.btn, .input-group-btn:last-child>.dropdown-toggle {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child>.btn, .input-group-btn:first-child>.btn-group>.btn, .input-group-btn:first-child>.dropdown-toggle, .input-group-btn:last-child>.btn-group:not(:last-child)>.btn, .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.input-group-addon, .input-group-btn {
	width: 1%;
	white-space: nowrap;
	vertical-align: middle;
	min-width: 44px;
}
.input-group .yzm {
	border-radius: 0;
	border-right: 0;
}
.bookadd {
	float: right;
	width: 39%;
	position: sticky;
	top: 96px;
	margin: 0 0 25px;
}
.bookadd .row {
	grid-template-columns: repeat(2, 1fr);
}
.booklist {
	width: 60%;
	min-height: 400px;
}
.booklist .container{
	width: 100%;
}
.booklist .avatar {
	border-radius: 50%;
	float: left;
	height: 40px;
	margin: 5px 0 0 0px;
	overflow: hidden;
	width: 40px;
}
.booklist .Sid {
	float: right;
	color: var(--secondary);
}
.book-content li {
	list-style: none;
	padding: 15px 15px 0 15px;
	background-color: var(--card-bg);
	margin-bottom: 2%;
	border-bottom: 1px solid var(--border);
}
.book-content li:hover {
	border-bottom: 1px solid var(--hover);
}
.book-content li:hover .title{
	color: var(--hover);
}
.book-content li:hover .Sid {
	color: var(--hover);
}
.booklist .bcontent {
	margin-left:54px;
	overflow: hidden;
	padding-bottom: 15px;
	position: relative;
}
.booklist .name {
	color: var(--secondary);
	font-size: 15px;
	font-weight: 600;
}
.booklist .name {
	font-style: normal;
	font-size: 12px;
	font-weight: 600;
}
.booklist .metadata {
	color: var(--secondary);
	font-size: 11px;
	font-weight: normal;
	letter-spacing: .2px;
	text-transform: uppercase;
}
.thumbnail {
	width: 80px;
	height: 80px;
	border-radius: 10px;
	object-fit: cover;
	margin-right: 30px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.2);
	border: 3px solid var(--border);
	background: var(--card-bg);
}
.short-title {
	display: inline-block;
	background: rgba(255,255,255,0.15);
	color: white;
	padding: 6px 16px;
	border-radius: 100px;
	font-size: 14px;
	margin-bottom: 15px;
	font-weight: 500;
}
.meta-info {
	display: flex;
	gap: 15px;
	font-size: 14px;
	opacity: 0.9;
}
.meta-info span {
	display: flex;
	align-items: center;
	gap: 3px;
	cursor: pointer;
}
.meta-info span a{
	color: white;
}
.description p {
	color: var(--dark);
	margin-bottom: 15px;
	line-height: 1.8;
}
.down {
	background: var(--card-bg);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	padding: 24px;
	margin-bottom: 40px;
}
.down-content {
	padding: 40px 30px;
}
.down-list {
	display: grid;
	gap: 15px;
}
.down-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	border-radius: 3px;
	transition: all 0.3s ease;
	border: 1px solid var(--border);
}
.down-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	border-color: var(--hover);
}
.down-info {
	flex: 1;
	font-size: 14px;
	color: var(--gray);
}
.down-item:hover .down-plat{
	color: var(--hover);
}
.down-plat {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.down-plat .beiZhu {
	font-size: 14px;
	color: var(--primary);
	font-weight: 400;
	padding-left: 15px;
}
.down-plat .size {
	font-size: 14px;
	color: var(--secondary);
}
.down-btn {
	display: flex;
	justify-content: center;
	gap: 10px;
}
.down-btn i {
	margin-right: 8px;
}
.down-btn .btn {
	padding: 10px 20px;
}
.divider {
	height: 1px;
	background: linear-gradient(to right, transparent, var(--border), transparent);
	margin: 30px 0;
}
#popup {
	background-color: var(--body-bg);
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	max-width: 600px;
	width: 95%;
	margin: auto;
}
.user-container {
	position: relative;
	display: inline-block;
}
.user-icon {
	font-size: 20px;
	color: var(--hover);
	cursor: pointer;
	transition: all 0.3s ease;
	padding-right: 2px;
}
.user-icon:hover {
	color: var(--hover);
}
.nav-card {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	background: var(--activate);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 100;
	line-height: 30px;
}
.user-container:hover .nav-card {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(8px);
}
.top-nav .nav-card a {
	color: #ffffff;
	text-align: center;
	display: block;
	padding: 4px 0;
	height: 38px;
}
.top-nav .nav-card a:hover {
	background: var(--hover);
}
.mobile-menu-btn, .mobile-theme-btn {
	display: none;
}
/* 悬浮窗样式 */
#tooltip {
	position: fixed;
	background: var(--body-bg);
	color: var(--primary);
	padding: 6px 10px;
	border-radius: 3px;
	font-size: 14px;
	max-width: 320px;
	pointer-events: none;
	z-index: 10000;
	opacity: 0;
	transform: translateY(15px);
	transition: opacity 0.25s cubic-bezier(0.18, 0.89, 0.32, 1.28), 
	transform 0.25s cubic-bezier(0.18, 0.89, 0.32, 1.28);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(8px);
	line-height: 1.6;
	border: 1px dashed var(--hover);
}
/* 皮肤切换 */
.progress-container {
	width: 80%;
	max-width: 500px;
	height: 30px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 30px;
}
.progress-bar {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, #3498db, #2ecc71);
	border-radius: 15px;
	transition: width 0.3s ease;
}
.loading-text {
	color: #fff;
	font-size: 24px;
	margin-bottom: 20px;
	text-align: center;
}
/* 浮窗导航 */
.floating-nav {
	position: fixed;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 1000;
}
.floating-nav .sidebar {
	width: 60px;
	height: 60px;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	cursor: pointer;
	background-color: var(--card-bg);
	border: none;
	color: var(--secondary);
}
.floating-nav .sidebar:hover, .floating-nav .sidebar.active {
	background-color: var(--hover);
	color: #ffffff;
	transform: translateX(-5px);
}
/* 浮窗导航-加群 */
.sidebar:hover .jiaqun {
	display: block;
}
.jiaqun{
	display: none;
	position: absolute;
	right: 50px;
	min-width: 340px;
	padding-right: 20px;
}
.fix-bar-child-custom{
	background-color: transparent;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	border-radius: 3px;
	overflow: hidden;
	background-color: var(--card-bg);
	padding: 10px;
	color: var(--primary);
}
.fix-bar-child-custom:hover {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.fixbar-chameleon {
	display: flex;
	}
.fixbar-chameleon .img {
	height: 100%;
	margin: 7px 20px 0 17px;
}
.fixbar-chameleon .title {
	font-size: 20px;
	font-weight: 700;
}
.fixbar-chameleon li {
	list-style: decimal;
	font-size: 22px;
	line-height: 27px;
	width: 100%;
	margin-left: 23px;
	margin-top: 8px;
}
.fixbar-chameleon span {
	float: left;
	font-size: 14px;
	line-height: 30px;
}
.fixbar-chameleon .contact {
	float: left;
	background: var(--hover);
	color: #fff;
	border-radius: 2px;
	font-size: 14px;
	width: 80px;
	height: 28px;
	line-height: 28px;
	display: block;
	margin-left: 14px;
	text-align: center;
}
.fix-bar-child-custom p {
	margin-top: 5px;
	color: #999;
	font-size: 12px;
}
.fix-bar-child-custom .triangle-right {
	position: absolute;
	right: 15px;
	top: 107px;
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-left: 5px solid #fff;
	border-bottom: 5px solid transparent;
}
/* 关于我们 */
.about .panel{
	color: var(--primary);
	line-height: 2em;
}
.about .panel p{
	text-indent: 2em;
}
/* 会员中心 */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	justify-content: center;
	flex-direction: column;
	align-items: center;
	z-index: 9999;
	display: none;
}
.reg{
	display: none;
}
.login, .reg {
	background-color: var(--card-bg);
	max-width: 380px;
	border-radius: 3px;
	position: relative;
}
.login-padding {
	padding: 30px;
}
.login .login-bottom {
	padding: 14px 30px;
	font-size: 14px;
	line-height: 14px;
	color: #8693ab;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 3px;
}
.b-b-1 {
	border-bottom: 1px solid var(--border);
}
.login-title {
	margin-bottom: 30px;
	text-align: center;
}
.login-title h3 {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 5px;
}
.login .minor em {
	display: inline-block;
	width: 45px;
	height: 0px;
	border-bottom: 1px solid rgba(221, 221, 221, 1);
	vertical-align: middle;
}
.login .minor span {
	list-style: none;
	font-size: 12px;
	color: var(--secondary);
	font-weight: 400;
	margin: 0 18px 20px 18px;
}
.login .login-qq {
	text-align: center;
	margin: 20px 0;
}
.login .login-qq a {
	border-radius: 100%;
	position: relative;
	width: 50px;
	height: 50px;
	margin: 0 5px;
	line-height: 50px;
	padding: 0;
	font-size: 25px;
}
.login-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 40px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: var(--secondary);
}
.login-icon i {
	font-size: 16px !important;
}
.login-text {
	font-size: 0.875rem;
	line-height: 1.5;
}
.login-input, .login-select, .login-textarea {
	max-width: 100%;
	width: 100%;
	border: 0 none;
	padding: 0 10px;
	background: var(--card-bg);;
	color: var(--primary);
	border: 1px solid var(--border);
	transition: 0.2s ease-in-out;
	transition-property: color, background-color, border;
}
.login-input, .login-select:not([multiple]):not([size]) {
	height: 40px;
	vertical-align: middle;
	display: inline-block;
}
.login-flex {
	display: flex
;
}
.login-flex-1 {
	flex: 1;
}
.b-r-3 {
	border-radius: 3px !important;
}
.login-inline {
	display: inline-block;
	position: relative;
	width: 100%;
	margin-bottom: 20px;

}
.login-icon:not(.login-icon-flip) ~ .login-input {
	padding-left: 40px !important;
}
.login-input:focus, .login-select:focus, .login-textarea:focus {
	outline: none;
	color: var(--secondary);
	border-color: var(--hover);
}
.login-s-bottom {
	margin-bottom: 10px !important;
}
.login-margin-top {
	margin: 20px 0 20px 0;
}
.change-color {
	background-image: -webkit-gradient(linear, left top, right top, from(var(--hover)), to(#13adff));
	background-image: -webkit-linear-gradient(left, var(--hover), #13adff);
	background-image: -o-linear-gradient(left,var(--hover) 0,#13adff 100%);
	background-image: linear-gradient(90deg, var(--hover), var(--activate));
}
.login-button {
	padding: 0 30px;
	line-height: 46px;
	font-size: 15px;
	width: 100%;
}
.send-verify-code {
	position: absolute;
	right: 5px;
	cursor: pointer;
	background: #eeeeee;
	border-radius: 50px;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	padding: 6px 13px;
	top: 50%;
	bottom: auto;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 12px;
}
.login .close-btn {
	position: absolute;
	right: 5px;
	top: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.message-box {
	margin: 15px 0;
	padding: 10px;
	border-radius: 3px;
	font-size: 14px;
	display: none;
}
.message-box.success {
	background: rgba(46, 204, 113, 0.1);
	color: #27ae60;
	border: 1px solid #2ecc71;
}
.message-box.error {
	background: rgba(231, 76, 60, 0.1);
	color: #c0392b;
	border: 1px solid #e74c3c;
}
/* 模态弹窗 */
.alert-content {
	background: var(--card-bg);
	border-radius: 3px;
	overflow: hidden;
	transform: scale(0.9);
	transition: transform 0.4s ease;
	box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.alert-overlay.active .alert-content {
	transform: scale(1);
}
.alert-body {
	padding: 20px;
	max-height: 60vh;
	overflow-y: auto;
	line-height: 1.6;
	color: var(--secondary);
}
.alert-footer {
	padding: 6px 10px;
	background: rgba(0, 0, 0, 0.02);
	text-align: right;
	border-top: 1px solid var(--border);
	display: flex;
	justify-content: flex-end;
	gap: 20px;
}
.alert-footer .btn{
	padding: 6px 20px;
}
@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
@keyframes modalEnter {
	0% {
		transform: scale(0.9) translateY(20px);
		opacity: 0;
	}
	100% {
		transform: scale(1) translateY(0);
		opacity: 1;
	}
}
@media (max-width: 1800px) {
	.ShowPlus {
		display: none;
	}
}
@media (max-width: 1720px) {
	.floating-nav {
		display: none;
	}
}
@media (max-width: 1440px) {
	.search-box {
		width: 216px;
	}
}
@media (max-width: 1340px) {
	.main-nav a {
		padding: 0 10px;
	}
	.nav-actions {
		gap: 10px;
	}
	.meta-info {
		gap: 5px;
	}
}
@media (max-width: 1190px) {
	.logo .title {
		margin: 1px 10px 0 7px;
	}
	.app-card {
		width: 18.4%;
	}
	.url-card, .qun-card {
		width: 24.25%;
	}
	.beg {
		display: none;
	}
}
@media (max-width: 1130px) {
	.logo .title {
		display: none;
	}
}
@media (max-width: 1000px) {
	.search-box{
		width: 129px;
	}
	.app-card {
		width: 23.5%;
	}
	.url-card, .qun-card {
		width: 32.66%;
	}
}
@media (max-width: 920px) {
	.search-box{
		display: none;
	}
}
@media (max-width: 780px) {
	.top{
		height: 72px;
	}
	.header {
		flex-direction: column;
		text-align: center;
		padding: 30px 20px;
	}
	.logo{
		margin:0;
	}
	.thumbnail {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.container .header{
		padding: 10px;
	}
	.meta-info {
		justify-content: center;
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 1px;
		padding: 0 10px;
	}
	.user-container{
		margin: 0;
	}
	.app-cards {
		flex-direction: column;
		align-items: center;
	}
	.app-card, .url-card, .qun-card, .book-content li, .container h2 {
		width: 100%;
		border-radius: 0;
		text-align: left;
		margin-bottom: 3%;
	}
	.app-card:hover, .url-card:hover, .qun-card:hover{
		transform: none;
	}
	.app-card {
		padding: .938rem;
	}
	.app-card img {
		float: left;
		margin: 0 10px 0 0;
	}
	.app-card a {
		max-width: 90px;
		position: absolute;
		top: 14px;
		right: 10px;
	}
	.app-card:hover a{
		transform: none;
	}
	.app-card p{
		margin: 0;
		padding-top: 4px;
		font-size: .75rem !important;
	}
	.top-nav, .container {
		width: auto;
	}
	.top-nav{
		padding: 0 10px;
		height: 100%;
		margin-top: 1px;
	}
	.container {
		padding: 10px;
	}
	footer {
		padding: 0 10px;
	}
	.plus .container, .plus .top-nav{
		width: 100%;
	}
	.search-box {
		width: 100%;
		max-width: 300px;
	}
	.main-nav a {
		font-size: 14px;
		padding: 0 10px;
	}
	.mobile-menu-btn, .mobile-theme-btn {
		display: block;
		background: transparent;
		color: var(--primary);
		padding: 16px;
		border: none;
		position: relative;
		right: 0px;
		font-size: 18px;
		font-weight: bold;
	}
	.main-nav {
		position: fixed;
		top: 72px;
		left: 0;
		width: 100%;
		background: var(--card-bg);
		display: none;
		flex-wrap: wrap;
		padding: 15px;
		box-shadow: 0 4px 12px rgba(0,0,0,0.15);
		z-index: 99;
	}
	.main-nav.active {
		display: flex;
	}
	.main-nav a, .main-nav .add-container {
		width: 48%;
		margin: 1%;
		padding: 12px 0;
		display: flex;
		justify-content: center;
		align-items: center;
		background: var(--body-bg);
		border-radius: 3px;
		color: var(--primary);
		font-weight: 500;
		transition: all 0.3s ease;
	}
	.main-nav a:hover {
		background: var(--body-bg);
		transform: translateY(-2px);
	}
	.main-nav .add-container a {
		width: 100%;
	}
	.main-nav .add-container .nav-card a{
		background: var(--activate);
		margin: 0;
		transform: none;
	}
	.nav-actions {
		margin-left: auto;
		display: flex;
		justify-content: center;
		gap: 10px;
	}
	.search-box {
		display: flex;
		width: 96%;
		margin: 0 2%;
	}
	.footer-links {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.footer-copyright{
		grid-template-columns: auto;
	}
	.copyright {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		text-align: center;
	}
	.bookadd, .booklist{
		width: 100%;
		position: static;
	}
	.panel .row{
		grid-template-columns: repeat(1, 1fr);
	}
	.down-content{
		padding: 40px 0;
	}
	.btn, .down-btn .btn {
		padding: 5px 10px;
	}
	.down-item{
		flex-direction: column;
		padding: 10px;
	}
	.down-plat {
		align-items: center;
	}
	.down-list .down-btn{
		margin-top: 8px;
		width: 100%;
		text-align: center;
	}
	.m-hidden {
		display: none !important;
	}
	#tooltip {
		display: none !important;
	}
	/* 浮动导航 */
	.floating-nav {
		top: auto;
		bottom: 25px;
		left: 50%;
		transform: translateX(-50%);
		width: fit-content;
		max-width: calc(100% - 20px);
		background: var(--body-bg);
		box-shadow: 0rem 0.33rem 1.67rem 0rem rgba(0, 0, 0, 0.15);
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
		border-radius: 5px;
		display: flex;
		justify-content: center;
		flex-direction: row;
		padding: 8px 10px;
		gap: 8px;
	}
	.floating-nav .sidebar {
		width: 40px;
		height: 35px;
		font-size: 12px;
		box-shadow: none;
	}
	.floating-nav .sidebar:hover, .floating-nav .sidebar.active, .down-item:hover {
		transform: translateX(0);
	}
}