/* 基础样式 */
:root {
	--primary-color: #1a3e72;
	/* --secondary-color: #c41900; */
	--secondary-color: #c41900;
	--text-color: #333;
	--light-gray: #f5f5f5;
	--white: #fff;
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Microsoft YaHei', 'SimSun', sans-serif;
	color: var(--text-color);
	line-height: 1.6;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

a {
	text-decoration: none;
	color: var(--primary-color);
	transition: var(--transition);
}

a:hover {
	color: var(--secondary-color);
}

img {
	max-width: 100%;
	height: auto;
}

/* 文本对齐 */
.text-center {
	text-align: center !important;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

/* 外边距（Margin）*/
.mt-0 {
	margin-top: 0 !important;
}

.mt-1 {
	margin-top: 0.25rem !important;
}

/* 4px */
.mt-2 {
	margin-top: 0.5rem !important;
}

/* 8px */
.mt-3 {
	margin-top: 1rem !important;
}

/* 16px */
.mt-4 {
	margin-top: 1.5rem !important;
}

/* 24px */
.mt-5 {
	margin-top: 3rem !important;
}

/* 48px */


.btn {
	display: inline-block;
	padding: 10px 25px;
	background: var(--primary-color);
	color: var(--white);
	border-radius: 4px;
	font-weight: bold;
	transition: var(--transition);
	border: none;
	cursor: pointer;
}

.btn:hover {
	background: var(--secondary-color);
	color: var(--white);
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
}

.section-title h2 {
	font-size: 36px;
	color: var(--primary-color);
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.section-title h2:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: var(--secondary-color);
}

.section-title p {
	color: #666;
	font-size: 16px;
}

/* 基础卡片样式 */
.testimonial-item {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

/* 悬停动画效果 */
.testimonial-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* 图片容器 */
.testimonial-item .testimonial-image {
	height: 220px;
	overflow: hidden;
	position: relative;
}

.testimonial-item .testimonial-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.testimonial-item:hover .testimonial-image img {
	transform: scale(1.05);
}

/* 图片角标 */
.testimonial-item .testimonial-image:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* 内容区域 */
.testimonial-content {
	padding: 25px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	background: #fff;
	position: relative;
}

/* 标题样式 */
.testimonial-content h3 {
	font-size: 1.4rem;
	color: var(--primary-color);
	margin-bottom: 8px;
	font-weight: 700;
	line-height: 1.3;
}

/* 客户信息 */
.testimonial-content .client {
	color: var(--secondary-color);
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

/* 引用符号 */
.testimonial-content .client:before {
	content: "—";
	margin-right: 5px;
}

/* 评论文本 */
.testimonial-content .quote {
	font-size: 1rem;
	line-height: 1.7;
	color: #555;
	margin-bottom: 20px;
	position: relative;
	flex-grow: 1;
}

/* 引用装饰 */
.testimonial-content .quote:before,
.testimonial-content .quote:after {
	content: '"';
	font-family: Georgia, serif;
	font-size: 3rem;
	color: rgba(26, 62, 114, 0.1);
	position: absolute;
	line-height: 1;
}

.testimonial-content .quote:before {
	top: -15px;
	left: -10px;
}

.testimonial-content .quote:after {
	bottom: -40px;
	right: -10px;
}

/* 底部装饰线 */
/* .testimonial-content:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 25px;
	width: calc(100% - 50px);
	height: 2px;
	background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
	opacity: 0.2;
} */

/* 顶部导航 */
.header {
	background: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	transition: var(--transition);
}

.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}

.logo a {
	display: flex;
	align-items: center;
	font-size: 22px;
	font-weight: bold;
}

.logo img {
	height: 40px;
	margin-right: 10px;
}

.main-nav ul {
	display: flex;
	list-style: none;
}

.main-nav ul li {
	margin-left: 30px;
}

.main-nav ul li a {
	font-weight: 500;
	font-size: 16px;
	position: relative;
}

.main-nav ul li a:after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--secondary-color);
	transition: var(--transition);
}

.main-nav ul li a:hover:after {
	width: 100%;
}

.main-nav ul li a.on{
	color: var(--secondary-color);
}

.main-nav ul li a.on:after{
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--secondary-color);
	transition:none
}

