@font-face {
	font-family: "Rubik, Rubik";
	src: url("../font/HarmonyOS_Sans_SC_Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

.fixed-contact-btn {
	position: absolute;
	top: -150px;
	left: 0;
	width: 88px;
	height: 345px;
	background-color: #0071c5;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 99;
}

.contact-text {
	font-family: 'Rubik, Rubik';
	font-weight: bold;
	font-size: 45px;
	color: #FFFCFC;
	text-align: center;
	font-style: normal;
	text-transform: none;
}

/* 悬停效果 */
.fixed-contact-btn:hover {
	background-color: #005a9c;
}

.hero-banner {
	position: relative;
	width: 100%;
	height: 703px;
	overflow: hidden;
	box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.25);
}

.hero-bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 3;
	margin: 0 auto;
	padding: 100px 20px;
	color: #ffffff;
	margin-left: 111px;
}

.hero-title {
	font-family: 'Rubik, Rubik';
	font-weight: bold;
	font-size: 90px;
	color: #FFFCFC;
	text-align: left;
}

.hero-subtitle {
	font-family: 'Rubik, Rubik';
	font-weight: bold;
	font-size: 45px;
	color: #FFFCFC;
	text-align: left;
	margin: 0;
}

.hero-text {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 56px;
}

.hero-text p {
	width: 80%;
	font-family: 'Rubik, Rubik';
	font-weight: 400;
	font-size: 30px;
	color: rgba(0, 0, 0, 0.9);
	text-align: left;
	margin: 0;
}

.hero-textss {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 39px;
	position: relative;
}

.hero-texts {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 56px;
	position: relative;
}

.hero-texts p {
	width: 80%;
	font-family: 'Rubik, Rubik';
	font-weight: bold;
	font-size: 56px;
	color: #003255;
	margin: 0;
	text-align: left;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
	gap: 24px;
	max-width: 80%;
	margin: 20px auto;
	padding: 0 20px;
}

.product-card {
	border-radius: 4px;
	padding: 16px;
	background: #FFFCFC;
	box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.25);
	transition: all 0.3s ease;
	transform-origin: center;
}

.product-card:hover {
	transform: scale(1.02);
}


.product-image {
	width: 100%;
	height: auto;
	margin-bottom: 16px;
}

.product-title {
	font-family: ' Rubik, Rubik';
	font-weight: bold;
	font-size: 38px;
	color: #003255;
	text-align: left;
	margin: 0;
}

.product-description {
	font-family: 'Rubik, Rubik';
	font-weight: 400;
	font-size: 23px;
	color: rgba(0, 0, 0, 0.9);
	text-align: left;
}

.learn-more-btn {
	background-color: #0071c5;
	color: #ffffff;
	border: none;
	border-radius: 20px;
	padding: 8px 16px;
	font-size: 13px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
}

.learn-more-btn:hover {
	background-color: #005a9c;
}

.software-section {
	background-color: #e5e5e5;
	padding: 40px 20px;
}

.software-sections {
	background-color: #fff;
	padding: 40px 20px;
}

.software-container {
	max-width: 85%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 40px;
}

.software-image {
	flex: 1;
}

.software-image img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	display: block;
	transition: all 0.3s ease;
	transform-origin: center;
}

.software-image img:hover {
	transform: scale(1.03);
}


.software_h2 {
	font-family: 'Rubik, Rubik';
	font-weight: bold;
	font-size: 56px;
	color: #003255;
	text-align: left;
	margin: 0;
	margin-bottom: 52px;
	margin-left: 120px;
}



.software-content {
	flex: 1;
}

.software-content h4 {
	font-family: 'Rubik, Rubik';
	font-weight: 400;
	font-size: 30px;
	color: #000000;
	margin-bottom: 20px;
}

.software-content h3 {
	font-family: 'Rubik, Rubik';
	font-weight: bold;
	font-size: 38px;
	color: #003255;
	text-align: left;
	margin-bottom: 20px;
}


.software-content h2 {
	font-family: 'Rubik, Rubik';
	font-weight: bold;
	font-size: 38px;
	color: #000000;
	text-align: left;
	margin-bottom: 20px;
}

