@import "./common.less";

body {
	font-size: var(--ft16);
	color: #000;
	.d-flex;

	.flex-column;
	min-height: 100vh;

	@media (max-width: 768px) {}
}

main {
	flex: 1;
}
.foot_copy{
	position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: rgb(103,103,103,0.7);
}
.SearchFrom {

	margin: 0 auto;
	position: relative;
	width: 500px;
	max-width: 100%;

	input[type="text"] {
		width: 100%;
		padding: var(--p20);
		border: none;
		border-radius: 8px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}

	svg {
		color: #fff;
	}

	button[type="submit"] {
		background-color: var(--ftc);
		border: none;
		color: #fff;
		cursor: pointer;
		padding: 10px 20px;
		border-radius: 0 8px 8px 0;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		transition: .9s ease;
	}

	button[type="submit"]:hover {
		transform: scale(1.1);
		color: rgb(255, 255, 255);
		background-color: #4e99e9;
	}
}


.searchBtn {
margin-left: var(--p30);
	position: relative;
	box-sizing: border-box;
	width: fit-content;


	.mainbox {
		box-sizing: border-box;
		position: relative;
		width: 230px;
		height: 40px;
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		justify-content: center;
		border-radius: 160px;
		background-color: var(--ftc);
		transition: all 0.3s ease;
	}

	.checkbox:focus {
		border: none;
		outline: none;
	}

	.checkbox:checked {
		right: 10px;
	}

	.checkbox:checked~.mainbox {
		width: 40px;
	}

	.checkbox:checked~.mainbox .search_input {
		width: 0;
		height: 0px;
	}

	.checkbox:checked~.mainbox .iconContainer {
		padding-right: 8px;
		.flex-center;
	}

	.checkbox {
		box-sizing: border-box;
		width: 30px;
		height: 30px;
		position: absolute;
		right: 17px;
		top: 10px;
		z-index: 9;
		cursor: pointer;
		appearance: none;
	}

	.search_input {
		box-sizing: border-box;
		height: 100%;
		width: 170px;
		background-color: transparent;
		border: none;
		outline: none;
		padding-bottom: 4px;
		padding-left: 10px;
		font-size: 1em;
		color: white;
		transition: all 0.3s ease;
		font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	}

	.search_input::placeholder {
		color: rgba(255, 255, 255, 0.776);
	}

	.iconContainer {
		box-sizing: border-box;
		font-size: 13px;
		.flex-center;
		flex-shrink: 0;
		width: fit-content;
		transition: all 0.3s ease;
	}

	.search_icon {
		box-sizing: border-box;
		fill: white;
		font-size: 1.3em;
	}
}

.titleCom {
	text-align: center;

	h1 {
		color: var(--ftc);
		line-height: 1em;
		font-size: vaR(--ft36);
	}

	.hr {
		width: 60px;
		height: 4px;
		background: #FFB400;
		margin: var(--p20) auto;
	}

	.desc {
		font-size: vaR(--ft14);
	}
}

.Index {

	.line {
		width: 100%;
		max-width: 800px;
		height: 8px;
		margin: 0 0 10px 0;
		position: relative;
		display: inline-block;
		background-color: var(--dark);
	}


	/* Not great browser support :(
html {
  scroll-behavior: smooth;
} 
*/
	nav {
		position: fixed;
		top: 10px;
		right: 10px;
		background: #0000007d;
		padding: 0px 10px;
		border-radius: 10px;
		font-weight: normal;
	}

	nav a {
		line-height: 1.7;
		text-decoration: none;
		color: var(--color-surface-white);
		opacity: 0.6;
	}

	nav a:hover {
		text-decoration: underline;
	}

	nav a.active {
		opacity: 1
	}

	.panel p {
		max-width: 80ch;
		display: block;
	}

	.panel {
		flex-direction: column;
		font-size: 1.1em;
	}

	.panel h1 {
		font-size: 1.8em;
		font-weight: 300;
		margin: 0 auto;
	}

	.panel.description {
		padding-bottom: 60px;
	}

	.panel p,
	.panel li {
		font-weight: 400;
		text-align: left;
		font-size: 0.8em;
		line-height: 1.5em;
		margin: 0.3em 0 1em 0;
	}

	.panel li {
		margin: 0;
	}


}

