@charset "UTF-8";
/* ==========================================================================
   AIMTE 埃姆特 —— 主题样式
   工业流体控制零部件 · 深蓝精密调性
   ========================================================================== */

/* ---------- 1. 设计变量 ---------- */
:root {
	--navy-900: #04121F;
	--navy-800: #071B2E;
	--navy-700: #0A2740;
	--navy-600: #0E3557;
	--blue-700: #0A4D8F;
	--blue-600: #0B5CA8;
	--blue-500: #1276CC;
	--cyan-500: #00A6E0;
	--cyan-400: #2ABCF0;

	--ink: #12222F;
	--ink-2: #2C3E4E;
	--muted: #67798B;
	--muted-2: #93A3B2;
	--line: #E4EAF1;
	--line-2: #EFF3F8;
	--soft: #F5F8FB;
	--white: #FFFFFF;

	--container: 1200px;
	--radius: 6px;
	--radius-sm: 4px;

	--shadow-sm: 0 2px 10px rgba(9, 32, 58, .05);
	--shadow-md: 0 14px 34px rgba(9, 32, 58, .09);
	--shadow-lg: 0 26px 60px rgba(9, 32, 58, .14);

	--tr: .32s cubic-bezier(.22, .61, .36, 1);

	--font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB",
		"Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC", Arial, sans-serif;
	--font-num: "SF Mono", "DIN Alternate", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- 2. 基础 ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font);
	font-size: 15px;
	line-height: 1.75;
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color var(--tr), opacity var(--tr); }
a:hover { color: var(--blue-600); }

h1, h2, h3, h4, h5 { margin: 0 0 .6em; font-weight: 600; line-height: 1.28; letter-spacing: -.01em; color: var(--ink); }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

.aimte-container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.aimte-shell { overflow: clip; }
.aimte-main { display: block; }