.mobile-menu-btn {
	display: none;
	font-size: 24px;
	cursor: pointer;
}

.mobile-menu {
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	background: var(--white);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	transform: translateY(-100%);
	opacity: 0;
	transition: var(--transition);
	z-index: 999;
}

.mobile-menu.active {
	transform: translateY(0);
	opacity: 1;
}

.mobile-menu ul {
	list-style: none;
}

.mobile-menu ul li {
	margin-bottom: 15px;
}

.mobile-menu ul li a {
	display: block;
	padding: 10px;
	font-size: 16px;
	border-bottom: 1px solid #eee;
}

/* 主要内容 */
.main-content {
	margin-top: 80px;
	min-height: calc(100vh - 200px);
}

/* 页脚 */
.footer {
	background: var(--primary-color);
	color: var(--white);
	padding: 50px 0 20px;
	background: #000;
}

.footer-top {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 30px;
}

.footer-col h3 {
	font-size: 20px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-col h3:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background: var(--secondary-color);
}

.footer-col p {
	margin-bottom: 15px;
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col ul li a {
	color: #ddd;
}

.footer-col ul li a:hover {
	color: var(--secondary-color);
	padding-left: 5px;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: var(--white);
	font-size: 18px;
	transition: var(--transition);
}

.social-links a:hover {
	background: var(--secondary-color);
	transform: translateY(-3px);
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 14px;
}
/* 页面banner */
.banner {
    margin-top: 70px;
	position: relative;
}

.banner .swiper-wrapper{
	height: 100%;
}

.banner .banner-img{
	height: 600px;
	overflow: hidden;
}

.banner .banner-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}



/* 页面banner */
.page-banner {
	height: 400px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	position: relative;
	margin-top: 70px;
}

.page-banner:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.page-banner .container {
	position: relative;
	z-index: 1;
	text-align: center;
	color: #fff;
}

.page-banner h1 {
	font-size: 48px;
	margin-bottom: 15px;
}

.page-banner p {
	font-size: 20px;
}

/* 通用内边距 */
.section-padding {
	padding: 80px 0;
}

.bg-light {
	background: #f9f9f9;
}

.bg-primary {
	background: var(--primary-color);
}

.text-white {
	color: #fff;
}

/* Banner内容容器 - 基础样式 */
.banner-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 1200px;
	padding: 30px;
	text-align: center;
	z-index: 10;
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
	animation: fadeInUp 0.8s ease-out;

	/* 玻璃拟态效果（可选） */
	/* background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15); */
}

/* 标题样式 */
.banner-content h2 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	/* 响应式字体 */
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.2;
	letter-spacing: -0.5px;
	color: inherit;
}

