/* 基础样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* 平滑滚动效果 */
html {
	scroll-behavior: smooth;
}

body {
	font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f8f9fa;
}

a {
	text-decoration: none;
	color: #333;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* 导航栏样式 */
header {
	/* background-color: #fff; */
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 100;
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
}

.logo img {
	height: 40px;
}

nav {
	display: flex;
	list-style: none;
}

nav div {
	margin-left: 30px;
	min-width: 100px;
	padding: 10px 15px;
	text-align: center;
}

nav div.nav-item-active {
	background: #1890ff;
	border-radius: 5px;
}

nav div.nav-item-active a,
nav div.nav-item-active a:hover {
	color: #fff;
}

nav div a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s;
}

nav div.active a,
nav div a:hover {
	color: #1890ff;
}


/* 英雄区域样式 */
.page-index .hero {
	background: linear-gradient(to bottom, #e6f7ff, #f8f9fa);
	/* padding: 120px 0 60px; */
	text-align: center;
	height: auto;
}

.page-index .hero .container {
	display: flex;
	position: relative;
	width: 100%;
	max-width: 100%;
	padding: 0 0;
	margin: 0;
	align-items: center;
	/* 垂直居中 */
	justify-content: center;
	/* 水平居中 */
}

.page-index .hero-image {
	width: 100%;
	/* max-width: 1000px; */
	margin: 0;
	padding: 0;
}

.page-index .hero-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	/* border-radius: 8px; */
	/* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.page-index .hero .content {
	width: 50%;
	position: absolute;
	left: 0;
	/* top: 50%; */
	/* transform: translateY(-50%); */
	/* padding-top: 160px; */
	/* padding-left: 100px; */
	left: calc((100% - 1200px)/2);
	display: flex;
	flex-direction: column;
	/* bottom: 30px; */

	/* align-items: left; */
}

.page-index .hero .content h2 {
	/* color: #1890ff; */
	font-size: 36px;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;

	color: #7FBD2B;
	text-align: left;
}

.page-index .hero .content p {
	font-size: 32px;
	/* color: #666; */
	max-width: 700px;
	/* margin: 0 auto 40px; */
	text-align: left;
	line-height: 2;


	color: #28428D;
}



.page-index .project-overview {
	padding: 80px 0;
	background-color: #fff;
}

.page-index .project-overview-content {
	padding: 15px 15px;
}

.page-index .project-overview-content p {
	font-weight: 400;
	font-size: 16px;
	line-height: 36px;
	/* or 225% */
	text-align: center;

	color: #66A2E0;
	justify-content: end;
	text-align: left;
	text-indent: 2em;
	text-align: justify;
	margin-bottom: 30px;
}



.page-index .project-about {
	width: 100%;
	margin: 0;
	position: relative;
	padding: 0;
}



.page-index .project-about-image img {
	width: 100%;
	height: auto;
	/* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.page-index .project-about .container {
	/* 添加 flexbox 布局 */
	display: flex;
	align-items: center;
	/* 垂直居中 */
	justify-content: center;
	/* 水平居中 */
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	max-width: 100%;
}

.page-index .project-about .container .project-about-image {
	/* position: absolute; */
	width: 100%;
	/* height: 100%; */
}

.page-index .project-about .container .project-about-image img {
	width: 100%;
	height: auto;
}

.page-index .project-about .container .content {
	/* 移除绝对定位和 transform */
	width: 500px;
	display: flex;
	flex-direction: column;
	/* 其他样式保持不变 */
	position: absolute;
	left: calc((100% - 1200px)/2);

}

.page-index .project-about .container .content p {
	color: #28428D;
	font-size: 32px;
}

.page-index .product-tech {
	margin-top: 100px;
	/* position: relative; */
}


.page-index h2.tit {
	font-size: 34px;
	color: #7FBD2B;
	padding-left: 20px;
	display: flex;
	line-height: 1;
	padding: 10px 0;
}

