:root {
	--primary-color: #2362ac;
	--secondary-color: #6c757d;
	--accent-color: #1a4a8a;
	--success-color: #28a745;
	--light-color: #f8f9fa;
	--dark-color: #343a40;
	--card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--transition: all 0.3s ease;
	--gradient-start: #2362ac;
	--gradient-mid: #1e5294;
	--gradient-end: #1a4a8a;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #f5f7fa;
	color: #333;
	line-height: 1.6;
	overflow-x: hidden;
}

/* 主视觉区域样式 */
.hero-section {
	position: relative;
	background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
	color: white;
	padding: 3rem 0;
	margin-bottom: 1rem;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="90" r="3" fill="rgba(255,255,255,0.1)"/></svg>');
	opacity: 0.3;
	animation: float 20s ease-in-out infinite;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	text-shadow: 0 2px 10px rgba(0,0,0,0.2);
	animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 300;
	text-shadow: 0 1px 5px rgba(0,0,0,0.1);
	animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-primary,
.btn-secondary {
	display: inline-block;
	padding: 0.75rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-primary {
	background-color: white;
	color: var(--primary-color);
	border: 2px solid white;
}

.btn-primary:hover {
	background-color: transparent;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
	background-color: transparent;
	color: white;
	border: 2px solid white;
}

.btn-secondary:hover {
	background-color: white;
	color: var(--primary-color);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* 动画效果 */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-10px) rotate(5deg);
	}
}

/* 响应式主视觉区域 */
@media (max-width: 768px) {
	.hero-section {
		padding: 4rem 0;
	}
	
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {
		font-size: 1.25rem;
	}
	
	.hero-buttons {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}
	
	.btn-primary,
	.btn-secondary {
		width: 80%;
		text-align: center;
	}
}

