﻿:root {
	/* 默认配色方案 */
	--primary: #323130;
	--secondary: #666666;
	--hover: #2ecc71;
	--border: #edebe9;
	--body-bg: #F7F9FD;
	--card-bg: #ffffff;
	--nav-bg: #ffffff;
	--ads-bg: #2ecc71;
	--activate: #209150;
}

* {
	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 彩色表情符号 */
}
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);
}
a:hover{
	color: var(--hover);
}
input, textarea {
	outline: none;
}
textarea {
	width: 100%;
}
h2 {
	font-size: 22px;
	line-height: 1;
}
.hidden {
	display: none !important;
}
.tr{
	text-align: right;
}
.tl{
	text-align: left;
}
.fl{
	float: left;
}
.fr{
	float: right;
}
.j-end{
	 justify-self: end;
}
#no-results {
	display: none;
	text-align: center;
}

.main-nav {
	display: flex;
	flex-grow: 1;
}
.main-nav a{
	font-size: 16px;
	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 {
	font-size: 16px;
	height: 72px;
	display: flex;
	align-items: center;
	transition: all 0.2s;
	position: relative;
}
.main-nav .add-container:hover .user-card {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(-10px);
}


.action-icon {
	color: var(--primary);
	cursor: pointer;
	font-size: 20px;
}
.container {
	max-width: 1400px;
	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: #1c86d1;
}
.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-container {
	display: flex;
	flex-wrap: wrap;
	gap: 1%;
	margin-bottom: 24px;
}
.app-cards-container {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
	margin-bottom: 24px;
}
.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: 15%;
	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 {
	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-bottom: 0px;
	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: 2%;
}
.container .title {
	font-size: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--primary);
	font-weight: 500;
}
.container .booklist .title {
	font-weight: normal;
}
.container .url-body {
	display: flex !important
}
.container .url-card .url-img {
	display: flex !important
}
.url-card .url-img {
	margin-right: .5rem !important;
	align-items: center !important;
	justify-content: center !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;
}
.hover-glow {
	position: relative;
	overflow: hidden;
}
.hover-glow::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;
}
.hover-glow:hover::after {
	left: 100%;
}
.app-card p {
	margin: 5px 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);
	padding: 5px 10px;
	border-radius: 0px;
	cursor: pointer;
	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 {
	background-color: var(--nav-bg);
	border-top: 1px solid var(--border);
}
footer .container{
	padding: 0;
	color: var(--secondary);
	font-size: 14px;
}
.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;
	gap: 10px;
}
.copyright {
	display: flex;
	flex-direction: row;
	gap: 10px;
}
.floating-nav {
	position: fixed;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 1000;
}
.nav-sidebar {
	width: 60px;
	height: 60px;
	border-radius: 2px;
	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(--nav-bg);
	border: none;
	color: var(--secondary);
}
.nav-sidebar:hover, .nav-sidebar.active {
	background-color: var(--hover);
	color: #ffffff;
	transform: translateX(-5px);
}
.friend-links-container {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 20px;
}
.app-cards-container .TopIco {
	width: 35px;
	height: 35px;
	background: url(../img/TopIco.png);
	top: -2px;
	left: -2px;
	position: absolute;
	font-size: 0px;
}
.app-cards-container .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 6px 15px;
	border-bottom: 1px solid var(--border);
	display: grid;
	align-items: center;
	grid-template-columns: 9fr 1fr;
}
.modal-header h4 {
	text-align: left;
	font-size: 18px;
	line-height: 34px;
}
.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: 15px;
	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 {
	transition: all .32s ease-in-out;
	display: block;
	width: 100%;
	padding: 0px;
	box-sizing: border-box;
	border-radius: 4px 4px 0 0;
}
.qun-card .item .a:hover h3 {
	color: var(--hover);
	cursor: pointer;
}
.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 .article_btm {
	border-top: 1px solid var(--border);
	padding: 8px 0 0 0;
	border-radius: 0 0 4px 4px;
}
.qun-card .item .view {
	font-size: 14px;
	opacity: .6;
}
.qun-card .item .view .fa {
	padding-right: 8px;
}
.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-container {
	display: flex;
	flex-wrap: wrap;
	gap: 1%;
	margin-bottom: 24px;
}
.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;
	width: 19.2%;
	transition: transform 0.2s;
	margin-bottom: 2%;
}
.panel textarea {
	padding: 3px 6px;
	border: 1px solid #ccc;
	border-radius: 4px;
}
.panel {
	background: var(--card-bg);
	padding: 20px;
	border: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.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;
	border: none;
	border-radius: 3px;
	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: 4px;
	-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: 4px;
}
.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 input {
	border-radius: 2px;
	padding-left: 10px;
	font-size: 13px;
	box-shadow: none;
	width: 100%;
	margin-bottom: 25px;
}
.book-content textarea {
	border-radius: 4px;
	padding-left: 15px;
	padding-top: 10px;
	box-shadow: none;
	height: 125px;
	max-height: 220px;
	width: 100%;
	max-width: 100%;
}
.book-content {
	background-clip: border-box;
	border-radius: .25rem
}
.book-content li {
	list-style: none;
	padding: 15px 15px 0 15px;
	background-color: var(--card-bg);
	margin-bottom: 25px;
	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: 12px;
	object-fit: cover;
	margin-right: 30px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.2);
	border: 3px solid rgba(255,255,255,0.2);
}
.short-title {
	display: inline-block;
	background: rgba(255,255,255,0.15);
	color: white;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 14px;
	margin-bottom: 15px;
	font-weight: 500;
}
.meta-info {
	display: flex;
	gap: 20px;
	font-size: 14px;
	opacity: 0.9;
}
.meta-info span {
	display: flex;
	align-items: center;
	gap: 6px;
}
.meta-info span a{
	color: white;
}
.content {
	padding: 40px;
}
.section {
	margin-bottom: 40px;
}
.section-title {
	font-size: 22px;
	margin-bottom: 20px;
	color: var(--hover);
	position: relative;
	padding-left: 15px;
}
.section-title:before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	height: 20px;
	width: 4px;
	background: var(--hover);
	border-radius: 2px;
}
.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-list {
	display: grid;
	gap: 15px;
}
.down-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	border-radius: 8px;
	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 {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	border-color: var(--hover);
}
.down-item:hover .down-plat{
	color: var(--hover);
}
.down-plat .beiZhu {
	font-size: 14px;
	color: var(--primary);
	font-weight: 400;
	padding-left: 15px;
}
.down-plat .size {
	font-size: 14px;
	color: var(--secondary);
	display: block;
	margin-top: 5px;
}
.btn {
	display: inline-block;
	background: var(--hover);
	color: white;
	padding: 10px 20px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
	font-size: 14px;
	text-align: center;
	cursor: pointer;
	border: none;
}
.btn:hover {
	color: white;
	background: var(--activate);
	box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}