.page-index h2.tit::before {
	content: '';
	/* position: absolute; */
	left: -20px;
	/* top: 50%; */
	width: 10px;
	height: 36px;
	display: inline-block;
	/* background-color: #7FBD2B; */
	background: linear-gradient(to bottom, #7FBD2B, #28428D);
	/* 从蓝色到绿色的渐变 */
	border-radius: 5px;
	margin-right: 15px;
	box-sizing: border-box;
}

.page-index h3.tit {
	font-size: 24px;
	color: #28428D;
	padding-left: 20px;
	display: flex;
	line-height: 1;
	padding: 10px 0;
}

.page-index h3.tit::before {
	content: '';
	/* position: absolute; */
	left: -20px;
	/* top: 50%; */
	width: 10px;
	height: 26px;
	display: inline-block;
	/* background-color: #7FBD2B; */
	background: rgba(255, 255, 255, 0.01);
	/* background: linear-gradient(to bottom, #7FBD2B, #28428D);  */
	border: 1px solid #28428D;
	border-radius: 5px;
	margin-right: 15px;
	box-sizing: border-box;
}


.page-index .product-tech .tit {
	/* position: absolute; */
	/* margin-left: calc((100% - 1200px)/2 + 700px) */
	/* calc((100% - 1200px)/2) */
}

.page-index .product-tech .info-container {
	display: flex;
	flex-direction: row;
	padding: 50px 0;
}


.page-index .product-tech .info-container .image {
	width: 50%;
	/* flex: 1; */
}

.page-index .product-tech .info-container .content {
	/* width: 50%; */
	/* flex: 1; */
	margin-left: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* gap: 20px; */
}


.page-index .product-tech .info-container .content h3 {
	margin-top: 15px;
}

.page-index .product-tech .info-container .content p {
	margin-top: 15px;
	color: #28428D;
	font-size: 32px;
}


.page-index .product-tech .solution-container {
	display: flex;
	flex-direction: row;
	/* padding: 50px 0; */
	padding-top: 80px;
}

.page-index .product-tech .solution-container .content {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 30px;
}

.page-index .product-tech .solution-container .image {
	width: 50%;
}

.page-index .product-tech .solution-container .content .desc-text {
	margin-top: 15px;
	color: #28428D;
	font-size: 32px;
}

.page-index .product-tech .solution-container .content .mini-text {

	font-family: 'Noto Sans SC';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 2;
	/* or 180% */

	color: #66A2E0;
	margin-top: 15px;
}


.page-index .product-tech .advantage-container {
	padding-top: 80px;
	width: 1200px;
	max-width: 1200px;
}


.page-index .product-tech .advantage-container .image {
	width: 100%;
}



.page-index .product-tech .gait-container {
	/* padding: 50px 0; */
	padding-top: 80px;
	display: flex;
	flex-direction: column;
}

.page-index .product-tech .gait-container .tit {
	text-align: center;
	margin: 30px auto;
	/* margin-bottom: 15px; */
	font-size: 32px;
}

.page-index .product-tech .gait-container .tit::before {
	height: 34px;
}

.page-index .product-tech .gait-container .items {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	align-items: center;
}

.page-index .product-tech .gait-container .items .item {
	/* width: 30%; */
	flex: 0 0 calc(33.33% - 20px);
	/* border: 1px solid #28428D; */
	border-radius: 10px;
	padding: 10px;
	box-sizing: border-box;
	background-color: #fff;
	box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
	/* height: 200px; */
}


.page-index .product-tech .gait-container .items .item h4 {
	text-align: center;
	line-height: 2;
	font-size: 24px;
	/* padding-top: 10px; */
}

.page-index .product-tech .gait-container .items .item ul {
	height: 140px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	justify-content: space-between;
	padding: 20px;
}

.page-index .product-tech .gait-container .items .item li {
	list-style: none;
	display: flex;
	/* padding-left: 20px; */
}

.page-index .product-tech .gait-container .items .item li::before {
	content: '';
	/* position: absolute; */
	/* left: -20px; */
	/* top: 50%; */
	width: 25px;
	height: 28px;
	display: inline-block;
	/* background-color: #7FBD2B; */
	/* background: rgba(255, 255, 255, 0.01); */
	/* background: linear-gradient(to bottom, #7FBD2B, #28428D);  */
	/* border: 1px solid #28428D; */
	border-radius: 5px;
	margin-right: 15px;
	box-sizing: border-box;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMzUiIHZpZXdCb3g9IjAgMCAzNyAzNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF85Nl85MSkiPg0KPG1hc2sgaWQ9Im1hc2swXzk2XzkxIiBzdHlsZT0ibWFzay10eXBlOmx1bWluYW5jZSIgbWFza1VuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeD0iNiIgeT0iMiIgd2lkdGg9IjMxIiBoZWlnaHQ9IjI1Ij4NCjxwYXRoIGQ9Ik0zNi43OTUzIDIuMDYyNUg2LjYzNzg4VjI2LjgxNTdIMzYuNzk1M1YyLjA2MjVaIiBmaWxsPSJ3aGl0ZSIvPg0KPC9tYXNrPg0KPGcgbWFzaz0idXJsKCNtYXNrMF85Nl85MSkiPg0KPHBhdGggZD0iTTkuNjMwODQgMTMuMTc0N0wxNi42NzkxIDE4Ljc4OTdMMzQuMjE1NCAyLjYyNzYxQzM0LjIxNTQgMi42Mjc2MSAzNS4zOTU3IDEuNTU2ODggMzYuNDI0MyAyLjM5MTU0QzM2LjcyNzggMi42NDQ0NyAzNy4wODE5IDMuMzYxMSAzNi4yODk0IDQuNDgyNDFMMTcuOTY5IDI1LjkzOTFDMTcuOTY5IDI1LjkzOTEgMTYuNTYxMSAyNy44NjEzIDE0LjkwMDIgMjUuOTIyMkw2Ljk5MTk3IDE1LjI0ODdDNi45OTE5NyAxNS4yNDg3IDYuMDU2MTQgMTMuNzk4NiA3LjIyODAzIDEyLjkzODZDNy42MjQyOSAxMi42NTIgOC41MjYzOSAxMi4xOTY3IDkuNjMwODQgMTMuMTgzMVYxMy4xNzQ3WiIgZmlsbD0iIzI5ODdGRiIvPg0KPC9nPg0KPHBhdGggZD0iTTI5LjE5MDUgMzQuMzM2SDYuMTIzNTZDMy4xODk2MSAzNC4zMzYgMC43OTUyMjcgMzEuOTUgMC43OTUyMjcgMjkuMDA3NlY1Ljk0MDY0QzAuNzk1MjI3IDIuOTk4MjUgMy4xODk2MSAwLjYxMjMwNSA2LjEyMzU2IDAuNjEyMzA1SDI3LjA0OTFDMjcuOTc2NSAwLjYxMjMwNSAyOC43MzUzIDEuMzcxMDkgMjguNzM1MyAyLjI5ODQ5QzI4LjczNTMgMy4yMjU4OSAyNy45NzY1IDMuOTg0NjcgMjcuMDQ5MSAzLjk4NDY3SDYuMTIzNTZDNS4wNDQ0MSAzLjk4NDY3IDQuMTY3NTkgNC44NjE0OSA0LjE2NzU5IDUuOTQwNjRWMjkuMDA3NkM0LjE2NzU5IDMwLjA4NjggNS4wNDQ0MSAzMC45NjM2IDYuMTIzNTYgMzAuOTYzNkgyOS4xOTA1QzMwLjI2OTcgMzAuOTYzNiAzMS4xNDY1IDMwLjA4NjggMzEuMTQ2NSAyOS4wMDc2VjE1LjkxNDRDMzEuMTQ2NSAxNC45ODcgMzEuOTA1MyAxNC4yMjgyIDMyLjgzMjcgMTQuMjI4MkMzMy43NjAxIDE0LjIyODIgMzQuNTE4OSAxNC45ODcgMzQuNTE4OSAxNS45MTQ0VjI5LjAwNzZDMzQuNTE4OSAzMS45NSAzMi4xMzI5IDM0LjMzNiAyOS4xOTA1IDM0LjMzNloiIGZpbGw9IiMyOTg3RkYiLz4NCjwvZz4NCjxkZWZzPg0KPGNsaXBQYXRoIGlkPSJjbGlwMF85Nl85MSI+DQo8cmVjdCB3aWR0aD0iMzYiIGhlaWdodD0iMzMuNzIzNyIgZmlsbD0id2hpdGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuNzk1MjI3IDAuNjEyMzA1KSIvPg0KPC9jbGlwUGF0aD4NCjwvZGVmcz4NCjwvc3ZnPg0K);
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: left center;
}