@media (max-width: 576px) {
	.hero-title {
		font-size: 1.5rem;
	}
	
	.hero-subtitle {
		font-size: 1.1rem;
	}
	
	.btn-primary,
	.btn-secondary {
		width: 90%;
	}
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.col-md-4, .col-md-6 {
	padding: 0 15px;
	position: relative;
	width: 100%;
}

@media (min-width: 768px) {
	.col-md-4 {
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
	.col-md-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

.header {
	background: linear-gradient(135deg, var(--primary-color), #1e5294);
	color: white;
	padding: 1.5rem 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjZmZmIj48L3JlY3Q+CjxyZWN0IHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9IiNmNWY3ZmEiPjwvcmVjdD4KPC9zdmc+');
	opacity: 0.1;
}

.header-content {
	position: relative;
	z-index: 1;
}

.logo-container {
	display: flex;
	align-items: center;
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0;
	display: flex;
	align-items: center;
}

.logo img {
	margin-right: 10px;
	height: 36px;
}

.nav-links {
	display: flex;
	gap: 1.5rem;
	margin: 0 0 0 15px;
	padding: 0;
	list-style: none;
}

.nav-links a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
	padding: 0.5rem 0;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: white;
	transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
	width: 100%;
}

.main-container {
	padding: 0.5rem 0;
}

.card {
	background-color: white;
	border-radius: 12px;
	box-shadow: var(--card-shadow);
	overflow: hidden;
	transition: var(--transition);
	margin-bottom: 1rem;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-header {
	background-color: var(--primary-color);
	color: white;
	padding: 1.5rem;
	position: relative;
}

.card-header h3 {
	margin: 0;
	font-size: 1.5rem;
}

.card-body {
	padding: 1.5rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-control {
	border-radius: 8px;
	padding: 0.75rem 1rem;
	border: 1px solid #ddd;
	transition: var(--transition);
	width: 100%;
	font-size: 1rem;
}

.form-control:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.2rem rgba(35, 98, 172, 0.25);
	outline: none;
}

.btn {
	border-radius: 8px;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	transition: var(--transition);
	cursor: pointer;
	border: none;
	font-size: 1rem;
}

.btn-primary {
	background-color: var(--primary-color);
	color: white;
}

.btn-primary:hover {
	background-color: #1e5294;
	transform: translateY(-2px);
}

.btn-outline-secondary {
	border: 1px solid var(--secondary-color);
	color: var(--secondary-color);
	background-color: transparent;
}

.btn-outline-secondary:hover {
	background-color: var(--secondary-color);
	color: white;
}

.btn-success {
	background-color: var(--success-color);
	color: white;
}

.btn-success:hover {
	background-color: #218838;
	transform: translateY(-2px);
}

.social-login {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin: 1.5rem 0;
}

.social-btn {
	width: 48px;
	height: 48px;
	border-radius: 10%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: white;
	transition: var(--transition);
	border: none;
	cursor: pointer;
}

.social-btn:hover {
	transform: translateY(-3px);
	opacity: 0.9;
}

.wechat-btn {
	background-color: #07C160;
}

.qq-btn {
	background-color: #1DA1F2;
}

.dingtalk-btn {
	background-color: #1E88E5;
}

.news-section {
	margin-top: 0rem;
}

.news-section h4 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--primary-color);
	display: inline-block;
}

.news-list {
	list-style: none;
	padding: 0;
}

.news-list li {
	margin-bottom: 0.75rem;
	position: relative;
	padding-left: 1.5rem;
}

.news-list li::before {
	content: '•';
	color: var(--primary-color);
	font-weight: bold;
	position: absolute;
	left: 0;
}

.news-list a {
	color: var(--dark-color);
	text-decoration: none;
	transition: var(--transition);
}

.news-list a:hover {
	color: var(--primary-color);
}

.features-section {
	background-color: var(--light-color);
	padding: 1rem 0;
}

.feature-card {
	text-align: center;
	padding: 1.5rem;
	border-radius: 12px;
	background-color: white;
	box-shadow: var(--card-shadow);
	transition: var(--transition);
	height: 100%;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* 新增功能区域标题样式 */
.section-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
	margin: 12px auto 0;
	border-radius: 2px;
}

.mb-10 {
	margin-bottom: 1rem;
}

.mb-8 {
	margin-bottom: 1rem;
}

.feature-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

/* 响应式优化 - 系统优势布局 */
@media (min-width: 768px) {
	.features-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 1.5rem;
	}
}

@media (max-width: 767px) {
	.features-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	
	.feature-card {
		padding: 1rem;
	}
	
	.feature-icon {
		font-size: 2rem;
	}
	
	.feature-card h3 {
		font-size: 1.1rem;
	}
	
	.feature-card p {
		font-size: 0.9rem;
	}
}

.footer {
	background-color: var(--dark-color);
	color: white;
	padding: 3rem 0 2rem;
	margin-top: 1rem;
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
}

.footer h4 {
	color: white;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.5rem;
}

.footer h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background-color: var(--primary-color);
	border-radius: 2px;
}

.footer a {
	color: #adb5bd;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.footer a:hover {
	color: white;
}

.footer ul.list-unstyled li {
	margin-bottom: 0.75rem;
}

.footer ul.list-unstyled li a {
	padding-left: 15px;
	display: inline-block;
}

.footer ul.list-unstyled li a::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--primary-color);
	transition: transform 0.3s ease;
}

.footer ul.list-unstyled li a:hover {
	transform: translateX(5px);
	padding-left: 20px;
}

.footer .social-links {
	display: flex;
	gap: 1rem;
}

.footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.footer .social-links a:hover {
	background-color: var(--primary-color);
	transform: translateY(-3px);
	border-color: white;
}

.footer .border-top {
	border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
}

.footer .text-center p {
	font-size: 0.9rem;
	margin-bottom: 0;
}

.templates-section {
	margin-top: 2rem;
}

.template-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

.template-card {
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
	transition: var(--transition);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.template-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--card-shadow);
}

