/* 基础重置与通用样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', system-ui, sans-serif;
	color: #1D2939;
	background-color: #F9FAFB;
	line-height: 1.5;
}

a {
	text-decoration: none;
	color: inherit;
}

.a1 p {
	margin: 0 2px;
}

ul {
	list-style: none;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}


input,
select,
textarea {
	font-family: inherit;
	outline: none;
}

/* 容器样式 */
.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 16px;
}

@media (min-width: 640px) {
	.container {
		padding: 0 24px;
	}
}

@media (min-width: 1024px) {
	.container {
		padding: 0 32px;
		max-width: 1280px;
	}
}
.lunbt .mySwiper .slide-inner{
    position: relative;
}
.lunbt .mySwiper .slide-inner .swiper_text{
    position: absolute;
    left: 33%;
    top: 30%;
    color: rgba(255,255,255,1);
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    visibility: visible;
    animation-name: rise;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@keyframes rise{
    0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    }
    100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
}
.lunbt .mySwiper .slide-inner .swiper_text p{
    font-size: 44px;
    letter-spacing: 5px;
}
.lunbt .mySwiper .slide-inner .swiper_text .swiper_title{
    font-size: 94px;
    letter-spacing: 5px;
}

@media (max-width: 1440px) {
	.lunbt .mySwiper .slide-inner .swiper_text p{
    font-size: 44px;
    letter-spacing: 5px;
    }
.lunbt .mySwiper .slide-inner .swiper_text .swiper_title{
    font-size: 76px;
    letter-spacing: 5px;
    }
}
@media (max-width: 1280px) {
	.lunbt .mySwiper .slide-inner .swiper_text p{
    font-size: 44px;
    letter-spacing: 5px;
    }
.lunbt .mySwiper .slide-inner .swiper_text .swiper_title{
    font-size: 64px;
    letter-spacing: 5px;
    }
}
@media (max-width: 996px) {
	.lunbt .mySwiper .slide-inner .swiper_text p{
    font-size: 24px;
    letter-spacing: 5px;
    }
.lunbt .mySwiper .slide-inner .swiper_text .swiper_title{
    font-size: 32px;
    letter-spacing: 5px;
    }
}
/* 通用工具类 */
.text-shadow {
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bg-gradient-blue {
	background: linear-gradient(135deg, #165DFF 0%, #0E42D2 100%);
}

.transition-colors {
	transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.transition-shadow {
	transition: box-shadow 0.3s ease;
}

.transition-transform {
	transition: transform 0.5s ease;
}

.transition-all {
	transition: all 0.3s ease;
}

.hover-scale-102:hover {
	transform: scale(1.02);
}

.hover-translate-y-neg1:hover {
	transform: translateY(-4px);
}

.md-translate-y-neg4 {
	transform: translateY(-16px);
}

/* 导航栏样式 */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 50;
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.navbar-scrolled {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	background-color: #ffffff;
}

.navbar-inner {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 64px;
	gap: 80px;
}

@media (min-width: 768px) {
	.navbar-inner {
		height: 80px;
	}
}

.logo {
	display: flex;
	align-items: center;
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
}

.logo a {
	display: flex;
	align-items: center;
}

.logo-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;

	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	margin-right: 12px;
}

.logo-text {
	font-size: 20px;
	font-weight: 400;
	color: #165DFF;
}

.desktop-nav {
	display: none;
}

@media (min-width: 768px) {
	.desktop-nav {
		display: flex;
		gap: 32px;
	}
}

.nav-link {
	color: #374151;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-link:hover {
	color: #165DFF;
}

.contact-btn {
	display: none;
}

@media (min-width: 768px) {
	.contact-btn {
		display: block;
		background-color: #165DFF;
		color: #ffffff;
		padding: 8px 20px;
		border-radius: 8px;
		font-weight: 500;
		box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
		transition: background-color 0.3s ease, box-shadow 0.3s ease;
	}

	.contact-btn:hover {
		background-color: #0E42D2;
		box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	}
}

.menu-toggle {
	color: #374151;
	font-size: 24px;
	transition: color 0.3s ease;
	display: none;
}

.menu-toggle:hover {
	color: #165DFF;
	display: block;
}

@media (min-width: 768px) {
	.menu-toggle {
		display: none;
	}
}

.mobile-menu {
	display: none;
	background-color: #ffffff;
	border-top: 1px solid #e5e7eb;
}

.mobile-menu.show {
	display: block;
}

.mobile-menu-inner {
	padding: 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mobile-nav-link {
	display: block;
	padding: 8px 0;
	color: #374151;
	font-weight: 500;
	transition: color 0.3s ease;
}

.mobile-nav-link:hover {
	color: #165DFF;
}

.mobile-contact-btn {
	display: block;
	padding: 8px 0;
	background-color: #165DFF;
	color: #ffffff;
	text-align: center;
	border-radius: 8px;
	font-weight: 500;
}

/* 主内容区域 */
.main-content {
	padding-top: 64px;
}

@media (min-width: 768px) {
	.main-content {
		padding-top: 80px;
	}
}

/* 英雄区域 */
.hero-section {
	position: relative;
	color: #ffffff;
	overflow: hidden;
}

.hero-section .swiper-wrapper {
	width: 100%;
	height: max-content;
}

.hero-section .swiper-wrapper img {
	width: 100%;
}

.indexSwiper .swiper-slide {
	width: 100%;

	position: relative;
}

.indexSwiper .swiper-slide img {
	width: 100%;
}

.indexSwiper .swiper-slide p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #ffffff;
	width: 90%;
	max-width: 1280px;
	text-align: left;
}

@media (min-width: 768px) {}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("https://picsum.photos/id/1031/1920/1080");
	background-size: cover;
	background-position: center;
	opacity: 0.1;
}

.hero-content {
	position: relative;
	z-index: 10;
	max-width: 1024px;
	margin: 0 auto;
	text-align: center;
}

.hero-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 24px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-desc {
	font-size: clamp(1rem, 2vw, 1.25rem);
	color: #bfdbfe;
	margin-bottom: 40px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.hero-buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: center;
}

@media (min-width: 640px) {
	.hero-buttons {
		flex-direction: row;
	}
}

.primary-btn {
	background-color: #ffffff;
	color: #165DFF;
	padding: 12px 32px;
	border-radius: 8px;
	font-weight: 400;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.primary-btn:hover {
	background-color: #f3f4f6;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.secondary-btn {
	background-color: transparent;
	border: 2px solid #ffffff;
	color: #ffffff;
	padding: 12px 32px;
	border-radius: 8px;
	font-weight: 400;
	transition: background-color 0.3s ease;
}

.secondary-btn:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.wave-svg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
}

/* 通用区块样式 */
.section {
	padding: 80px 0;
}

.bg-light {
	background-color: rgba(246, 246, 246, 1);
}

.bg-white {
	background-color: #ffffff;
}

.bg-gray-50 {
	background-color: #f9fafb;
}

.section-header {
	text-align: center;
	margin-bottom: 64px;
}

.section-title {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	font-weight: 400;
	color: #1D2939;
	margin-bottom: 16px;
}

.title-underline {
	width: 80px;
	height: 4px;
	background-color: #165DFF;
	margin: 0 auto 24px;
}

.section-desc {
	color: #4b5563;
	max-width: 1024px;
	margin: 0 auto;
}

/* 服务定位区块 */
.service-location {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

@media (min-width: 768px) {
	.service-location {
		flex-direction: row;
		align-items: center;
		gap: 48px;
	}
}

.service-content {
	order: 2;
}

@media (min-width: 768px) {
	.service-content {
		order: 1;
		flex: 1;
	}
}

.service-image {
	order: 1;
}

@media (min-width: 768px) {
	.service-image {
		order: 2;
		flex: 1;
	}
}

.service-img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	transition: transform 0.5s ease;
}

.service-img:hover {
	transform: scale(1.02);
}

.service-subtitle {
	font-size: 24px;
	font-weight: 400;
	color: #1D2939;
	margin-bottom: 16px;
}

.service-text {
	color: #4b5563;
	margin-bottom: 24px;
	line-height: 1.6;
}

.service-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 32px;
}