.page-index .product-tech .features-container {
	padding-top: 60px;
}


.page-index .product-principle {
	/* padding: 50px 0; */
}

.page-index .product-principle .algorithm-container {
	padding-top: 80px;
}

.page-index .product-principle .content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 50px;
}

.page-index .product-principle .algorithm-container .item {
	width: 50%;
	padding: 40px 70px;
}

.page-index .product-principle .algorithm-container .item:first-child {
	padding-top: 140px;
}

.page-index .product-principle .algorithm-container .item h3 {
	font-size: 28px;
	color: #28428D;
	text-align: center;
}

.page-index .product-principle .algorithm-container .item .image {
	border: 1px solid #7FBD2B;
	border-radius: 30px;
	margin: 20px 0;
	padding: 20px;
}

.page-index .product-principle .algorithm-container .item p {
	font-size: 16px;
	color: #004d99;
	text-align: center;
}

.page-index .product-principle .flow-container {
	padding: 50px 0;
	width: 100%;
	max-width: 100%;
	background-color: #fff;
}

.page-index .product-principle .flow-container .image {
	width: 1200px;
	margin: 0 auto;
}



.page-index .product-principle .advantage-container {
	width: 100%;
	max-width: 100%;
	background-color: #EFF6FF;
	padding: 60px 0;
}

.page-index .product-principle .advantage-container .image {
	width: 1200px;
	max-width: 1200px;
	margin: 0 auto;
}

.page-index .product-principle .application-container {
	background-color: #fff;
	padding: 60px 0;
	width: 100%;
	max-width: 100%;
}

.page-index .product-principle .application-container .image {
	width: 1200px;
	max-width: 1200px;
	margin: 0 auto;
}


/* 页脚样式 - 与白色背景更协调的设计 */
footer {
	background-color: #f9f9f9;
	border-top: 1px solid #eaeaea;
	padding: 40px 0 10px 0;
	color: #333;
	background: #ffffff;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 20px;
}

.footer-logo {
	width: 120px;
}

.footer-logo img {
	width: 100%;
}

.footer-logo a {
	font-size: 1.8rem;
	font-weight: bold;
	color: #0066cc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-logo a:hover {
	color: #004d99;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

.footer-links li {
	margin-right: 20px;
}

.footer-links a {
	color: #555;
	text-decoration: none;
	font-size: 1rem;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #0066cc;
}

.footer-contact p {
	margin: 5px 0;
	color: #666;
	font-size: 0.9rem;
}

.copyright {
	text-align: center;
	/* padding-top: 20px; */
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 14px;
	color: rgb(0 0 0 / 60%)
}


.page-scene {
	/* background-color: #fff; */
}


.page-scene h2 {
	margin: 0px auto;
	text-align: center;
	font-size: 32px;
	color: #7FBD2B;
	line-height: 3;
}

.page-scene h3 {
	margin: 0px auto;
	text-align: center;
	font-size: 26px;
	color: #0066cc;
	line-height: 2;
}

.page-scene .highlight {
	background-color: #fff;
	padding: 130px 0;
}

.page-scene .highlight .container {
	width: 1200px;
	/* margin: 50px auto; */
	/* padding: 50px 0; */
}

.page-scene .highlight .image {
	/* width: 1200px; */
	margin: 40px auto;
}

.page-scene .highlight .feature-container .content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 20px;
	margin-top: 30px;
}

