@charset "utf-8";
/* CSS Document */

:root {
 --color1: #284a9c;
  --color2: #1f90ba;
  --c: #284a9c;
  --main-color:#284a9c;
  --theme-color:#284a9c;
  --title:clamp(24px,3.8vw,50px);
  --bg:rgba(245,245,245,1);
  --padding:80px;
  --primary:#284a9c;
  --bc:#284a9c;
  --ac: #1f90ba;
  --title1:clamp(24px,3vw,30px);
  --main2-color:#284a9c;
}

@media screen and (max-width: 1100px) {
  :root {
    --padding: 48px;
    --title: clamp(22px, 3.4vw, 34px);
    --title1: clamp(18px, 2.6vw, 24px);
  }
}
@media screen and (max-width: 768px) {
  :root {
    --padding: 28px;
    --title: clamp(20px, 5.2vw, 26px);
    --title1: clamp(16px, 4.4vw, 20px);
  }
}

/* ===== Title mark: CNC wire-path (brand industrial, solid color) ===== */
.fa_htitle .dian,
.fa_htitle .tIcon {
	--zs-wire: var(--color1, #284a9c);
	position: relative;
	display: block;
	width: 72px;
	height: 16px;
	margin: 10px auto 12px;
	padding: 0;
	overflow: visible;
	pointer-events: none;
	filter: none;
	-webkit-filter: none;
}
/* Left guide bracket */
.fa_htitle .dian::before,
.fa_htitle .tIcon::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 7px;
	height: 12px;
	margin-top: -6px;
	border: 2px solid var(--zs-wire);
	border-right: 0;
	border-radius: 1px 0 0 1px;
	box-sizing: border-box;
	opacity: 0.9;
	animation: zs-wire-bracket 3.6s ease-in-out infinite;
}
/* Right guide bracket */
.fa_htitle .dian::after,
.fa_htitle .tIcon::after {
	content: "";
	position: absolute;
	right: 0;
	left: auto;
	top: 50%;
	width: 7px;
	height: 12px;
	margin-top: -6px;
	border: 2px solid var(--zs-wire);
	border-left: 0;
	border-radius: 0 1px 1px 0;
	box-sizing: border-box;
	opacity: 0.9;
	animation: zs-wire-bracket 3.6s ease-in-out infinite 0.15s;
}
.fa_htitle .dian span,
.fa_htitle .tIcon span {
	position: absolute;
	display: block;
	margin: 0;
	flex: none;
	will-change: transform, opacity;
}
/* Traveling diamond tool-head */
.fa_htitle .dian span:nth-child(1),
.fa_htitle .tIcon span:nth-child(1) {
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	margin: -4px 0 0 -4px;
	border-radius: 1.5px;
	background: var(--zs-wire);
	box-shadow: 0 0 0 0 rgba(40, 74, 156, 0.2);
	animation: zs-wire-head 3.6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
/* Wire rail */
.fa_htitle .dian span:nth-child(2),
.fa_htitle .tIcon span:nth-child(2) {
	top: 50%;
	left: 10px;
	right: 10px;
	width: auto;
	height: 2px;
	margin-top: -1px;
	border-radius: 1px;
	background: var(--zs-wire);
	animation: zs-wire-rail 3.6s ease-in-out infinite;
	transform: none;
}
.fa_htitle .dian span:nth-child(n+3),
.fa_htitle .tIcon span:nth-child(n+3) {
	display: none;
}

@keyframes zs-wire-head {
	0% {
		transform: translateX(-26px) rotate(45deg) scale(0.75);
		opacity: 0;
		box-shadow: 0 0 0 0 rgba(40, 74, 156, 0);
	}
	12% {
		opacity: 1;
		transform: translateX(-26px) rotate(45deg) scale(1);
		box-shadow: 0 0 0 3px rgba(40, 74, 156, 0.16);
	}
	50% {
		transform: translateX(0) rotate(45deg) scale(1.08);
		box-shadow: 0 0 0 5px rgba(40, 74, 156, 0.12);
	}
	88% {
		opacity: 1;
		transform: translateX(26px) rotate(45deg) scale(1);
		box-shadow: 0 0 0 3px rgba(40, 74, 156, 0.16);
	}
	100% {
		transform: translateX(26px) rotate(45deg) scale(0.75);
		opacity: 0;
		box-shadow: 0 0 0 0 rgba(40, 74, 156, 0);
	}
}
@keyframes zs-wire-rail {
	0%, 100% {
		opacity: 0.45;
		transform: scaleX(0.92);
	}
	50% {
		opacity: 1;
		transform: scaleX(1);
	}
}
@keyframes zs-wire-bracket {
	0%, 100% {
		opacity: 0.55;
		transform: scaleY(0.88);
	}
	50% {
		opacity: 1;
		transform: scaleY(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.fa_htitle .dian span,
	.fa_htitle .tIcon span,
	.fa_htitle .dian::before,
	.fa_htitle .tIcon::before,
	.fa_htitle .dian::after,
	.fa_htitle .tIcon::after,
	.leafs-lineup-mark span,
	.leafs-lineup-mark::before,
	.leafs-lineup-mark::after {
		animation: none !important;
		opacity: 1 !important;
	}
	.fa_htitle .dian span:nth-child(1),
	.fa_htitle .tIcon span:nth-child(1),
	.leafs-lineup-mark span:nth-child(1) {
		transform: rotate(45deg) !important;
		opacity: 1 !important;
	}
	.fa_htitle .dian span:nth-child(2),
	.fa_htitle .tIcon span:nth-child(2),
	.leafs-lineup-mark span:nth-child(2) {
		transform: none !important;
		opacity: 0.85 !important;
	}
	.fa_htitle .dian::before,
	.fa_htitle .tIcon::before,
	.fa_htitle .dian::after,
	.fa_htitle .tIcon::after,
	.leafs-lineup-mark::before,
	.leafs-lineup-mark::after {
		transform: none !important;
		opacity: 0.85 !important;
	}
}

/* legacy aliases (harmless no-ops for old refs) */
@keyframes span_l {
	0%, 100% { transform: translateX(-26px) rotate(45deg); }
	50% { transform: translateX(0) rotate(45deg); }
}
@keyframes span_r {
	0%, 100% { opacity: 0.55; }
	50% { opacity: 1; }
}
@keyframes zs-liquid-l {
	0%, 100% { transform: translateX(-26px) rotate(45deg); }
	50% { transform: translateX(0) rotate(45deg); }
}
@keyframes zs-liquid-r {
	0%, 100% { opacity: 0.55; }
	50% { opacity: 1; }
}

/*标题动画*/

*{
  word-wrap:break-word !important;
word-break:normal !important;
  font-family: "poppins-regular", Poppins, "Helvetica Neue", Arial, sans-serif !important;
}

.leafs-p-c_mbtn{
  background:var(--color1) !important;
}

::-webkit-scrollbar{width:8px;border-radius:3px;background-color:#e8eaee}
::-webkit-scrollbar-track{border-radius:3px;background-color:#e8eaee}
::-webkit-scrollbar-thumb{border-radius:4px;background-color:#b8c0cc}
::-webkit-scrollbar-thumb:hover{background-color:#9aa3b2}

div[class^=leafs-el-cookie-] .btn-primary{
    background: var(--color1);
    border-color: var(--color1);
}
div[class^=leafs-el-cookie-] .btn-outline-primary{
    color: var(--color1);
    border-color: var(--color1);
}
.custom-control-input:checked ~ .custom-control-label::before{
    background: var(--color1);
    border-color: var(--color1);
}



.c-box1{
	transition: 0.5s;
	opacity: 0;	
}
.c-box1 div {
    position: absolute;
    top: 50%;
    left: 50%;
	transform: translate(-50%,-50%);
    width:20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color1);
    animation: round1 3s linear infinite;
    opacity: 0.5;
	z-index: 3;
}
.c-box1 div:nth-child(2) {
    animation: round1 3s 1s linear infinite;
}
.c-box1 div:nth-child(3) {
    animation: round1 3s 2s linear infinite;
}
@keyframes round1 {
0% {
    opacity: 1;
    transform:translate(-50%,-50%) scale(0);
}
100% {
    opacity: 0;
    transform:translate(-50%,-50%) scale(3.5);
}
}

.zs-404 {
	box-sizing: border-box;
	max-width: 760px;
	margin: 0 auto;
	padding: 96px 24px 120px;
	text-align: center;
}
.zs-404__code {
	margin: 0 0 8px;
	font-size: 56px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #e11d2e;
}
.zs-404 h1 {
	margin: 0 0 16px;
	font-size: 32px;
	line-height: 1.3;
}
.zs-404 p {
	margin: 0 0 20px;
	color: #4b5563;
	font-size: 16px;
	line-height: 1.6;
}
.zs-404__actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}
.zs-404__actions a {
	display: inline-block;
	padding: 12px 22px;
	background: #e11d2e;
	color: #fff !important;
	text-decoration: none;
	font-weight: 600;
	border-radius: 2px;
}
.zs-404__actions a:last-child {
	background: #0d1b2a;
}

/* Side float dock */
.zs-float {
	position: fixed;
	right: 16px;
	bottom: 88px;
	z-index: 1200;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	pointer-events: none;
}
.zs-float__hours {
	margin: 0;
	padding: 6px 10px;
	background: rgba(15, 23, 42, 0.86);
	color: #fff;
	font-size: 11px;
	line-height: 1.35;
	border-radius: 2px;
	max-width: 160px;
	pointer-events: none;
}
.zs-float__btn,
.zs-float__wechat {
	pointer-events: auto;
}
.zs-float__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 12px;
	border: 0;
	border-radius: 22px;
	background: var(--color1, #284a9c);
	color: #fff !important;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none !important;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.22);
	cursor: pointer;
}
.zs-float__btn--wa { background: #25d366; }
.zs-float__btn--mail { background: #1f90ba; }
.zs-float__btn--wx { background: #07c160; }
.zs-float__btn--pdf { background: #0d1b2a; }
.zs-float__wechat { position: relative; }
.zs-float__qr {
	display: none;
	position: absolute;
	right: calc(100% + 10px);
	bottom: 0;
	padding: 8px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.2);
}
.zs-float__qr img {
	display: block;
	width: 120px;
	height: auto;
}
.zs-float__wechat:hover .zs-float__qr,
.zs-float__wechat:focus-within .zs-float__qr {
	display: block;
}
@media (max-width: 768px) {
	.zs-float { right: 10px; bottom: 72px; }
	.zs-float__hours { display: none; }
	.zs-float__btn span { display: none; }
	.zs-float__btn { width: 44px; padding: 0; }
}

.zs-why__brand {
	margin: 8px 0 0;
	font-size: 13px;
	letter-spacing: 0.18em;
	font-weight: 700;
	color: var(--color1, #284a9c);
}
.zs-why__cta {
	display: inline-flex;
	margin-top: 14px;
	padding: 8px 18px;
	background: var(--color1, #284a9c);
	color: #fff !important;
	text-decoration: none !important;
	font-size: 13px;
	font-weight: 600;
	border-radius: 2px;
}
.zs-samples__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 28px;
	margin: 12px 0 8px;
}
.zs-samples__stat {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.zs-samples__stat strong {
	font-size: 22px;
	color: var(--color1, #284a9c);
	line-height: 1.1;
}
.zs-samples__stat span {
	font-size: 12px;
	opacity: 0.78;
}
.zs-samples__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 8px 0 16px;
}
.zs-samples__btn {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	background: var(--color1, #284a9c);
	color: #fff !important;
	text-decoration: none !important;
	font-size: 13px;
	font-weight: 600;
	border-radius: 2px;
}
.zs-samples__btn--ghost {
	background: transparent;
	color: var(--color1, #284a9c) !important;
	box-shadow: inset 0 0 0 1px var(--color1, #284a9c);
}
.zs-hours {
	margin: 8px 0 0;
	font-size: 13px;
	opacity: 0.85;
}
.zs-who__photo {
	position: relative;
}