.feature-item {
	display: flex;
	align-items: flex-start;
}

.feature-icon {
	background-color: rgba(22, 93, 255, 0.1);
	padding: 12px;
	border-radius: 8px;
	margin-right: 16px;
	color: #165DFF;
	font-size: 24px;
}

.feature-title {
	font-weight: 600;
	margin-bottom: 4px;
}

.feature-desc {
	font-size: 14px;
	color: #4b5563;
}

/* 核心产品区块 */
.products-grid {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

@media (min-width: 768px) {
	.products-grid {
		flex-direction: row;
		gap: 32px;
	}
}

.product-card {
	background-color: #F9FAFB;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	border: 1px solid #f3f4f6;
	transition: box-shadow 0.3s ease;
}

.product-card:hover {
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-card.highlight {
	background-color: #ffffff;
	border: 2px solid #165DFF;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	transform: translateY(-16px);
	position: relative;
	z-index: 10;
}

.product-header {
	background-color: rgba(22, 93, 255, 0.05);
	padding: 24px;
	border-bottom: 1px solid #f3f4f6;
}

.product-card.highlight .product-header {
	background-color: #165DFF;
	color: #ffffff;
	border-bottom: 1px solid rgba(22, 93, 255, 0.2);
}

.product-title {
	font-size: 20px;
	font-weight: 400;
	color: #1D2939;
	margin-bottom: 8px;
}

.product-card.highlight .product-title {
	color: #ffffff;
}

.product-price {
	display: flex;
	align-items: flex-end;
	margin-bottom: 16px;
}

.price-number {
	font-size: 28px;
	font-weight: 700;
	color: #165DFF;
	margin-right: 4px;
}

.product-card.highlight .price-number {
	color: #ffffff;
}

.price-unit {
	color: #6b7280;
	font-size: 16px;
}

.product-card.highlight .price-unit {
	color: rgba(255, 255, 255, 0.8);
}

.product-desc {
	font-size: 14px;
	color: #6b7280;
}

.product-card.highlight .product-desc {
	color: rgba(255, 255, 255, 0.8);
}

.product-body {
	padding: 24px;
}

.product-feature-title {
	font-weight: 600;
	color: #1D2939;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
}

.product-feature-icon {
	color: #165DFF;
	margin-right: 8px;
}

.product-feature-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 20px;
	color: #4b5563;
}

.feature-list-item {
	display: flex;
	align-items: flex-start;
}

.check-icon {
	color: #22c55e;
	margin-right: 8px;
	margin-top: 4px;
}

.product-select-btn {
	display: block;
	width: 100%;
	text-align: center;
	padding: 12px 0;
	border-radius: 8px;
	font-weight: 500;
	margin-top: 32px;
	transition: all 0.3s ease;
}

.product-card .product-select-btn {
	background-color: #ffffff;
	border: 1px solid #165DFF;
	color: #165DFF;
}

.product-card .product-select-btn:hover {
	background-color: #165DFF;
	color: #ffffff;
}

.product-card.highlight .product-select-btn {
	background-color: #165DFF;
	color: #ffffff;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.product-card.highlight .product-select-btn:hover {
	background-color: #0E42D2;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.popular-badge {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #165DFF;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 12px;
	border-bottom-left-radius: 8px;
}

/* 服务优势区块 */
.advantages-grid {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

@media (min-width: 768px) {
	.advantages-grid {
		flex-direction: row;
		gap: 32px;
	}
}

.advantage-card {
	background-color: #ffffff;
	padding: 32px;
	border-radius: 16px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.advantage-card:hover {
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.advantage-icon {
	width: 64px;
	height: 64px;
	background-color: rgba(22, 93, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #165DFF;
	font-size: 32px;
	margin-bottom: 24px;
}

.advantage-title {
	font-size: 20px;
	font-weight: 700;
	color: #1D2939;
	margin-bottom: 16px;
}

.advantage-desc {
	color: #4b5563;
}

.advantage-feature-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: #4b5563;
}

.advantage-feature-item {
	display: flex;
	align-items: flex-start;
}

.advantage-check-icon {
	color: #165DFF;
	margin-right: 8px;
	margin-top: 4px;
}

.background-card {
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	margin-top: 64px;
}

.background-content {
	display: flex;
	flex-direction: column;
}

@media (min-width: 768px) {
	.background-content {
		flex-direction: row;
	}
}

.background-text {
	padding: 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (min-width: 768px) {
	.background-text {
		padding: 48px;
		flex: 1;
	}
}

.background-title {
	font-size: 24px;
	font-weight: 700;
	color: #1D2939;
	margin-bottom: 16px;
}

.background-desc {
	color: #4b5563;
	margin-bottom: 24px;
}

.background-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 24px;
}

.background-feature {
	display: flex;
	align-items: center;
}

.background-feature-icon {
	width: 40px;
	height: 40px;
	background-color: rgba(22, 93, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #165DFF;
	margin-right: 12px;
	flex-shrink: 0;
}

.background-feature-text {
	color: #374151;
	font-weight: 500;
}

.background-image {
	background-color: #f3f4f6;
	flex: 1;
}

.background-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 服务流程区块 */
.process-container {
	position: relative;
}

.process-line {
	display: none;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: rgba(22, 93, 255, 0.2);
	transform: translateY(-50%);
	z-index: 0;
}

@media (min-width: 768px) {
	.process-line {
		display: block;
	}
}

.process-grid {
	display: flex;
	flex-direction: column;
	gap: 48px;
	position: relative;
	z-index: 10;
}

@media (min-width: 768px) {
	.process-grid {
		flex-direction: row;
		gap: 32px;
	}
}

.process-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.step-number {
	width: 80px;
	height: 80px;
	background-color: #165DFF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 24px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-title {
	font-size: 20px;
	font-weight: 700;
	color: #1D2939;
	margin-bottom: 12px;
}

.step-desc {
	color: #4b5563;
}

.case-card {
	background-color: rgba(22, 93, 255, 0.05);
	border-radius: 16px;
	padding: 32px;
	margin-top: 80px;
}

@media (min-width: 768px) {
	.case-card {
		padding: 48px;
	}
}

.case-content {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

@media (min-width: 768px) {
	.case-content {
		flex-direction: row;
		align-items: center;
		gap: 48px;
	}
}

.case-text {
	flex: 1;
}

.case-title {
	font-size: 24px;
	font-weight: 700;
	color: #1D2939;
	margin-bottom: 16px;
}

.case-desc {
	color: #4b5563;
	margin-bottom: 24px;
}

.case-features {
	display: flex;
	flex-direction: column;
	gap: 12px;
	color: #374151;
}

.case-feature {
	display: flex;
	align-items: flex-start;
}

.case-feature-icon {
	color: #165DFF;
	margin-right: 12px;
	margin-top: 4px;
}

.case-btn {
	display: inline-block;
	background-color: #165DFF;
	color: #ffffff;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 500;
	margin-top: 32px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.case-btn:hover {
	background-color: #0E42D2;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.case-image {
	flex: 1;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.case-img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* 适合人群区块 */
.target-grid {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

@media (min-width: 768px) {
	.target-grid {
		flex-direction: row;
		gap: 32px;
	}
}

.target-card {
	background-color: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease;
}

.target-card:hover {
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.target-icon-container {
	height: 192px;
	background-color: rgba(22, 93, 255, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
}

.target-icon {
	font-size: 96px;
	color: rgba(22, 93, 255, 0.3);
}

.target-content {
	padding: 24px;
}

.target-title {
	font-size: 20px;
	font-weight: 400;
	color: #1D2939;
	margin-bottom: 12px;
}

.target-desc {
	color: #4b5563;
	margin-bottom: 16px;
}

.target-solution {
	display: flex;
	align-items: center;
	color: #165DFF;
	font-weight: 500;
}

.target-arrow {
	margin-left: 8px;
}

.consult-card {
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	padding: 32px;
	margin-top: 64px;
	text-align: center;
}

@media (min-width: 768px) {
	.consult-card {
		padding: 48px;
	}
}

.consult-title {
	font-size: 24px;
	font-weight: 400;
	color: #1D2939;
	margin-bottom: 16px;
}

.consult-desc {
	color: #4b5563;
	margin-bottom: 32px;
	max-width: 1024px;
	margin-left: auto;
	margin-right: auto;
}

.consult-btn {
	display: inline-block;
	background-color: #165DFF;
	color: #ffffff;
	padding: 12px 32px;
	border-radius: 8px;
	font-weight: 600;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.consult-btn:hover {
	background-color: #0E42D2;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* 联系咨询区块 */
.contact-content {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

@media (min-width: 768px) {
	.contact-content {
		flex-direction: row;
		align-items: center;
		gap: 48px;
	}
}

.contact-form {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.form-row {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

@media (min-width: 768px) {
	.form-row {
		flex-direction: row;
	}
}

.form-group {
	flex: 1;
}

.form-label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #374151;
	margin-bottom: 4px;
}

.form-input {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
	border-color: #165DFF;
	box-shadow: 0 0 0 4px rgba(22, 93, 255, 0.2);
}

.form-textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	min-height: 120px;
	resize: vertical;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-textarea:focus {
	border-color: #165DFF;
	box-shadow: 0 0 0 4px rgba(22, 93, 255, 0.2);
}

.form-select {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
	background-position: right 16px center;
	background-repeat: no-repeat;
	background-size: 16px;
}

.form-select:focus {
	border-color: #165DFF;
	box-shadow: 0 0 0 4px rgba(22, 93, 255, 0.2);
}

.form-submit {
	width: 100%;
	background-color: #165DFF;
	color: #ffffff;
	padding: 12px 0;
	border-radius: 8px;
	font-weight: 500;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.form-submit:hover {
	background-color: #0E42D2;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-info {
	flex: 1;
	background-color: rgba(22, 93, 255, 0.05);
	border-radius: 16px;
	padding: 32px;
	height: 100%;
}

.contact-info-title {
	font-size: 24px;
	font-weight: 700;
	color: #1D2939;
	margin-bottom: 24px;
}

.contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
}

.contact-info-icon {
	width: 48px;
	height: 48px;
	background-color: rgba(22, 93, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #165DFF;
	font-size: 24px;
	margin-right: 16px;
	flex-shrink: 0;
}

.contact-info-content {
	flex: 1;
}

.contact-info-label {
	font-weight: 600;
	color: #1D2939;
	margin-bottom: 4px;
}

.contact-info-text {
	color: #4b5563;
}

.contact-info-note {
	font-size: 14px;
	color: #6b7280;
	margin-top: 4px;
}

/* 页脚样式 */
.footer {
	background-color: #1D2939;
	color: #ffffff;
	padding: 48px 0;
}

.footer-grid {
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin-bottom: 32px;
}

@media (min-width: 768px) {
	.footer-grid {
		flex-direction: row;
		gap: 32px;
	}
}

.footer-brand {
	flex: 1;
}

.footer-logo {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}

.footer-logo-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background-color: #165DFF;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	margin-right: 12px;
}

.footer-logo-text {
	font-size: 20px;
	font-weight: 400;
	color: #ffffff;
}

.footer-desc {
	color: #9ca3af;
	font-size: 14px;
	margin-bottom: 16px;
}

.footer-social {
	display: flex;
	gap: 16px;
}

.social-link {
	color: #9ca3af;
	font-size: 24px;
	transition: color 0.3s ease;
}

.social-link:hover {
	color: #ffffff;
}

.footer-links {
	flex: 1;
}

.footer-links-title {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 16px;
}

.footer-links-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: #9ca3af;
}

.footer-link {
	transition: color 0.3s ease;
}

.footer-link:hover {
	color: #ffffff;
}

.footer-contact {
	flex: 1;
}

.footer-contact-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 16px;
}

.footer-contact-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	color: #9ca3af;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
}

.footer-contact-icon {
	color: #165DFF;
	margin-right: 8px;
	margin-top: 4px;
}

.footer-copyright {
	border-top: 1px solid #374151;
	padding-top: 32px;
	text-align: center;
	color: #6b7280;
	font-size: 14px;
}

.copyright-text {
	margin-bottom: 8px;
}

/* 回到顶部按钮 */
.back-to-top {
	position: fixed;
	bottom: 32px;
	right: 32px;
	background-color: #165DFF;
	color: #ffffff;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
	opacity: 0;
	visibility: hidden;
	z-index: 50;
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background-color: #0E42D2;
}