/* 副标题样式 */
.banner-content p {
	font-size: clamp(1rem, 2vw, 1.5rem);
	margin-bottom: 25px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

/* 按钮样式 */
.banner-content .btn {
	display: inline-block;
	padding: 12px 30px;
	background: var(--primary-color, #1a3e72);
	color: white;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner-content .btn:hover {
	background: transparent;
	border-color: white;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 动画效果 */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate(-50%, -40%);
	}

	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

/* 画廊网格容器 */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 25px;
	padding: 20px 0;
}

/* 画廊单个项目 */
.gallery-item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	aspect-ratio: 4/3;
	/* 保持统一宽高比 */
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 图片样式 */
.gallery-item img {
	width: 100%;
	height: 100%;
	/* object-fit: cover; */
	transition: transform 0.8s ease;
}

/* 悬浮遮罩层 */
.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(26, 62, 114, 0.7);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.4s ease;
	color: white;
}

/* 遮罩内容 */
.gallery-overlay h3 {
	font-size: 1.4rem;
	margin-bottom: 10px;
	transform: translateY(20px);
	transition: transform 0.4s ease;
}

.gallery-overlay a {
	color: white;
	background: var(--secondary-color, #c41900);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 15px;
	align-self: flex-end;
	transform: translateY(20px);
	transition: all 0.3s ease;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* 交互效果 */
.gallery-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
	transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay a {
	transform: translateY(0);
}

.gallery-overlay a:hover {
	background: white;
	color: var(--primary-color, #1a3e72);
	transform: translateY(0) scale(1.1);
}

/* 灯光效果（可选） */
.gallery-item:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.gallery-item:hover:before {
	opacity: 1;
}

/* 基础CTA容器 */
.cta-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	padding: 40px;
	z-index: 2;
}

/* 灯光背景效果 */
.cta-content:before {
	content: "";
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	background: radial-gradient(circle at center,
			rgba(255, 255, 255, 0.15) 0%,
			rgba(255, 255, 255, 0) 70%);
	z-index: -1;
	opacity: 0;
	transition: opacity 0.6s ease;
}

/* 标题样式 */
.cta-content h2 {
	font-size: 2.5rem;
	color: white;
	margin-bottom: 20px;
	line-height: 1.3;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	animation: fadeInUp 0.8s ease-out;
}

/* 副标题样式 */
.cta-content p {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* 按钮容器 */
.cta-actions {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* 主按钮样式 */
.cta-btn {
	display: inline-flex;
	align-items: center;
	padding: 15px 35px;
	background: var(--secondary-color, #c41900);
	/* color: var(--primary-color, #1a3e72); */
	color: #fff;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 2px solid transparent;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 次要按钮样式 */
.cta-btn.secondary {
	background: transparent;
	color: white;
	border-color: white;
}

/* 按钮交互效果 */
.cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	color: #fff;
}

.cta-btn:active {
	transform: translateY(1px);
}

.cta-btn .icon {
	margin-left: 10px;
	transition: transform 0.3s ease;
}

.cta-btn:hover .icon {
	transform: translateX(5px);
	color: #fff;
}

/* 装饰元素 */
.cta-decoration {
	position: absolute;
	width: 100px;
	height: 100px;
	border: 2px dashed rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	animation: rotate 20s linear infinite;
}

.cta-decoration:nth-child(1) {
	top: -30px;
	left: -30px;
}

.cta-decoration:nth-child(2) {
	bottom: -20px;
	right: -20px;
	width: 60px;
	height: 60px;
}

/* 动画效果 */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}


/* 关于律所 */
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.about-text h2 {
	font-size: 32px;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.about-text p {
	margin-bottom: 15px;
}

.about-image {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	height: 290px;
}

.about-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-list{
	width: 100%;
	height: auto;
	margin-top: 20px;
}

.about-list{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.about-list li{
	list-style: none;
}

/* 律所文化 */
.culture-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.culture-item {
	text-align: center;
	padding: 30px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
}

.culture-item:hover {
	transform: translateY(-10px);
}

.culture-icon {
	width: 80px;
	height: 80px;
	background: var(--primary-color);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 30px;
}

.culture-item h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--primary-color);
}

/* 律师团队 */
/* 律师团队整体样式 */
.team-section {
	background-color: #f8f5f2;
	padding: 80px 0;
	font-family: 'Microsoft YaHei', 'SimSun', Arial, sans-serif;
	position: relative;
}

/* .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
} */

.section-title {
	text-align: center;
	font-size: 36px;
	color: #333;
	margin-bottom: 10px;
	position: relative;
	padding-bottom: 15px;
}

/* .section-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: #8b5a2b;
} */

.section-subtitle {
	text-align: center;
	color: #777;
	font-size: 18px;
	margin-bottom: 50px;
}

/* 律师网格布局 - 每行2个 */
.team-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

/* 轮播容器 */
.team-swiper-container {
	padding: 20px;
	position: relative;
	overflow: hidden;
}

/* 律师成员卡片样式 - 左右结构 */
.team-member {
	display: flex;
	background: white;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: all 0.3s ease;
	height: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

.team-member:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* 导航按钮样式 */
#team-swiper-container .swiper-button-prev,
#team-swiper-container .swiper-button-next {
	width: 50px;
	height: 50px;
	background-color: rgba(139, 90, 43, 0.8);
	border-radius: 50%;
	color: white;
	transition: all 0.3s;
}

/* #team-swiper-container .swiper-button-next{
	right: -70px;
}

#team-swiper-container .swiper-button-prev{
	left: -70px;
} */

#team-swiper-container .swiper-button-prev:hover,
#team-swiper-container .swiper-button-next:hover {
	background-color: rgba(139, 90, 43, 1);
}

#team-swiper-container .swiper-button-prev::after,
#team-swiper-container .swiper-button-next::after {
	font-size: 20px;
}

/* 分页器样式 */
#team-swiper-container .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #ccc;
	opacity: 1;
}

#team-swiper-container .swiper-pagination-bullet-active {
	background: #8b5a2b;
}

/* 律师照片样式 - 左侧 */
.member-photo {
	flex: 0 0 250px;
	position: relative;
	overflow: hidden;
}

.lawyer-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.photo-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%); */
}