header {
	background: #fff;
	padding: var(--p20) 0;

	.logo {
		flex: 1;
	}

	position: sticky;

	.layui-nav .layui-this:after,
	.layui-nav-bar {
		display: none;
	}

	.layui-nav .layui-nav-item a {
		color: #000;
	}

	.layui-nav .layui-nav-item a:hover {
		color: var(--ftc);
	}

	&.bgcolor {
		top: -100%;
	}
}

.btn {
    padding: 0 var(--p20);
	width: 100%;
	height: var(--btn);
	line-height: vaR(--btn);
	background: var(--ftc);
	border: 1px solid var(--ftc);
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	position: relative;
	z-index: 1;
	overflow: hidden;

	&:hover {
		color: var(--ftc);
		border: 1px solid var(--ftc);
	}

	&:after {
		content: "";
		background: #fff;
		position: absolute;
		z-index: -1;
		left: -20%;
		right: -20%;
		top: 0;
		bottom: 0;
		transition: all 0.5s;
		transform: skewX(-45deg) scale(0, 1);
	}

	&:hover:after {
		transform: skewX(-45deg) scale(1, 1);
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
	}
}

.top_box {
	aspect-ratio: 1920/500;
	.flex-center;
	.bg_img;

	h1 {
		font-weight: normal;
		opacity: 1;
		color: #fff;
		text-align: center;
		font-size: var(--ft28);
	}
}

.Contact {
	.layui-main {
		.d-grid;
		.grid2;
		gap: var(--p50);
	}

	h1 {
		text-align: left;
		margin-bottom: var(--p30);
	}

	ul {
		padding: var(--p20) var(--p50);
		border: 1px solid #DEDEDE;
	}

	li {
		.d-grid;
		.al-fs;
		grid-template-columns: 0.1fr 1fr;
		gap: var(--p40);
		padding-top: var(--p20);

		&:last-child {
			.content {
				border-bottom: 0;
			}
		}
	}

	.img {
		flex-shrink: 0;
	}

	.content {
		padding-bottom: var(--p20);
		border-bottom: 1px solid #E7E7E7;
	}
}

footer {
	h5 {
		font-weight: normal;
		margin-bottom: var(--p30);
	}

	form {
		.d-grid;
		gap: var(--p10);
	}

	.layui-input,
	.layui-textarea {
		background: #FFFFFF;
	}

	--input_size:12px;
	--input:40px;
	padding: var(--p70) 0 var(--p90);
	background: #383838;
	color: #fff;

	.footerLogo {
		display: block;
		margin-bottom: var(--p50);
	}

	.block {
		.d-flex;
		.al-fs;
		.jc-sa;

		>* {
			width: 250px;
			max-width: 100%;
		}
	}

	ul {
		.d-grid;
		gap: var(--p25);
	}
}

.title {
	text-align: center;
	font-size: vaR(--ft30);
	color: var(--ftc);

}

.From {
	--main: 850px;

	form {
		margin-top: vaR(--p50);
		gap: var(--p35) var(--p50);
	}

	.layui-input,
	.layui-select,
	.layui-textarea {
		background: #F7F7F7;
	}
}

.AboutAurora {
	ul {
		margin-top: var(--p40);
		.d-grid;
		gap: var(--p40);
	}

	li {
		.d-flex;
		.al-c;
		position: relative;
		gap: var(--p70);
	}

	li:nth-child(even) {

		flex-direction: row-reverse;
	}

	.img {
		flex-shrink: 0;
	}
}