.carousel-wrappers {
	overflow: hidden;
	position: relative;
}


.carousel-navss {
	position: absolute;
	width: 90%;
	display: flex;
	justify-content: space-between;
	transform: translateY(10%);
	pointer-events: none;
}

.carousel-navss button {
	border: 1px none;
	pointer-events: all;
	transition: background-color 0.3s;
	background-color: transparent;
}


.software-content p {
	font-size: 16px;
	line-height: 1.5;
	color: #333333;
	margin-bottom: 25px;
}

.button-group {
	display: flex;
	gap: 15px;
}

.btn {
	padding: 10px 20px;
	border-radius: 20px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: background-color 0.3s ease;
	display: inline-block;
}

.btn-primary {
	background-color: #006BB7;
	font-family: 'Rubik, Rubik';
	font-weight: 400;
	font-size: 19px;
	color: #FFFFFF;
	text-align: center;
	font-style: normal;
	text-transform: none;
}

.btn-primary:hover {
	background-color: #005a9c;
	transform: scale(1.03);
}

.btn-secondary {
	background-color: #003255;
	font-family: 'Rubik, Rubik';
	font-weight: 400;
	font-size: 19px;
	color: #FFFFFF;
	text-align: center;
	font-style: normal;
	text-transform: none;
}

.btn-secondary:hover {
	background-color: #002244;
	transform: scale(1.03);
}