.aimte-i { width: 20px; height: 20px; flex: none; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.aimte-skip { position: absolute; left: -9999px; }
.aimte-skip:focus { left: 12px; top: 12px; z-index: 9999; background: #fff; padding: 8px 14px; }

.aimte-adminbar {
	background: #FFF6E5; color: #7A4B00; border-bottom: 1px solid #F2DDB4;
	font-size: 13px; padding: 7px 16px; text-align: center;
}
.aimte-adminbar a { color: #7A4B00; text-decoration: underline; }

/* ---------- 3. 按钮 ---------- */
.aimte-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	padding: 13px 26px; border-radius: var(--radius-sm); border: 1px solid transparent;
	font-size: 14px; font-weight: 600; letter-spacing: .01em; line-height: 1.2;
	text-align: center; transition: all var(--tr); white-space: nowrap;
}
.aimte-btn .aimte-i { width: 17px; height: 17px; transition: transform var(--tr); }
.aimte-btn:hover .aimte-i { transform: translateX(3px); }

.aimte-btn--primary { background: var(--blue-600); color: #fff; box-shadow: 0 8px 20px rgba(11, 92, 168, .22); }
.aimte-btn--primary:hover { background: var(--blue-500); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(11, 92, 168, .28); }

.aimte-btn--line { border-color: rgba(255, 255, 255, .35); color: #fff; }
.aimte-btn--line:hover { border-color: var(--cyan-400); color: var(--cyan-400); background: rgba(0, 166, 224, .08); }

.aimte-btn--ghost { border-color: var(--line); color: var(--ink-2); background: #fff; }
.aimte-btn--ghost:hover { border-color: var(--blue-600); color: var(--blue-600); }

.aimte-btn--sm { padding: 10px 18px; font-size: 13px; }
.aimte-btn--lg { padding: 15px 32px; font-size: 15px; }

.aimte-link {
	display: inline-flex; align-items: center; gap: 7px;
	font-size: 14px; font-weight: 600; color: var(--blue-600);
}
.aimte-link .aimte-i { width: 16px; height: 16px; transition: transform var(--tr); }
.aimte-link:hover .aimte-i { transform: translateX(4px); }

/* ---------- 4. 顶部信息条 ---------- */
.aimte-topbar { background: var(--navy-800); color: rgba(255, 255, 255, .72); font-size: 13px; }
.aimte-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 42px; }
.aimte-topbar__tagline { margin: 0; letter-spacing: .02em; }
.aimte-topbar__meta { display: flex; align-items: center; gap: 22px; }
.aimte-topbar__meta a { display: inline-flex; align-items: center; gap: 7px; color: rgba(255, 255, 255, .72); }
.aimte-topbar__meta a:hover { color: #fff; }
.aimte-topbar__meta .aimte-i { width: 15px; height: 15px; opacity: .8; }
.aimte-lang { border-left: 1px solid rgba(255, 255, 255, .16); padding-left: 22px; }
.aimte-lang--block { border: 0; padding: 0; }

/* ---------- 5. 页头 / 导航 ---------- */
.aimte-header {
	position: sticky; top: 0; z-index: 60;
	background: rgba(255, 255, 255, .94);
	backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow var(--tr), background var(--tr);
}
.aimte-header.is-stuck { box-shadow: 0 6px 24px rgba(9, 32, 58, .07); }
.aimte-header__inner { display: flex; align-items: center; gap: 28px; min-height: 78px; }

.aimte-brand { flex: none; }
.aimte-brand__logo img { max-height: 46px; width: auto; }
.aimte-brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.aimte-brand__mark {
	font-family: var(--font-num); font-size: 25px; font-weight: 700; letter-spacing: .14em;
	color: var(--navy-700);
}
.aimte-brand__cn { font-size: 11px; letter-spacing: .18em; color: var(--muted); margin-top: 3px; }

.aimte-nav { margin-left: auto; }
.aimte-menu { display: flex; align-items: center; gap: 4px; }
.aimte-menu > li { position: relative; }
.aimte-menu > li > a {
	display: block; padding: 10px 15px; font-size: 15px; font-weight: 500; color: var(--ink-2);
	border-radius: var(--radius-sm); position: relative;
}
.aimte-menu > li > a::after {
	content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px;
	background: var(--blue-600); transform: scaleX(0); transform-origin: left; transition: transform var(--tr);
}
.aimte-menu > li:hover > a,
.aimte-menu > li.current-menu-item > a,
.aimte-menu > li.current-menu-ancestor > a { color: var(--blue-600); }
.aimte-menu > li:hover > a::after,
.aimte-menu > li.current-menu-item > a::after,
.aimte-menu > li.current-menu-ancestor > a::after { transform: scaleX(1); }

.aimte-menu .sub-menu {
	position: absolute; top: calc(100% + 10px); left: 0; min-width: 210px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	box-shadow: var(--shadow-md); padding: 8px; opacity: 0; visibility: hidden;
	transform: translateY(8px); transition: all var(--tr); z-index: 30;
}
.aimte-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.aimte-menu .sub-menu a { display: block; padding: 9px 14px; border-radius: var(--radius-sm); font-size: 14px; color: var(--ink-2); }
.aimte-menu .sub-menu a:hover { background: var(--soft); color: var(--blue-600); }

.aimte-header__actions { display: flex; align-items: center; gap: 12px; flex: none; }

.aimte-burger {
	display: none; width: 42px; height: 42px; align-items: center; justify-content: center;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--ink);
}
.aimte-burger:hover { border-color: var(--blue-600); color: var(--blue-600); }

/* ---------- 6. 移动抽屉 ---------- */
.aimte-drawer {
	position: fixed; inset: 0 0 0 auto; width: min(86vw, 380px); z-index: 200;
	background: #fff; box-shadow: -20px 0 60px rgba(4, 18, 31, .18);
	display: flex; flex-direction: column; padding: 18px 20px 26px; overflow-y: auto;
	animation: aimte-drawer-in .28s ease;
}
@keyframes aimte-drawer-in { from { transform: translateX(100%); } to { transform: translateX(0); } }

.aimte-drawer[hidden] { display: none; }

.aimte-drawer__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.aimte-drawer__close { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; background: none; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--ink); }
.aimte-drawer__nav { padding: 12px 0; flex: 1; }
.aimte-drawer__nav .aimte-menu { display: block; }
.aimte-drawer__nav .aimte-menu > li > a { padding: 13px 4px; font-size: 16px; border-bottom: 1px solid var(--line-2); border-radius: 0; }
.aimte-drawer__nav .aimte-menu > li > a::after { display: none; }
.aimte-drawer__nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 14px; }
.aimte-drawer__foot { display: grid; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.aimte-drawer__tel { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--navy-700); }

/* ---------- 7. Hero ---------- */
.aimte-hero {
	position: relative; overflow: hidden; background: var(--navy-800); color: #fff;
	padding: 86px 0 0;
}
.aimte-hero__bg {
	position: absolute; inset: 0;
	background-image: var(--aimte-hero-img, none);
	background-size: cover; background-position: center;
	opacity: .42;
}
.aimte-hero::before {
	content: ""; position: absolute; inset: 0;
	background:
		radial-gradient(1000px 520px at 12% 8%, rgba(0, 166, 224, .22), transparent 62%),
		linear-gradient(160deg, rgba(4, 18, 31, .96) 0%, rgba(7, 27, 46, .92) 42%, rgba(10, 39, 64, .86) 100%);
}
.aimte-hero__grid {
	position: absolute; inset: 0; opacity: .5;
	background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(80% 70% at 50% 30%, #000 30%, transparent 100%);
	-webkit-mask-image: radial-gradient(80% 70% at 50% 30%, #000 30%, transparent 100%);
}
.aimte-hero__inner {
	position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) 352px;
	gap: 56px; align-items: center; padding-bottom: 74px;
}
.aimte-hero__badge {
	display: inline-flex; align-items: center; gap: 10px; margin: 0 0 22px;
	padding: 7px 15px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 100px;
	font-size: 13px; letter-spacing: .04em; color: rgba(255, 255, 255, .82);
	background: rgba(255, 255, 255, .05);
}
.aimte-hero__badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan-400); box-shadow: 0 0 0 4px rgba(42, 188, 240, .18); }
.aimte-hero__title {
	font-size: clamp(31px, 4.4vw, 54px); line-height: 1.16; font-weight: 700;
	letter-spacing: -.02em; color: #fff; margin: 0 0 20px; max-width: 15em;
}
.aimte-hero__sub { font-size: 16px; line-height: 1.85; color: rgba(255, 255, 255, .72); max-width: 40em; margin: 0 0 34px; }
.aimte-hero__btns { display: flex; flex-wrap: wrap; gap: 14px; }

.aimte-hero__aside {
	background: rgba(255, 255, 255, .055); border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 10px; padding: 22px 22px 12px; backdrop-filter: blur(10px);
}
.aimte-hero__aside-title {
	margin: 0 0 12px; font-family: var(--font-num); font-size: 12px; letter-spacing: .22em;
	color: var(--cyan-400);
}
.aimte-hero__aside li a {
	display: flex; align-items: center; gap: 12px; padding: 12px 0;
	border-top: 1px solid rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .86); font-size: 14.5px;
}
.aimte-hero__aside li:first-child a { border-top: 0; }
.aimte-hero__aside li a:hover { color: #fff; }
.aimte-hero__aside .aimte-i { width: 19px; height: 19px; color: var(--cyan-400); }
.aimte-hero__aside em { margin-left: auto; font-style: normal; font-family: var(--font-num); font-size: 12px; color: rgba(255, 255, 255, .45); }

.aimte-hero__stats { position: relative; z-index: 2; border-top: 1px solid rgba(255, 255, 255, .12); background: rgba(4, 18, 31, .5); }
.aimte-hero__stats ul { display: grid; grid-template-columns: repeat(4, 1fr); }
.aimte-hero__stats li { padding: 24px 8px; text-align: center; border-left: 1px solid rgba(255, 255, 255, .1); }
.aimte-hero__stats li:first-child { border-left: 0; }
.aimte-hero__stats strong {
	display: block; font-family: var(--font-num); font-size: 30px; font-weight: 700;
	line-height: 1.1; color: #fff;
}
.aimte-hero__stats span { font-size: 13px; color: rgba(255, 255, 255, .6); }

/* ---------- 8. 区块与标题 ---------- */
.aimte-sec { padding: 92px 0; position: relative; }
.aimte-sec--soft { background: var(--soft); }
.aimte-sec--dark { background: var(--navy-800); color: rgba(255, 255, 255, .78); }
.aimte-sec--dark .aimte-head__title { color: #fff; }
.aimte-sec--dark .aimte-head__sub { color: rgba(255, 255, 255, .62); }
.aimte-sec--cta { background: var(--navy-800); color: rgba(255, 255, 255, .78); padding: 0; }

.aimte-sec__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 46px; }
.aimte-sec__top .aimte-head { margin-bottom: 0; }

.aimte-head { margin-bottom: 46px; max-width: 46em; }
.aimte-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.aimte-kicker {
	margin: 0 0 12px; font-family: var(--font-num); font-size: 12px; font-weight: 600;
	letter-spacing: .24em; color: var(--blue-600); text-transform: uppercase;
}
.aimte-sec--dark .aimte-kicker { color: var(--cyan-400); }
.aimte-head__title { font-size: clamp(23px, 2.7vw, 34px); letter-spacing: -.02em; margin: 0 0 14px; }
.aimte-head__sub { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.85; }

.aimte-h2 { font-size: clamp(19px, 2vw, 24px); margin: 0 0 22px; padding-left: 14px; border-left: 3px solid var(--blue-600); }
.aimte-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.aimte-empty { padding: 60px 0; text-align: center; color: var(--muted); }

/* ---------- 9. 栅格 ---------- */
.aimte-grid { display: grid; gap: 24px; }
.aimte-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.aimte-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* ---------- 10. 优势卡 ---------- */
.aimte-card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 32px 26px; transition: all var(--tr); position: relative; overflow: hidden;
}
.aimte-card::after {
	content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 2px;
	background: linear-gradient(90deg, var(--blue-600), var(--cyan-500));
	transform: scaleX(0); transform-origin: left; transition: transform var(--tr);
}
.aimte-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #D6E1EC; }
.aimte-card:hover::after { transform: scaleX(1); }
.aimte-card__ico {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; margin-bottom: 20px; border-radius: var(--radius-sm);
	background: linear-gradient(140deg, #EAF3FB, #F6FAFD); color: var(--blue-600);
	border: 1px solid #DCE8F4;
}
.aimte-card__ico .aimte-i { width: 23px; height: 23px; }
.aimte-card--adv h3 { font-size: 17px; margin: 0 0 10px; }
.aimte-card--adv p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ---------- 11. 产品卡 ---------- */
.aimte-products { align-items: stretch; }
.aimte-pcard {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	overflow: hidden; transition: all var(--tr);
}
.aimte-pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #D6E1EC; }
.aimte-pcard__link { display: flex; flex-direction: column; height: 100%; }
.aimte-pcard__media { position: relative; overflow: hidden; aspect-ratio: 3 / 2; background: var(--navy-700); }
.aimte-pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22, .61, .36, 1); }
.aimte-pcard:hover .aimte-pcard__media img { transform: scale(1.045); }
.aimte-pcard__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.aimte-pcard__body h3 { font-size: 18px; margin: 0 0 10px; }
.aimte-pcard__body p { font-size: 14px; color: var(--muted); line-height: 1.78; margin: 0 0 18px; }
.aimte-pcard__meta {
	display: inline-block; align-self: flex-start; margin-bottom: 16px; padding: 3px 11px;
	font-size: 12px; color: var(--blue-600); background: #EFF6FC; border-radius: 100px;
	font-family: var(--font-num); letter-spacing: .02em;
}
.aimte-pcard__model {
	display: inline-block; align-self: flex-start; margin-bottom: 10px; padding: 2px 10px;
	font-family: var(--font-num); font-size: 12px; letter-spacing: .06em; color: var(--muted);
	border: 1px solid var(--line); border-radius: 3px;
}
.aimte-pcard__more {
	display: inline-flex; align-items: center; gap: 6px; margin-top: auto;
	font-size: 13.5px; font-weight: 600; color: var(--blue-600);
}
.aimte-pcard__more .aimte-i { width: 15px; height: 15px; transition: transform var(--tr); }
.aimte-pcard:hover .aimte-pcard__more .aimte-i { transform: translateX(4px); }

