@charset "UTF-8";

* {
	margin: 0;
	/* padding: 0; */
}

.container{
	border: 0;
	width: 100vw;
}

.container-item01{
	width: 100%;
	height: 1000px;
	background: linear-gradient(90.32deg, #F6E0CF 0.3%, #E9F1E9 99.75%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 5%;
	box-sizing: border-box;
}

.container-item02{
	width: 100%;
	height: auto;
	min-height: 800px;
	background: linear-gradient(270.14deg, #F6F8F4 0.13%, #FAEEE4 99.89%);
}

/* 主要内容容器 */
.download-content {
	display: flex;
	width: 100%;
	max-width: 1400px;
	align-items: center;
	justify-content: space-between;
	gap: 80px;
}

/* 左侧内容区域 */
.left-content {
	flex: 1;
	max-width: 600px;
}

/* 品牌Logo */
.brand-logo {
	margin-bottom: 20px;
}

.logo-img {
	height: 60px;
	width: auto;
}

/* APP副标题 */
.app-subtitle {
	font-size: 18px;
	color: #FF8B5A;
	font-weight: 500;
	margin-bottom: 15px;
}

/* 主标题 */
.main-title {
	margin-bottom: 25px;
}

.title-line1, .title-line2 {
	font-size: 48px;
	font-weight: 700;
	color: #333;
	line-height: 1.2;
}

.title-line2 {
	color: #FF8B5A;
}

/* 描述文字 */
.description {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 30px;
	max-width: 500px;
}

/* 下载按钮 */
.download-button {
	margin-bottom: 40px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.download-button img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.btn-download {
	background: linear-gradient(135deg, #FF8B5A 0%, #FF6B35 100%);
	color: white;
	border: none;
	padding: 15px 40px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 139, 90, 0.3);
	display: flex;
	align-items: center;
	gap: 10px;
}

.btn-download img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.btn-download:hover {
	background: #e67a4a;
	transform: translateY(-2px);
}

/* 二维码区域 */
.qr-codes {
	display: flex;
	gap: 30px;
	margin-bottom: 30px;
}

.qr-card {
	background: white;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 160px;
	height: 180px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.qr-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.qr-title {
	font-size: 14px;
	color: #333;
	font-weight: 500;
	margin-bottom: 8px;
}

.qr-code {
	width: 80px;
	height: 80px;
	background: #f8f8f8;
	border-radius: 8px;
	margin: 5px auto 15px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #e0e0e0;
	flex-shrink: 0;
}

.qr-img {
	width: 70px;
	height: 70px;
	object-fit: contain;
}

.store-label {
	background: #000;
	color: white;
	border-radius: 20px;
	padding: 6px 16px;
	font-size: 11px;
	font-weight: 500;
	display: inline-block;
	margin-top: auto;
	margin-bottom: 10px;
}

.store-label.android {
	background: #4CAF50;
}

.store-text {
	display: block;
}

/* 免责声明 */
.disclaimer {
	font-size: 12px;
	color: #999;
	line-height: 1.4;
	max-width: 450px;
}

/* 右侧内容区域 */
.right-content {
	flex: 1;
	max-width: 500px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 手机模型 */
.phone-mockup {
	position: relative;
	z-index: 2;
}

.phone-frame {
	width: 280px;
	height: 560px;
	background: white;
	border-radius: 30px;
	padding: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	position: relative;
	overflow: hidden;
}

.phone-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.phone-screen {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #FFE5E5 0%, #F0F8FF 100%);
	border-radius: 20px;
	padding: 30px 20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

/* APP头部 */
.app-header {
	text-align: center;
	margin-bottom: 20px;
}

.app-logo {
	height: 40px;
	width: auto;
	margin-bottom: 10px;
}

.app-title {
	font-size: 14px;
	color: #FF8B5A;
	font-weight: 500;
}

/* APP插图区域 */
.app-illustration {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px 0;
}

.illustration-img {
	max-width: 180px;
	max-height: 300px;
	width: auto;
	height: auto;
}

/* APP内按钮 */
.app-button {
	margin-top: 20px;
}

.btn-app {
	background: #FF8B5A;
	color: white;
	border: none;
	padding: 10px 40px;
	font-size: 14px;
	border-radius: 20px;
	cursor: pointer;
}

/* 装饰元素 */
.decorative-elements {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.6;
}

.shape-1 {
	width: 80px;
	height: 80px;
	background: #FF8B5A;
	top: 10%;
	right: 10%;
	transform: rotate(45deg);
}

.shape-2 {
	width: 60px;
	height: 60px;
	background: #4CAF50;
	bottom: 15%;
	left: 5%;
}

/* 功能展示区域 */
.container-item02 {
	padding: 80px 0;
	background: linear-gradient(270.14deg, #F6F8F4 0.13%, #FAEEE4 99.89%);
}

.features-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}

.features-header {
	margin-bottom: 60px;
}

.features-badge {
	background: #FF8B5A;
	color: white;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	display: inline-block;
	margin-bottom: 20px;
}

.features-title {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
	line-height: 1.2;
}

.features-subtitle {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 60px;
}

.feature-card {
	background: white;
	border-radius: 20px;
	padding: 30px 20px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	text-align: center;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-image {
	width: 200px;
	height: 400px;
	margin: 0 auto 25px;
	background: #f5f5f5;
	border-radius: 25px;
	padding: 15px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.phone-screen-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.feature-name {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
}

.feature-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}

/* 响应式设计 */
@media (max-width: 1024px) {
	.download-content {
		flex-direction: column;
		gap: 50px;
	}
	
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.feature-image {
		width: 150px;
		height: 300px;
	}
}

@media (max-width: 768px) {
	.download-content {
		flex-direction: column;
		gap: 50px;
		text-align: center;
	}
	
	.download-button {
		justify-content: center;
		margin-bottom: 30px;
	}
	
	.features-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.features-title {
		font-size: 28px;
	}
	
	.feature-image {
		width: 120px;
		height: 240px;
	}
	
	.container-item02 {
		padding: 60px 20px;
		height: auto;
		min-height: auto;
	}
	
	.left-content {
		max-width: 100%;
	}
	
	.qr-codes {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.container-item01 {
		padding: 40px 20px;
		height: auto;
		min-height: 100vh;
	}
	
	.title-line1, .title-line2 {
		font-size: 36px;
	}
	
	.phone-frame {
		width: 240px;
		height: 480px;
	}
	
	.qr-codes {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
}

.container-item03{
	width: 100%;
	height: auto;
	background: linear-gradient(90deg, #FCF5EF 0%, #F6F9F5 100%);
	padding: 80px 0;
}

/* 核心功能模块区域 */
.core-features-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}

.core-features-header {
	margin-bottom: 60px;
}

.core-features-badge {
	background: #4CAF50;
	color: white;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	display: inline-block;
	margin-bottom: 20px;
}

.core-features-title {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
	line-height: 1.2;
}

.core-features-subtitle {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto;
}

.core-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 60px;
}

.core-feature-card {
	background: white;
	border: 1px solid #E5E5E5;
	border-radius: 15px;
	padding: 30px 25px;
	transition: all 0.3s ease;
	text-align: left;
	position: relative;
}

.core-feature-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	border-color: #FF8B5A;
}

.core-feature-icon {
	width: 50px;
	height: 50px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: #F8F9FA;
	position: relative;
}

.feature-icon-img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.core-feature-name {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 12px;
	line-height: 1.3;
}

.core-feature-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}

/* 核心功能响应式设计 */
@media (max-width: 1024px) {
	.core-features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

@media (max-width: 768px) {
	.core-features-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.core-features-title {
		font-size: 28px;
	}
	
	.container-item03 {
		padding: 60px 20px;
		height: auto;
		min-height: auto;
	}
	
	.core-feature-card {
		padding: 25px 20px;
	}
}

.container-item04 {
	width: 100%;
	height: auto;
	background: linear-gradient(90deg, #F6F8F4 0%, #FAEEE4 100%);
	padding: 80px 0;
}

/* 健康护理区域 */
.health-care-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.health-care-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 80px;
}

/* 左侧内容区域 */
.health-care-left {
	flex: 1;
	max-width: 500px;
}

.health-care-badge {
	background: #FF8B5A;
	color: white;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	display: inline-block;
	margin-bottom: 20px;
}

.health-care-title {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-bottom: 40px;
	line-height: 1.2;
}

.health-care-features {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.health-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.feature-icon {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin-top: 6px;
	flex-shrink: 0;
}

.feature-icon.orange {
	background: #FF8B5A;
}

.feature-icon.green {
	background: #4CAF50;
}

.feature-text h4 {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
	line-height: 1.3;
}

.feature-text p {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* 右侧数据卡片区域 */
.health-care-right {
	flex: 1;
	max-width: 500px;
}

.data-cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.data-card {
	background: white;
	border-radius: 15px;
	padding: 30px 20px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
}

.data-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.data-number {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1;
}

.data-number.orange {
	color: #FF8B5A;
}

.data-number.green {
	color: #4CAF50;
}

.data-label {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

/* 健康护理响应式设计 */
@media (max-width: 1024px) {
	.health-care-content {
		flex-direction: column;
		gap: 50px;
		text-align: center;
	}
	
	.health-care-left {
		max-width: 100%;
	}
	
	.health-care-right {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.container-item04 {
		padding: 60px 0;
	}
	
	.health-care-title {
		font-size: 28px;
	}
	
	.data-cards-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.data-card {
		padding: 25px 15px;
	}
	
	.health-feature-item {
		gap: 12px;
	}
}

.container-item05{
	width: 100%;
	height: auto;
	background: linear-gradient(89.96deg, #F8EEE4 0.03%, #E9F2EA 99.97%);
	padding: 80px 0;
}

/* UKISO产品展示区域 */
.ukiso-product-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.ukiso-product-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
}

/* 产品标题区域 */
.ukiso-product-header {
	text-align: center;
	max-width: 600px;
}

.product-badge {
	background: #FF8B5A;
	color: white;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	display: inline-block;
	margin-bottom: 20px;
}

.product-title {
	font-size: 42px;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
	line-height: 1.2;
}

.product-subtitle {
	font-size: 18px;
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* 产品展示区域 */
.ukiso-product-showcase {
	width: 100%;
	max-width: 800px;
}

.product-image-container {
	position: relative;
	background: white;
	border-radius: 20px;
	padding: 60px 40px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

/* 产品图片 */
.product-image-container img {
	width: 300px;
	height: 200px;
	object-fit: contain;
	border-radius: 15px;
	margin-bottom: 20px;
}

/* 产品图片占位符 */
.product-image-placeholder {
	width: 300px;
	height: 200px;
	background: linear-gradient(135deg, #FFB5A7 0%, #FCD5CE 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.product-image-placeholder::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	height: 60%;
	background: rgba(255,255,255,0.3);
	border-radius: 50px;
}

/* 产品特点卡片 */
.product-features {
	display: flex;
	gap: 30px;
	justify-content: center;
	flex-wrap: wrap;
}

.feature-card {
	background: white;
	border-radius: 12px;
	padding: 20px 25px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	min-width: 120px;
}

.feature-card:nth-child(1) {
	background: #FFF4F0;
}

.feature-card:nth-child(2) {
	background: #F0F8FF;
}

.feature-card:nth-child(3) {
	background: #FFF0F0;
}

.feature-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.3;
}

.feature-title.orange {
	color: #FF8B5A;
}

.feature-title.blue {
	color: #4A90E2;
}

.feature-title.red {
	color: #E74C3C;
}

.feature-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.4;
	margin: 0;
}

/* UKISO产品响应式设计 */
@media (max-width: 1024px) {
	.product-title {
		font-size: 36px;
	}
	
	.product-image-container {
		padding: 40px 30px;
	}
	
	.product-image-container img {
		width: 250px;
		height: 160px;
	}
	
	.product-image-placeholder {
		width: 250px;
		height: 160px;
	}
}

@media (max-width: 768px) {
	.container-item05 {
		padding: 60px 0;
	}
	
	.ukiso-product-content {
		gap: 40px;
	}
	
	.product-title {
		font-size: 28px;
	}
	
	.product-subtitle {
		font-size: 16px;
	}
	
	.product-image-container {
		padding: 30px 20px;
	}
	
	.product-image-container img {
		width: 200px;
		height: 130px;
	}
	
	.product-image-placeholder {
		width: 200px;
		height: 130px;
	}
	
	.product-features {
		gap: 15px;
	}
	
	.feature-card {
		padding: 15px 20px;
		min-width: 100px;
	}
	
	.feature-title {
		font-size: 14px;
	}
	
	.feature-desc {
		font-size: 12px;
	}
}

.container-item06{
	width: 100%;
	height: auto;
	background: linear-gradient(90.04deg, #F1EFEB 0.03%, #D7E5DB 99.97%);
	padding: 40px 0;
}

/* 页脚区域 */
.footer-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

/* 左侧品牌信息 */
.footer-left {
	flex: 1;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 15px;
}

.footer-brand img {
	height: 40px;
	width: auto;
	object-fit: contain;
}

.brand-name {
	font-size: 28px;
	font-weight: 700;
	color: #4ECDC4;
	letter-spacing: 1px;
}

.brand-chinese {
	font-size: 18px;
	font-weight: 500;
	color: #666;
}

/* 右侧版权信息 */
.footer-right {
	flex: 2;
	text-align: right;
}

.copyright-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.copyright-text {
	font-size: 14px;
	color: #666;
	margin: 0;
	line-height: 1.5;
}

.contact-info {
	font-size: 13px;
	color: #888;
	margin: 0;
	line-height: 1.4;
}

/* 页脚响应式设计 */
@media (max-width: 768px) {
	.container-item06 {
		padding: 30px 0;
	}
	
	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}
	
	.footer-right {
		text-align: center;
	}
	
	.footer-brand img {
		height: 32px;
	}
	
	.brand-name {
		font-size: 24px;
	}
	
	.brand-chinese {
		font-size: 16px;
	}
	
	.copyright-text {
		font-size: 13px;
	}
	
	.contact-info {
		font-size: 12px;
	}
}

/* 弹窗样式 */
.qr-modal, .ios-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	align-items: center;
	justify-content: center;
}

.qr-modal-content, .ios-modal-content {
	background: white;
	border-radius: 16px;
	padding: 0;
	max-width: 500px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.qr-modal-header, .ios-modal-header {
	padding: 20px 24px;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(135deg, #FF8B5A 0%, #FF6B35 100%);
	color: white;
	border-radius: 16px 16px 0 0;
}

.qr-modal-header h3, .ios-modal-header h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
}

.close-modal {
	font-size: 24px;
	cursor: pointer;
	color: white;
	transition: opacity 0.2s;
	line-height: 1;
}

.close-modal:hover {
	opacity: 0.7;
}

.qr-modal-body, .ios-modal-body {
	padding: 24px;
	text-align: center;
}

.qr-modal-body p, .ios-modal-body p {
	margin: 0 0 20px 0;
	color: #666;
	font-size: 16px;
}

.qr-codes-modal {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 20px 0;
}

.qr-code-item {
	text-align: center;
}

.qr-code-img {
	width: 120px;
	height: 120px;
	object-fit: contain;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 10px;
	background: white;
}

.qr-code-item p {
	margin-top: 10px;
	font-size: 14px;
	color: #333;
	font-weight: 500;
}

.qr-tip, .ios-tip {
	font-size: 14px;
	color: #999;
	margin-top: 20px;
}

.ios-qr-code {
	display: flex;
	justify-content: center;
	margin: 20px 0;
}

.ios-qr-code .qr-code-img {
	width: 150px;
	height: 150px;
}

/* 移动端适配 */
@media (max-width: 768px) {
	.qr-modal-content, .ios-modal-content {
		width: 95%;
		margin: 20px;
	}
	
	.qr-codes-modal {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	
	.qr-code-img {
		width: 100px;
		height: 100px;
	}
	
	.ios-qr-code .qr-code-img {
		width: 120px;
		height: 120px;
	}
}