.team-member:hover .lawyer-img {
	transform: scale(1.03);
}

/* 律师信息样式 - 右侧 */
.member-info {
	flex: 1;
	padding: 25px;
	display: flex;
	flex-direction: column;
}

.member-name {
	font-size: 22px;
	color: #222;
	margin-bottom: 5px;
	font-weight: 600;
}

.member-title {
	font-size: 16px;
	color: #8b5a2b;
	margin-bottom: 15px;
	font-weight: 500;
}

.member-detail {
	margin-bottom: 15px;
}

.education,
.expertise {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	color: #555;
	font-size: 15px;
}

.education i,
.expertise i {
	color: #8b5a2b;
	margin-right: 10px;
	font-size: 16px;
	min-width: 20px;
	text-align: center;
}

/* #ls-about .expertise span{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

#ls-about .experience p{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
} */

/* 从业经历样式 */
.experience {
	margin-top: 15px;
}

.experience h4 {
	font-size: 18px;
	color: #444;
	margin-bottom: 10px;
	position: relative;
	padding-left: 15px;
}

.experience h4:before {
	content: '';
	position: absolute;
	left: 0;
	top: 5px;
	height: 15px;
	width: 5px;
	background: #8b5a2b;
}

.experience p {
	color: #666;
	line-height: 1.8;
	font-size: 15px;
	text-align: justify;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.member-photo {
		flex: 0 0 150px;
	}
}

@media (max-width: 768px) {

	/* 小屏幕显示1个 */
	.team-grid {
		grid-template-columns: 1fr;
	}

	/* .team-member {
		max-width: 500px;
		margin: 0 auto;
	} */

	.section-title {
		font-size: 28px!important;
	}

	.team-member {
		flex-direction: column;
		max-width: 500px;
	}

	.member-photo {
		flex: 0 0 430px;
		width: 100%;
	}

	.member-info {
		padding: 15px;
	}
	
	.member-title{
		margin-bottom: 10px;
	}
	
	.education, .expertise{
		margin-bottom: 5px;
	}
	
	.member-detail{
		margin-bottom: 10px;
	}
	
	.experience{
		margin-top: 5px;
	}

	#team-swiper-container .swiper-button-prev,
	#team-swiper-container .swiper-button-next {
		width: 40px;
		height: 40px;
	}
}

@media (max-width: 480px) {
	.team-member {
		flex-direction: column;
	}

	.member-photo {
		flex: 0 0 430px;
		width: 100%;
	}

	.member-info {
		padding: 15px;
	}

	#team-swiper-container {
		padding: 0px;
	}

	.section-title {
		font-size: 30px;
	}
}

/* 业务范围 */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.service-card {
	background: #fff;
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
	text-align: center;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
	width: 80px;
	height: 80px;
	background: var(--primary-color);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 30px;
}

.service-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--primary-color);
}

.service-card ul {
	list-style: none;
	margin-bottom: 20px;
	text-align: left;
}

.service-card ul li {
	padding: 8px 0;
	border-bottom: 1px dashed #eee;
	position: relative;
	padding-left: 20px;
}

.service-card ul li:before {
	content: '\f054';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: var(--secondary-color);
	font-size: 12px;
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
}