/* ---------- 12. 占位视觉 ---------- */
.aimte-ph { position: relative; width: 100%; height: 100%; background: var(--navy-700); overflow: hidden; }
.aimte-ph svg { display: block; width: 100%; height: 100%; }
.aimte-ph.has-img { background: none; }
.aimte-ph.has-img img { width: 100%; height: 100%; object-fit: cover; }
.aimte-ph__tag {
	position: absolute; left: 12px; bottom: 10px; font-size: 11px; letter-spacing: .04em;
	color: rgba(255, 255, 255, .6); background: rgba(4, 18, 31, .55);
	padding: 3px 9px; border-radius: 3px;
}

/* ---------- 13. 应用领域 ---------- */
.aimte-apps { gap: 1px; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius); overflow: hidden; }
.aimte-acard {
	background: var(--navy-800); padding: 34px 28px; transition: background var(--tr);
	position: relative;
}
.aimte-acard:hover { background: var(--navy-700); }
.aimte-acard__ico { display: inline-flex; color: var(--cyan-400); margin-bottom: 18px; }
.aimte-acard__ico .aimte-i { width: 26px; height: 26px; }
.aimte-acard h3 { font-size: 16.5px; color: #fff; margin: 0 0 10px; }
.aimte-acard p { margin: 0; font-size: 13.5px; line-height: 1.8; color: rgba(255, 255, 255, .6); }

/* ---------- 14. 关于我们 ---------- */
.aimte-about { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 60px; align-items: center; }
.aimte-about--reverse .aimte-about__text { order: 2; }
.aimte-about--reverse .aimte-about__media { order: 1; }
.aimte-about .aimte-head { margin-bottom: 26px; }
.aimte-about__text p { color: var(--ink-2); line-height: 1.95; font-size: 15.5px; }
.aimte-about__points { margin: 26px 0 32px; display: grid; gap: 12px; }
.aimte-about__points li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-2); }
.aimte-about__points .aimte-i { width: 18px; height: 18px; color: var(--blue-600); margin-top: 4px; }
.aimte-about__media {
	border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
	box-shadow: var(--shadow-md); aspect-ratio: 4 / 3; background: var(--navy-700);
}
.aimte-about__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 15. 流程 ---------- */
.aimte-flow { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; counter-reset: none; }
.aimte-flow li { position: relative; padding-top: 26px; border-top: 2px solid var(--line); }
.aimte-flow li::before {
	content: ""; position: absolute; left: 0; top: -2px; width: 46px; height: 2px; background: var(--blue-600);
}
.aimte-flow__no {
	display: block; font-family: var(--font-num); font-size: 26px; font-weight: 700;
	color: #C9D8E6; letter-spacing: .04em; margin-bottom: 8px;
}
.aimte-flow h3 { font-size: 16.5px; margin: 0 0 8px; }
.aimte-flow p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ---------- 16. 新闻卡 ---------- */
.aimte-ncard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all var(--tr); }
.aimte-ncard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #D6E1EC; }
.aimte-ncard__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-700); }
.aimte-ncard__media img { transition: transform .6s cubic-bezier(.22, .61, .36, 1); }
.aimte-ncard:hover .aimte-ncard__media img { transform: scale(1.045); }
.aimte-ncard__body { padding: 22px 24px 26px; }
.aimte-ncard__body time { display: block; font-family: var(--font-num); font-size: 12.5px; color: var(--muted-2); letter-spacing: .06em; margin-bottom: 10px; }
.aimte-ncard__body h3 { font-size: 16.5px; line-height: 1.5; margin: 0 0 10px; }
.aimte-ncard__body p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.8; }