.btn i {
	margin-right: 8px;
}
.divider {
	height: 1px;
	background: linear-gradient(to right, transparent, var(--border), transparent);
	margin: 30px 0;
}
#overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}
#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;
}
#popup button {
	width: 31px;
	height: 30px;
	background-color: var(--hover);
	color: white;
	border: none;
	font-size: 16px;
	border-radius: 100%;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
#popup button:hover {
	background-color: var(--activate);
}
.user-container {
	position: relative;
	display: inline-block;
}
.user-icon {
	font-size: 20px;
	color: var(--hover);
	cursor: pointer;
	transition: all 0.3s ease;
}
.user-icon:hover {
	color: var(--hover);
}
.user-card {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	background: var(--activate);
	border-radius: 1px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 100;
	text-align: center;
	font-size: 14px;
	line-height: 30px;
}
.user-container:hover .user-card {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(8px);
}
.top-nav .user-card a {
	color: #ffffff;
	font-size: 16px;
	text-align: center;
	display: block;
	padding: 4px 0;
	height: 38px;
}
.top-nav .user-card a:hover {
	background: var(--hover);
}
.mobile-menu-btn, .mobile-theme-btn {
	display: none;
}
@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: 768px) {
	.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;
	}
	.nav-sidebar {
		width: 50px;
		height: 50px;
		font-size: 0.9rem;
	}
	.user-container{
		margin: 0;
	}
	.app-cards-container {
		flex-direction: column;
		align-items: center;
	}
	.app-card, .url-card, .qun-card {
		width: 100%;
		border-radius: 0;
		text-align: left;
	}
	.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 p{
		margin: 0;
		padding-top: 4px;
		font-size: .75rem !important;
	}
	.top-nav{
		padding: 0 10px;
	}
	.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;
		margin: 10px 0 10px auto;
		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: 6px;
		color: var(--primary);
		font-weight: 500;
		transition: all 0.3s ease;
	}
	.main-nav a:hover {
		background: var(--body-bg);
		transform: translateY(-2px);
	}
	.main-nav a.active {
		background: var(--body-bg);
		color: var(--hover);
	}
	.main-nav .add-container a {
		width: 100%;
	}
	.main-nav .add-container .user-card a{
		background: var(--activate);
		margin: 0;
		transform: none;
	}
	.user-actions {
		margin-left: auto;
		display: flex;
		justify-content: center;
		gap: 15px;
	}
	.search-box {
		width: 96%;
		margin: 10px 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);
	}
	.content{
		padding: 40px 0;
	}
	.btn{
		padding: 5px 10px;
	}
	.down-item{
		align-items: flex-start;
		flex-direction: column;
		padding: 10px;
	}
	.down-list .down-btn{
		margin-top: 8px;
		width: 100%;
		text-align: center;
	}
	.m-hidden {
		display: none !important;
	}
}