* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
	line-height: 1.6;
	color: #333;
	background: #fff;
}

/* 顶部公告栏 */
.announcement-bar {
	background: linear-gradient(90deg, #1a5f3f 0%, #2d8b5f 100%);
	color: white;
	padding: 12px 20px;
	text-align: center;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.announcement-bar .badge {
	background: #4ade80;
	color: #064e3b;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
}

.announcement-bar a {
	color: #4ade80;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
}

/* 导航栏 */
.navbar {
	background: white;
	padding: 15px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	z-index: 100;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 24px;
	font-weight: 700;
	color: #1a5f3f;
}

.logo-icon {
	width: 152px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.logo-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nav-buttons {
	display: flex;
	gap: 15px;
	align-items: center;
}

.btn-primary {
	background: #22c55e;
	color: white;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
}

.btn-primary:hover {
	background: #16a34a;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Hero区域 */
.hero {
	background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
	padding: 80px 40px 0px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -20%;
	width: 140%;
	height: 100%;
	background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.hero h1 {
	font-size: 52px;
	font-weight: 800;
	color: #111827;
	margin-bottom: 40px;
	line-height: 1.5;
}

.hero h1 span {
	color: #16a34a;
}

.hero-subtitle {
	font-size: 22px;
	color: #6b7280;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* 数据统计 */
.stats {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-bottom: 80px;
	flex-wrap: wrap;
}

.stat-item {
	display: flex;
	align-items: center;
	gap: 12px;
	background: white;
	padding: 20px 40px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-icon {
	width: 50px;
	height: 50px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

.stat-icon.green {
	background: #dcfce7;
	color: #16a34a;
}

.stat-icon.orange {
	background: #ffedd5;
	color: #ea580c;
}

.stat-icon.blue {
	background: #dbeafe;
	color: #2563eb;
}

.stat-content {
	text-align: left;
}

.stat-number {
	font-size: 28px;
	font-weight: 800;
	color: #111827;
}

.stat-label {
	font-size: 13px;
	color: #6b7280;
}

.hero-cta {
	margin-bottom: 80px;
}

.hero-cta .btn-primary {
	padding: 16px 40px;
	font-size: 18px;
	border-radius: 10px;
}

/* 产品展示 */
.product-showcase {
	max-width: 1200px;
	margin: 0 auto;
}

.product-image {
	width: 100%;
	height: auto;

}

.main-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.content-card {
	background: #f9fafb;
	border-radius: 12px;
	padding: 20px;
}

.card-title {
	font-weight: 600;
	color: #111827;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	background: white;
	border-radius: 8px;
	margin-bottom: 10px;
}

.feature-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.feature-icon.pay {
	background: #dcfce7;
}

.feature-icon.repair {
	background: #dbeafe;
}

.feature-icon.notice {
	background: #fef3c7;
}

.feature-icon.door {
	background: #fce7f3;
}

.feature-text {
	flex: 1;
}

.feature-text .title {
	font-weight: 600;
	color: #111827;
	font-size: 14px;
}

.feature-text .desc {
	font-size: 12px;
	color: #6b7280;
}

/* 客户认可区域 */
.clients-section {
	padding: 80px 40px;
	background: white;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-header h2 {
	font-size: 36px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 15px;
}

.section-header p {
	font-size: 18px;
	color: #6b7280;
	max-width: 1000px;
	margin: 0 auto;
	line-height: 1.8;
}

/* 客户Logo滚动区域 */
.clients-scroll-container {
	overflow: hidden;
	position: relative;
	width: 100%;
	margin-left: calc(-50vw + 50%);
}

.clients-scroll-container::before,
.clients-scroll-container::after {
	content: '';
	position: absolute;
	top: 0;
	width: 150px;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}

.clients-scroll-container::before {
	left: 0;
	background: linear-gradient(to right, white, transparent);
}

.clients-scroll-container::after {
	right: 0;
	background: linear-gradient(to left, white, transparent);
}

.clients-scroll-track {
	display: flex;
	width: fit-content;
	padding: 20px 0;
}

.clients-scroll-track.scroll-left {
	animation: scrollLeft 120s linear infinite;
}

.clients-scroll-track.scroll-right {
	animation: scrollRight 120s linear infinite;
}

.clients-scroll-track:hover {
	animation-play-state: paused;
}

@keyframes scrollLeft {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@keyframes scrollRight {
	0% {
		transform: translateX(-50%);
	}

	100% {
		transform: translateX(0);
	}
}

.client-logo {
	background: white;
	padding: 40px 60px;
	border-radius: 10px;
	font-weight: 600;
	color: #374151;
	transition: all 0.3s;
	white-space: nowrap;
	flex-shrink: 0;
	margin: 0 15px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.client-logo-icon {
	width: 50px;
	height: 50px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 18px;
	flex-shrink: 0;
}

.client-logo-icon img {
	width: 50px;
	height: 50px;
}

.client-logo:hover {
	border-color: #22c55e;
	transform: translateY(-3px);
}

/* 产品功能区域 - 左右交替布局 */
.features-section {
	padding: 80px 40px;
	background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.features-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.feature-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.feature-row.reverse {
	direction: rtl;
}

.feature-row.reverse>* {
	direction: ltr;
}

.feature-content {
	padding: 20px 0;
}

.feature-label {
	color: #22c55e;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.feature-content h3 {
	font-size: 36px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 20px;
	line-height: 1.3;
}

.feature-content>p {
	font-size: 18px;
	color: #6b7280;
	line-height: 1.8;
	margin-bottom: 30px;
}

.feature-image {
	position: relative;
}

.feature-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
}

/* 旧卡片样式保留兼容 */
.feature-card {
	background: white;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.3s;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.feature-card-icon {
	width: 70px;
	height: 70px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	margin-bottom: 25px;
}

.feature-card-icon.miniapp {
	background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.feature-card-icon.access {
	background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.feature-card-icon.community {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.feature-card h3 {
	font-size: 24px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 15px;
}

.feature-card p {
	color: #6b7280;
	line-height: 1.8;
	margin-bottom: 20px;
}

.feature-list {
	list-style: none;
	margin-bottom: 40px;
}

.feature-list li {
	padding: 8px 0;
	color: #374151;
	display: flex;
	align-items: center;
	gap: 10px;
}

.feature-list li::before {
	content: '✓';
	width: 20px;
	height: 20px;
	background: #22c55e;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	flex-shrink: 0;
}

.feature-card .btn-primary {
	margin-top: 20px;
	display: inline-block;
}

/* 页脚 */
.footer {
	background: #111827;
	color: white;
	padding: 60px 40px 30px;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-brand h3 {
	font-size: 24px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-brand p {
	color: #9ca3af;
	line-height: 1.8;
}

.footer-links h4 {
	font-size: 16px;
	margin-bottom: 20px;
	color: white;
}

.footer-links ul {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: #9ca3af;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: #22c55e;
}

.footer-bottom {
	border-top: 1px solid #374151;
	padding-top: 30px;
	text-align: center;
	color: #6b7280;
}

/* 响应式设计 */
@media (max-width: 1024px) {
	.product-content {
		grid-template-columns: 1fr;
	}

	.sidebar {
		display: none;
	}

	.footer-content {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.navbar {
		padding: 15px 20px;
	}

	.hero h1 {
		font-size: 32px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.stats {
		flex-direction: column;
		align-items: center;
	}

	.main-content {
		grid-template-columns: 1fr;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

/* 弹窗样式 */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.modal-content {
	background-color: white;
	padding: 40px;
	border-radius: 20px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	animation: slideIn 0.3s ease;
}

@keyframes slideIn {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.modal-content h3 {
	font-size: 24px;
	color: #111827;
	margin-bottom: 20px;
}

.modal-content img {
	width: 200px;
	height: 200px;
	border-radius: 12px;
	margin-bottom: 20px;
}

.modal-content p {
	color: #6b7280;
	font-size: 16px;
}

.close-btn {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 28px;
	font-weight: bold;
	color: #9ca3af;
	cursor: pointer;
	transition: color 0.3s;
}

.close-btn:hover {
	color: #111827;
}


/* Slider样式 */
.slider {
	padding: 0;
	position: relative;
}

.slider .slide-item {
	height: calc(100vh - 165px);
	min-height: 800px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.slider .bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.slider .bg-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slider .container {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Superiority样式 */
.superiority {
	width: 100%;
	height: 700px;
	float: left;
	margin-top: 0;
	background-size: cover;
}

.super_text {
	width: 1200px;
	height: 700px;
	margin: 0 auto;
}

.super_content {
	width: 1200px;
	height: 700px;
	float: left;
	margin-top: 50px;
}

.superli {
	width: 1200px;
	height: 270px;
	float: left;
	margin-top: 65px;
}

.superli ul {
	width: 1200px;
	float: left;
	height: 700px;
	position: relative;
}

.superli ul li {
	width: 100px;
	height: 100px;
	float: left;
	color: #16a34a;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	border-radius: 100px;
	line-height: 24px;
	background: url(../images/qipao.png) no-repeat center;
	background-size: cover;
	display: block;
	box-shadow: 0 10px 20px rgb(34 197 94 / 80%), 0 5px 20px rgb(48 138 255 / 50%), inset 0 1px #fff, inset 0 -3px #fff;
	transition: all 0.3s;
}

.superli ul li a {
	display: block;
	margin-top: 26px;
	text-decoration: none;
	color: inherit;
}

.superli ul .superhover,
.superli ul li:hover {
	transform: scale(1.3);
	transition: all 0.3s;
	background: url(../images/qipao2.png) no-repeat center;
	background-size: cover;
	color: #ff8000;
	box-shadow: 0 10px 20px rgb(255 233 105 / 80%), 0 5px 20px rgb(48 138 255 / 50%), inset 0 1px #fff, inset 0 -3px #fff;
}

/* 位置定位 */
.superli ul li:nth-child(1) {
	position: absolute;
	top: 0px;
	left: 200px;
	animation: myfirstd linear infinite 2s;
}

.superli ul li:nth-child(2) {
	position: absolute;
	top: 60px;
	left: 120px;
	animation: myfirst linear infinite 2s;
}

.superli ul li:nth-child(3) {
	position: absolute;
	top: 100px;
	left: 220px;
	animation: myfirsta linear infinite 2s;
}

.superli ul li:nth-child(4) {
	position: absolute;
	top: -50px;
	right: 300px;
	animation: myfirstb linear infinite 2s;
}

.superli ul li:nth-child(5) {
	position: absolute;
	top: -20px;
	right: 120px;
	animation: myfirstc linear infinite 2s;
}

.superli ul li:nth-child(6) {
	position: absolute;
	top: 180px;
	right: 280px;
	animation: myfirstc linear infinite 2s;
}

/* 动画 */
@keyframes myfirstd {
	0% {
		margin-top: 0;
	}

	40% {
		margin-top: 8px;
	}

	100% {
		margin-top: 0;
	}
}

@keyframes myfirst {
	0% {
		margin-top: 120px;
	}

	50% {
		margin-top: 128px;
	}

	100% {
		margin-top: 120px;
	}
}

@keyframes myfirsta {
	0% {
		margin-top: 252px;
	}

	70% {
		margin-top: 260px;
	}

	100% {
		margin-top: 252px;
	}
}

@keyframes myfirstb {
	0% {
		margin-top: 0;
	}

	60% {
		margin-top: 8px;
	}

	100% {
		margin-top: 0;
	}
}

@keyframes myfirstc {
	0% {
		margin-top: 152px;
	}

	40% {
		margin-top: 160px;
	}

	100% {
		margin-top: 152px;
	}
}

/* 悬浮提示 */
.supertext {
	position: relative;
}

.supert {
	position: absolute;
	top: -30px;
	left: 50%;
	margin-left: -150px;
	width: 300px;
	text-align: left;
	font-size: 18px;
	color: #fff;
	display: none;
}

.supert img {
	border-radius: 16px;
	width: 100%;
	height: auto;
}

.supert:first-child {
	display: block;
}

/* Slick轮播样式 */
.m-slides-0 .slick-list {
	margin: 0;
}

.m-slides-0 .slick-slide {
	margin: 0;
}

.slick-arrow {
	position: absolute;
	top: 50%;
	color: #213360;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	font-size: 0;
	z-index: 3;
	transition: all 0.3s linear;
	transform: translateY(-50%);
}

.slick-arrow:hover {
	color: #0CB9AE;
}

.slick-arrow.slick-next:before,
.slick-arrow.slick-prev:before {
	font-family: iconfont;
	font-size: 40px;
}

.slick-arrow.slick-next {
	right: 20px;
}

.slick-arrow.slick-next:before {
	content: "\e6db";
}

.slick-arrow.slick-prev {
	left: 20px;
}

.slick-arrow.slick-prev:before {
	content: "\e6dc";
}

/* 响应式 */
@media (max-width: 1200px) {

	.super_text,
	.super_content,
	.superli,
	.superli ul {
		width: 100%;
	}

	.superli ul li {
		position: static !important;
		float: left;
		margin: 10px;
		animation: none !important;
	}
}

@media (max-width: 768px) {
	.slider .slide-item {
		min-height: 500px;
		height: auto;
		padding: 50px 10px;
	}

	.superli ul li {
		width: 80px;
		height: 80px;
		font-size: 14px;
	}

	.supert {
		width: 250px;
		margin-left: -125px;
	}
}