.AboutCom {

	.marquee-container {
		width: 100%;
		margin-top: var(--p40);
		position: relative;
	}

	/* 滚动轨道 */
	.marquee-track {
		display: flex;
		width: max-content;
		animation: marquee 20s linear infinite;
		/* 匀速滚动动画 */
	}

	/* 滑块样式 */
	.marquee-item {
		width: 380px;
		margin: 0 var(--p20);
		aspect-ratio: 380/225;
		color: white;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
		flex-shrink: 0;
		/* 防止压缩 */
		position: relative;
		transition: all 0.5s;
	}

	.marquee-item:hover {
		scale: 1.2;
		z-index: 9;
		box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
	}

	/* 核心动画 - 实现完全匀速滚动 */
	@keyframes marquee {
		0% {
			transform: translateX(0);
		}

		100% {
			transform: translateX(calc(-50% - 10px));
			/* 滚动到一半长度（减去半个间距） */
		}
	}

	/* 复制一组内容用于无缝衔接 */
	.marquee-clone {
		display: flex;
	}

}

.AboutAdvantages {
	.item {}

	ul {
		margin-top: var(--p50);
		.d-grid;
		.grid4;
		gap: var(--p15);

	}

	.img {
		position: relative;
		z-index: 2;
		aspect-ratio: 290 /180;
		transition: all 0.5s;
		top: 0;
	}

	.item {

		.d-flex;
		.flex-column;

		&:hover {
			.img {
				top: vaR(--p20);
			}
		}
	}

	.block {
		flex: 1;
		color: #272727;
		padding: var(--p20) var(--p15);
		text-align: center;
		position: relative;
		z-index: 3;
		background: #FFFFFF;
		box-shadow: 1px 1px 4px 0px rgba(152, 152, 152, 0.47);
	}

	h5 {
		font-size: vaR(--ft20);
		margin-bottom: var(--p10);
	}
}

.New {
	padding: var(--p40) 0 var(--p80);
}

.pagenum {
	text-align: center;

	a,
	span {
		border-radius: 50%;
	}
}

.NewList {
	.item {
		overflow: hidden;
		display: block;
		position: relative;

		&:before {
			content: "";
			position: absolute;
			z-index: -1;
			top: -16px;
			right: -16px;
			background: #F4F4F4;
			height: 32px;
			width: 32px;
			border-radius: 32px;
			transform: scale(1);
			transform-origin: 50% 50%;
			transition: transform 0.5s ease-out;
		}

		&:hover:before {
			transform: scale(120);
		}
	}

	.line {
		padding: var(--p40) 0;
		border-bottom: 1px solid #E6E6E6;
		.d-grid;
		grid-template-columns: 1fr 0.4fr;
		gap: var(--p60);

		overflow: hidden;

	}

	h5 {
		font-size: var(--ft18);
		.line-clamp1;
	}

	.sub {
		height: 4.5em;
		line-height: 1.5em;
		.line-clamp3;
		margin-top: vaR(--p30);
	}

	.foot {
		span {
			.d-flex;
			.al-c;
			gap: 5px;
		}

		color: #4D4D4D;
		font-size: var(--ft14);
		.d-flex;
		.jc-fe;
		gap: var(--p40);
		margin-top: vaR(--p30);
	}
}

main {
	position: relative;

	>* {
		position: relative;
		z-index: 5;
	}
}

#water-canvas {
	position: absolute;
	z-index: 1;
	bottom: 0;
}

.detailsMain {

	h3 {
		font-size: var(--ft20);
		text-align: center;
	}

	.con {
		margin: var(--p40) 0;
	}

	.foot {
		padding: var(--p30) 0;
		border-top: 1px solid #D2D2D2;
		.d-grid;
		.grid2;
		gap: vaR(--p10);

		a {
			.line-clamp1;
		}

		>div:nth-child(2) {
			text-align: right;
		}

		a:hover {
			color: var(--ftc);
		}
	}
}

.QuaPro {
	ul {
		margin-top: var(--p40);
		.d-grid;
		.grid1;
		gap: vaR(--p30) var(--p140);
	}

	h5 {
		font-size: var(--ft20);
		margin-bottom: var(--p20);
	}
    .item{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: vaR(--p30) var(--p140);
        justify-items: stretch;
    }
// 	li:nth-child(even) {
// 		position: relative;

// 		&::before {
// 			display: block;
// 			content: '';
// 			position: absolute;
// 			left: 0;
// 			top: 0;
// 			bottom: 0;
// 			left: -70px;
// 			width: 2px;
// 			background: var(--ftc);
// 		}
// 	}
}