.template-image {
	height: 160px;
	background-color: #f8f9fa;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--secondary-color);
}

.template-content {
	padding: 1rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.template-title {
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--dark-color);
}

.template-desc {
	color: var(--secondary-color);
	font-size: 0.9rem;
	margin-bottom: 1rem;
	flex-grow: 1;
}

.template-link {
	display: inline-block;
	font-size: 0.9rem;
	color: var(--primary-color);
	font-weight: 500;
}

.alert {
	padding: 1rem;
	margin-bottom: 1.5rem;
	border-radius: 8px;
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

#rhszzhmm {
	padding: 0.5rem;
	border-radius: 8px;
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	line-height: 25px;
	/* 核心换行属性 */
	white-space: normal; /* 恢复默认的自动换行（覆盖可能的nowrap） */
	word-wrap: break-word; /* 允许长单词/URL换行到下一行 */
	overflow-wrap: break-word; /* 标准写法，兼容现代浏览器 */
	word-break: break-all; /* 可选：允许在任意字符处换行（根据需求选择） */
}

.form-check {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.form-check-input {
	margin-right: 0.5rem;
}

.text-center {
	text-align: center;
}

.mt-2 {
	margin-top: 0.5rem;
}

.mt-4 {
	margin-top: 1rem;
}

.mb-2 {
	margin-bottom: 0.5rem;
}

.w-100 {
	width: 100%;
}

.border-top {
	border-top: 1px solid #dee2e6;
}

.pt-5 {
	padding-top: 1.25rem;
}

.mt-5 {
	margin-top: 1.25rem;
}

/* 新闻列表样式优化 */
.news-list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.news-list li {
	margin-bottom: 0.75rem;
	padding-left: 1.5rem;
	position: relative;
	transition: transform 0.2s ease;
}

.news-list li::before {
	content: "▸";
	position: absolute;
	left: 0;
	color: var(--primary-color);
}

.news-list li:hover {
	transform: translateX(5px);
}

.news-list li a {
	color: var(--secondary-color);
	text-decoration: none;
	transition: color 0.2s ease;
	display: block;
	font-size: 0.95rem;
}

.news-list li a:hover {
	color: var(--primary-color);
}

.news-list .view-more {
	text-align: center;
	margin-top: 1rem;
	padding-left: 0;
}

.news-list .view-more::before {
	display: none;
}

.news-list .view-more a {
	color: var(--primary-color);
	font-weight: 500;
}

/* 快速入口样式 */
.quick-access-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

@media (max-width: 768px) {
	.quick-access-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.quick-access-grid {
		grid-template-columns: 1fr;
	}
}

.quick-access-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1.5rem 1rem;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-radius: 12px;
	text-decoration: none;
	color: var(--dark-color);
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.quick-access-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	border-color: var(--primary-color);
	background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.quick-icon {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.quick-text {
	font-size: 0.9rem;
	font-weight: 500;
}

@media (max-width: 768px) {
	.nav-links {
		gap: 1rem;
		flex-wrap: wrap;
		justify-content: center;
	}

	.card-header h3 {
		font-size: 1.25rem;
	}

	.social-login {
		flex-wrap: wrap;
	}
}

@media (max-width: 576px) {
	.logo {
		font-size: 1.5rem;
	}

	.card-body {
		padding: 1rem;
	}

	.btn {
		padding: 0.6rem 1rem;
	}
}

/* 加载弹窗样式 */
.loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loading-overlay.active {
	opacity: 1;
	visibility: visible;
}

.loading-modal {
	background-color: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	text-align: center;
	max-width: 400px;
	width: 90%;
}

.loading-spinner {
	border: 4px solid #f3f3f3;
	border-top: 4px solid var(--primary-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
	margin: 0 auto 20px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.loading-text {
	font-size: 16px;
	color: var(--dark-color);
	margin: 0;
}