* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
	line-height: 1.6;
	color: #333;
	background: #ffffff;
	overflow-x: hidden;
}


.header {
	/* position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06); */
}


.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 65px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 16px;
}

.brand-logo {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.brand-text {
	display: flex;
	flex-direction: column;
}

.brand-name {
	font-size: 28px;
	/* font-weight: 700; */
	color: #4379ff;
	margin: 0;
	line-height: 1.2;
}

.brand-subtitle {
	font-size: 16px;
	color: #646a73;
	/* font-weight: 500; */
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 45px;
}

.nav-link {
	text-decoration: none;
	color: #333;
	/* font-weight: 600; */
	font-size: 20px;
	padding: 12px 0;
	position: relative;
	transition: all 0.3s ease;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #4379ff, #4379ff);
	transition: width 0.3s ease;
}

.nav-link:hover {
	color: #4379ff;
}

.nav-link:hover::after {
	width: 100%;
}


.hero-section {
	background: linear-gradient(135deg, #4379ff 0%, #4379ff 100%);
	color: white;
	position: relative;
	overflow: hidden;
	padding: 90px 0 90px;

}



/* .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: backgroundFlow 8s ease-in-out infinite alternate;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    height: 160px;
    background: white;
    transform: skewY(-2deg);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
 */
}


@keyframes backgroundFlow {
	0% {
		background-position: 0% 0%, 100% 0%, 50% 100%;
		opacity: 0.6;
	}

	50% {
		background-position: 100% 50%, 0% 100%, 0% 0%;
		opacity: 0.8;
	}

	100% {
		background-position: 50% 100%, 50% 50%, 100% 0%;
		opacity: 0.6;
	}
}


.hero-section .floating-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.hero-section .particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	animation: float 6s ease-in-out infinite;
}

.hero-section .particle:nth-child(1) {
	left: 10%;
	animation-delay: 0s;
	animation-duration: 6s;
}

.hero-section .particle:nth-child(2) {
	left: 20%;
	animation-delay: 1s;
	animation-duration: 8s;
}

.hero-section .particle:nth-child(3) {
	left: 30%;
	animation-delay: 2s;
	animation-duration: 7s;
}

.hero-section .particle:nth-child(4) {
	left: 40%;
	animation-delay: 3s;
	animation-duration: 9s;
}

.hero-section .particle:nth-child(5) {
	left: 50%;
	animation-delay: 4s;
	animation-duration: 6s;
}

.hero-section .particle:nth-child(6) {
	left: 60%;
	animation-delay: 5s;
	animation-duration: 8s;
}

.hero-section .particle:nth-child(7) {
	left: 70%;
	animation-delay: 2s;
	animation-duration: 7s;
}

.hero-section .particle:nth-child(8) {
	left: 80%;
	animation-delay: 1s;
	animation-duration: 9s;
}

.hero-section .particle:nth-child(9) {
	left: 90%;
	animation-delay: 3s;
	animation-duration: 6s;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(100vh) scale(0);
		opacity: 0;
	}

	10% {
		opacity: 1;
		transform: translateY(90vh) scale(1);
	}

	90% {
		opacity: 1;
		transform: translateY(10vh) scale(1);
	}
}

