:root {
	--primary-black: #1a1a1a;
	--secondary-black: #2d2d2d;
	--light-gray: #f5f5f5;
	--medium-gray: #e0e0e0;
	--accent-gold: #d4af37;
	--dark-gold: #b8941f;
	--white: #ffffff;
	--text-dark: #333333;
	--text-medium: #666666;
	--text-light: #999999;
	--shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	--shadow-heavy: 0 8px 24px rgba(0, 0, 0, 0.1);
	--border-radius: 8px;
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Open Sans', sans-serif;
	color: var(--text-dark);
	background-color: var(--white);
	line-height: 1.5;
	overflow-x: hidden;
	font-size: 14px;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: var(--primary-black);
	line-height: 1.3;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* 头部导航 - 黑金配色 */
header {
	background-color: var(--primary-black);
	box-shadow: var(--shadow);
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}

.logo-icon {
	background-color: var(--accent-gold);
	color: var(--primary-black);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
}

.logo-text {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: var(--accent-gold);
}

.logo-text span {
	color: var(--white);
}

.nav-links {
	display: flex;
	gap: 20px;
}

.nav-links a {
	text-decoration: none;
	color: var(--white);
	font-weight: 500;
	font-size: 14px;
	transition: var(--transition);
	position: relative;
	padding: 5px 0;
}

.nav-links a:hover {
	color: var(--accent-gold);
}

.nav-links a.active {
	color: var(--accent-gold);
	font-weight: 600;
}

.nav-links a.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--accent-gold);
}

.header-actions {
	display: flex;
	gap: 12px;
	align-items: center;
}

.language-selector {
	padding: 6px 10px;
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: var(--border-radius);
	background-color: transparent;
	font-size: 13px;
	cursor: pointer;
	color: var(--white);
	background-color: #1a1a1a;
}

.language-icon {
	display: none;
	background: none;
	border: none;
	font-size: 18px;
	color: var(--accent-gold);
	cursor: pointer;
	padding: 5px;
}

/* 新增：手机端导航按钮 */
.mobile-nav-btn {
	display: none;
	background: none;
	border: none;
	font-size: 22px;
	color: var(--accent-gold);
	cursor: pointer;
	padding: 5px;
	z-index: 1001;
}

/* Banner轮播 - 修改为全宽 */
.banner-section {
	margin-top: 0;
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 100vw;
}

.banner-slide {
	display: none;
	position: relative;
	height: 300px;
	width: 100%;
}

.banner-slide.active {
	display: block;
}

.banner-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(20%);
}

.banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.4));
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-content-wrapper {
	max-width: 1200px;
	width: 100%;
	padding: 0 15px;
}

.banner-content {
	max-width: 500px;
	color: var(--white);
}

.banner-content h1 {
	font-size: 28px;
	color: var(--white);
	margin-bottom: 10px;
}

.banner-content p {
	font-size: 14px;
	margin-bottom: 20px;
	color: var(--text-light);
}

.banner-dots {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

.banner-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: var(--transition);
}

.banner-dot.active {
	background-color: var(--accent-gold);
	transform: scale(1.2);
}

/* 模块标题和查看更多 - 优化移动端对齐 */
.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	width: 100%;
}

.section-title {
	font-size: 22px;
	position: relative;
	padding-bottom: 8px;
	flex-shrink: 0;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background-color: var(--accent-gold);
}

.view-more {
	color: var(--accent-gold);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: var(--transition);
	white-space: nowrap;
}

.view-more:hover {
	color: var(--dark-gold);
	gap: 8px;
}

/* 热门球场推介 - 修改为网格布局 */
.hot-courses-section {
	margin-top: 40px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.region-filter {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	max-width: 100%;
}

.filter-btn {
	padding: 8px 16px;
	background-color: var(--light-gray);
	border-radius: 20px;
	cursor: pointer;
	font-weight: 500;
	transition: var(--transition);
	border: 1px solid transparent;
	font-size: 13px;
	color: var(--text-medium);
	white-space: nowrap;
}

.filter-btn:hover {
	background-color: var(--medium-gray);
}

.filter-btn.active {
	background-color: var(--primary-black);
	color: var(--white);
	border-color: var(--accent-gold);
}

/* 修改：去掉轮播，改为网格布局容器 */
.courses-grid-container {
	width: 100%;
	margin-bottom: 20px;
}

/* 新增：课程网格布局 - PC端一排5个 */
.courses-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	/* PC端一排5个 */
	gap: 15px;
	width: 100%;
}

