.banner-image::before {
	position:absolute;
	content:"";
	width:100%;
	height:100%;
	left:0;
	top:0;
	background:-webkit-gradient(linear,left top,left bottom,color-stop(80%,transparent),to(rgba(0,0,0,.5)));
	background:-webkit-linear-gradient(top,transparent 80%,rgba(0,0,0,.8) 100%);
	background:-o-linear-gradient(top,transparent 80%,rgba(0,0,0,.8) 100%);
	background:linear-gradient(to bottom,transparent 20%,rgba(0,0,0,.8) 100%);
	-o-transition:all 0.4s ease;
	transition:all 0.4s ease;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	-ms-transition:all 0.4s ease;
}
.banner-image img {
	width:100%;
	display:block;
	object-fit:cover;
}
:root {
	--primary-color:#93b3fc;
	--secondary-color:#e6f7ff;
	--text-color:#333;
	--light-text-color:#fff;
	--bg-gradient-start:#f9fafb;
	--bg-gradient-end:#e0edff;
	--shadow-color:rgba(147,179,252,0.3);
	--hover-shadow:rgba(147,179,252,0.6);
}
/* 统一标题样式 */
    .section-title {
	text-align:center;
	margin:3rem 0 2rem;
	/* 调整上下间距 */
      position:relative;
	font-size:3rem;
	/* 统一标题字体大小 */
}
.section-title h2 {
	font-size:3rem;
	/* 统一标题字体大小 */
      color:#333;
	font-weight:700;
	position:relative;
	display:inline-block;
}
.section-title h2::after {
	content:'';
	position:absolute;
	width:50px;
	height:3px;
	background-color:var(--primary-color);
	bottom:-10px;
	left:50%;
	transform:translateX(-50%);
}
/* 统一内容容器样式 */
    .section-container {
	max-width:1600px;
	width:100%;
	/* 移动端内容铺满屏幕 */
      margin:3rem auto;
	padding:0 1rem;
	/* 仅保留左右内边距 */
       overflow-x:hidden;
	/* 防止水平滚动 */
}
.container {
	max-width:1600px;
	margin:0 auto;
	text-align:center;
	position:relative;
	margin-bottom:7rem
}
/* 装饰背景元素 */
    .decorative-circle {
	position:absolute;
	width:500px;
	height:500px;
	opacity:0.1;
	border-radius:50%;
	filter:blur(60px);
	z-index:-1;
}
.top-left {
	top:-150px;
	left:-150px;
}
.bottom-right {
	bottom:-150px;
	right:-150px;
}
/* 中央圆形区域 */
    .central-circle {
	background-color:white;
	color:var(--text-color);
	border-radius:50%;
	padding:30px;
	box-shadow:0 0 20px var(--shadow-color);
	position:absolute;
	z-index:20;
	width:300px;
	height:300px;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	transition:all 0.3s ease;
}
.central-circle:hover {
	transform:translate(-50%,-50%) scale(1.05);
	box-shadow:0 0 30px var(--hover-shadow);
}
.central-circle h2 {
	font-size:2.8rem;
	font-weight:bold;
	margin:0;
}
.central-circle p,.central-circle a {
	display:none;
}
/* 图标区域 - 8个小圆形环绕布局 */
    .icon-container {
	position:relative;
	margin-top:140px;
	display:flex;
	justify-content:center;
}
.circles-wrapper {
	position:relative;
	width:550px;
	height:550px;
	margin-bottom:5rem;
}
/* 小圆形项目 - 使用绝对定位 */
    .small-circle {
	position:absolute;
	width:180px;
	height:180px;
	background-color:var(--primary-color);
	color:var(--light-text-color);
	border-radius:50%;
	box-shadow:0 4px 15px var(--shadow-color);
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	z-index:10;
	padding:10px;
	transition:all 0.3s ease;
	cursor:pointer;
}
.small-circle:hover {
	box-shadow:0 8px 25px var(--hover-shadow);
	background-color:#7aa7f9;
	/* 稍微深一点的颜色 */
      z-index:15;
}
.small-circle p {
	font-size:1.6rem;
	text-align:center;
	font-weight:500;
}
/* 小圆形位置 */
    .circle-1 {
	top:0;
	left:50%;
	transform:translate(-50%,-50%);
}
.circle-2 {
	top:15%;
	left:0;
	transform:translate(-30%,-50%);
}
.circle-3 {
	top:15%;
	right:0;
	transform:translate(30%,-50%);
}
.circle-4 {
	bottom:15%;
	left:0;
	transform:translate(-30%,50%);
}
.circle-5 {
	bottom:15%;
	right:0;
	transform:translate(30%,50%);
}
.circle-6 {
	bottom:0;
	left:50%;
	transform:translate(-50%,50%);
}
.circle-7 {
	top:50%;
	left:0;
	transform:translate(-40%,-50%);
}
.circle-8 {
	top:50%;
	right:0;
	transform:translate(40%,-50%);
}
/* 移动设备上的布局 */
    .mobile-view {
	display:none;
}
/* 移动端网格布局 */
    .mobile-grid {
	display:none;
	grid-template-columns:1fr 1fr;
	gap:1rem;
	/* 减小间距 */
      margin-top:2rem;
	padding:0 1rem;
	/* 增加内边距 */
}
.mobile-item {
	background-color:white;
	border-radius:15px;
	padding:20px;
	box-shadow:0 4px 15px var(--shadow-color);
	text-align:center;
	transition:all 0.3s ease;
}
.mobile-item:hover {
	transform:translateY(-5px);
	box-shadow:0 8px 20px var(--shadow-color);
}
.mobile-item h3 {
	font-size:16px;
	font-weight:bold;
	margin-bottom:5px;
}
.mobile-item p {
	font-size:12px;
	color:var(--text-color);
}
/* 响应式设计 */
    @media (max-width:1024px) {
	.container {
	max-width:100%;
}
.circles-wrapper {
	width:500px;
	height:500px;
}
.small-circle {
	width:150px;
	height:150px;
}
.small-circle p {
	font-size:16px;
}
.central-circle {
	width:250px;
	height:250px;
}
}@media (max-width:767px) {
	.icon-container,.central-circle {
	display:none;
}
.section-title {
	font-size:2rem;
	padding-top:0px;
	margin-bottom:0px;
	margin:1rem 0 2rem;
}
.section-container {
	margin-bottom:20px;
}
.mobile-view {
	display:block;
	padding:20px;
}
.mobile-grid {
	display:grid;
}
.decorative-circle {
	width:300px;
	height:300px;
}
.top-left {
	top:-100px;
	left:-100px;
}
.bottom-right {
	bottom:-100px;
	right:-100px;
}
.mobile-card {
	background-color:white;
	border-radius:20px;
	padding:25px;
	box-shadow:0 0 20px var(--shadow-color);
	margin-bottom:30px;
}
.mobile-card h2 {
	font-size:22px;
	font-weight:bold;
	margin-bottom:10px;
}
.mobile-card p {
	font-size:14px;
	margin-bottom:15px;
}
.btn {
	display:inline-block;
	background-color:var(--primary-color);
	color:var(--light-text-color);
	font-weight:medium;
	padding:8px 16px;
	border-radius:30px;
	text-decoration:none;
	box-shadow:0 4px 10px var(--shadow-color);
	transition:all 0.3s ease;
	font-size:14px;
}
.btn:hover {
	transform:translateY(-2px);
	box-shadow:0 6px 15px var(--hover-shadow);
}
}.title-section {
	text-align:center;
	color:black;
	padding:2rem;
}
.content-wrapper {
	max-width:1600px;
	margin:0 auto;
	display:flex;
	flex-wrap:wrap;
	padding:2rem;
}
.box {
	flex:1 1 calc(25% - 2rem);
	margin:1rem;
	background-color:#93b3fc;
	color:white;
	padding:1.5rem;
	border-radius:8px;
	text-align:center;
	box-shadow:0 2px 4px rgba(147,179,252,0.1);
	transition:all 0.3s ease;
	outline:none;
	border:1px solid #93b3fc;
	font-size:1.6rem
}
.box:hover {
	background-color:#7a9ff5;
	transform:translateY(-5px);
	box-shadow:0 8px 16px rgba(147,179,252,0.2);
	border-color:#7a9ff5;
}
@media (max-width:1200px) {
	.box {
	flex:1 1 calc(33.333% - 2rem);
}
}@media (max-width:992px) {
	.box {
	flex:1 1 calc(50% - 2rem);
}
}@media (max-width:768px) {
	.content-wrapper {
	padding:1rem;
}
.box {
	flex:1 1 100%;
	margin:0.5rem;
}
}/* 页面容器 */
    .page-wrapper {
	/* 替换.container */
      max-width:1600px;
	margin:0 auto;
	padding:2rem;
	display:flex;
	flex-direction:column;
	gap:2rem;
}
/* 标题区域 */
    .main-header {
	/* 替换.header */
      text-align:center;
	padding:1.5rem 0;
	background-color:#93b3fc;
	color:white;
	border-radius:10px;
	box-shadow:0 4px 6px rgba(0,0,0,0.1);
}
.main-title {
	/* 替换h1 */
      font-size:2rem;
	margin-bottom:0.5rem;
}
.main-header p {
	font-size:1.1rem;
	opacity:0.9;
}
/* 内容区域 */
    .content-area {
	display:flex;
	flex-wrap:wrap;
	gap:2rem;
}
/* 左侧？ */
    .left-column {
	flex:1 1 300px;
	display:flex;
	flex-direction:column;
	gap:1.5rem;
}
.module {
	background-color:white;
	border-radius:10px;
	box-shadow:0 4px 6px rgba(0,0,0,0.1);
	overflow:hidden;
}
.module-header {
	background-color:#93b3fc;
	color:white;
	padding:1rem;
	font-size:1.6rem;
	font-weight:bold;
}
.module-content {
	padding:1.5rem;
}
.module-content ul {
	list-style-type:none;
	display:flex;
	flex-wrap:wrap;
	gap:1rem;
}
.module-content li {
	display:flex;
	align-items:center;
	padding:0.5rem 1rem;
	background-color:#f0f4ff;
	border-radius:5px;
	font-size:1.2rem;
}
.module-content li::before {
	content:"?";
	color:#93b3fc;
	margin-right:0.5rem;
	font-size:1.2rem;
}
/* 连接符号 */
    .connection {
	text-align:center;
	font-size:2rem;
	color:#93b3fc;
	padding:0.5rem;
}
/* 右侧花朵模型 */
    .right-column {
	flex:1 1 400px;
	display:flex;
	justify-content:center;
	align-items:center;
}
.flower-container {
	position:relative;
	width:100%;
	max-width:400px;
	height:400px;
}
.petal {
	position:absolute;
	width:180px;
	height:180px;
	background-color:#93b3fc;
	border-radius:90px 0;
	display:flex;
	justify-content:center;
	align-items:center;
	color:white;
	font-weight:bold;
	text-align:center;
	padding:1rem;
	box-shadow:0 4px 6px rgba(0,0,0,0.1);
	font-size:1.6rem
}
.petal-1 {
	top:20px;
	left:20px;
	transform:rotate(-45deg);
	background-color:#7aa7fb;
}
.petal-2 {
	top:20px;
	right:20px;
	transform:rotate(45deg);
	background-color:#86aefb;
}
.petal-3 {
	bottom:20px;
	left:20px;
	transform:rotate(-120deg);
	background-color:#80aafb;
}
.petal-4 {
	bottom:20px;
	right:20px;
	transform:rotate(135deg);
	background-color:#75a3fb;
}
.center {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	width:120px;
	height:120px;
	background-color:#4CAF50;
	border-radius:50%;
	display:flex;
	justify-content:center;
	align-items:center;
	color:white;
	font-weight:bold;
	font-size:1.2rem;
	box-shadow:0 4px 6px rgba(0,0,0,0.1);
	z-index:5;
}
.label {
	position:absolute;
	font-weight:bold;
	color:#555;
}
.label-top {
	top:0;
	left:50%;
	transform:translateX(-50%);
}
.label-bottom {
	bottom:0;
	left:50%;
	transform:translateX(-50%);
}
.label-left {
	left:0;
	top:50%;
	transform:translateY(-50%);
}
.label-right {
	right:0;
	top:50%;
	transform:translateY(-50%);
}
/* 响应式布局 */
    @media (max-width:1024px) {
	.module-content ul {
	flex-direction:column;
}
}@media (max-width:768px) {
	.page-wrapper {
	padding:1rem;
}
.container {
	margin-bottom:0rem;
}
.content-area {
	flex-direction:column;
}
.flower-container {
	height:300px;
}
.petal {
	width:120px;
	height:120px;
	font-size:1.2rem;
}
.center {
	width:80px;
	height:80px;
	font-size:1.2rem;
}
}/* 八大核心支持体系 */
    .support-systems {
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
	/* 调整列宽 */
      gap:1rem;
	/* 减小间距 */
      margin:3rem auto;
	padding:0 1rem;
	/* 增加内边距 */
      max-width:1600px;
}
.support-box {
	background-color:var(--primary-color);
	color:white;
	padding:1.5rem;
	/* 减小内边距 */
      border-radius:8px;
	text-align:center;
	box-shadow:0 4px 15px var(--shadow-color);
	transition:all 0.3s ease;
	font-size:1.6rem;
	/* 减小字体大小 */
      font-weight:500;
}
.support-box:hover {
	background-color:#7a9ff5;
	transform:translateY(-5px);
	box-shadow:0 8px 16px var(--hover-shadow);
}