.page-scene .highlight .feature-container .content .image {
	width: 45%;
	margin: 0;
}

.page-scene .highlight .feature-container .content .info {
	width: 55%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/* gap: 20px; */
	padding: 30px 0;
}

.page-scene .highlight .feature-container .content .info .item {
	background: #03A9F4;
	color: #fff;
	padding: 20px;
	border-radius: 20px;
}

.page-scene .highlight .feature-container .content .info .item:nth-child(1)::before {
	content: '1';
	display: block;
	width: 100%;
	/* height: 100%; */
	font-size: 50px;
	line-height: 1;
	color: #ffffff;
	padding: 0;
	margin-top: -46px;
	/* border: 1px solid #ccc; */
	-webkit-text-stroke: 3px #03A9F4;
	font-family: fantasy;
	font-weight: 900;
	font-style: italic;
}

.page-scene .highlight .feature-container .content .info .item:nth-child(2)::before {
	content: '2';
	display: block;
	width: 100%;
	/* height: 100%; */
	font-size: 50px;
	line-height: 1;
	color: #ffffff;
	padding: 0;
	margin-top: -46px;
	/* border: 1px solid #ccc; */
	-webkit-text-stroke: 3px #03A9F4;
	font-family: fantasy;
	font-weight: 900;
	font-style: italic;
}

.page-scene .highlight .feature-container .content .info .item h4 {
	font-size: 24px;
	line-height: 2;
	color: #fff;
	padding: 15px 0;
}

.page-scene .highlight .feature-container .content .info .item p {
	font-size: 14px;
	line-height: 2.5;
	color: #fff;
	text-align: justify;
	text-indent: 2em;
	text-align: left;
}


.page-scene .student {
	background-color: #EFF6FF;
	padding: 50px 0;
}

.page-scene .student .content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
}

.page-scene .student .content .image {
	width: 100%;
	margin: 0;
}

.page-scene .student .content .info {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
}

.page-scene .student .content .info h4 {
	font-size: 24px;
	line-height: 2;
	padding: 10px 0;
	/* color: #0066cc; */
}

.page-scene .student .content .info p {
	font-size: 14px;
	line-height: 2;
	text-align: justify;
	text-indent: 2em;
	text-align: left;
	/* color: #0066cc; */
}



.page-scene .sport {
	background-color: #fff;
	padding: 50px 0;
}

.page-scene .sport .content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 20px;
}

.page-scene .sport .content .info {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 30px 0;
}

.page-scene .sport .content .info h4 {
	font-size: 18px;
	line-height: 2;
	padding: 10px 0;
	/* color: #0066cc; */
}

.page-scene .sport .content .info p {
	font-size: 14px;
	line-height: 2;
	text-align: justify;
	text-indent: 2em;
	text-align: left;
}

.page-scene .sport .content .image {
	width: 40%;
	margin: 0;
}



.page-scene .golf {
	background-color: #EFF6FF;
	padding: 50px 0;
}

.page-scene .golf .content {
	/* display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px; */
}

.page-scene .golf .content .info {
	/* width: 50%; */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 30px 0;
}

.page-scene .golf .content .info h4 {
	font-size: 18px;
	line-height: 2;
	padding: 10px 0;
	/* color: #0066cc; */
}

.page-scene .golf .content .info p {
	font-size: 14px;
	line-height: 2;
	text-align: justify;
	text-indent: 2em;
	text-align: left;
}

.page-scene .golf .content .image-group {
	margin-top: 30px;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 20px;
	/* width: 40%; */
	/* margin: 0; */
}

.page-scene .golf .content .image-group .image {
	width: 50%;
	margin: 0;
}

.page-scene .golf .content .image-group .image img {
	width: 100%;
	height: 360px;
	object-fit: cover;
}











.page-solution {
	/* background-color: #fff; */
}

.page-solution h2 {
	margin: 0px auto;
	text-align: center;
	font-size: 32px;
	color: #7FBD2B;
	line-height: 3;
}

.page-solution h3 {
	margin: 0px auto;
	text-align: center;
	font-size: 26px;
	color: #0066cc;
	line-height: 2;
}

.page-solution section:nth-child(2n) {
	background-color: #EFF6FF;
}

.page-solution .container {
	/* width: 1200px; */
	/* margin: 0 auto; */
	/* padding: 50px 0; */
}

.page-solution .image {
	/* margin: 80px auto; */
}

.page-solution .rehab {
	padding-top: 100px;
}


.page-solution .rehab .flow-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.page-solution .rehab .flow-container {
	position: relative;
	/* display: grid; */
	/* grid-template-columns: repeat(2, 1fr); */

	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	/* gap: 100px; */
	padding: 0 50px;
	min-height: 600px;
}

.page-solution .rehab .flow-container .step {
	/* position: relative; */
	/* z-index: 2; */

	justify-content: center;
	align-items: center;
	/* width: 50%; */
	width: 350px;
	position: absolute;
}

.page-solution .rehab .flow-container .step-1 {
	/* grid-column: 1;
	grid-row: 1; */
	/* justify-self: start;
	align-self: start; */
	/* margin-right: auto; */
	/* order: 1; */
	/* margin-left: 50px; */
	top: 0;
	left: 80px;
	/* width: 280px; */
}

