/* 通用内容页面样式 */


/* 面包屑导航 */
.breadcrumb {
	background: #f8f9fa;
	padding: 15px 0;
	border-bottom: 1px solid var(--border-color);
}

.breadcrumb .w1 {
	display: flex;
	align-items: center;
	font-size: 0.95rem;
	color: var(--light-text);
}

.breadcrumb a {
	color: var(--light-text);
	transition: color 0.3s ease;
}

.breadcrumb a:hover {
	color: var(--primary-color);
}

.breadcrumb .separator {
	margin: 0 10px;
	color: #ccc;
}

.breadcrumb .current {
	color: var(--primary-color);
	font-weight: 600;
}

/* 主要内容区域 */
.content-container {
	padding: 60px 0;
	min-height: 600px;
	background: #fff;
}

.content-main {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 页面标题 */
.page-title {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
	padding-bottom: 20px;
}

.page-title h1 {
	font-size: 2.5rem;
	color: var(--primary-color);
	font-weight: bold;
	margin-bottom: 15px;
}

.page-title .title-line {
	width: 80px;
	height: 4px;
	background: var(--primary-color);
	margin: 0 auto;
	border-radius: 2px;
	position: relative;
}

.page-title .title-line::before,
.page-title .title-line::after {
	content: '';
	position: absolute;
	top: 0;
	width: 20px;
	height: 4px;
	background: var(--accent-color);
	border-radius: 2px;
}

.page-title .title-line::before {
	left: -30px;
}

.page-title .title-line::after {
	right: -30px;
}

.page-subtitle {
	font-size: 1.2rem;
	color: var(--light-text);
	max-width: 800px;
	margin: 20px auto 0;
	line-height: 1.6;
}

/* 内容区块通用样式 */
.content-section {
	margin-bottom: 60px;
}

.content-section:last-child {
	margin-bottom: 0;
}

.section-title {
	font-size: 1.8rem;
	color: var(--primary-color);
	font-weight: bold;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--light-color);
	position: relative;
}

.section-title i {
	margin-right: 12px;
	color: var(--primary-color);
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 60px;
	height: 2px;
	background: var(--accent-color);
}

.section-content {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-color);
}

/* 文字内容样式 */
.content-text p {
	margin-bottom: 20px;
	text-align: justify;
}

.content-text strong {
	color: var(--primary-color);
	font-weight: 600;
}

.content-text a {
	color: var(--primary-color);
	text-decoration: underline;
	transition: color 0.3s ease;
}

.content-text a:hover {
	color: var(--accent-color);
}

/* 列表样式 */
.content-ul,
.content-ol {
	margin: 20px 0;
	padding-left: 30px;
}

.content-ul li,
.content-ol li {
	margin-bottom: 12px;
	line-height: 1.6;
}

.content-ul li {
	list-style-type: disc;
}

.content-ol li {
	list-style-type: decimal;
}

/* 引用样式 */
.content-quote {
	background: var(--light-color);
	border-left: 4px solid var(--primary-color);
	padding: 25px;
	margin: 30px 0;
	border-radius: 0 8px 8px 0;
	font-style: italic;
	position: relative;
}

.content-quote::before {
	content: '"';
	font-size: 3rem;
	color: var(--primary-color);
	opacity: 0.2;
	position: absolute;
	top: 10px;
	left: 15px;
	font-family: serif;
}

.content-quote p {
	margin: 0;
	padding-left: 30px;
	font-size: 1.15rem;
}

/* 表格样式 */
.content-table {
	width: 100%;
	border-collapse: collapse;
	margin: 30px 0;
	box-shadow: 0 3px 15px rgba(23, 55, 130, 0.1);
	border-radius: 8px;
	overflow: hidden;
}

.content-table thead {
	background: var(--primary-color);
}

.content-table th {
	color: white;
	font-weight: 600;
	text-align: left;
	padding: 18px 20px;
	font-size: 1.1rem;
}

.content-table tbody tr {
	border-bottom: 1px solid var(--border-color);
	transition: background 0.3s ease;
}

.content-table tbody tr:hover {
	background: var(--light-color);
}

.content-table tbody tr:last-child {
	border-bottom: none;
}

.content-table td {
	padding: 16px 20px;
	color: var(--text-color);
}