.hero-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-left {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.hero-title {
	font-size: 56px;
	font-weight: 800;
	line-height: 1.1;
	margin: 0;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-line {
	display: block;
	margin-bottom: 8px;
}

.hero-subtitle {
	font-size: 24px;
	font-weight: 400;
	margin: 0;
	opacity: 0.9;
	line-height: 1.4;
}

.subtitle-line {
	display: block;
	margin-bottom: 6px;
}

.hero-services {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.primary-service {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
	padding: 20px 32px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	border: 2px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.primary-service:hover {
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.2);
}

.service-tags {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.tag-row {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.service-tag {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 16px 28px;
	border-radius: 25px;
	font-size: 18px;
	font-weight: 500;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	display: inline-block;
}

.service-tag:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.contact-service {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(15px);
	padding: 16px 28px;
	border-radius: 30px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 2px solid rgba(255, 255, 255, 0.25);
	align-self: flex-start;
}

.contact-label {
	font-size: 18px;
	opacity: 0.9;
}

.contact-hours {
	font-size: 22px;
	font-weight: 700;
}

.hero-right {
	position: relative;
	height: 500px;
}

.hero-images {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-img {
	position: absolute;
	width: 90%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	border: 4px solid rgba(255, 255, 255, 0.9);
	transition: all 0.5s ease;
}

.hero-img-1 {
	top: 0;
	right: 0;
	transform: rotate(-8deg);
	z-index: 3;
}

.hero-img-2 {
	top: 60px;
	right: 40px;
	transform: rotate(4deg);
	z-index: 2;
}

.hero-img-3 {
	top: 120px;
	right: 80px;
	transform: rotate(-3deg);
	z-index: 1;
}

.hero-img:hover {
	transform: rotate(0deg) scale(1.05);
	z-index: 4;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}


.features-stats-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	position: relative;
	margin-top: -80px;
	z-index: 10;
}

.features-stats-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	flex-direction: column;
	gap: 80px;
}


.features-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.feature-item {
	background: #4379ff;
	border-radius: 20px;
	padding: 4px;
	box-shadow: 0 12px 40px rgba(26, 115, 232, 0.3);
	transition: all 0.3s ease;
}

.feature-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 60px rgba(26, 115, 232, 0.4);
}

.feature-item>div {
	background: white;
	border-radius: 16px;
	padding: 32px;
	display: flex;
	align-items: center;
	gap: 40px;
}

.feature-badge {
	color: #4379ff;
	font-size: 24px;
	font-weight: 700;
	min-width: 220px;
	padding-right: 40px;
	border-right: 3px solid #e8f0fe;
	position: relative;
}

.feature-badge::after {
	content: '';
	position: absolute;
	right: -1.5px;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 60%;
	background: linear-gradient(to bottom, #4379ff, #4379ff);
	border-radius: 2px;
}

.feature-description {
	color: #666;
	font-size: 18px;
	line-height: 1.6;
	flex: 1;
}


.stats-content {
	text-align: center;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-bottom: 60px;
}

.stat-card {
	/* background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); */
	/* padding: 48px 24px; */
	border-radius: 20px;
	transition: all 0.4s ease;
	/* border: 1px solid rgba(26, 115, 232, 0.1); */
	border-left:1px solid #eee;
	position: relative;
	overflow: hidden;
	/* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05); */
}

/* .stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #4379ff, #4379ff);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.stat-card:hover::before {
	transform: scaleX(1);
}

.stat-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(26, 115, 232, 0.2);
} */

.stat-number {
	font-size: 48px;
	position: relative;
	/* font-weight: 800; */
	color: #333;
	margin-bottom: 15px;
	line-height: 1;
	background: linear-gradient(135deg, #333, #333);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.stat-label {
	color: #666;
	font-size: 18px;
}

.stats-description {
	background: linear-gradient(135deg, #e8f0fe 0%, #f3f4f6 100%);
	padding: 40px;
	border-radius: 20px;
	border: 2px solid rgba(26, 115, 232, 0.1);
}

.stats-description p {
	font-size: 20px;
	color: #444;
	line-height: 1.7;
	margin: 0;
	font-weight: 500;
}


.company-section {
	background: #4379ff;
	color: white;
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}

.company-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%); */
}

.company-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
	z-index: 1;
}

.section-header {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 24px;
}

.header-accent {
	width: 6px;
	height: 48px;
	background: white;
	border-radius: 3px;
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.section-title {
	font-size: 36px;
	font-weight: 800;
	margin: 0;
	/* text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); */
}

.header-icon {
	margin-left: 16px;
}

.header-icon img {
	width: 48px;
	height: 48px;
	filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.company-name {
	font-size: 56px;
	font-weight: 800;
	margin: 0 0 60px 0px;
	/* text-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
	background: linear-gradient(45deg, #333, #e3f2fd);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent; */
}

.company-intro {
	margin-bottom: 80px;
}

.intro-paragraph {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 24px;
	/* opacity: 0.95; */
	/* text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); */
}

.company-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 48px;
}

.company-stat {
	text-align: center;
	position: relative;
}

.stat-circle {
	position: relative;
	margin-bottom: 24px;
}

.stat-circle::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 180px;
	height: 180px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.circle-number {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
	width: 160px;
	height: 160px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 42px;
	font-weight: 700;
	margin: 0 auto;
	border: 2px solid rgba(255, 255, 255, 0.25);
	transition: all 0.4s ease;
	position: relative;
	z-index: 1;
}

.circle-number:hover {
	transform: scale(1.05);
	background: rgba(255, 255, 255, 0.2);
}

.circle-desc {
	font-size: 16px;
	opacity: 0.9;
	line-height: 1.4;
	font-weight: 500;
}


.business-section {
	padding: 120px 0;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	position: relative;
}

.business-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 10% 20%, rgba(26, 115, 232, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 90% 80%, rgba(26, 115, 232, 0.05) 0%, transparent 50%);
}

.business-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
	z-index: 1;
}

.business-highlight {
	background: linear-gradient(135deg, #4379ff 0%, #4379ff 100%);
	color: white;
	padding: 60px 48px;
	border-radius: 30px;
	text-align: center;
	margin-bottom: 80px;
	box-shadow: 0 20px 60px rgba(26, 115, 232, 0.3);
	position: relative;
	overflow: hidden;
}

.business-highlight::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.business-highlight h3 {
	font-size: 36px;
	font-weight: 800;
	margin: 0;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 1;
}

.business-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-bottom: 100px;
}

.business-features,
.business-tags {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	padding: 48px;
	border-radius: 24px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(26, 115, 232, 0.1);
	transition: all 0.3s ease;
}

.business-features:hover,
.business-tags:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 60px rgba(26, 115, 232, 0.15);
}



.features-title,
.tags-title {
	font-size: 28px;
	color: #1f2329;
	font-weight: 700;
	margin-bottom: 32px;
	text-shadow: 0 2px 8px rgba(26, 115, 232, 0.1);
}

.features-list {
	list-style: none;
}

.feature-point {
	font-size: 16px;
	padding-left: 32px;
	position: relative;
	line-height: 32px;
	transition: all 0.3s ease;
}

.feature-point::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #f78106;
	/* font-weight: 800; */
	font-size: 14px;
	top: 2px;
}