.page-solution .rehab .flow-container .step-2 {
	/* grid-column: 1;
	grid-row: 2; */
	/* justify-self: start; */
	/* align-self: end; */
	/* margin-right: auto;  */
	margin-top: -150px;
	/* order: 3; */

	top: 280px;
	right: 60px;
}

.page-solution .rehab .flow-container .step-3 {
	/* grid-column: 2;
	grid-row: 1; */
	/* justify-self: end; */
	/* align-self: start; */
	/* margin-left: auto; */
	/* margin-top: 150px; */
	/* order: 2; */
	top: 250px;
	left: 50px;
}

.page-solution .rehab .flow-container .step-4 {
	/* grid-column: 2;
	grid-row: 2; */
	/* justify-self: end; */
	/* align-self: end; */
	/* margin-left: auto;  */
	/* margin-top: auto; */
	/* order: 4; */
	top: 350px;
	right: 50px;
}


.page-solution .rehab .flow-container .step-number {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #007bff;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
	box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
	margin-bottom: 0;
}

.page-solution .rehab .flow-container .step-content {
	/* background-color: white; */
	padding: 0 25px 25px 25px;
	border-radius: 12px;
	/* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
	/* max-width: 350px; */
	transition: transform 0.3s ease;
}


.page-solution .rehab .flow-container .step-content {
	line-height: 4;
}

.page-solution .rehab .flow-container .step-content p {
	line-height: 2;
	text-indent: 2em;
	text-align: justify;
}

.page-solution .rehab .flow-container .step-content:hover {
	transform: translateY(-5px);
}

@keyframes pulse {
	0% {
		opacity: 0.3;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0.3;
	}
}

.page-solution .rehab .flow-container .center-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.page-solution .rehab .flow-container .center-icon .icon {
	fill: #1890ff;
}

.page-solution .rehab .feature-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 80px;
}

.page-solution .rehab .feature-container .assessment {
	width: 50%;
	display: flex;
}

.page-solution .rehab .feature-container .assessment h4 {
	font-size: 24px;
	line-height: 2;
	padding: 10px 0;
	background-color: #007bff;
	border-radius: 50px;
	color: #fff;
	/* text-indent: 2em; */
	writing-mode: vertical-rl;
	/* 从上到下，从右到左（中文传统方向） */
	padding: 15px 5px;
	margin-right: 10px;
	text-align: center;
}

.page-solution .rehab .feature-container .assessment .grid {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	padding: 15px 0;
}

.page-solution .rehab .feature-container .assessment .grid .item {
	display: flex;
	flex-direction: row;
	/* justify-content: space-between; */
	gap: 20px;
}

.page-solution .rehab .feature-container .assessment .grid .item .title {
	font-size: 16px;
	line-height: 2;
	/* padding: 10px 0; */
	background-color: #007bff;
	border-radius: 50px;
	color: #fff;
	width: 80px;
	text-align: center;
}

.page-solution .rehab .feature-container .assessment .grid .item .desc {
	font-size: 14px;
	line-height: 32px;

	/* padding: 10px 0; */
}


.page-solution .rehab .feature-container .levels {
	width: 50%;
	display: flex;
}

.page-solution .rehab .feature-container .levels h4 {
	font-size: 24px;
	line-height: 2;
	padding: 10px 0;
	background-color: #007bff;
	border-radius: 50px;
	color: #fff;
	writing-mode: vertical-rl;
	/* 从上到下，从右到左（中文传统方向） */
	padding: 15px 5px;
	margin-right: 10px;
	text-align: center;
}

.page-solution .rehab .feature-container .levels .grid {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	padding: 15px 0;
}

.page-solution .rehab .feature-container .levels .grid .item {
	display: flex;
	flex-direction: row;
	/* justify-content: space-between; */
	gap: 20px;
	/* width: 50px; */
	text-align: center;
}

.page-solution .rehab .feature-container .levels .grid .item .title {
	font-size: 18px;
	line-height: 2;
	/* padding: 10px 0; */
	background-color: #007bff;
	border-radius: 50px;
	color: #fff;
	width: 50px;
}

.page-solution .rehab .feature-container .levels .grid .item .desc {
	font-size: 14px;
	line-height: 36px;
	/* padding: 10px 0; */
}


.page-solution .gait-correction-container {
	/* display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 20px; */
}

.page-solution .gait-correction-container .intro {
	font-size: 22px;
	line-height: 2;
	text-indent: 2em;
	text-align: justify;
	padding: 50px 0;
	color: #0066cc;
	margin: 30px auto;
	width: 80%;
}

.page-solution .gait-correction-container .correction-content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 20px;
}

.page-solution .gait-correction-container .correction-content .info {
	display: block;
	/* 或者不设置display,使用默认块级布局 */
	line-height: 3;

	font-size: 14px;
	text-indent: 2em;
	text-align: justify;
}

.page-solution .gait-correction-container .correction-content .info .title {
	display: inline;
	/* 让span和p的内容在同一行 */
	color: #007bff;
}

.page-solution .gait-correction-container .correction-content .info .desc {
	display: inline;
	/* 让span和p的内容在同一行 */
	margin: 0;
	/* 移除段落默认边距 */


}

.page-solution .gait-correction-container .correction-content .left-section {
	width: 32%;
}

.page-solution .gait-correction-container .correction-content .center-section {
	width: 34%;
}

.page-solution .gait-correction-container .correction-content .right-section {
	width: 32%;
}