.btn-outline:hover {
	background: var(--primary-color);
	color: #fff;
}

.btn-light {
	background: #fff;
	color: var(--primary-color);
}

.btn-light:hover {
	background: var(--secondary-color);
	color: #fff;
}

.btn-small {
	padding: 8px 20px;
	font-size: 14px;
}

/* 新闻动态 */
.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.news-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
}

.news-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.news-card:hover .news-image img {
	transform: scale(1.1);
}

.news-date {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--secondary-color);
	color: #fff;
	padding: 10px;
	text-align: center;
	border-radius: 5px;
	line-height: 1.2;
}

.news-date span:first-child {
	font-size: 24px;
	font-weight: bold;
	display: block;
}

.news-content {
	padding: 20px;
}

.news-content h3 {
	font-size: 20px;
	margin-bottom: 15px;
}

.news-content h3 a {
	color: var(--primary-color);
	transition: var(--transition);
	font-size: 20px;
}

.news-content h3 a:hover {
	color: var(--secondary-color);
}

.news-content p {
	color: #666;
	margin-bottom: 15px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.read-more {
	color: var(--secondary-color);
	font-weight: bold;
	display: inline-flex;
	align-items: center;
}

.read-more i {
	margin-left: 5px;
	transition: var(--transition);
}

.read-more:hover i {
	transform: translateX(5px);
}

/* 新闻列表容器 - 独立命名空间 */
.news-page {
	padding: 60px 0;
	background: #f9fafc;
}

.news-page .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 标题样式 - 区别于首页 */
.news-page .page-title {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

.news-page .page-title h1 {
	font-size: 2.5rem;
	color: #1a3e72;
	display: inline-block;
	padding-bottom: 15px;
}

.news-page .page-title h1:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: #c41900;
}

/* 新闻列表项 - 专业卡片设计 */
.news-list {
	display: grid;
	/* grid-template-columns: 1fr; */
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.news-item {
	background: #fff;
	/* border-radius: 10px; */
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	display: flex;
}

.news-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* 新闻图片区域 */
.news-page .news-image {
	flex: 0 0 40%;
	max-width: 40%;
	height: auto;
	overflow: hidden;
}

.news-page .news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.news-page .news-item:hover .news-image img {
	transform: scale(1.05);
}

/* 新闻内容区域 */
.news-content {
	flex: 1;
	padding: 20px;
	display: flex;
	flex-direction: column;
}

.news-meta {
	display: flex;
	margin-bottom: 15px;
	font-size: 0.9rem;
	color: #666;
}

.news-meta span {
	display: flex;
	align-items: center;
	margin-right: 20px;
}

.news-meta i {
	margin-right: 5px;
	color: #c41900;
}

.news-content h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #1a3e72;
	line-height: 1.4;
}

/* .news-content h3 a {
	color: inherit;
	transition: color 0.3s;
} */

.news-content h3 a:hover {
	color: #c41900;
}

.news-excerpt {
	color: #555;
	margin-bottom: 20px;
	line-height: 1.7;
	flex-grow: 1;
}

.read-more {
	align-self: flex-start;
	color: #c41900;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	transition: all 0.3s;
}

.read-more i {
	margin-left: 5px;
	transition: transform 0.3s;
}

.read-more:hover {
	color: #1a3e72;
}

.read-more:hover i {
	transform: translateX(3px);
}

/* 分页样式 - 专业设计 */
.pagination {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.pagination a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	border-radius: 50%;
	background: #f0f0f0;
	color: #333;
	transition: all 0.3s;
}

.pagination a:hover,
.pagination a.active {
	background: #1a3e72;
	color: white;
}

.pagination .prev,
.pagination .next {
	width: auto;
	padding: 0 15px;
	border-radius: 20px;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.news-item {
		flex-direction: column;
	}

	.news-image {
		flex: 1;
		max-width: 100%;
		height: 250px;
	}

	.news-content {
		padding: 25px;
	}
}

@media (max-width: 768px) {
	.news-page {
		padding: 40px 0;
	}

	.news-page .page-title h1 {
		font-size: 2rem;
	}

	.news-content h3 {
		font-size: 1.3rem;
	}
}

@media (max-width: 576px) {
	.news-meta {
		flex-wrap: wrap;
	}

	.news-meta span {
		margin-bottom: 8px;
	}

	.pagination a {
		width: 35px;
		height: 35px;
		font-size: 0.9rem;
	}

	.pagination .prev,
	.pagination .next {
		padding: 0 10px;
		font-size: 0.9rem;
	}
}

/* 口碑见证 */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 50px;
}