.feature-point.highlight {
	color: #4379ff;
	/* font-weight: 600; */
}

.feature-point.highlight::before {
	content: '⭐';
	color: #f78106;
}

.feature-point:hover {
	transform: translateX(8px);
}

.tags-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
}

.business-tag {
	background: #e8f0fe;
	color: #1f2329;
	padding: 16px 24px;
	border-radius: 25px;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid rgba(26, 115, 232, 0.2);
}

.business-tag:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(26, 115, 232, 0.3);
}


.tags-grid2 {
	/* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px; */
	margin-top: 30px;
}

.business-tag2 {
	display: inline-block;
	color: #fff;
	padding: 8px 10px;
	border-radius: 25px;
	font-size: 16px;
	margin-bottom: 15px;
	margin-right: 10px;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.business-tag2:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(26, 115, 232, 0.3);
}





.business-tag.primary {
	background: #4379ff;
	color: white;
	border-color: #4379ff;
}

.business-tag.primary:hover {
	box-shadow: 0 8px 24px rgba(26, 115, 232, 0.5);
}

.service-systems {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.system-card {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	padding: 40px;
	border-radius: 20px;
	transition: all 0.4s ease;
	border: 1px solid rgba(26, 115, 232, 0.1);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
	text-align: center;
}

.system-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #4379ff, #4379ff);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.system-card:hover::before {
	transform: scaleX(1);
}

.system-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(26, 115, 232, 0.15);
}

.system-title {
	color: #4379ff;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	text-shadow: 0 2px 8px rgba(26, 115, 232, 0.1);
}

.system-desc {
	color: #666;
	font-size: 15px;
	line-height: 1.7;
	margin: 0;
}


.choose-section {
	background: #4379ff;
	color: white;
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}

.choose-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.choose-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	position: relative;
	z-index: 1;
}

.choose-header {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 48px;
}