.page-solution .gait-correction-container .correction-content .item {
	display: flex;
	flex-direction: row;
	gap: 20px;
	/* white-space: nowrap; */
}

.page-solution .gait-correction-container .correction-content h4 {
	font-size: 24px;
	line-height: 2;
	text-align: center;
	/* padding: 10px 0; */
	color: #fff;
	background-color: #007bff;
	border-radius: 50px;
	margin-bottom: 30px;
}


.page-solution .gait-correction-container .correction-content .item p {
	line-height: 2;
	text-indent: 2em;
	text-align: justify;
}

.page-solution .gait-correction-container .correction-content .item p span {
	color: #1890ff;
}


.page-solution .gait-correction-container .correction-content .right-section .content {}

.page-solution .gait-correction-container .types-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.page-solution .gait-correction-container .types-content .item {
	display: flex;
	flex-direction: row;
	gap: 20px;
	margin-bottom: 30px;
}

.page-solution .gait-correction-container .types-content .item .condition {
	width: 35%;
	display: flex;
}

.page-solution .gait-correction-container .types-content .item .treatment {
	width: 65%;
	display: flex;
}

.page-solution .gait-correction-container .types-content .item h4 {
	font-size: 24px;
	line-height: 2;
	text-align: center;
	color: #fff;
	background-color: #007bff;
	border-radius: 50px;
	/* margin-bottom: 30px; */
	text-align: center;
	writing-mode: vertical-rl;
	padding: 15px 5px;
	margin-right: 10px;
}

.page-solution .gait-correction-container .types-content .item .treatment p {
	padding-left: 2em;
}

.page-solution .gait-correction-container .types-content .item p {
	/* padding-left: 2em; */
	border: 1px #ccc dashed;
	border-left: 0;
	margin-left: -30px;
	padding-left: 45px;
	padding-right: 15px;
	line-height: 2;
	align-items: center;
	text-indent: 2em;
	text-align: justify;
	justify-content: space-between;
	display: inline-flex;
}

.page-solution .paralysis {
	padding: 80px 0;
	background-color: #fff;
}

.page-solution .paralysis .grid {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 40px;
	margin-top: 50px;
}

.page-solution .paralysis .grid .item {
	width: 25%;
	padding: 20px;
	background-color: #fff;
	/* border-radius: 10px; */
	box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-solution .paralysis .grid .item:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.page-solution .paralysis .grid .item .number {
	font-size: 24px;
	line-height: 50px;
	text-align: center;
	background-color: #007bff;
	border-radius: 50px;
	color: #fff;
	width: 50px;
	height: 50px;
	margin: 0 auto;
	margin-top: -45px;
	margin-bottom: 20px;
}

.page-solution .paralysis .grid .item h3 {
	font-size: 24px;
	line-height: 2;
	text-align: center;
}

.page-solution .paralysis .grid .item p {
	font-size: 16px;
	line-height: 2;
	/* text-align: center; */
	text-indent: 2em;
	text-align: justify;
}




.page-solution .gait-assessment {
	padding: 80px 0;
	background-color: #fff;
}

.page-solution .gait-assessment .grid {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 40px;
	margin-top: 50px;
}

.page-solution .gait-assessment .grid .item {
	width: 25%;
	padding: 20px;
	background-color: #fff;
	/* border-radius: 10px; */
	box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-solution .gait-assessment .grid .item:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.page-solution .gait-assessment .grid .item .number {
	font-size: 24px;
	line-height: 2;
	text-align: center;
	background-color: #007bff;
	border-radius: 50px;
	color: #fff;
	width: 80%;
	/* height: 50px; */
	margin: 0 auto;
	/* margin-top: -45px; */
	margin-bottom: 20px;
}

.page-solution .gait-assessment .grid .item .title {
	font-size: 18px;
	line-height: 1.5;
	text-align: center;
	background-color: #007bff;
	color: #fff;
	border-radius: 50px;
	padding: 10px 35px;
	margin: 0 auto;
	margin-top: -55px;
	margin-bottom: 20px;
}

.page-solution .gait-assessment .grid .item .desc {
	font-size: 16px;
	line-height: 2;
	/* text-align: center; */
	text-indent: 2em;
	text-align: justify;
}

.page-solution .gait-optimization {
	padding: 80px 0;
	background-color: #fff;
}

.page-solution .gait-optimization .container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 40px;
}

.page-solution .gait-optimization .image {
	width: 25%;
	margin-left: auto;
	display: inline-flex
}

.page-solution .gait-optimization .grid {
	width: 55%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
}

.page-solution .gait-optimization .grid .item {
	/* width: 30%; */

}

.page-solution .gait-optimization .grid .item .title {
	font-size: 24px;
	line-height: 2;
	text-align: center;
	color: #007bff;
	display: flex;
	margin-left: -30px;
	/* color: #fff; */
}

.page-solution .gait-optimization .grid .item .title::before {
	content: '>';
	display: inline-flex;
	/* width: 100%; */
	height: 2px;
	margin-right: 10px;
	/* background-color: #007bff; */
}


.page-solution .gait-optimization .grid .item .desc {
	font-size: 16px;
	line-height: 2;
	text-indent: 2em;
	text-align: justify;

}


.page-solution .rehab-solution {
	padding: 80px 0;
	/* background-color: #fff; */
}

.page-solution .rehab-solution .grid {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 40px;
}

.page-solution .rehab-solution .grid .item {
	width: 25%;
	padding: 20px;
	/* background-color: #fff; */
	/* border-radius: 10px; */
	/* box-shadow: 0 4px 15px rgba(0,123,255,0.2); */
}


.page-solution .rehab-solution .grid .item .title {
	font-size: 24px;
	line-height: 2;
	text-align: center;
	/* color: #007bff; */
}

.page-solution .rehab-solution .grid .item .desc {
	font-size: 16px;
	line-height: 2;
	text-indent: 2em;
	text-align: justify;
}

.page-solution .rehab-suggestion {
	padding: 80px 0;
	background-color: #fff;
}

.page-solution .rehab-suggestion .grid {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	/* gap: 40px; */
	flex-wrap: wrap;

	background-image: url(/assets/img/solution8.png);
	background-size: 30% 80%;
	background-position: center;
	background-repeat: no-repeat;
}

.page-solution .rehab-suggestion .grid .item {
	width: 50%;
	padding: 20px;

	/* background-color: #fff; */
	/* border-radius: 10px; */
	/* box-shadow: 0 4px 15px rgba(0,123,255,0.2); */
}

.page-solution .rehab-suggestion .grid .item:nth-child(1) {
	/* margin-left: 50%; */
	padding-right: 300px;
}

.page-solution .rehab-suggestion .grid .item:nth-child(2) {
	padding-left: 300px;
}

.page-solution .rehab-suggestion .grid .item:nth-child(3) {
	padding-right: 300px;
	margin-top: 100px;
}

.page-solution .rehab-suggestion .grid .item:nth-child(4) {
	padding-left: 300px;
	margin-top: 100px;
}

.page-solution .rehab-suggestion .grid .item .title {
	font-size: 24px;
	line-height: 2;
	text-align: left;

	/* color: #007bff; */
}

.page-solution .rehab-suggestion .grid .item .desc {
	font-size: 16px;
	line-height: 2;
	text-indent: 2em;
	text-align: justify;
}



/* 
.page-solution .paralysis {
    padding: 50px 0;
} */

.page-product {
	background-color: #EFF6FF;
}

.page-product section:nth-child(2n) {
	/* background-color: #EFF6FF; */
}

.page-product h2 {
	margin: 0px auto;
	text-align: center;
	font-size: 32px;
	color: #7FBD2B;
	line-height: 3;
}

.page-product h3 {
	margin: 0px auto;
	text-align: center;
	font-size: 26px;
	color: #0066cc;
	line-height: 2;
}

.page-product section .container {
	padding: 50px 0;
}

.page-product .product-technology {
	padding-top: 100px;
	background: #fff;
}

.page-product .product-technology .info {
	position: relative;
}

.page-product .product-technology .info .content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	/* gap: 50px; */
	flex-wrap: wrap;
}