/* ---------- 17. 询盘区 ---------- */
.aimte-cta { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 520px); gap: 56px; padding: 84px 24px; align-items: start; }
.aimte-cta__text h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); margin: 0 0 16px; }
.aimte-cta__text p { color: rgba(255, 255, 255, .68); font-size: 15.5px; line-height: 1.9; max-width: 34em; }
.aimte-cta__list { margin-top: 30px; display: grid; gap: 14px; }
.aimte-cta__list li { display: flex; align-items: center; gap: 11px; color: rgba(255, 255, 255, .85); font-size: 15px; }
.aimte-cta__list .aimte-i { color: var(--cyan-400); }
.aimte-cta__form { background: #fff; border-radius: 10px; padding: 32px 30px; box-shadow: var(--shadow-lg); }
.aimte-cta__form h3 { font-size: 18px; margin: 0 0 20px; }

/* ---------- 18. 表单 ---------- */
.aimte-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.aimte-field { display: block; }
.aimte-field--full { display: block; margin-top: 14px; }
.aimte-field > span { display: block; font-size: 13px; color: var(--ink-2); margin-bottom: 7px; font-weight: 500; }
.aimte-field > span i { color: #D64545; font-style: normal; margin-left: 3px; }
.aimte-field input,
.aimte-field textarea {
	width: 100%; padding: 11px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
	background: #FBFDFE; transition: all var(--tr); font-size: 14.5px; resize: vertical;
}
.aimte-field input:focus,
.aimte-field textarea:focus { outline: none; border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 3px rgba(18, 118, 204, .1); }
.aimte-field input.is-error,
.aimte-field textarea.is-error { border-color: #D64545; }
.aimte-form__foot { display: flex; align-items: center; gap: 18px; margin-top: 20px; flex-wrap: wrap; }
.aimte-form__privacy { margin: 0; font-size: 12px; color: var(--muted-2); flex: 1; min-width: 180px; }
.aimte-form__msg { margin: 14px 0 0; font-size: 14px; display: none; }
.aimte-form__msg.is-ok { display: block; color: #1D8A4E; }
.aimte-form__msg.is-err { display: block; color: #D64545; }

/* ---------- 19. 页脚 ---------- */
.aimte-footer { background: var(--navy-900); color: rgba(255, 255, 255, .62); padding: 74px 0 0; font-size: 14px; }
.aimte-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 46px; }
.aimte-footer__col h3 {
	font-size: 15px; color: #fff; margin: 0 0 20px; padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .1); font-weight: 600;
}
.aimte-footer__col ul { display: grid; gap: 11px; }
.aimte-footer__col li { line-height: 1.7; }
.aimte-footer__col a { color: rgba(255, 255, 255, .62); }
.aimte-footer__col a:hover { color: var(--cyan-400); }
.aimte-footer__col--brand .aimte-brand__mark { color: #fff; font-size: 27px; }
.aimte-footer__desc { margin: 16px 0 0; line-height: 1.9; font-size: 13.5px; color: rgba(255, 255, 255, .55); max-width: 30em; }
.aimte-footer__qr { margin-top: 20px; display: inline-flex; align-items: center; gap: 12px; }
.aimte-footer__qr img { width: 84px; height: 84px; border-radius: 4px; background: #fff; padding: 4px; }
.aimte-footer__qr span { font-size: 12px; color: rgba(255, 255, 255, .45); }
.aimte-footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.aimte-footer__contact .aimte-i { width: 16px; height: 16px; margin-top: 5px; color: var(--cyan-500); flex: none; }
.aimte-footer__col .aimte-btn { margin-top: 20px; }
.aimte-footer__bar { margin-top: 58px; border-top: 1px solid rgba(255, 255, 255, .09); padding: 20px 0; font-size: 13px; }
.aimte-footer__bar p { margin: 0; }
.aimte-footer__bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.aimte-footer__legal { display: flex; gap: 18px; }
.aimte-footer__legal a { color: rgba(255, 255, 255, .5); }

/* ---------- 20. 返回顶部 ---------- */
.aimte-totop {
	position: fixed; right: 22px; bottom: 26px; z-index: 90;
	width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
	background: var(--blue-600); color: #fff; border: 0; border-radius: var(--radius-sm);
	box-shadow: 0 10px 26px rgba(11, 92, 168, .3);
	opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--tr);
}
.aimte-totop.is-on { opacity: 1; visibility: visible; transform: translateY(0); }
.aimte-totop .aimte-i { transform: rotate(-90deg); }

/* ---------- 21. 内页头部 / 面包屑 ---------- */
.aimte-hero-page {
	position: relative; background: var(--navy-800); color: #fff; padding: 66px 0 62px; overflow: hidden;
}
.aimte-hero-page::before {
	content: ""; position: absolute; inset: 0;
	background:
		radial-gradient(760px 380px at 8% 0%, rgba(0, 166, 224, .2), transparent 60%),
		linear-gradient(120deg, var(--navy-800), var(--navy-600));
}
.aimte-hero-page::after {
	content: ""; position: absolute; inset: 0; opacity: .45;
	background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(70% 100% at 30% 0%, #000 20%, transparent 100%);
	-webkit-mask-image: radial-gradient(70% 100% at 30% 0%, #000 20%, transparent 100%);
}
.aimte-hero-page .aimte-container { position: relative; z-index: 2; }
.aimte-hero-page h1 { font-size: clamp(24px, 3vw, 38px); color: #fff; margin: 0; letter-spacing: -.02em; }
.aimte-hero-page__sub { margin: 16px 0 0; color: rgba(255, 255, 255, .68); font-size: 15.5px; line-height: 1.85; max-width: 46em; }
.aimte-hero-page--slim { padding: 54px 0 50px; }

.aimte-crumb { background: var(--soft); border-bottom: 1px solid var(--line); font-size: 13px; }
.aimte-crumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 0; padding: 13px 0; }
.aimte-crumb li { display: flex; align-items: center; color: var(--muted); }
.aimte-crumb li::after { content: "/"; margin: 0 10px; color: #C6D2DE; }
.aimte-crumb li:last-child::after { display: none; }
.aimte-crumb a { color: var(--muted); }
.aimte-crumb a:hover { color: var(--blue-600); }
.aimte-crumb li:last-child span { color: var(--ink-2); font-weight: 500; }

/* ---------- 22. 分类 Tabs / 分页 ---------- */
.aimte-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.aimte-tabs a {
	padding: 9px 20px; border: 1px solid var(--line); border-radius: 100px;
	font-size: 14px; color: var(--ink-2); background: #fff; transition: all var(--tr);
}
.aimte-tabs a:hover { border-color: var(--blue-500); color: var(--blue-600); }
.aimte-tabs a.is-active { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }

.aimte-pager { margin-top: 50px; }
.aimte-pager ul { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.aimte-pager a, .aimte-pager span {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--line);
	border-radius: var(--radius-sm); color: var(--ink-2); font-family: var(--font-num); font-size: 14px;
}
.aimte-pager a:hover { border-color: var(--blue-500); color: var(--blue-600); }
.aimte-pager .is-current span { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }

/* ---------- 23. 产品详情 ---------- */
.aimte-pdetail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: start; }
.aimte-pdetail__media {
	border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
	background: var(--navy-700); aspect-ratio: 1 / 1; position: relative;
}
.aimte-pdetail__media img { width: 100%; height: 100%; object-fit: cover; }
.aimte-pdetail__mediahint { position: absolute; left: 0; right: 0; bottom: 0; margin: 0; padding: 9px 14px; font-size: 12px; color: rgba(255, 255, 255, .6); background: rgba(4, 18, 31, .62); }
.aimte-pdetail__model, .aimte-pdetail__cat { display: flex; align-items: center; gap: 12px; font-size: 14px; margin: 0 0 12px; }
.aimte-pdetail__model span, .aimte-pdetail__cat span { font-size: 12.5px; color: var(--muted); min-width: 62px; }
.aimte-pdetail__model { font-family: var(--font-num); font-size: 15px; font-weight: 600; color: var(--blue-600); letter-spacing: .04em; }
.aimte-pdetail__cat a { color: var(--blue-600); }
.aimte-pdetail__lead { font-size: 16px; line-height: 1.9; color: var(--ink-2); margin: 22px 0 0; }
.aimte-pdetail__points { display: grid; gap: 11px; margin: 24px 0 30px; }
.aimte-pdetail__points li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.aimte-pdetail__points .aimte-i { width: 17px; height: 17px; color: var(--blue-600); margin-top: 4px; }
.aimte-pdetail__btns { display: flex; flex-wrap: wrap; gap: 12px; }

.aimte-pinfo { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 50px; align-items: start; }
.aimte-pinfo__side { position: sticky; top: 104px; }
.aimte-pbox { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.aimte-pbox h3 { font-size: 15.5px; margin: 0 0 16px; }
.aimte-pbox ul { display: grid; gap: 12px; margin-bottom: 20px; }
.aimte-pbox li { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--ink-2); }
.aimte-pbox .aimte-i { width: 16px; height: 16px; color: var(--blue-600); }
.aimte-pbox .aimte-btn { width: 100%; }

.aimte-prose { font-size: 15.5px; line-height: 2; color: var(--ink-2); }
.aimte-prose p { margin: 0 0 1.2em; }
.aimte-prose h2 { font-size: 21px; margin: 1.8em 0 .8em; }
.aimte-prose h3 { font-size: 17px; margin: 1.6em 0 .7em; }
.aimte-prose ul, .aimte-prose ol { margin: 0 0 1.2em; padding-left: 1.3em; list-style: disc; }
.aimte-prose ol { list-style: decimal; }
.aimte-prose li { margin-bottom: .5em; }
.aimte-prose img { border-radius: var(--radius); margin: 1.4em 0; }
.aimte-prose blockquote {
	margin: 1.4em 0; padding: 14px 20px; border-left: 3px solid var(--blue-600);
	background: var(--soft); color: var(--ink-2);
}
.aimte-prose--narrow { max-width: 52em; margin: 0 auto; }

.aimte-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.aimte-table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 480px; }
.aimte-table th, .aimte-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.aimte-table thead th { background: var(--navy-800); color: #fff; font-weight: 600; font-size: 13.5px; letter-spacing: .04em; }
.aimte-table tbody th { background: var(--soft); font-weight: 500; color: var(--ink-2); width: 40%; }
.aimte-table tbody tr:last-child th, .aimte-table tbody tr:last-child td { border-bottom: 0; }
.aimte-table tbody tr:hover td { background: #FBFDFF; }

.aimte-pinfo + .aimte-container,
.aimte-pinfo ~ .aimte-container { margin-top: 62px; }

/* ---------- 24. 文章页 ---------- */
.aimte-article { max-width: 860px; }
.aimte-article__foot { margin-top: 54px; padding-top: 28px; border-top: 1px solid var(--line); }
.aimte-navlinks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 26px; }
.aimte-navlinks a {
	display: block; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius);
	background: #fff; transition: all var(--tr);
}
.aimte-navlinks a:hover { border-color: var(--blue-500); box-shadow: var(--shadow-sm); }
.aimte-navlinks span { display: block; font-size: 12.5px; color: var(--muted); margin-bottom: 6px; }
.aimte-navlinks strong { display: block; font-size: 14.5px; font-weight: 500; line-height: 1.6; color: var(--ink); }
.aimte-navlinks__next { text-align: right; }

/* ---------- 25. 数据条 ---------- */
.aimte-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.aimte-stats li { background: #fff; padding: 34px 20px; text-align: center; }
.aimte-stats strong { display: block; font-family: var(--font-num); font-size: 36px; font-weight: 700; color: var(--navy-700); line-height: 1.1; }
.aimte-stats span { font-size: 13.5px; color: var(--muted); }

/* ---------- 26. FAQ ---------- */
.aimte-faq { max-width: 900px; }
.aimte-faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.aimte-faq__item summary {
	position: relative; padding: 20px 56px 20px 24px; cursor: pointer; font-size: 15.5px;
	font-weight: 600; color: var(--ink); list-style: none;
}
.aimte-faq__item summary::-webkit-details-marker { display: none; }
.aimte-faq__item summary span::before,
.aimte-faq__item summary span::after {
	content: ""; position: absolute; right: 24px; top: 50%; width: 13px; height: 2px;
	background: var(--blue-600); transition: transform var(--tr);
}
.aimte-faq__item summary span::before { transform: translateY(-50%); }
.aimte-faq__item summary span::after { transform: translateY(-50%) rotate(90deg); }
.aimte-faq__item[open] summary span::after { transform: translateY(-50%) rotate(0); }
.aimte-faq__item p { margin: 0; padding: 0 24px 22px; color: var(--muted); line-height: 1.9; font-size: 14.5px; }
.aimte-faq__item[open] { border-color: #D6E1EC; box-shadow: var(--shadow-sm); }

/* ---------- 27. 联系我们 ---------- */
.aimte-contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: start; }
.aimte-contact__list { margin-top: 30px; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.aimte-contact__list li {
	display: grid; grid-template-columns: 24px 84px 1fr; gap: 14px; align-items: center;
	background: #fff; padding: 18px 22px;
}
.aimte-contact__list .aimte-i { width: 20px; height: 20px; color: var(--blue-600); }
.aimte-contact__list span { font-size: 13.5px; color: var(--muted); }
.aimte-contact__list a, .aimte-contact__list em { font-style: normal; font-size: 15px; color: var(--ink); font-weight: 500; }
.aimte-contact__list a:hover { color: var(--blue-600); }
.aimte-contact__form { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; }
.aimte-map { line-height: 0; border-top: 1px solid var(--line); }
.aimte-map iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- 28. 404 ---------- */
.aimte-404 { text-align: center; padding: 110px 0 120px; }
.aimte-404__code { font-family: var(--font-num); font-size: clamp(72px, 12vw, 140px); font-weight: 700; line-height: 1; margin: 0 0 10px; color: #E4EBF2; letter-spacing: .02em; }
.aimte-404 h1 { font-size: clamp(22px, 2.6vw, 30px); margin: 0 0 14px; }
.aimte-404__inner p { color: var(--muted); max-width: 34em; margin: 0 auto 30px; }
.aimte-404__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   29. 响应式
   ========================================================================== */

@media (max-width: 1180px) {
	.aimte-hero__inner { grid-template-columns: minmax(0, 1fr) 320px; gap: 40px; }
	.aimte-nav .aimte-menu > li > a { padding: 10px 11px; font-size: 14.5px; }
	.aimte-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
}

@media (max-width: 1024px) {
	.aimte-nav { display: none; }
	.aimte-burger { display: inline-flex; }
	.aimte-header__actions { margin-left: auto; }
	.aimte-hero { padding-top: 68px; }
	.aimte-hero__inner { grid-template-columns: minmax(0, 1fr); gap: 40px; padding-bottom: 56px; }
	.aimte-hero__aside { max-width: 560px; }
	.aimte-sec { padding: 72px 0; }
	.aimte-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.aimte-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.aimte-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
	.aimte-about, .aimte-contact, .aimte-pdetail, .aimte-pinfo { grid-template-columns: minmax(0, 1fr); gap: 40px; }
	.aimte-about--reverse .aimte-about__text { order: 1; }
	.aimte-about--reverse .aimte-about__media { order: 2; }
	.aimte-about__media { max-width: 680px; }
	.aimte-pinfo__side { position: static; }
	.aimte-cta { grid-template-columns: minmax(0, 1fr); gap: 40px; padding: 68px 24px; }
	.aimte-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
	.aimte-footer__bar { margin-top: 46px; }
	.aimte-pdetail__media { max-width: 620px; }
}

@media (max-width: 820px) {
	.aimte-topbar__tagline { display: none; }
	.aimte-topbar__inner { justify-content: flex-end; min-height: 40px; }
	.aimte-topbar__meta { gap: 16px; }
	.aimte-topbar__meta a span { display: none; }
	.aimte-lang { padding-left: 16px; }
	.aimte-lang span { display: inline; }
	.aimte-hero__stats ul { grid-template-columns: repeat(2, 1fr); }
	.aimte-hero__stats li:nth-child(odd) { border-left: 0; }
	.aimte-hero__stats li:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, .1); }
	.aimte-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.aimte-sec__top { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 34px; }
	.aimte-sec { padding: 60px 0; }
	.aimte-head { margin-bottom: 34px; }
	.aimte-navlinks { grid-template-columns: minmax(0, 1fr); }
	.aimte-navlinks__next { text-align: left; }
	.aimte-contact__list li { grid-template-columns: 22px 1fr; row-gap: 4px; }
	.aimte-contact__list span { grid-column: 2; }
	.aimte-contact__list a, .aimte-contact__list em { grid-column: 2; }
}

@media (max-width: 640px) {
	.aimte-container { padding: 0 18px; }
	.aimte-header__inner { min-height: 66px; gap: 14px; }
	.aimte-brand__mark { font-size: 22px; }
	.aimte-brand__cn { font-size: 10px; letter-spacing: .12em; }
	.aimte-header__actions .aimte-btn { display: none; }
	.aimte-hero { padding-top: 52px; }
	.aimte-hero__title { font-size: 30px; }
	.aimte-hero__sub { font-size: 15px; }
	.aimte-hero__btns { flex-direction: column; align-items: stretch; }
	.aimte-hero__btns .aimte-btn { width: 100%; }
	.aimte-sec { padding: 52px 0; }
	.aimte-grid--4, .aimte-grid--3 { grid-template-columns: minmax(0, 1fr); }
	.aimte-grid { gap: 18px; }
	.aimte-flow { grid-template-columns: minmax(0, 1fr); gap: 26px; }
	.aimte-apps { border-radius: var(--radius); }
	.aimte-card { padding: 26px 22px; }
	.aimte-form__grid { grid-template-columns: minmax(0, 1fr); }
	.aimte-cta__form { padding: 26px 20px; }
	.aimte-cta { padding: 54px 18px; }
	.aimte-footer { padding-top: 54px; }
	.aimte-footer__grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
	.aimte-footer__bar-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
	.aimte-hero-page { padding: 46px 0 42px; }
	.aimte-hero-page--slim { padding: 40px 0 36px; }
	.aimte-totop { right: 14px; bottom: 16px; }
	.aimte-pbox { padding: 22px 20px; }
	.aimte-table th, .aimte-table td { padding: 12px 14px; }
	.aimte-404 { padding: 72px 0 84px; }
	.aimte-map iframe { height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}

/* ---------- 30. 打印 ---------- */
@media print {
	.aimte-topbar, .aimte-header, .aimte-footer, .aimte-totop, .aimte-cta, .aimte-adminbar { display: none !important; }
	.aimte-hero-page { background: #fff; color: #000; }
	.aimte-hero-page h1 { color: #000; }
}

/* ==========================================================================
   31. 应用领域页（锚点导航 / 行业场景 / 选型对照）
   ========================================================================== */

.aimte-sec--tight { padding: 34px 0; }
.aimte-grid--2 { display: grid; gap: 24px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.aimte-i--sm { width: 15px; height: 15px; }

.aimte-anchorbar { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.aimte-anchorbar__label {
	font-family: var(--font-num); font-size: 12.5px; letter-spacing: .14em;
	text-transform: uppercase; color: var(--muted-2); flex: none;
}
.aimte-anchor { display: flex; gap: 10px; flex-wrap: wrap; }
.aimte-anchor a {
	display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px;
	border: 1px solid var(--line); border-radius: 100px; background: #fff;
	font-size: 13.5px; color: var(--ink-2); transition: all var(--tr);
}
.aimte-anchor .aimte-i { color: var(--blue-600); }
.aimte-anchor a:hover {
	border-color: var(--blue-500); color: var(--blue-600);
	box-shadow: var(--shadow-sm); transform: translateY(-1px);
}

.aimte-scene {
	position: relative; display: flex; flex-direction: column; background: #fff;
	border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
	transition: all var(--tr); scroll-margin-top: 130px;
}
.aimte-scene:hover { border-color: #D6E1EC; box-shadow: var(--shadow-md); }
.aimte-scene__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--navy-700); }
.aimte-scene__ico {
	position: absolute; left: 18px; top: 18px; width: 42px; height: 42px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	background: rgba(10, 39, 64, .72); border: 1px solid rgba(255, 255, 255, .28);
	color: var(--cyan-400); backdrop-filter: blur(2px);
}
.aimte-scene__ico .aimte-i { width: 21px; height: 21px; }
.aimte-scene__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.aimte-scene__body h3 { font-size: 18.5px; margin: 0 0 10px; }
.aimte-scene__sum { margin: 0 0 20px; font-size: 14px; color: var(--muted); line-height: 1.85; }
.aimte-scene__dl { margin: 0 0 20px; display: grid; gap: 12px; }
.aimte-scene__dl > div {
	display: grid; grid-template-columns: 80px minmax(0, 1fr); gap: 14px;
	padding-top: 12px; border-top: 1px dashed var(--line);
}
.aimte-scene__dl dt { font-size: 13px; color: var(--muted-2); }
.aimte-scene__dl dd { margin: 0; font-size: 13.5px; color: var(--ink-2); line-height: 1.8; }
.aimte-scene__dl-hl { border-top-style: solid !important; border-top-color: rgba(11, 92, 168, .22) !important; }
.aimte-scene__dl-hl dt { color: var(--blue-600); font-weight: 600; }
.aimte-scene__dl-hl dd { color: var(--ink); }
.aimte-scene__lines { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: auto; }
.aimte-scene__lines-label { font-size: 12.5px; color: var(--muted-2); margin-right: 2px; }

.aimte-chip {
	display: inline-flex; align-items: center; gap: 6px; padding: 6px 13px;
	border: 1px solid var(--line); border-radius: 100px; background: var(--soft);
	font-size: 13px; color: var(--blue-600); transition: all var(--tr);
}
.aimte-chip:hover { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }

.aimte-table--matrix { min-width: 980px; }
.aimte-table--matrix thead th { white-space: nowrap; font-size: 13px; }
.aimte-table--matrix td:nth-child(2),
.aimte-table--matrix td:nth-child(3),
.aimte-table--matrix td:nth-child(4) { font-family: var(--font-num); font-size: 13.5px; white-space: nowrap; }
.aimte-table--matrix td:nth-child(5) { color: var(--blue-600); font-weight: 500; }

.aimte-acard__link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.aimte-acard__lines { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.aimte-acard__lines em {
	font-style: normal; font-size: 12px; padding: 4px 11px; border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, .18); color: rgba(255, 255, 255, .68);
}
.aimte-apps__cta { text-align: center; margin: 40px 0 0; }

/* ==========================================================================
   32. 视频中心
   ========================================================================== */

.aimte-vcard {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	overflow: hidden; transition: all var(--tr);
}
.aimte-vcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #D6E1EC; }
.aimte-vcard__link { display: block; height: 100%; color: inherit; }
.aimte-vcard__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--navy-700); }
.aimte-vcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22, .61, .36, 1); }
.aimte-vcard:hover .aimte-vcard__media img { transform: scale(1.045); }
.aimte-vcard__play {
	position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
	width: 54px; height: 54px; border-radius: 50%; display: inline-flex;
	align-items: center; justify-content: center; color: #fff;
	background: rgba(4, 18, 31, .55); border: 1px solid rgba(255, 255, 255, .55);
	transition: all var(--tr); backdrop-filter: blur(2px);
}
.aimte-vcard__play .aimte-i { width: 18px; height: 18px; margin-left: 3px; }
.aimte-vcard:hover .aimte-vcard__play {
	background: var(--blue-600); border-color: var(--blue-600);
	transform: translate(-50%, -50%) scale(1.07);
}
.aimte-vcard__time {
	position: absolute; right: 10px; bottom: 10px; padding: 3px 8px; border-radius: 3px;
	background: rgba(4, 18, 31, .74); color: #fff;
	font-family: var(--font-num); font-size: 12px; letter-spacing: .04em;
}
.aimte-vcard__body { padding: 20px 22px 24px; }
.aimte-vcard__cat {
	display: inline-block; margin-bottom: 10px; padding: 3px 11px; border-radius: 100px;
	font-size: 12px; color: var(--blue-600); background: rgba(11, 92, 168, .08);
}
.aimte-vcard__body h3 { font-size: 16px; line-height: 1.5; margin: 0 0 8px; }
.aimte-vcard__body p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.8; }

.aimte-vcard--dark { background: var(--navy-700); border-color: rgba(255, 255, 255, .1); }
.aimte-vcard--dark:hover { background: var(--navy-600); border-color: rgba(255, 255, 255, .18); }
.aimte-vcard--dark .aimte-vcard__body h3 { color: #fff; }
.aimte-vcard--dark .aimte-vcard__body p { color: rgba(255, 255, 255, .6); }
.aimte-vcard--dark .aimte-vcard__cat { color: var(--cyan-400); background: rgba(42, 188, 240, .13); }

.aimte-link--light { color: rgba(255, 255, 255, .82); }
.aimte-link--light:hover { color: #fff; }

.aimte-player {
	position: relative; aspect-ratio: 16 / 9; overflow: hidden;
	background: var(--navy-800); background-size: cover; background-position: center;
	border-radius: var(--radius);
}
.aimte-player iframe, .aimte-player video {
	position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block;
}
.aimte-player__mask {
	position: absolute; inset: 0; display: flex; flex-direction: column;
	align-items: center; justify-content: center; gap: 12px; padding: 30px;
	text-align: center; color: #fff; background: rgba(4, 18, 31, .6);
}
.aimte-player__play {
	width: 64px; height: 64px; border-radius: 50%; display: inline-flex;
	align-items: center; justify-content: center; color: #fff; margin-bottom: 4px;
	background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .38);
}
.aimte-player__play .aimte-i { width: 22px; height: 22px; margin-left: 3px; }
.aimte-player__mask strong { font-size: 16.5px; }
.aimte-player__mask em { font-style: normal; font-size: 13px; color: rgba(255, 255, 255, .62); max-width: 38em; line-height: 1.8; }

.aimte-vsingle__player { margin-bottom: 40px; }
.aimte-vsingle__foot {
	display: flex; align-items: center; justify-content: space-between; gap: 18px;
	flex-wrap: wrap; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line);
}
.aimte-vsingle__related { margin-top: 64px; }
.aimte-vsingle__reltitle { font-size: 20px; margin: 0 0 24px; }

/* ==========================================================================
   33. 客户案例卡片
   ========================================================================== */

.aimte-ccard {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	overflow: hidden; transition: all var(--tr);
}
.aimte-ccard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #D6E1EC; }
.aimte-ccard__link { display: block; height: 100%; color: inherit; }
.aimte-ccard__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-700); }
.aimte-ccard__body { padding: 22px 24px 26px; }
.aimte-ccard__date { font-family: var(--font-num); font-size: 12.5px; color: var(--muted-2); letter-spacing: .06em; }
.aimte-ccard__body h3 { font-size: 16.5px; line-height: 1.5; margin: 8px 0 10px; }
.aimte-ccard__body p { margin: 0 0 16px; font-size: 13.5px; color: var(--muted); line-height: 1.8; }
.aimte-ccard__more { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--blue-600); font-weight: 500; }
.aimte-ccard__more .aimte-i { width: 15px; height: 15px; transition: transform var(--tr); }
.aimte-ccard:hover .aimte-ccard__more .aimte-i { transform: translateX(4px); }

/* ==========================================================================
   34. 右侧浮动栏
   ========================================================================== */

.aimte-float {
	position: fixed; right: 18px; top: 50%; transform: translateY(-50%);
	z-index: 60; display: flex; flex-direction: column; gap: 8px;
}
.aimte-float__item {
	position: relative; width: 46px; height: 46px; padding: 0; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	background: #fff; border: 1px solid var(--line); color: var(--blue-600);
	box-shadow: var(--shadow-sm); cursor: pointer; transition: all var(--tr);
}
.aimte-float__item .aimte-i { width: 20px; height: 20px; }
.aimte-float__item:hover { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }
.aimte-float__label {
	position: absolute; right: calc(100% + 12px); top: 50%; z-index: 2;
	transform: translateY(-50%) translateX(6px); white-space: nowrap;
	padding: 8px 12px; border-radius: var(--radius-sm);
	background: var(--navy-800); color: #fff; font-size: 12.5px; line-height: 1.5;
	text-align: left; opacity: 0; visibility: hidden; transition: all var(--tr);
}
.aimte-float__label strong { font-weight: 600; font-family: var(--font-num); }
.aimte-float__item:hover .aimte-float__label { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }
.aimte-float__qr {
	position: absolute; right: calc(100% + 12px); top: 50%; width: 174px; z-index: 2;
	transform: translateY(-50%) translateX(6px); padding: 10px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	box-shadow: var(--shadow-md); line-height: 0; opacity: 0; visibility: hidden; transition: all var(--tr);
}
.aimte-float__item--qr:hover .aimte-float__qr,
.aimte-float__item--qr.is-open .aimte-float__qr { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }
.aimte-float__item--qr:hover .aimte-float__label,
.aimte-float__item--qr.is-open .aimte-float__label { opacity: 0; visibility: hidden; }
.aimte-float__qr img { width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }
.aimte-float__qr em { display: block; margin-top: 8px; font-style: normal; font-size: 12px; color: var(--muted); text-align: center; line-height: 1.5; }
.aimte-float__top { opacity: 0; visibility: hidden; transform: translateY(10px); }
.aimte-float.is-on .aimte-float__top { opacity: 1; visibility: visible; transform: none; }
.aimte-float__top .aimte-i { width: 19px; height: 19px; }

/* ==========================================================================
   35. 新增组件响应式补充
   ========================================================================== */

@media (max-width: 1024px) {
	.aimte-grid--2 { grid-template-columns: minmax(0, 1fr); }
}

/* 窄屏：右侧浮动栏改为底部紧凑条，彻底避免遮挡正文 */
@media (max-width: 820px) {
	body { padding-bottom: 58px; }
	.aimte-float {
		left: 0; right: 0; top: auto; bottom: 0; transform: none; gap: 0;
		flex-direction: row; align-items: center; justify-content: space-around;
		padding: 6px 10px calc(6px + env(safe-area-inset-bottom, 0px));
		background: rgba(255, 255, 255, .97);
		border-top: 1px solid var(--line);
		box-shadow: 0 -6px 18px rgba(10, 39, 64, .08);
	}
	.aimte-float__item {
		width: 54px; height: 46px; border: 0; border-radius: 10px;
		background: transparent; box-shadow: none;
	}
	.aimte-float__item .aimte-i { width: 21px; height: 21px; }
	.aimte-float__item:hover, .aimte-float__item:active { background: rgba(11, 92, 168, .08); color: var(--blue-600); }
	.aimte-float__label { display: none; }
	.aimte-float__top { opacity: 1; visibility: visible; transform: none; }
	.aimte-float__qr {
		right: 10px; top: auto; bottom: calc(100% + 12px); width: 170px;
		transform: translateY(6px);
	}
	.aimte-float__item--qr:hover .aimte-float__qr,
	.aimte-float__item--qr.is-open .aimte-float__qr { transform: none; }
	.aimte-vsingle__player { margin-bottom: 30px; }
	.aimte-vsingle__related { margin-top: 48px; }
}

/* 深色页脚内的幽灵按钮：避免白底白字 */
.aimte-footer .aimte-btn--ghost {
	background: transparent; border-color: rgba(255, 255, 255, .34); color: #fff;
}
.aimte-float__item--qr:focus-visible { outline: 2px solid var(--blue-600); outline-offset: 2px; }
.aimte-footer .aimte-btn--ghost:hover {
	background: var(--blue-600); border-color: var(--blue-600); color: #fff;
}

@media (max-width: 640px) {
	.aimte-footer { padding-top: 40px; font-size: 13.5px; }
	.aimte-footer__grid { gap: 26px; }
	.aimte-footer__col h3 { margin-bottom: 14px; padding-bottom: 10px; }
	.aimte-footer__col ul { gap: 8px; }
	.aimte-footer__bar { margin-top: 32px; }
	.aimte-footer__bar-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
	.aimte-sec--tight { padding: 26px 0; }
	.aimte-anchorbar { gap: 12px; }
	.aimte-anchor { gap: 8px; }
	.aimte-anchor a { padding: 7px 12px; font-size: 13px; }
	.aimte-scene__body { padding: 20px 20px 24px; }
	.aimte-scene__dl > div { grid-template-columns: minmax(0, 1fr); gap: 4px; }
	.aimte-player__play { width: 54px; height: 54px; }
	.aimte-player__play .aimte-i { width: 19px; height: 19px; }
	.aimte-vcard__body { padding: 18px 20px 22px; }
	.aimte-apps__cta { margin-top: 30px; }
}

@media print {
	.aimte-float { display: none !important; }
}

/* ==========================================================================
   36. 页脚文字对比度微调（深色底提高可读性）
   ========================================================================== */

.aimte-footer { color: rgba(255, 255, 255, .68); }
.aimte-footer__col a { color: rgba(255, 255, 255, .74); }
.aimte-footer__desc { color: rgba(255, 255, 255, .62); }
.aimte-footer__qr span { color: rgba(255, 255, 255, .58); }
.aimte-footer__bar { color: rgba(255, 255, 255, .6); }
.aimte-footer__legal a { color: rgba(255, 255, 255, .58); }
.aimte-footer__legal a:hover { color: var(--cyan-400); }
