.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:#282C33;;
	--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);
}
body {
    /* 使用柔和渐变替代图片背景，提升整体协调性 */
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    background-attachment: fixed;
    font-size: 14px;
    line-height: 1.5;
    color: #181818;
    font-family: 'Microsoft Yahei', Arial;
}
/* 统一标题样式 */
@media (min-width: 769px) {
    .section-title,.form-container h2{
	font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}
.section-title h2 {
	font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}
.section-title h2::after {
	content:'';
	position:absolute;
	width:50px;
	height:3px;
	background-color:var(--primary-color);
	bottom:-10px;
	left:50%;
	transform:translateX(-50%);
}
}
@media (max-width: 768px) {
	 .section-title,.form-container h2{
        font-size: 22px; /* 平板端标题大小 */
        margin-bottom: 30px;
		font-weight:300;
		margin-bottom: 40px;
    text-align: center;
    color: #333;
    }
}


/* 统一内容容器样式 */
    .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 h3 {
	font-size:32px;
	font-weight:300;
	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: rgba(255, 255, 255, .6);
	color: #282C33;
	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:#fff;
	/* 稍微深一点的颜色 */
      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 h4 {
	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-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:20px;
	box-shadow:0 0 20px var(--shadow-color);
	margin:0px auto;
	width: 100%;
}
.mobile-card h3 {
	font-size:18px;
	font-weight:bold;
	text-align: center; 
}
.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:#282C33;;
	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 #282C33;;
	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:#282C33;;
	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: rgba(255, 255, 255, .6);
	border-radius:10px;
	box-shadow:0 4px 6px rgba(0,0,0,0.1);
	overflow:hidden;
}
.module:hover {
	background-color: rgba(255, 255, 255);
	color: #282C33;
}
.module-header {
	color: #282C33;
	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:#282C33;;
	margin-right:0.5rem;
	font-size:1.2rem;
}
/* 连接符号 */
    .connection {
	text-align:center;
	font-size:2rem;
	color:#282C33;;
	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:#282C33;;
	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: rgba(255, 255, 255, .6);
	color: #282C33;
}
.petal-2 {
	top:20px;
	right:20px;
	transform:rotate(45deg);
	background-color: rgba(255, 255, 255, .6);
	color: #282C33;
}
.petal-3 {
	bottom:20px;
	left:20px;
	transform:rotate(-120deg);
	background-color: rgba(255, 255, 255, .6);
	color: #282C33;
}
.petal-4 {
	bottom:20px;
	right:20px;
	transform:rotate(135deg);
		background-color: rgba(255, 255, 255, .6);
	color: #282C33;
}
.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: rgba(255, 255, 255, .6);
	color: #282C33;
	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:#fff;
	transform:translateY(-5px);
	box-shadow:0 8px 16px var(--hover-shadow);
}
/* 留言表单样式 */
.outer-container {
     padding:60px 0px 80px;
    background-image: url('https://cdn.hongjialixny.com/j1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
}
.form-container {
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
    padding: 60px;
    box-sizing: border-box;
    background-color: rgba(255,255,255,0.92);
    border-radius: 1.56vw;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	opacity:.8
}

.form-container input[type="text"], .form-container textarea {
    width: 100%;
    padding: 16px 18px;
    margin-bottom: 25px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
    height: 53px;
    transition: border-color 0.3s ease;
    background-color: #f7f7f7;
}

.form-container input[type="text"]:focus, .form-container textarea:focus {
    border-color: #999;
    outline: none;
    box-shadow: 0 0 0 3px rgba(247,247,247,0.5);
}

.form-container textarea {
    height: 160px;
    resize: vertical;
    min-height: 120px;
}

.radio-group {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
}

.radio-group label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: #555;
    font-size: 15px;
}

.radio-group input[type="radio"] {
    margin-right: 8px;
    accent-color: #666;
}

.form-container button {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 1;
    text-align: center;
    color: #fff;
    background-color: #13943f;
    border: 1px solid #13943f;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.form-container button:hover {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    color: #333;
}

.form-container button:active {
    transform: translateY(0);
    box-shadow: none;
}