/* 优化后的商品卡片 - 更紧凑 */
.course-card {
	background-color: var(--white);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	border: 1px solid var(--medium-gray);
	/* height: 320px; */
	/* 优化高度 */
	width: 100%;
	display: flex;
	flex-direction: column;
	cursor: pointer;
}

.course-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-heavy);
}

.course-image {
	height: 140px;
	/* 减小图片高度 */
	width: 100%;
	object-fit: cover;
	filter: grayscale(20%);
}

.course-info {
	padding: 12px;
	text-align: left;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.course-header {
	margin-bottom: 8px;
}

.course-name {
	font-size: 15px;
	margin-bottom: 4px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 40px;
}

.course-location {
	color: var(--text-medium);
	font-size: 12px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.course-features {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 8px;
	flex-shrink: 0;
}

.feature {
	background-color: var(--light-gray);
	padding: 3px 8px;
	border-radius: 12px;
	font-size: 11px;
	color: var(--text-medium);
	white-space: nowrap;
}

.course-pricing {
	margin-top: auto;
	/* 将价格推到卡片底部 */
	padding-top: 10px;
	border-top: 1px solid var(--light-gray);
}

.price-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.price {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-black);
}

.price-unit {
	font-size: 12px;
	color: var(--text-medium);
}

/* 移动端隐藏描述 */
.course-info p {
	display: none;
	/* 移动端隐藏描述 */
}

/* 明星球童模块 - 修改为网格布局 */
.caddies-section {
	margin-bottom: 40px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* 修改：去掉轮播，改为网格布局容器 */
.caddies-grid-container {
	width: 100%;
	margin-bottom: 20px;
}

/* 新增：球童网格布局 */
.caddies-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	/* PC端一排5个 */
	gap: 15px;
	width: 100%;
}

.caddie-card {
	background-color: var(--white);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	text-align: center;
	border: 1px solid var(--medium-gray);
	/* height: 300px; */
	/* 统一高度 */
	display: flex;
	flex-direction: column;
}

.caddie-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-heavy);
}

.caddie-photo {
	height: 140px;
	width: 100%;
	object-fit: cover;
	filter: grayscale(20%);
}

.caddie-info {
	padding: 12px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.caddie-name {
	font-size: 15px;
	margin-bottom: 4px;
}

.caddie-type {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 600;
	margin-bottom: 8px;
}

.caddie-type.young {
	background-color: var(--light-gray);
	color: var(--text-medium);
	border: 1px solid var(--medium-gray);
}

.caddie-type.star {
	background-color: rgba(212, 175, 55, 0.1);
	color: var(--accent-gold);
	border: 1px solid rgba(212, 175, 55, 0.3);
}

.caddie-type.experienced {
	background-color: var(--light-gray);
	color: var(--text-dark);
	border: 1px solid var(--medium-gray);
}

.caddie-price {
	font-size: 16px;
	font-weight: 700;
	color: var(--primary-black);
	margin: auto 0 8px 0;
	/* 调整价格位置 */
}

.caddie-actions {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: auto;
	/* 将按钮推到卡片底部 */
}

/* 慈善模块 */
.charity-section {
	background-color: var(--primary-black);
	color: var(--white);
	border-radius: var(--border-radius);
	padding: 20px;
	margin-bottom: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: center;
	width: 100%;
}

.charity-content {
	text-align: left;
}

.charity-content h2 {
	color: var(--white);
	margin-bottom: 10px;
	font-size: 20px;
}

.charity-content p {
	color: var(--text-light);
	font-size: 13px;
	line-height: 1.5;
}

.charity-image {
	height: 180px;
	width: 100%;
	background-color: var(--secondary-black);
	border-radius: var(--border-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 16px;
	color: var(--accent-gold);
	border: 1px solid rgba(212, 175, 55, 0.2);
	overflow: hidden;
	position: relative;
}

.charity-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.charity-image .placeholder-text {
	position: absolute;
	z-index: 2;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 8px 12px;
	border-radius: 4px;
}

/* 社区模块 - 移除按钮 */
.community-section {
	margin-bottom: 40px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.community-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 15px;
	width: 100%;
}

.community-card {
	background-color: var(--white);
	border-radius: var(--border-radius);
	padding: 20px;
	box-shadow: var(--shadow);
	transition: var(--transition);
	text-align: center;
	border: 1px solid var(--medium-gray);
	display: flex;
	flex-direction: column;
	height: 220px;
}

.community-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-heavy);
}