.testimonial-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
}

.testimonial-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
	height: 200px;
	overflow: hidden;
}

.testimonial-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-content {
	padding: 20px;
	text-align: center;
}

.testimonial-content h3 {
	font-size: 16px;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.client {
	color: var(--secondary-color);
	font-weight: bold;
	margin-bottom: 15px;
}

.quote {
	font-style: italic;
	color: #666;
}

.testimonials-swiper-container {
	margin-top: 50px;
}

.testimonials-swiper {
	padding: 20px 0;
}

.testimonials-swiper .swiper-slide {
	height: auto;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 联系我们 */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-bottom: 30px;
}

.contact-info {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item {
	display: flex;
	margin-bottom: 30px;
}

.info-icon {
	width: 60px;
	height: 60px;
	background: var(--primary-color);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-right: 20px;
	flex-shrink: 0;
}

.info-content h3 {
	font-size: 20px;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.info-content p {
	color: #666;
	margin-bottom: 5px;
}

.contact-form {
	background: #fff;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
	font-size: 24px;
	color: var(--primary-color);
	margin-bottom: 20px;
	text-align: center;
}

.form-group {
	margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-family: inherit;
	font-size: 16px;
	transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--primary-color);
	outline: none;
}

.form-group textarea {
	height: 120px;
	resize: vertical;
}

.amap-logo,
.amap-copyright{display: none !important;}
.amap-marker-label{
	border: none;
	background: none;
}
#dituContent{
	height: 100%;
}

/* 分所信息 */
.branches-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.branch-card {
	background: #fff;
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
}

.branch-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.branch-card h3 {
	font-size: 20px;
	color: var(--primary-color);
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}

.branch-card p {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.branch-card i {
	margin-right: 10px;
	color: var(--secondary-color);
}

/* 地图 */
.map-container {
	margin-top: 50px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 分页 */
.pagination {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.pagination a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	border-radius: 50%;
	background: #f5f5f5;
	color: #333;
	transition: var(--transition);
}

.pagination a:hover,
.pagination a.active {
	background: var(--primary-color);
	color: #fff;
}

.pagination .prev,
.pagination .next {
	width: auto;
	padding: 0 15px;
	border-radius: 20px;
}

.pagination .dots {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
}

/***侧边***/
/****右侧****/
.fix_box {
	display: block;
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 99;
	width: 75px;
	margin: auto;
	height: 355px;
}

.fix_box li {
	width: 75px;
	background: #1a3e72;
	margin-bottom: 1px;
	height: 70px;
	float: right;
	cursor: pointer;
	position: relative;
	-webkit-transition: all 0.55s;
	-moz-transition: all 0.55s;
	-ms-transition: all 0.55s;
	-o-transition: all 0.55s;
	transition: all 0.55s;
	list-style: none;
}

.fix_box li img:nth-of-type(1) {
	display: block;
	margin: 0 auto;
}

.fix_box li img:nth-of-type(2) {
	display: none;
	width: 200px;
	/* height: 200px; */
	position: absolute;
	right: 100px;
	border: 1px solid #eee;
	top: -130px;
	max-width: initial;
}

.fix_box li p {
	color: #fff;
	text-align: center;
	font-size: 14px;
}

.fix_box li:hover {
	width: 100px;
	-webkit-transition: all 0.55s;
	-moz-transition: all 0.55s;
	-ms-transition: all 0.55s;
	-o-transition: all 0.55s;
	transition: all 0.55s;
}

.fix_box li:nth-of-type(2):hover img:nth-of-type(2) {
	display: block;
}

.fix_box li:nth-of-type(1) {
	width: 220px;
	position: relative;
	right: -145px;
	-webkit-transition: all 0.55s;
	-moz-transition: all 0.55s;
	-ms-transition: all 0.55s;
	-o-transition: all 0.55s;
	transition: all 0.55s;
}

.fix_box li:nth-of-type(1) div:nth-of-type(1) {
	width: 75px;
	float: left;
}

.fix_box li:nth-of-type(1) div:nth-of-type(2) {
	height: 70px;
	float: right;
	width: 140px;
	box-sizing: border-box;
	padding-top: 15px;
}

.fix_box li:nth-of-type(1) div:nth-of-type(2) span {
	display: inline-block;
	border-left: 1px solid #fff;
	width: 140px;
	color: #fff;
	line-height: 40px;
	text-indent: 1em;
	font-size: 14px;
	letter-spacing: 1px;
}

.fix_box li:nth-of-type(1):hover {
	right: 0px;
}

.m_kefu {
	display: none;
}


/* 响应式设计 */
@media (max-width: 992px) {
	.main-nav ul {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	.section-title h2 {
		font-size: 30px;
	}

	.about-content {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.page-banner h1 {
		font-size: 36px;
	}

	.banner-content {
		padding: 25px;
		width: 95%;
	}

	.banner-content .btn {
		padding: 10px 25px;
		font-size: 1rem;
	}

	.testimonial-item .testimonial-image {
		height: 180px;
	}

	.testimonial-content {
		padding: 20px;
	}

	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
		gap: 20px;
	}

	.gallery-overlay {
		padding: 15px;
	}

	.gallery-overlay h3 {
		font-size: 1.2rem;
	}

	.cta-content {
		padding: 30px;
	}

	.cta-content h2 {
		font-size: 2.2rem;
	}

	.cta-content p {
		font-size: 1.1rem;
	}
}

@media (max-width: 768px) {
	.header .container {
		height: 70px;
	}

	.logo a {
		font-size: 18px;
	}

	.logo img {
		height: 30px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.footer-top {
		grid-template-columns: 1fr;
	}

	.section-padding {
		padding: 40px 0;
	}

	.page-banner {
		height: 200px;
	}

	.page-banner h1 {
		font-size: 30px;
	}

	.page-banner p {
		font-size: 16px;
	}
	
	.about-image{
		height: 200px;
	}
	
	.btn{
		padding: 5px 15px;
	}
	
	.services-grid{
		grid-template-columns: repeat(auto-fit, minmax(150px, 2fr));
		gap: 15px;
	}
	
	.service-icon{
		width: 60px;
		height: 60px;
		margin: 0 auto 15px;
	}
	
	.service-card{
		padding: 15px;
	}
	
	.service-card h3{
		font-size: 18px;
	}
	
	.service-card p{
		font-size: 14px;
	}
	
	.service-card a{
		display: none;
	}
	
	.service-card ul li{
		font-size: 14px;
	}
	
	.banner-content {
		padding: 20px;
		backdrop-filter: blur(5px);
		-webkit-backdrop-filter: blur(5px);
	}

	.banner-content h2 {
		margin-bottom: 10px;
	}

	.banner-content p {
		margin-bottom: 20px;
		display: none;
		/* 小屏幕可隐藏副标题 */
	}

	.testimonial-item {
		max-width: 400px;
		margin: 0 auto;
	}

	.testimonial-content h3 {
		font-size: 1.3rem;
	}

	.quote:before,
	.quote:after {
		font-size: 2.5rem;
	}

	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 15px;
	}

	.gallery-overlay {
		padding: 12px;
		opacity: 1;
		background: rgba(0, 0, 0, 0.5);
	}

	.gallery-overlay h3 {
		font-size: 1.1rem;
		transform: translateY(0);
	}

	.gallery-overlay a {
		transform: translateY(0);
		width: 35px;
		height: 35px;
	}

	.cta-content {
		padding: 25px 20px;
	}

	.cta-content h2 {
		font-size: 1.8rem;
		margin-bottom: 15px;
	}

	.cta-content p {
		font-size: 1rem;
		margin-bottom: 25px;
	}

	.cta-actions {
		gap: 15px;
	}

	.cta-btn {
		padding: 12px 25px;
		font-size: 1rem;
	}
	
	/**about**/
	.culture-grid{
		grid-template-columns: repeat(auto-fit, minmax(150px, 2fr));
		gap: 15px;
	}
	.culture-item{
		padding: 15px;
	}
	
	.culture-icon{
		width: 60px;
		height: 60px;
		margin: 0 auto 15px;
	}
	
	.culture-item h3{
		font-size: 18px;
		margin-bottom: 10px;
	}
	
	.culture-item p{
		font-size: 14px;
	}
	
	.team-section{
		padding: 40px 0;
	}
	
	.section-title{
		margin-bottom: 0px;
	}
	
	.section-subtitle{
		margin-bottom: 10px;
	}
	
	#dituContent{
		height: 300px;
	}
	
	/**新闻列表**/
	.news-list{
		grid-template-columns: 1fr;
	}
	
	.news-page .news-image{
		width: 100%;
		max-width: 100%;
	}
	
	.news-content p{
		-webkit-line-clamp: 2;
	}
	
	/***侧边***/
	.fix_box {
		display: none;
	}
	
	.m_kefu {
		display: block;
	}
	
	.cd-top {
		display: inline-block;
		height: 40px;
		width: 40px;
		position: fixed;
		bottom: 5rem;
		right: 10px;
		border-radius: 5px;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
		overflow: hidden;
		text-align: center;
		line-height: 40px;
		white-space: nowrap;
		background: #1a3e72;
		visibility: hidden;
		opacity: 0;
		font-size: 0;
		z-index: 1000;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}
	
	.cd-top img {
		width: 80%;
		vertical-align: middle;
	}
	
	.cd-top.cd-is-visible {
		visibility: visible;
		opacity: 1;
	}
	
	.wechat {
	
		display: block;
	
		width: 40px;
	
		height: 40px;
	
		position: fixed;
	
		bottom: 9rem;
	
		right: 10px;
	
		opacity: 1;
	
		z-index: 99;
	
	}
	
	.wechat img {
	
		width: 100%;
	
	}
	
	.wx_box p {
	
		text-align: center;
	
		font-size: 1.2rem;
	
		line-height: 2.5rem;
	
	}
	
	.wx_box h4 {
	
		text-align: center;
	
		font-size: 1.6rem;
	
		background: #1a3e72;
	
		color: #fff;
	
		line-height: 3rem;
	
		font-weight: bold;
	
	}
	
	.wx_box img {
	
		width: 14rem;
	
		height: 14rem;
	
		margin: 1rem auto 0;
	
		display: block;
	
		border: 1px solid #eee;
	
	}
	
	.wx_box span {
	
		display: block;
	
		text-align: center;
	
		font-size: 1.2rem;
	
		color: #666;
	
		line-height: 2.5rem;
	
	}
}

@media (max-width: 576px) {
	.pagination a {
		width: 35px;
		height: 35px;
		font-size: 14px;
	}

	.pagination .prev,
	.pagination .next {
		padding: 0 10px;
		font-size: 14px;
	}

	.banner-content {
		padding: 15px;
		width: 100%;
		border-radius: 0;
		background: rgba(0, 0, 0, 0.5);
		/* 移动端加深背景 */
	}

	.banner-content .btn {
		width: 90%;
		max-width: 250px;
	}

	.testimonial-item .testimonial-image {
		height: 160px;
	}

	.testimonial-content {
		padding: 18px;
	}

	.testimonial-content h3 {
		font-size: 1.2rem;
	}

	.testimonial-content .quote {
		font-size: 0.95rem;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.gallery-item {
		aspect-ratio: 16/9;
	}

	.cta-content h2 {
		font-size: 1.6rem;
	}

	.cta-actions {
		flex-direction: column;
		gap: 12px;
	}

	.cta-btn {
		width: 100%;
		justify-content: center;
	}

	.cta-decoration {
		display: none;
	}
}