.page-product .product-technology .info .content .item {
	width: 50%;
	/* width: 300px; */
	margin-right: auto;
	padding-right: 300px;
	margin-bottom: 50px;
	/* flex: 1 0 50%; */
	/* flex-grow: 1, flex-shrink: 0, flex-basis: 50% */
}

.page-product .product-technology .info .content .item .title {
	font-size: 24px;
	line-height: 2;
	text-align: left;
}

.page-product .product-technology .info .content .item:nth-child(2),
.page-product .product-technology .info .content .item:nth-child(4) {
	margin-right: 0;
	padding-right: 0;
	padding-left: 300px;
}

.page-product .product-technology .info .content .item:nth-child(2) .title,
.page-product .product-technology .info .content .item:nth-child(4) .title {
	text-align: right;

}

.page-product .product-technology .info .content .item .desc {
	font-size: 16px;
	line-height: 2;
	text-indent: 2em;
	text-align: justify;
}


.page-product .product-technology .info .image {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 400px;
	/* width: 100%; */
	/* height: 100%; */
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.page-product .product-technology .info .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-product .product-advantage {
	background: #fff;
}

.page-product .product-advantage {
	position: relative;
}

.page-product .product-advantage .content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	/* gap: 50px; */
	flex-wrap: wrap;
}

.page-product .product-advantage .content .item {
	width: 50%;
	/* width: 300px; */
	margin-right: auto;
	padding-right: 300px;
	margin-bottom: 50px;
	/* flex: 1 0 50%; */
	/* flex-grow: 1, flex-shrink: 0, flex-basis: 50% */
}


.page-product .product-advantage .content .item .title {
	font-size: 24px;
	line-height: 2;
	text-align: left;
}

.page-product .product-advantage .content .item:nth-child(2),
.page-product .product-advantage .content .item:nth-child(4) {
	margin-right: 0;
	padding-right: 0;
	padding-left: 300px;
}

.page-product .product-advantage .content .item:nth-child(2) .title,
.page-product .product-advantage .content .item:nth-child(4) .title {
	text-align: right;

}

.page-product .product-advantage .content .item .desc {
	font-size: 16px;
	line-height: 2;
	text-indent: 2em;
	text-align: justify;
}


.page-product .product-advantage .image {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 400px;
	/* width: 100%; */
	/* height: 100%; */
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.page-product .product-technology .image img {
	width: 100%;
	/* height: 100%; */
	object-fit: cover;
}



.page-product .product-upgrade {
	background: #fff;
}

.page-product .product-upgrade .content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 20px;
}