.community-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--light-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	font-size: 20px;
	color: var(--primary-black);
	overflow: hidden;
}

.community-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.community-card h3 {
	margin-bottom: 8px;
	font-size: 16px;
}

.community-card p {
	color: var(--text-medium);
	font-size: 13px;
	line-height: 1.4;
	flex: 1;
}

/* 页脚 */
footer {
	background-color: var(--primary-black);
	color: var(--white);
	padding: 30px 0 15px;
	width: 100%;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-bottom: 20px;
}

.footer-column {
	padding: 0 10px;
}

.footer-about {
	grid-column: 1;
}

.footer-links-quick {
	grid-column: 2;
}

.footer-partners {
	grid-column: 3;
}

.footer-contact {
	grid-column: 4;
}

.footer-column h3 {
	color: var(--accent-gold);
	font-size: 16px;
	margin-bottom: 15px;
	position: relative;
	padding-bottom: 8px;
}

.footer-column h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 35px;
	height: 2px;
	background-color: var(--accent-gold);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 8px;
	text-align: left;
	color: #bdc3c7;
	font-size: 13px;
}

.footer-links a {
	color: #bdc3c7;
	text-decoration: none;
	transition: var(--transition);
	font-size: 13px;
}

.footer-links a:hover {
	color: var(--accent-gold);
	padding-left: 3px;
}

.social-icons {
	display: flex;
	gap: 10px;
	margin-top: 15px;
	justify-content: flex-start;
}

.social-icon {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: rgba(212, 175, 55, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-gold);
	text-decoration: none;
	transition: var(--transition);
	font-size: 16px;
}

.social-icon:hover {
	background-color: var(--accent-gold);
	color: var(--primary-black);
	transform: translateY(-3px);
}

.copyright {
	text-align: center;
	padding-top: 15px;
	border-top: 1px solid rgba(212, 175, 55, 0.2);
	font-size: 12px;
	color: #bdc3c7;
}

/* 按钮样式 */
.btn {
	padding: 8px 16px;
	border-radius: var(--border-radius);
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	border: none;
	font-size: 13px;
	display: inline-block;
	text-align: center;
}

.btn-primary {
	background-color: var(--primary-black);
	color: var(--white);
	border: 1px solid var(--primary-black);
}

.btn-primary:hover {
	background-color: var(--secondary-black);
	transform: translateY(-2px);
}

.btn-accent {
	background-color: var(--accent-gold);
	color: var(--primary-black);
	border: 1px solid var(--accent-gold);
}

.btn-accent:hover {
	background-color: var(--dark-gold);
	transform: translateY(-2px);
	color: var(--primary-black);
}

.btn-secondary {
	background-color: transparent;
	color: var(--primary-black);
	border: 1px solid var(--primary-black);
}

.btn-secondary:hover {
	background-color: var(--primary-black);
	color: var(--white);
	transform: translateY(-2px);
}

/* 悬浮联系按钮 */
.contact-fab {
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.fab-main {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--primary-black);
	color: var(--accent-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transition: var(--transition);
	margin-bottom: 8px;
	border: 1px solid rgba(212, 175, 55, 0.3);
}

.fab-main:hover {
	background-color: var(--accent-gold);
	color: var(--primary-black);
	transform: scale(1.1);
}

.fab-items {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 8px;
	opacity: 0;
	transform: translateY(15px);
	transition: var(--transition);
	pointer-events: none;
}

.fab-items.show {
	opacity: 1;
	transform: translateY(0);
	pointer-events: all;
}

.fab-item {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-black);
	font-size: 18px;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	transition: var(--transition);
	background-color: var(--accent-gold);
	border: 1px solid rgba(212, 175, 55, 0.3);
}