.question-icon {
	width: 48px;
	height: 48px;
	filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.choose-title {
	font-size: 40px;
	font-weight: 800;
	margin: 0;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.qa-list {
	display: grid;gap: 0px;grid-template-columns: repeat(3, 1fr);
	text-align: center;
	position: relative;
}  
.ic_s{width:80px;height:80px;line-height:80px;text-align: center;font-size: 58px !important;background: -webkit-linear-gradient(120deg,#006eff,#9b93ff);-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
.i_bd1{height:1px;background:#e5e6eb;position: absolute;left:0;right:0;top:360px;}
.i_bd2{width:1px;background:#e5e6eb;position: absolute;left:445px;top:0;bottom:0;}
.i_bd3{width:1px;background:#e5e6eb;position: absolute;right:440px;top:0;bottom:0;}

.qa-item {
	/* background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(20px); */
	padding: 65px 50px;
	border-radius: 20px;
	/* display: flex;
	gap: 24px;
	border: 1px solid rgba(255, 255, 255, 0.2); */
	transition: all 0.4s ease;
}

.qa-item:hover {
	background: rgba(255, 255, 255, 0.18);
	transform: translateY(-12px);
	/* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); */
}

.qa-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
}

.qa-icon img {
	width: 100%;
	filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.qa-question {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
	color:#1f2329;
	/* text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); */
}

.qa-answer {
	font-size: 18px;
	line-height: 28px;
	/* opacity: 0.95; */
	margin: 0;
	color:#646a73;
}

.showcase-images {
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: relative;
	height: 600px;
}

.showcase-img {
	position: absolute;
	width: 100%;
	max-width: 500px;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	border: 3px solid rgba(255, 255, 255, 0.9);
	transition: all 0.4s ease;
}

.showcase-img-1 {
	top: 0;
	left: 0;
	z-index: 2;
	transform: rotate(-2deg);
}

.showcase-img-2 {
	top: 120px;
	left: 60px;
	z-index: 1;
	transform: rotate(2deg);
}

.showcase-img:hover {
	transform: scale(1.05) rotate(0deg);
	z-index: 3;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}


.google-section {
	background: #4379ff;
	color: white;
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}

.google-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.google-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.google-logo {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	border: 4px solid rgba(255, 255, 255, 0.9);
	transition: all 0.4s ease;
}

.google-logo:hover {
	transform: scale(1.02) translateY(-8px);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.google-right {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.google-brand {
	font-size: 56px;
	font-weight: 800;
	margin: 0;
	text-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
	background: linear-gradient(45deg, #ffffff, #e3f2fd);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.google-description {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(20px);
	padding: 32px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.google-description p {
	font-size: 18px;
	line-height: 1.8;
	margin: 0;
	opacity: 0.95;
}

.google-features {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.google-feature {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 18px;
	line-height: 2.2;
	transition: all 0.3s ease;
}

.google-feature:hover {
	transform: translateX(12px);
}

.feature-bullet {
	color: white;
	font-size: 18px;
	flex-shrink: 0;
}

.feature-text {
	flex: 1;
}

.google-feature-row {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.feature-divider {
	color: white;
	opacity: 0.7;
	font-size: 20px;
}


.service-section {
	padding: 120px 0;
	background: white;
}

.service-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

.service-header {
	text-align: center;
	margin-bottom: 80px;
}

.service-title {
	font-size: 48px;
	color: #4379ff;
	font-weight: 800;
	line-height: 1.3;
	margin: 0;
	text-shadow: 0 4px 20px rgba(26, 115, 232, 0.2);
}

.service-promise {
	background: linear-gradient(135deg, #e8f0fe 0%, #f3f4f6 100%);
	padding: 48px;
	border-radius: 24px;
	text-align: center;
	margin-bottom: 80px;
	border: 2px solid rgba(26, 115, 232, 0.1);
	box-shadow: 0 8px 32px rgba(26, 115, 232, 0.1);
}

.service-promise p {
	font-size: 22px;
	color: #444;
	line-height: 1.8;
	margin: 0;
	font-weight: 500;
}

.support-grid {
	display: grid;
	 grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 32px;
}

.support-item {
	/* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); */
	padding:35px 25px;
	border-radius: 10px;
	display: flex;
	gap: 24px;
	/* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08); */
	border: 1px solid rgba(226,235,240,.5);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}
/* 
.support-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #4379ff, #4379ff);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.support-item:hover::before {
	transform: scaleX(1);
}

.support-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(26, 115, 232, 0.15);
} */

.support-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
}

.support-icon img {
	width: 100%;
	filter: drop-shadow(0 4px 12px rgba(26, 115, 232, 0.3));
}

.support-question {
	color: #4379ff;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
	/* text-shadow: 0 2px 8px rgba(26, 115, 232, 0.1); */
}

.support-answer {
	color: #646a73;
	font-size: 18px;
	line-height: 36px;
	margin: 0;
}


.contact-section {
	background: linear-gradient(rgba(9, 62, 93, 0.9), rgba(9, 62, 93, 0.9)), url('img/google-building.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: white;
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}

.contact-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.contact-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
	z-index: 1;
}

.contact-content {
	max-width: 900px;
}

.contact-header {
	margin-bottom: 48px;
}

.contact-title {
	font-size: 56px;
	font-weight: 800;
	margin-bottom: 16px;
	text-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
	background: linear-gradient(45deg, #ffffff, #e3f2fd);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.contact-subtitle {
	font-size: 40px;
	font-weight: 700;
	margin: 0;
	text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.contact-cta {
	margin-bottom: 60px;
}

.contact-button {
	display: inline-block;
	background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
	color: #4379ff;
	padding: 20px 48px;
	border-radius: 50px;
	text-decoration: none;
	font-size: 20px;
	font-weight: 700;
	transition: all 0.4s ease;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
	border: 3px solid rgba(255, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
}

.contact-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.contact-button:hover::before {
	left: 100%;
}

.contact-button:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-benefits {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.benefit-item {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(20px);
	padding: 24px 32px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	margin-bottom:25px;
}

.benefit-item:hover {
	background: rgba(255, 255, 255, 0.18);
	transform: translateX(12px);
}

.benefit-item p {
	font-size: 18px;
	line-height: 1.6;
	margin: 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}


.footer {
	background: linear-gradient(135deg, #1f2329 0%, #1f2329 100%);
	color: #8f959e;
	padding: 10px 0;
	text-align: center;
}

.footer-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

.footer-container p {
	font-size: 16px;
	opacity: 0.9;
	margin: 0;
	/* font-weight: 500; */
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}


@media (max-width: 1200px) {

	.nav-container,
	.hero-container,
	.features-stats-container,
	.company-container,
	.business-container,
	.choose-container,
	.google-container,
	.service-container,
	.contact-container,
	.footer-container {
		padding: 0 24px;
	}

	.hero-container,
	.choose-container,
	.google-container {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.business-content {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.service-systems {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

@media (max-width: 768px) {
	.nav-container {
		height: 70px;
		padding: 0 20px;
	}

	.nav-menu {
		gap: 20px;
	}

	.nav-link {
		font-size: 14px;
	}

	.brand-name {
		font-size: 20px;
	}

	.brand-subtitle {
		font-size: 12px;
	}

	.hero-title {
		font-size: 36px;
	}

	.hero-subtitle {
		font-size: 18px;
	}

	.section-title {
		font-size: 32px;
	}

	.company-name {
		font-size: 36px;
	}

	.choose-title {
		font-size: 28px;
	}

	.google-brand {
		font-size: 36px;
	}

	.contact-title {
		font-size: 36px;
	}

	.contact-subtitle {
		font-size: 28px;
	}

	.stats-grid,
	.company-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.service-systems {
		grid-template-columns: 1fr;
	}

	.support-grid {
		grid-template-columns: 1fr;
	}

	.hero-section,
	.features-stats-section,
	.company-section,
	.business-section,
	.choose-section,
	.google-section,
	.service-section,
	.contact-section {
		padding: 80px 0;
	}

	.hero-right {
		height: 400px;
	}

	.hero-img {
		width: 260px;
	}

	.showcase-images {
		height: 400px;
	}

	.showcase-img {
		max-width: 300px;
	}

	.showcase-img-2 {
		top: 80px;
		left: 40px;
	}


	.modal-content {
		width: 95%;
		margin: 20px;
	}

	.modal-header,
	.modal-body,
	.modal-footer {
		padding-left: 24px;
		padding-right: 24px;
	}

	.modal-header h2 {
		font-size: 24px;
	}
}


.contact-btn {
	cursor: pointer;
	border: none;
	background: inherit;
	color: inherit;
	font: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-service.contact-btn {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(15px);
	padding: 16px 48px;
	border-radius: 30px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 2px solid rgba(255, 255, 255, 0.25);
	align-self: flex-start;
	color: white;
}

.contact-service.contact-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-button.contact-btn {
	display: inline-block;
	background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
	color: #4379ff;
	padding: 20px 48px;
	border-radius: 50px;
	font-size: 20px;
	font-weight: 700;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
	border: 3px solid rgba(255, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
}

.contact-button.contact-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.contact-button.contact-btn:hover::before {
	left: 100%;
}

.contact-button.contact-btn:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}


.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	z-index: 10000;
	justify-content: center;
	align-items: center;
	animation: fadeIn 0.3s ease;
}

.modal-content {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-radius: 24px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	animation: slideIn 0.3s ease;
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 32px 40px 24px;
	border-bottom: 2px solid rgba(26, 115, 232, 0.1);
}

.modal-header h2 {
	color: #4379ff;
	font-size: 28px;
	font-weight: 700;
	margin: 0;
}

.modal-close {
	background: none;
	border: none;
	font-size: 32px;
	color: #666;
	cursor: pointer;
	padding: 8px;
	border-radius: 50%;
	transition: all 0.3s ease;
	line-height: 1;
}

.modal-close:hover {
	background: rgba(26, 115, 232, 0.1);
	color: #4379ff;
	transform: rotate(90deg);
}

.modal-body {
	padding: 32px 40px;
}

.modal-body h3 {
	color: #4379ff;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 16px;
}

.modal-body p {
	color: #666;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 24px;
}

.modal-body ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.modal-body li {
	color: #444;
	font-size: 16px;
	padding: 8px 0;
	line-height: 1.5;
}

.modal-footer {
	padding: 24px 40px 40px;
	text-align: center;
}

.modal-button {
	background: linear-gradient(135deg, #4379ff 0%, #4379ff 100%);
	color: white;
	border: none;
	padding: 16px 40px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 24px rgba(26, 115, 232, 0.3);
}

.modal-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 36px rgba(26, 115, 232, 0.4);
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-50px) scale(0.9);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.ben{
	transition: all 0.3s ease;
}

.ben:hover {
	background: rgba(255, 255, 255, 0.18);
	transform: translateX(12px);
}



.qimo8 {
	overflow: hidden;
	margin-top: 70px;
	-webkit-mask: -webkit-linear-gradient(left, transparent, white 20%, white 80%, transparent);
	mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.qimo8 .qimo {
	/*width:99999999px;*/
	width: 8000%;
	height: 30px;
}

.qimo8 .qimo div {
	float: left;
	padding-top: 5px;
}

.span_bg4 {
	animation: mall4 1.5s infinite linear;
	-webkit-animation: mall4 1.5s infinite linear;
	-moz-animation: mall4 1.5s infinite linear;
	-o-animation: mall4 1.5s infinite linear;
}

@keyframes mall4 {
	0% {
		font-size:14px;
	}

	20% {
		font-size: 17px;
	}

	40% {
		font-size: 20px;
	}

	60% {
		font-size: 17px;
	}

	100% {
		font-size: 14px;
	}
}



.banner_g{border:2px solid rgba(255,255,255,.3);border-top:0;padding:50px 40px 70px;position: relative;}
.banner_g span{display: inline-block;margin-right:20px;line-height:50px;font-size: 22px;color:#fff;}
.b_1{position: absolute;left:0;top:0;height:2px;background: rgba(255,255,255,.3);width:30px;}
.b_2{position: absolute;right:0;top:0;height:2px;background: rgba(255,255,255,.3);width:30px;}
.banner_g .feature-point {
	font-size: 18px;
	margin-bottom: 20px;
	padding-left: 24px;
	position: relative;
	line-height: 1.6;
	transition: all 0.3s ease;
}

.banner_g .feature-point::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #f78106;
	font-weight: 800;
	font-size: 16px;
	top: 2px;
}
.p_g .feature-point::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #f78106;
	font-weight: 800;
	font-size: 20px;
	top: 2px;
}


.banner_img{position: absolute;left:0;right:0;bottom:0;top:-100px;display: block;opacity: .1;width: 90%;margin: 0 auto;-webkit-mask: -webkit-linear-gradient(left, transparent, white 20%, white 80%, transparent);
	mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);}
	
	
	
.label_span{display: grid;gap: 15px;grid-template-columns: repeat(6, 1fr);}
.label_span_list{padding:25px 20px;border-radius:10px;position: relative;overflow: hidden;}
.label_span_list h3{font-size: 24px;color:#1f2329;text-align: center;margin-bottom:10px;}
.label_span_list p{font-size: 16px;color:#646a73;line-height: 26px;    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 使用WebKit内核浏览器的私有属性 */
    display: box; /* 旧式语法，应当避免使用 */
    line-clamp: 2; /* 标准语法 */
    overflow: hidden;
    text-overflow: ellipsis;}
.label_span_list span{position: absolute;display: block;left:0;top:0;border-radius:10px 0 10px 0;font-size: 12px;color:#fff;padding:0 10px;line-height: 22px;}



.pk_list{display: grid;gap: 15px;grid-template-columns: repeat(4, 1fr);padding:0 0px;position: relative;z-index:3;}
.pk_list_1{background:  #fff; background-size: 100%;border: 1px solid rgba(226,235,240,.5); padding:35px 25px;border-radius:10px;/* border:1px solid #f3f7ff; */}
.pk_list_name{font-size: 24px;color:#1f2329;font-weight: bold;}
.pk_list_text{color:#646a73;margin-top:20px;}
.pk_list_label{}

.pj_list{}
.pj_content{background: #fff;padding:35px 25px;border-radius:10px;border: 1px solid rgba(226,235,240,.5);}



.swiper_banner{width: 100%;}
.swiper_banner .swiper-slide a{width: 100%;height: 100%;}
.swiper_banner .swiper-slide img{width: 100%;height: 100%;vertical-align: top;display: block;}
.banner .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{bottom:30px !important;}
.banner .swiper-pagination-bullet{background:#ccc;width:66px;height:4px;border-radius:0;margin:0 3px !important;opacity: 1;}
.banner .swiper-pagination-bullet-active{background:#006eff;}
/*banner end*/



.qa-list4 {display: grid;gap: 15px;grid-template-columns: repeat(3, 1fr);text-align: left;position: relative;}  
.ic_s4{text-align: center;font-size: 30px !important;background: -webkit-linear-gradient(120deg,#006eff,#9b93ff);-webkit-background-clip: text;-webkit-text-fill-color: transparent;margin-right:10px;position: relative;top:2px;}
.qa-item4{background: #fff;border: 1px solid rgba(226,235,240,.5);padding:30px 25px 40px;border-radius:10px;}
.qa-content4{}
.qa-question4{font-size: 24px;color:#1f2329;}
.qa-answer4{font-size: 16px;color:#646a73;line-height: 26px;margin-top:15px;}


#header{position: fixed;left:0;top: 20px;right:0;width: 100%;background: none;z-index: 1000;transition: background-color 0.3s ease;}
#header.scrolled{background: rgba(255,255,255,.95);backdrop-filter: blur(20px);box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);width: 1320px;margin:0 auto;border-radius:10px;padding:10px 0;}
.scrolled .nav-container{padding:0 25px !important;}
.scrolled .brand-name{color:#006eff !important;}
.scrolled .brand-subtitle{color:#646a73 !important;}
.scrolled .nav-link{color:#1f2329 !important;font-size: 16px !important;}


.typing-text::after {
   content: '|';
   /* 光标字符 */
   animation: blink 0.8s steps(1) infinite;
   margin-left: 2px;
}
 
@keyframes blink {
 
   0%,
   50% {
       opacity: 1;
       }
 
   50.01%,
   100% {
        opacity: 0;
        }
}