.QuaIncoming {
	.Card {
		background: #F9F9F9;
		.d-grid;
		.grid2;
		margin-top: var(--p40);
	}

	.desc {
		font-size: var(--ft18);
		padding: var(--p60) var(--p40);
		color: var(--ftc);
	}
}

.QuaInfo {
	.Card {
		.d-grid;
		.grid2;
		.al-c;
		gap: var(--p70);
		margin-top: var(--p40);
	}

	ul {
		.d-grid;
		gap: var(--p40);
	}

	h5 {

		font-size: var(--ft18);
		margin-bottom: var(--p20);
	}
}

.ProductNav {
	.d-flex;
	margin-top: vaR(--p40);
	flex-wrap: wrap;
	gap: var(--p20);
	margin-bottom: var(--p30);

	.item {

		align-items: center;
		border: 0;
		border-radius: 8px;
		box-shadow: rgba(0, 134, 204,0.2) 0 7px 17px -5px;
		box-sizing: border-box;
		color: #ffffff;
		display: flex;
		font-size: 18px;
		justify-content: center;
		line-height: 1em;
		max-width: 100%;
		min-width: 140px;
		text-decoration: none;
		user-select: none;
		-webkit-user-select: none;
		touch-action: manipulation;
		white-space: nowrap;
		cursor: pointer;
		transition: all 0.3s;

		&:active,
		&:hover {
			outline: 0;
			
		}

		span {
			background-color: #fff;
			color: #000;
			padding: var(--p15) var(--p25);
			border-radius: 6px;
			width: 100%;
			height: 100%;
			transition: 300ms;
		}

		&.active span,
		&:hover span {
			color: #fff;
			background: var(--ftc);
		}

		&:active {
			transform: scale(0.9);
		}
	}

	.li {
		display: block;
		;
		background: #F8F8F8;
		.d-flex;
		.flex-column;
		overflow: hidden;
		position: relative;
		cursor: pointer;
		border-radius: 20px;

		.content {
			padding: var(--p10) var(--p20);
			border-radius: 20px;
			background: #fff;
			z-index: 1;
			margin: 1px;

		}

		.content::before {
			opacity: 0;
			transition: opacity 300ms;
			content: " ";
			display: block;
			background: white;
			width: 5px;
			height: 50px;
			position: absolute;
			filter: blur(50px);
			overflow: hidden;
		}

		&:hover .content::before {
			opacity: 1;
		}

		&::before {
			opacity: 0;
			content: " ";
			position: absolute;
			display: block;
			width: 100%;
			height: 100%;
			background: linear-gradient(var(--ftc), #fff);
			transition: opacity 300ms;
			animation: rotation_9018 8000ms infinite linear;
			animation-play-state: paused;
		}

		&:hover::before {
			opacity: 1;
			animation-play-state: running;
		}

		&::after {
			opacity: .8;
			position: absolute;
			content: " ";
			display: block;
			width: 100%;
			height: 90%;
			backdrop-filter: blur(50px);
		}

		&.active {
			background: vaR(--ftc);

			.content {
				background: vaR(--ftc);
			}

			color: #fff;
		}
	}


}


.ProductList {
	.d-grid;
	margin-top: vaR(--p70);
	.grid4;
	gap: var(--p50) var(--p70);

	.img {
	   width: 220px;
    height: 200px;
// 		aspect-ratio: 284/200;
	}

	.block {
		padding: var(--p20) var(--p30);
	}

	text-align: center;

	h5 {
		.line-clamp1;
	}

	.sub {
		margin-top: vaR(--p10);
		.line-clamp3;

	}

	.card {
		position: relative;
		width: 100%;
		height: 100%;
		cursor: pointer;
		background-color: #fff;
		display: flex;
		flex-direction: column;
		justify-content: end;
		padding: 12px;
		gap: 12px;
		border-radius: 8px;
		cursor: pointer;
	}

	.card::before {
		content: "";
		position: absolute;
		inset: 0;
		left: -1px;
		margin: auto;
		width: calc(100% + 2px);
		height: calc(100% + 2px);
		border-radius: 10px;
		background: linear-gradient(-45deg, #fff 0%, #40c9ff 100%);
		z-index: -10;
		pointer-events: none;
		transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	}

	.card::after {
		content: "";
		z-index: -1;
		position: absolute;
		inset: 0;
		background: linear-gradient(-45deg, #fff 0%, #40c9ff 100%);
		transform: translate3d(0, 0, 0) scale(0.95);
		filter: blur(20px);
	}



	.card:hover::after {
		filter: blur(30px);
	}

	.card:hover::before {
// 		transform: rotate(-90deg) scaleX(1) scaleY(1);
	}

	.card:hover .card-button {
		transform: translate(-50%, 50%);
		opacity: 1;
	}

	.card-button {
		transform: translate(-50%, 125%);
		width: 60%;
		border-radius: 1rem;
		border: none;
		background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100%);
		color: #fff;
		font-size: 1rem;
		padding: 0.5rem 1rem;
		position: absolute;
		left: 50%;
		bottom: 0;
		opacity: 0;
		transition: 0.3s ease-out;
	}




}

@keyframes rotation_9018 {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.ProductDetails {
	h1 {
		font-size: vaR(--ft30);
		color: var(--ftc);
	}

	dl {
		font-size: vaR(--ft18);
		margin-top: var(--p40);
		.d-grid;
		gap: var(--p25);

		dd {
			.d-grid;
			grid-template-columns: 0.4fr 1fr;
			gap: var(--p10);
		}
	}

	.btn {
		display: inline-block;
		padding: 0 var(--p30);
		margin-top: var(--p40);
		width: auto;
		border-radius: 4px;
	}

	.Card {
		gap: var(--p140);
		.d-grid;
		grid-template-columns: 0.7fr 1fr;
		margin-bottom: var(--p70);
	}

	.img {

		border: 1px solid #D0D0D0;
	}

	.con {
		padding: var(--p30) 0;
		margin-top: vaR(--p30);
		border: 1px solid #D0D0D0;
		border-left: 0;
		border-right: 0;
	}

	.foot {
		p {
			color: #ccc;
		}

		.d-grid;
		gap: var(--p15);
		padding-top: var(--p30);
		font-size: vaR(--ft20);
		font-size: var(--ft20);

		a:hover {
			color: var(--ftc);
		}
	}
}

.IndexNew {
	ul {
		margin-top: vaR(--p60);
		.d-grid;
		gap: var(--p30);
		grid-template-columns: 3fr 6fr;
	}

	dl {
		.d-grid;
		.grid2;
		gap: var(--p30);
	}

	.item {
		padding: var(--p30);
		background: #FFFFFF;
		border: 1px solid #BABABA;
		.d-flex;
		.flex-column;
		.al-fs;
		.jc-fs;
		gap: var(--p20);
		transition: all 0.3s;

		h5 {
			.line-clamp1;
		}

		.foot {
			.d-flex;
			.al-c;
			.jc-s;
			color: #6E6E6E;
			font-size: var(--ft12);
		}

		.sub {
			color: #6E6E6E;
			flex: 1;
			.line-clamp3;
			font-size: var(--ft14);
		}

		&:hover {

			box-shadow: 4px 4px 6px 0px #D0D0D0;
		}
	}

	.cards {
	    min-height: 300px;
		display: block;
		width: 100%;
		height: 100%;
	}

	.card {

		width: 100%;
		height: 100%;
		.bg_img;
		border: 2px solid #555555;
		border-radius: 4px;
		position: relative;
		transform-style: preserve-3d;
		will-change: transform;
		transition: transform .5s;
	}

	.card:hover {
		transform: translateZ(10px) rotateX(20deg) rotateY(20deg);
	}

	.card_title {
		color: #fff;
		position: absolute;
		top: 50%;
		right: 20px;
		font-size: var(--ft36);
		transform: translateY(-50%);
		transition: transform .5s;
		font: 700 1.5rem monospace;

	}

	.card:hover .card_title {
		transform: translateZ(50px);
	}
}

.IndexAdvant {
	ul {
		.d-grid;
		.grid4;
		gap: var(--p25);
		margin-top: var(--p40);
	}

	li {
		min-height: 80px;
		border: 1px solid #BABABA;
	}
	img{
	    height: 140px;
	}
}

.IndexService {
	ul {
		.d-grid;
		.grid4;
		gap: var(--p25);
		margin-top: var(--p40);
	}

	.item {
		border: 1px solid #E7E7E7;
		position: relative;
		transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
		border-radius: 16px;
		overflow: hidden;
		display: block;

		.card-image {
			aspect-ratio: 1/1;

			transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
			background: #0a3394;
			background: linear-gradient(to top, #0a3394, #4286f4);
		}

		/*Description */
		.card-description {
			display: flex;
			position: relative;
			text-align: center;
			gap: .5em;
			flex-direction: column;
			background-color: #fff;
			color: #212121;
			height: 100%;
			bottom: 25%;
			border-radius: 16px;
			transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
			padding: 1rem;
		}

		/*Text*/
		.text-title {
			font-size: 1.3rem;
			font-weight: 700;
		}

		.text-body {
			font-size: 1rem;
			line-height: 130%;
		}


		/* Hover states */
		&:hover {
			border-color: var(--ftc);

			.card-description {
				bottom: 0;
				color: var(--ftc);
			}

		}
	}
}

.IndexQual {
// 	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: auto;
	background-position: top;


	.titleCom {
		* {
			color: #fff;
		}
	}

	ul {
		margin-top: var(--p40);
		.d-grid;
		.grid3;
		gap: var(--p30);

	}

	.item {
		color: #fff;
		aspect-ratio: 380/480;
		display: block;
		position: relative;
		border-radius: 16px;
		text-align: center;
		overflow: hidden;
		cursor: pointer;
		animation: name-of-animation 2s;

		.card-img {
			position: absolute;
			height: 100%;
			width: 100%;
		}

		.card-info {
			height: 100%;
			padding: var(--p60);
			position: absolute;
			width: 100%;
			bottom: 0;

			display: flex;
			align-items: flex-end;
			justify-content: space-between;
		}

		.card-icon {
			opacity: 0;
			transform: translateX(-20%);
			width: 2em;
			height: 2em;
			transition: all .3s ease-in-out;
			position: relative;
			left: -0.1em;
			top: -3px;
		}

		.icon {
			--size: 28px;
			width: var(--size);
			height: var(--size);
			filter: invert(1);
			margin-top: 1px;
			margin-left: -5px;
		}



		.text-title {
			margin-bottom: var(--p30);
			font-size: var(--ft20);
			transition: all 0.3s;
		}

		.text-subtitle {
			transition: all 0.3s;
			margin-bottom: 0;
		}

		&:hover .card-icon {
			opacity: 1;
			transform: translateX(20%);
		}

		&:hover {
			.text-subtitle {

				margin-bottom: vaR(--p80);
			}

			.card-info {
				background: rgba(0, 134, 204, 0.6);
			}
		}

		@keyframes name-of-animation {
			0% {
				opacity: 0;
			}

			100% {
				opacity: 1;
			}
		}
	}
}
.IndexWhy{
    .bg_fixed;
    .titleCom {
        *{
            color: #fff;
        }
    }
    	ul {
		margin-top: var(--p50);
		.d-grid;
		.grid5;
		gap: var(--p30);

	}
.card {
 padding: var(--p40) var(--p20);
  background-color: #4158D0;
background-image: linear-gradient(43deg,
  rgba(0, 134, 204, 1) 0%,
  rgba(51, 180, 230, 1) 40%,
  rgba(102, 210, 245, 1) 70%,
  rgba(173, 232, 244, 1) 100%
);
  border-radius: 8px;
  color: white;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  cursor: pointer;
}

.card-content {
  padding: 20px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: white;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.card-content .card-title {
  font-size: 24px;
  font-weight: 700;
  color: inherit;
  text-transform: uppercase;
}

.card-content .card-para {
  color: inherit;
  opacity: 0.8;
  font-size: 14px;
}

.card:hover {
  transform: rotateY(0) rotateX(10deg) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
h5{
    margin-top: var(--p40);
}
.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  z-index: 1;
}

.card:hover:before {
  transform: translateX(-100%);
}

.card:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  z-index: 1;
}

.card:hover:after {
  transform: translateX(100%);
}

}
.IndexAbout{
    .Card{
        margin-top: vaR(--p60);
        .d-grid;
        .grid2;
        .al-fs;
        gap: var(--p70);
    }
    h5{
        font-size: vaR(--ft18);
    }
    .sub{
        margin: var(--p20) 0;
    }
    .btn{
        width: auto;
        display: inline-block;
        margin-top: vaR(--p40);
        background: #fff;
        color: var(--ftc);
    border:1px solid var(--ftc);
    &:hover{
        color: #fff;
        &:after{
        background: var(--ftc);
    }}
    }
}
.IndexSearch{
    color: #fff;
    .bg_fixed;
    .flex-center;
    min-height: 800px;
    h1{
        font-size: var(--ft28);
        text-align: center;
        margin-bottom: var(--p70);
    }
    .foot{
        width: 600px;
        
        margin: var(--p60) auto 0;
        .d-flex;
        .al-fs;
        gap: var(--p10);
        .span{
            flex-shrink: 0;
        }
        a:hover{
            opacity: 0.8;
        }
        .swiper-slide{
            height: 25px;
        }
        .btSwiper{
            height: 25px;
        }
    }
    dl{
        .d-flex;
        flex-wrap: wrap;
        gap: var(--p10) var(--p20);
    }
}
.main > .inp {
  display: none;
}
.main {
  font-weight: 800;
  color: white;
  margin-right: 0;
  display: none;
  background-color: var(--ftc);
  padding: 3px 15px;
  border-radius: 10px;

  align-items: center;
  height: 2.5rem;
  width: 3rem;
  position: relative;
  cursor: pointer;
  justify-content: space-between;
}

.arrow {
  height: 34%;
  aspect-ratio: 1;
  margin-block: auto;
  position: relative;
  display: flex;
  justify-content: center;
  transition: all 0.3s;
}

.arrow::after,
.arrow::before {
  content: "";
  position: absolute;
  background-color: white;
  height: 100%;
  width: 2.5px;
  border-radius: 500px;
  transform-origin: bottom;
}

.arrow::after {
  transform: rotate(35deg) translateX(-0.5px);
}
.arrow::before {
  transform: rotate(-35deg) translateX(0.5px);
}

.main > .inp:checked + .arrow {
  transform: rotateX(180deg);
}

.menu-container {
    z-index: 99;
    width: 150px;
  background-color: white;
  color: var(--ftc);
  border-radius: 10px;
  position: absolute;

    left: 50%;
    transform: translateX(-50%);
  top: 130%;
  overflow: hidden;
  clip-path: inset(0% 0% 0% 0% round 10px);
  transition: all 0.4s;
}

.menu-list {
  --delay: 0.4s;
  --trdelay: 0.15s;
  padding: 8px 10px;
  border-radius: inherit;
  transition: background-color 0.2s 0s;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
}

.menu-list::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background-color: rgba(0, 0, 0, 0.3);
  width: 95%;
}

.menu-list:hover {
  background-color: rgb(223, 223, 223);
}

.inp:checked ~ .menu-container {
  clip-path: inset(10% 50% 90% 50% round 10px);
}

.inp:not(:checked) ~ .menu-container .menu-list {
  transform: translateY(0);
  opacity: 1;
}

.inp:not(:checked) ~ .menu-container .menu-list:nth-child(1) {
  transition:
    transform 0.4s var(--delay),
    opacity 0.4s var(--delay);
}

.inp:not(:checked) ~ .menu-container .menu-list:nth-child(2) {
  transition:
    transform 0.4s calc(var(--delay) + (var(--trdelay) * 1)),
    opacity 0.4s calc(var(--delay) + (var(--trdelay) * 1));
}

.inp:not(:checked) ~ .menu-container .menu-list:nth-child(3) {
  transition:
    transform 0.4s calc(var(--delay) + (var(--trdelay) * 2)),
    opacity 0.4s calc(var(--delay) + (var(--trdelay) * 2));
}

.inp:not(:checked) ~ .menu-container .menu-list:nth-child(4) {
  transition:
    transform 0.4s calc(var(--delay) + (var(--trdelay) * 3)),
    opacity 0.4s calc(var(--delay) + (var(--trdelay) * 3));
}

.inp:not(:checked) ~ .menu-container .menu-list:nth-child(5) {
  transition:
    transform 0.4s calc(var(--delay) + (var(--trdelay) * 4)),
    opacity 0.4s calc(var(--delay) + (var(--trdelay) * 4));
}
.inp:not(:checked) ~ .menu-container .menu-list:nth-child(6) {
  transition:
    transform 0.4s calc(var(--delay) + (var(--trdelay) * 5)),
    opacity 0.4s calc(var(--delay) + (var(--trdelay) * 5));
}
.inp:not(:checked) ~ .menu-container .menu-list:nth-child(7) {
  transition:
    transform 0.4s calc(var(--delay) + (var(--trdelay) * 6)),
    opacity 0.4s calc(var(--delay) + (var(--trdelay) * 6));
}
.bar-inp {
  -webkit-appearance: none;
  display: none;
  visibility: hidden;
}

.bar {
  display: flex;
  height: 50%;
  width: 20px;
  flex-direction: column;
  gap: 3px;
}

.bar-list {
  --transform: -25%;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 50px;
  background-color: white;
  transition: all 0.4s;
  position: relative;
}

.inp:not(:checked) ~ .bar > .top {
  transform-origin: top right;
  transform: translateY(var(--transform)) rotate(-45deg);
}

.inp:not(:checked) ~ .bar > .middle {
  transform: translateX(-50%);
  opacity: 0;
}

.inp:not(:checked) ~ .bar > .bottom {
  transform-origin: bottom right;
  transform: translateY(calc(var(--transform) * -1)) rotate(45deg);
}

@media only screen and (max-width: 1400px) {}

@media only screen and (max-width: 990px) {
    .searchBtn .mainbox{
        width: 150px;
    }
    .main{
        display: flex;
    }
    .AboutCom .marquee-item{
        width: 200px;
    }
    .QuaPro li:nth-child(even)::before{
        display: none;
    }
    .Contact .layui-main,
    .QuaInfo .Card,
    .QuaInfo .Card,
    .ProductDetails .Card,
    .IndexNew ul,
    .IndexQual ul{
        .grid1;
    }
    .ProductList,
    .AboutAdvantages ul,
    .IndexAdvant ul,
    .IndexService ul,
    .IndexWhy ul{
        .grid2;
    }
    .IndexAbout .Card{
        .grid1;
    }
    .IndexSearch{
       
    min-height: 300px; 
    }
    .logo img{
        max-height: 20px;
    }
    .IndexQual .item{
        
    aspect-ratio: 380 / 180;
    }
    .AboutAurora li{
        .flex-column !important
        ;
    }
    .SearchFrom button[type="submit"]{
        padding: 0 var(--p20);
    }
    .ProductNav .item{
        min-width: auto;
    }
    .ProductNav .item span{
        font-size: 12px;
    }
    
}

@media only screen and (max-width: 768px) {}

@media only screen and (min-width: 751px) and (max-width: 1400px) {}

@media only screen and (min-width: 751px) {}