.fab-item:hover {
	transform: scale(1.1);
	background-color: var(--dark-gold);
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 22px;
	color: var(--accent-gold);
	cursor: pointer;
	padding: 5px;
	z-index: 1001;
}

/* 响应式设计 */
@media (max-width: 1200px) {
	.courses-grid {
		grid-template-columns: repeat(4, 1fr);
		/* 中等屏幕一排4个 */
	}

	.caddies-grid {
		grid-template-columns: repeat(4, 1fr);
		/* 中等屏幕一排4个 */
	}
}

@media (max-width: 992px) {
	.charity-section {
		grid-template-columns: 1fr;
	}

	.banner-content h1 {
		font-size: 24px;
	}

	.community-cards {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.banner-slide {
		height: 250px;
	}

	.courses-grid {
		grid-template-columns: repeat(3, 1fr);
		/* 平板一排3个 */
	}

	.caddies-grid {
		grid-template-columns: repeat(3, 1fr);
		/* 平板一排3个 */
	}

	.footer-container {
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.header-container {
		padding: 10px 15px;
	}

	/* 显示手机端导航按钮 */
	.mobile-nav-btn {
		display: block;
	}

	.language-icon {
		display: block;
	}

	.language-selector {
		display: none;
		position: absolute;
		top: 60px;
		right: 15px;
		background-color: var(--primary-black);
		box-shadow: var(--shadow-heavy);
		border-radius: var(--border-radius);
		padding: 12px;
		z-index: 1000;
		min-width: 130px;
		opacity: 0;
		transform: translateY(-10px);
		transition: var(--transition);
		visibility: hidden;
	}

	.language-selector.show {
		display: block;
		opacity: 1;
		transform: translateY(0);
		visibility: visible;
	}

	.nav-links {
		position: fixed;
		top: 56px;
		left: 0;
		width: 100%;
		background-color: var(--primary-black);
		flex-direction: column;
		align-items: center;
		padding: 15px 0;
		box-shadow: var(--shadow);
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: var(--transition);
		z-index: 999;
	}

	.nav-links.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-links a {
		padding: 12px 0;
		font-size: 16px;
		width: 100%;
		text-align: center;
	}

	.header-actions {
		gap: 12px;
		position: relative;
	}

	/* 移动端底部布局调整 */
	.footer-container {
		grid-template-columns: 1fr 1fr;
		gap: 25px;
	}

	.footer-about {
		grid-column: 1 / -1;
		grid-row: 1;
	}

	.footer-links-quick {
		display: none;
	}

	.footer-partners {
		grid-column: 1;
		grid-row: 2;
	}

	.footer-contact {
		grid-column: 2;
		grid-row: 2;
	}

	/* Banner轮播移动端优化 */
	.banner-slide {
		height: 220px;
	}

	.banner-content h1 {
		font-size: 20px;
	}

	.banner-content p {
		font-size: 13px;
	}

	/* 移动端网格布局改为2列瀑布流 */
	.courses-grid {
		grid-template-columns: repeat(2, 1fr);
		/* 移动端一排2个瀑布流 */
		gap: 12px;
	}

	.caddies-grid {
		grid-template-columns: repeat(2, 1fr);
		/* 移动端一排2个瀑布流 */
		gap: 12px;
	}

	/* 移动端课程卡片优化 */
	.course-card {
		/* height: 220px; */
		/* 移动端卡片高度更小 */
	}

	.course-image {
		height: 100px;
		/* 移动端图片高度更小 */
	}

	.course-name {
		font-size: 14px;
		height: 36px;
		/* 限制标题行数 */
	}

	.course-location {
		font-size: 11px;
	}

	.course-features {
		display: none;
		/* 移动端隐藏特性标签 */
	}

	.price {
		font-size: 16px;
	}

	/* 移动端球童卡片优化 - 隐藏分类标签，显示简介信息 */
	.caddie-card {
		/* height: 240px; */
	}

	.caddie-photo {
		height: 100px;
	}

	.caddie-type {
		display: none;
		/* 移动端隐藏球童分类标签 */
	}

	.caddie-info p {
		display: block !important;
		/* 移动端显示球童描述 */
		font-size: 12px;
		color: var(--text-medium);
		margin-bottom: 8px;
		/* line-height: 1.3; */
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.caddie-name {
		font-size: 14px;
	}

	.caddie-price {
		font-size: 14px;
	}

	/* 移动端筛选标签 */
	.region-filter {
		gap: 6px;
		margin-bottom: 15px;
		justify-content: flex-start;
		overflow-x: auto;
		scrollbar-width: thin;
		scrollbar-color: var(--accent-gold) var(--light-gray);
		-webkit-overflow-scrolling: touch;
		white-space: nowrap;
		width: 100%;
		padding-bottom: 8px;
		padding-left: 15px;
		padding-right: 15px;
	}

	.region-filter::-webkit-scrollbar {
		height: 3px;
	}

	.region-filter::-webkit-scrollbar-track {
		background: var(--light-gray);
		border-radius: 8px;
	}

	.region-filter::-webkit-scrollbar-thumb {
		background: var(--accent-gold);
		border-radius: 8px;
	}

	.filter-btn {
		padding: 6px 12px;
		font-size: 12px;
		flex-shrink: 0;
		border-radius: 15px;
		border: 1px solid var(--medium-gray);
	}

	.filter-btn.active {
		border-color: var(--accent-gold);
		box-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
	}

	/* 移动端慈善和社区布局 */
	.community-cards {
		grid-template-columns: 1fr;
		gap: 15px;
		padding: 0 15px;
	}

	.charity-image {
		height: 150px;
		font-size: 14px;
	}

	.charity-image .placeholder-text {
		font-size: 12px;
		padding: 6px 10px;
	}

	.charity-section {
		padding: 15px;
		/* margin-left: 15px; */
		/* margin-right: 15px; */
	}

	/* 悬浮按钮 */
	.contact-fab {
		right: 12px;
		bottom: 12px;
	}

	.fab-main {
		width: 45px;
		height: 45px;
		font-size: 18px;
	}

	.fab-item {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	/* 移动端标题与"查看更多"按钮对齐优化 */
	.section-header {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 8px;
		padding: 0 15px;
		margin-bottom: 15px;
	}

	.section-title {
		font-size: 18px;
		padding-bottom: 6px;
	}

	.view-more {
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 12px;
	}

	.logo-text {
		font-size: 18px;
	}

	.logo-icon {
		width: 32px;
		height: 32px;
		font-size: 14px;
	}

	.banner-slide {
		height: 180px;
	}

	.banner-content h1 {
		font-size: 18px;
	}

	.banner-content p {
		font-size: 12px;
	}

	.section-title {
		font-size: 18px;
	}

	/* 小屏幕手机端保持2列布局 */
	.charity-section {
		padding: 15px;
		/* margin-left: 12px; */
		/* margin-right: 12px; */
	}

	.community-card {
		height: 160px;
		padding: 12px;
	}

	.community-icon {
		width: 50px;
		height: 50px;
		margin-bottom: 10px;
	}

	.community-card h3 {
		font-size: 14px;
	}

	.community-card p {
		font-size: 11px;
	}

	/* 移动端底部布局微调 */
	.footer-container {
		gap: 20px;
	}
}

/* 极小的手机屏幕可以考虑改为1列 */
@media (max-width: 360px) {
	.courses-grid {
		grid-template-columns: 1fr;
		/* 极小的手机屏幕一排1个 */
	}

	.caddies-grid {
		grid-template-columns: 1fr;
		/* 极小的手机屏幕一排1个 */
	}

	.banner-slide {
		height: 150px;
	}

	.section-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.view-more {
		align-self: flex-end;
	}

	/* 极小屏幕底部改为1列 */
	.footer-container {
		grid-template-columns: 1fr;
	}

	.footer-partners {
		grid-column: 1;
		grid-row: 2;
	}

	.footer-contact {
		grid-column: 1;
		grid-row: 3;
	}
}


.caddie-info p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 40px;
	margin-bottom: 8px;
}
}