.content-table tr:nth-child(even) {
	background: #f9f9f9;
}

/* 图片样式 */
/*.section-content {
	margin: 30px 0;
	text-align: center;
}*/

.section-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);margin: 30px auto;display: block;
}

.image-caption {
	margin-top: 10px;
	font-size: 0.95rem;
	color: var(--light-text);
	font-style: italic;
}

/* 信息框样式 */
.info-box {
	background: #e8f4ff;
	border: 1px solid #b8d4ff;
	border-radius: 8px;
	padding: 25px;
	margin: 30px 0;
	display: flex;
	align-items: flex-start;
}

.info-box i {
	color: var(--primary-color);
	font-size: 1.5rem;
	margin-right: 20px;
	flex-shrink: 0;
	margin-top: 3px;
}

.info-box-content {
	flex: 1;
}

.info-box-title {
	font-size: 1.2rem;
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 10px;
}

.warning-box {
	background: #fff8e8;
	border: 1px solid #ffd8b8;
}

.warning-box i {
	color: #ff9800;
}

.success-box {
	background: #e8f8f0;
	border: 1px solid #b8e8d0;
}

.success-box i {
	color: #4caf50;
}

/* 联系方式样式 */
.contact-info {
	background: var(--light-color);
	border-radius: 12px;
	padding: 40px;
	margin-top: 40px;
	box-shadow: 0 5px 20px rgba(23, 55, 130, 0.1);
}

.contact-title {
	font-size: 1.8rem;
	color: var(--primary-color);
	margin-bottom: 30px;
	text-align: center;
	font-weight: bold;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.contact-item {
	display: flex;
	align-items: center;
	padding: 20px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.contact-item:hover {
	transform: translateY(-5px);
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	flex-shrink: 0;
}

.contact-icon i {
	color: white;
	font-size: 1.3rem;
}

.contact-details h4 {
	font-size: 1.1rem;
	color: var(--primary-color);
	margin-bottom: 5px;
	font-weight: 600;
}

.contact-details p {
	color: var(--text-color);
	font-size: 1rem;
	line-height: 1.5;
}

.contact-details a {
	color: var(--text-color);
	transition: color 0.3s ease;
}

.contact-details a:hover {
	color: var(--primary-color);
}

/* 响应式设计 */
@media (max-width: 992px) {
	.content-banner {
		height: 250px;
	}

	.content-banner .banner-title {
		font-size: 2.5rem;
	}

	.banner-subtitle {
		font-size: 1.1rem;
	}

	.page-title h1 {
		font-size: 2.2rem;
	}

	.section-title {
		font-size: 1.6rem;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.content-banner {
		height: 220px;
	}

	.content-banner .banner-title {
		font-size: 2rem;
	}

	.banner-subtitle {
		font-size: 1rem;
		margin-top: 15px;
	}

	.content-container {
		padding: 40px 0;
	}

	.page-title h1 {
		font-size: 1.8rem;
	}

	.page-subtitle {
		font-size: 1.1rem;
	}

	.section-title {
		font-size: 1.4rem;
	}

	.section-content {
		font-size: 1.05rem;
	}

	.content-quote {
		padding: 20px;
	}

	.content-table th,
	.content-table td {
		padding: 12px 15px;
		font-size: 0.95rem;
	}

	.info-box {
		padding: 20px;
		flex-direction: column;
	}

	.info-box i {
		margin-right: 0;
		margin-bottom: 15px;
	}

	.contact-info {
		padding: 30px 20px;
	}
}

@media (max-width: 480px) {
	.content-banner {
		height: 200px;
	}

	.content-banner .banner-title {
		font-size: 1.6rem;
	}

	.banner-subtitle {
		font-size: 0.9rem;
	}

	.breadcrumb {
		font-size: 0.85rem;
	}

	.page-title h1 {
		font-size: 1.6rem;
	}

	.page-subtitle {
		font-size: 1rem;
	}

	.content-section {
		margin-bottom: 40px;
	}

	.content-quote {
		padding: 15px;
	}

	.content-quote p {
		font-size: 1rem;
		padding-left: 20px;
	}

	.contact-item {
		padding: 15px;
	}

	.contact-icon {
		width: 40px;
		height: 40px;
		margin-right: 15px;
	}

	.contact-icon i {
		font-size: 1.1rem;
	}
}