.interfaces-section {
	width: 85%;
	margin: 0 auto;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.section-header h2 {
	font-family: 'Rubik, Rubik';
	font-weight: bold;
	font-size: 56px;
	color: #003255;
	margin: 0;
	margin-top: 30px;
}

.browse-all-link {
	font-family: 'Rubik, Rubik';
	font-weight: bold;
	font-size: 30px;
	color: #003255;
	text-transform: none;
	margin: 0;
	margin-top: 30px;
}

.browse-all-link:hover {
	color: #005a9c;
}

.interfaces-grid {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 40px;
}

.interface-card {
	flex: 1 1 300px;
	max-width: 468.75px;
	transition: all 0.3s ease;
	transform-origin: center;
}

.interface-card:hover {
	transform: scale(1.05);
}


.interface-card img {
	width: 100%;
	height: auto;
}

.interface-card h3 {
	font-family: 'Rubik, Rubik';
	font-weight: normal;
	font-size: 30px;
	color: #000000;
	text-align: left;
	font-style: normal;
	text-transform: none;
	margin: 0;
	margin-bottom: 20px;
	margin-left: 15px;
}

.learn-more-btn {
	background-color: #003255;
	color: #ffffff;
	border: none;
	border-radius: 19px;
	padding: 8px 18px;
	font-family: 'Rubik, Rubik';
	font-weight: 400;
	font-size: 19px;
	color: #FFFFFF;
	text-align: center;
	font-style: normal;
	text-transform: none;
	text-decoration: none;
	display: inline-block;
	transition: background-color 0.3s ease;
	margin-left: 15px;
}

.carousel-slide {
	flex: 0 0 auto;
	box-sizing: border-box;
	padding: 0 15px;
	flex: 0 0 calc(100% / 4);
	/* 每页显示4个，每个占25%宽度 */
	width: calc(100% / 4);
}

.learn-more-btn:hover {
	background-color: #002244;
}

.learn-more-btns {
	background-color: #003255;
	color: #ffffff;
	border: none;
	border-radius: 19px;
	padding: 8px 18px;
	font-family: 'Rubik, Rubik';
	font-weight: 400;
	font-size: 19px;
	color: #FFFFFF;
	text-align: center;
	font-style: normal;
	text-transform: none;
	text-decoration: none;
	display: inline-block;
	transition: background-color 0.3s ease;
	margin-left: 15px;
}

.learn-more-btns:hover {
	background-color: #002244;
}

.learn-more-btsfn{
	background-color: #003255;
	color: #ffffff;
	border: none;
	border-radius: 19px;
	padding: 8px 18px;
	font-family: 'Rubik, Rubik';
	font-weight: 400;
	font-size: 19px;
	color: #FFFFFF;
	text-align: center;
	font-style: normal;
	text-transform: none;
	text-decoration: none;
	display: inline-block;
	transition: background-color 0.3s ease;
	margin-left: 15px;
}

.learn-more-btsfn:hover {
	background-color: #002244;
}
/* 手机端 */
@media (max-width: 993px) {
	.hero-banner {
		position: relative;
		width: 100%;
		height: 150px;
		overflow: hidden;
		box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.25);
	}

	.hero-bg-img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 150px;
		object-fit: cover;
		z-index: 1;
	}

	.hero-content {
		position: relative;
		z-index: 3;
		margin: 0 auto;
		padding: 0px 20px;
		color: #ffffff;
		margin-left: 0px;
	}

	.hero-title {
		font-family: 'Rubik, Rubik';
		font-weight: bold;
		font-size: 20px;
		color: #FFFCFC;
		text-align: left;
		margin-top: 40px;
	}

	.hero-subtitle {
		font-family: 'Rubik, Rubik';
		font-weight: bold;
		font-size: 20px;
		color: #FFFCFC;
		text-align: left;
		margin-bottom: 10px;
	}

	.hero-text {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		margin-top: 20px;
	}

	.hero-text p {
		width: 90%;
		font-family: 'Rubik, Rubik';
		font-weight: 400;
		font-size: 18px;
		color: rgba(0, 0, 0, 0.9);
		text-align: left;
		margin: 0;
	}

	.hero-texts p {
		width: 80%;
		font-family: 'Rubik, Rubik';
		font-weight: bold;
		font-size: 20px;
		color: #003255;
		margin: 0;
		text-align: left;
		margin-bottom: 20px;
	}


	.product-card {
		border-radius: 4px;
		padding: 16px;
		background: #FFFCFC;
		box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.25);
		transition: all 0.3s ease;
		transform-origin: center;
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.product-card:hover {
		transform: scale(1.02);
	}

	.product-grid {
		display: grid;
		gap: 20px;
		max-width: 80%;
		margin: 0px auto;
		padding: 0 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.product-title {
		font-family: ' Rubik, Rubik';
		font-weight: bold;
		font-size: 20px;
		color: #003255;
		text-align: left;
		margin: 0;
	}

	.product-description {
		font-family: 'Rubik, Rubik';
		font-weight: 400;
		font-size: 15px;
		color: rgba(0, 0, 0, 0.9);
		text-align: left;
	}

	.learn-more-btn {
		background-color: #003255;
		color: #ffffff;
		border: none;
		border-radius: 19px;
		padding: 8px 18px;
		font-family: 'Rubik, Rubik';
		font-weight: 400;
		font-size: 15px;
		color: #FFFFFF;
		text-align: center;
		font-style: normal;
		text-transform: none;
		text-decoration: none;
		display: inline-block;
		transition: background-color 0.3s ease;
		margin-left: 0px;
	}

	.learn-more-btn:hover {
		background-color: #002244;
	}

	.fixed-contact-btn {
		position: absolute;
		top: -25px;
		left: 0;
		width: 35px;
		height: 140px;
		background-color: #0071c5;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		z-index: 99;
	}

	.contact-text {
		font-family: 'Rubik, Rubik';
		font-weight: bold;
		font-size: 20px;
		color: #FFFCFC;
		text-align: center;
		font-style: normal;
		text-transform: none;
	}

	/* 悬停效果 */
	.fixed-contact-btn:hover {
		background-color: #005a9c;
	}

	.hero-texts {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		margin-top: 30px;
		position: relative;
	}

	.software-section {
		background-color: #e5e5e5;
		padding: 20px 20px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.carousel-navss {
		position: absolute;
		width: 90%;
		display: flex;
		justify-content: space-between;
		transform: translateY(10%);
		pointer-events: none;
		margin-left: 20px;
	}

	.carousel-navss button {
		border: 1px none;
		pointer-events: all;
		transition: background-color 0.3s;
		background-color: transparent;
	}


	.software_h2 {
		font-family: 'Rubik, Rubik';
		font-weight: bold;
		font-size: 20px;
		color: #003255;
		text-align: left;
		margin: 0;
		margin-bottom: 20px;
		margin-left: 0px;
	}

	.software-container {
		width: 100%;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.software-content h2 {
		font-family: 'Rubik, Rubik';
		font-weight: bold;
		font-size: 20px;
		color: #000000;
		text-align: left;
		margin: 0;
	}

	.software-content {
		flex: 1;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.btn {
		padding: 10px 20px;
		border-radius: 20px;
		text-decoration: none;
		font-size: 14px;
		font-weight: 500;
		transition: background-color 0.3s ease;
		display: inline-block;
	}

	.btn-primary {
		background-color: #006BB7;
		font-family: 'Rubik, Rubik';
		font-weight: 400;
		font-size: 16px;
		color: #FFFFFF;
		text-align: center;
		font-style: normal;
		text-transform: none;
	}

	.btn-primary:hover {
		background-color: #005a9c;
		transform: scale(1.03);
	}

	.btn-secondary {
		background-color: #003255;
		font-family: 'Rubik, Rubik';
		font-weight: 400;
		font-size: 16px;
		color: #FFFFFF;
		text-align: center;
		font-style: normal;
		text-transform: none;
	}

	.btn-secondary:hover {
		background-color: #002244;
		transform: scale(1.03);
	}

	.carousel-headerss {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 1.5rem;
		padding-top: 2.5rem;
		padding-left: 10px;
		padding-right: 10px;
		box-sizing: border-box;
	}

	.carousel-headerss h2 {
		font-family: 'Rubik, Rubik';
		font-weight: bold;
		font-size: 20px;
		color: #FFFCFC;
		text-align: left;
		margin: 0;
	}

	.explore-moress {
		font-family: 'Rubik, Rubik';
		font-weight: bold;
		font-size: 20px;
		color: #FFFCFC;
		text-align: left;
		text-decoration-line: underline;
		transition: transform 0.3s ease;
		transform-origin: center;
		margin: 0;
	}

	.explore-moress:hover {
		text-decoration: underline;
		transform: scale(1.1);
	}

	.carousel-slide {
		flex: 0 0 auto;
		box-sizing: border-box;
		padding: 0 15px;
		flex: 0 0 calc(100% / 4);
		/* 每页显示4个，每个占25%宽度 */
		width: calc(100% / 4);
	}

	.section-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding-left: 10px;
		padding-right: 10px;
		box-sizing: border-box;
	}

	.section-header h2 {
		font-family: 'Rubik, Rubik';
		font-weight: bold;
		font-size: 20px;
		color: #003255;
		margin: 0;
		margin-top: 30px;

	}

	.browse-all-link {
		font-family: 'Rubik, Rubik';
		font-weight: bold;
		font-size: 20px;
		color: #003255;
		text-transform: none;
		margin: 0;
		margin-top: 30px;
	}

	.browse-all-link:hover {
		color: #005a9c;
	}


	.interfaces-section {
		width: 100%;
		margin: 0 auto;
	}

	.interface-card h3 {
		font-family: 'Rubik, Rubik';
		font-weight: normal;
		font-size: 20px;
		color: #000000;
		text-align: left;
		font-style: normal;
		text-transform: none;
		margin: 0;
		margin-bottom: 10px;
		margin-left: 15px;
	}

	.learn-more-btns {
		background-color: #003255;
		color: #ffffff;
		border: none;
		border-radius: 19px;
		padding: 8px 18px;
		font-family: 'Rubik, Rubik';
		font-weight: 400;
		font-size: 15px;
		color: #FFFFFF;
		text-align: center;
		font-style: normal;
		text-transform: none;
		text-decoration: none;
		display: inline-block;
		transition: background-color 0.3s ease;
		margin-left: 15px;
	}

	.learn-more-btns:hover {
		background-color: #002244;
	}

	.carousel-slide {
		flex: 0 0 auto;
		box-sizing: border-box;
		padding: 0 15px;
		flex: 0 0 calc(100% / 1);
		width: calc(100% / 1);
	}

	.carousel-containers {
		width: 100%;
		overflow: hidden;
		position: relative;
		padding-left: 0px;
		padding-right: 0px;
		box-sizing: border-box;
	}

	.fixed-contact-btn {
		display: none;
	}



}