.page-product .product-upgrade .content .item {
	width: 20%;
	border: 1px dashed #000;
	padding: 20px;
	/* 添加过渡效果 */
}

.page-product .product-upgrade .content .item:nth-child(1),
.page-product .product-upgrade .content .item:nth-child(3) {
	margin-top: 50px;
}

.page-product .product-upgrade .content .item:hover {
	transform: translateY(-10px);
	/* 向上浮动 */
	box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
	/* 添加阴影 */
	border-color: #007bff;
	/* 改变边框颜色 */
}

.page-product .product-upgrade .content .item .icon {
	/* width: 100%; */
	/* height: 100%; */
	margin: 0 auto;
	display: block;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #dcdcdc;
}

.page-product .product-upgrade .content .item:nth-child(1) .icon,
.page-product .product-upgrade .content .item:nth-child(3) .icon {
	background-color: #007bff;
}

.page-product .product-upgrade .content .item:nth-child(1) .icon i,
.page-product .product-upgrade .content .item:nth-child(3) .icon i {
	color: #fff;
}



.page-product .product-upgrade .content .item .icon i {
	font-size: 40px;
	text-align: center;

	color: #007bff;
	/* margin: 0 auto; */
	/* display: block; */
}

.page-product .product-upgrade .content .item .title {
	font-size: 18px;
	line-height: 2;
	text-align: center;
	padding: 15px 0;
}

.page-product .product-upgrade .content .item .desc {
	font-size: 14px;
	line-height: 2;
	text-indent: 2em;
	text-align: justify;
}



.page-product .product-shape {
	/* background: #fff; */
}

.page-product .product-shape .list {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 20px;
	height: 430px;
}

.page-product .product-shape .list .item {
	width: 20%;
	background-color: #fbfbfb;
	padding: 15px;
	display: flex;
	/* flex-direction: column; */
	justify-content: space-between;
	flex-wrap: wrap;
	height: 320px;
	margin-top: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.page-product .product-shape .list .item.active {
	background-color: #fff;
	width: 30%;
	height: 430px;
	margin-top: 0;
}

.page-product .product-shape .list .item .image {
	width: 100%;
	/* height: 100%; */
	object-fit: cover;
	background-color: #fff;
	display: inline-flex;
}

.page-product .product-shape .list .item .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-product .product-shape .list .item .name {
	font-size: 18px;
	line-height: 2;
	text-align: left;
	padding: 10px 0;
	width: 100%;
	/* display: inline-flex; */
}

.page-product .product-shape .list .item .desc {
	font-size: 14px;
	line-height: 24px;
	/* text-indent: 2em; */
	text-align: justify;
	display: inline-flex;
	width: 60%;
	color: #717171;
}

.page-product .product-shape .list .item .price {
	font-size: 24px;
	line-height: 1;
	text-align: center;
	padding: 15px 0;
	color: #0ad53a;
	display: inline-flex;
	max-width: 40%;
	padding: 0;
	margin-right: 0;
	margin-left: auto;
}

.page-product .product-shape .content {
	/* display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 20px; */
	height: 560px;
	overflow: hidden;
}

.page-product .product-shape .content .item {
	width: 100%;
	/* display: none; */
	transition: all 0.3s ease;
	height: 560px;
	overflow: hidden;
}

.page-product .product-shape .content .item.active {
	display: block;
}

.page-product .product-shape .content .item img {
	width: 100%;
	height: 560px;
	/* height: 100%; */
	/* object-fit: cover; */
}


.page-product .product-system {
	background: #fff;
	padding-top: 80px;
	padding-bottom: 80px;
}







/* .page-product .product-advantage {
    padding: 50px 0;
} */



.page-product .product-technology .info {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 20px;
}

.page-product .product-technology .info .list {
	width: 40%;
}

.page-product .product-technology .info .list .item {
	padding: 20px;
	background-color: #fff;
	border-radius: 10px;
}

.page-product .product-technology .info .list .item h3 {
	font-size: 24px;
	/* color: #0066cc; */
}

.page-product .product-technology .info .list .item p {
	font-size: 16px;
	/* color: #0066cc; */
}



.page-contact {
	background-color: #fff;
}

.page-contact .contact {
	/* padding: 50px 0; */
	padding-top: 100px;
	padding-bottom: 100px;
}

.page-contact .contact h2 {
	text-align: center;
	font-size: 32px;
	color: #7FBD2B;
	line-height: 3;
}

.page-contact .contact .content {
	padding: 50px 0;

	/* font-weight: 400; */
	font-size: 16px;
	line-height: 36px;
	text-align: center;
	/* color: #66A2E0; */
	justify-content: end;
	text-align: left;
	text-indent: 2em;
	text-align: justify;
	/* margin-bottom: 30px; */

}

.page-contact .contact .content p {
	/* font-size: 16px; */
	/* color: #0066cc; */
	/* line-height: 2; */
}

.page-about {
	background-color: #fff;
}

.page-about .about {
	/* padding: 50px 0; */
	padding-top: 100px;
	padding-bottom: 100px;
}

.page-about .about h2 {
	text-align: center;
	font-size: 32px;
	color: #7FBD2B;
	line-height: 3;
}

.page-about .about .content {
	padding: 50px 0;
	/* padding-top: 100px; */
	/* padding-bottom: 100px; */
}

.page-about .about .content p {
	/* font-size: 16px; */
	/* color: #0066cc; */
	/* line-height: 2; */
}