@charset "UTF-8";

:root {
	--product-bg-image: url("../img/productBg.png");
}

.footer-header {
	box-sizing: content-box;
}

.footer_aside img {
	width: 100%;
	object-fit: cover;
}

.footer_aside {
	display: none;
	width: 60px;
	cursor: pointer;
	position: fixed;
	bottom: 100px;
	right: 25px;
	z-index: 9999;
}

/* 平板端适配（屏幕宽度 <= 1024px） */
@media (max-width: 1024px) {
	.footer_aside {
		width: 50px;
		bottom: 80px;
		right: 30px;
	}
}

/* 手机端适配（屏幕宽度 <= 768px） */
@media (max-width: 768px) {
	.footer_aside {
		display: none !important;
	}
}

/* 超小屏适配（屏幕宽度 <= 480px） */
@media (max-width: 480px) {
	.footer_aside {
		display: none !important;
	}
}

body,
html {
	margin: 0 auto;
	padding: 0;
	font-family: Roboto;
	overflow-x: hidden;
}

/* 超链接样式 */
a,
a:link,
a:visited,
a:hover,
a:active {
	text-decoration: none;
	color: inherit;
}

/* 列表项样式 */
li {
	list-style: none;
}

/*========================== header =============*/
header {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	margin: 0 auto;
	z-index: 9999;
	width: 100vw;
	height: 110px;
	display: flex;
	flex-direction: center;
	align-items: center;
	/* 垂直居中 */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-bottom: 1px solid rgba(128, 128, 128, 0.2);
	/* 底图 */
	/* background-image: url(../img/HEADER.png); */
	background-size: 1440px auto;
	/* 纯图标项目 */
	/* 统一 a 标签样式 */
}
	/* logo 
header .logo {

	width: 26vw;

	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 2vw;
	padding-right: 2vw;
}

header .logo img {
	width: 14vw;
	height: auto;
}

*/
header .logo {
	width: 28%; 
	display: flex;
	justify-content: center;
	align-items: center;
}
.header .logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    text-align:center;
}
/*
header .nav-container {
	width: 650px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
*/
header .nav-container {
  width: 43.5%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

header nav {
	font-size: 1rem;
	width: 650px;
	gap: 1vw;
}
/*
header .buttion {
	width: 30vw;
	display: flex;
	flex-direction: center;
	height: 45px;
	display: flex;
	gap: 2vw;
	padding-left: 5vw;
	background-color: bisque; 
}*/
header .buttion {
  	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 28%;
 	height: 45px;
  	gap: 1.5vw;

}
/*
header .buttion span {
	color: rgb(0, 0, 0);
	font-family: Roboto;

	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
}
*/
header .buttion div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* gap: 4px; */
	width: auto;
	/* padding: 0 8px; */
	transition: all 0.3s ease;
}

header .buttion div:hover {
	color: rgb(0, 63, 125);
}

header .buttion div:hover a,
header .buttion div:hover span {
	color: rgb(0, 63, 125);
}

header .buttion div:has(img:only-child) {
	/* width: 42px; */
}

header .buttion div a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

header .buttion div a img {
	width: 20px;
	height: 20px;
}

.select-box {
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: relative;
	/* 为图片定位提供上下文 */
	background-color: transparent;
}

.select {
	display: block;
	height: 40px;
	box-sizing: border-box;
	border: 1px solid rgb(51, 51, 51);
	border-radius: 4px;
	/* box-shadow: inset 2px 4px 10px 0px rgba(87, 87, 87, 0.25); */
	background-color: white;
	/* 确保背景色为白色 */
	width: 100%;
	padding-left: 8px;
	padding-top: 5px;
	caret-color: transparent;
	/* 隐藏光标 */
}

nav {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	background-color: transparent;
}

.select-box img {
	width: 20px;
	height: 20px;
	/* background: rgba(128, 128, 128, 1); */
	padding: 15px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

input.select::placeholder {
	color: rgb(128, 128, 128);
	font-family: Roboto;
	font-size: 16px;
	font-weight: 400;
	line-height: 45px;
	letter-spacing: 0%;
	text-align: left;
}

nav ul {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 32px;
}

nav ul li a {
	padding-right: 0;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 16px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
	text-transform: uppercase;
}

ul li {
	position: relative;
	display: inline-block;
}

ul li .underline {
	width: 100%;
	height: 3px;
	background: rgb(0, 63, 125);
	position: absolute;
	left: 0;
	display: none;
}

ul li:hover .underline,
ul li a:hover+.underline {
	display: block;
}

/* 1440px宽度容器通用样式 */
.container-1440,
.content,
.footer-container {
	margin-left: auto;
	margin-right: auto;
	box-sizing: content-box;
}

.menu-320 {
	display: none;
}

/*========================== banner =============*/
.banner {
	margin: 0 auto;
	margin-top: 101px;
	/* 与header高度匹配 */
	width: 100vw;
	height: 520px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	/* 修复：添加单位px */
	/* 背景图设置 */
	background-image: url(../img/banner1.png);
	background-size: cover;
	/* 关键修改：自动裁剪填充整个容器 */
	background-position: center center;
	/* 确保图片居中 */
	background-repeat: no-repeat;
}

.banner-slide {
	position: absolute;
	width: 1440;
	height: 100%;
	display: none;
}

.banner-slide.active {
	display: block;
}

.slider-indicators {
	position: absolute;
	top: 528px;
	left: 10vw;
	display: flex;
	gap: 3px;
	/* background-color: red; */
	z-index: 1000;
}

.slider-indicator {
	width: 18px;
	height: 3px;
	border-radius: 6px;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.4);
	position: relative;
	overflow: hidden;
	/* 宽度变化立即完成 */
	transition: width 0s linear;
}

.slider-indicator.active {
	width: 36px;
	/* 宽度立即变为36px */
}

.slider-indicator::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background: rgb(255, 255, 255);
	/* 默认没有过渡效果 */
	transition: none;
}

.slider-indicator.active::before {
	width: 100%;
	/* 在36px宽度内慢慢填充纯白色 */
	transition: width 5s linear;
}

.banner-content {
	padding-top: 73px;
	padding-left: 9vw;
}

.banner-title {
	width: 800px;
	height: 26px;
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 22.5px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
}

.banner-subtitle {
	width: 800px;
	height: 62px;
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 52.5px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
	margin-top: 4px;
}

.banner-features {
	min-height: 129px;
}

.banner-features div {
	width: 57vw;
	opacity: 0.8;
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 19.5px;
	font-weight: 500;
	line-height: 31px;
	letter-spacing: 0%;
	text-align: left;
}

.banner-button {
	/* width: 221.8px; */
	width: fit-content;
	height: 36.2px;
	line-height: 36.2px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 38.4px;
	padding: 9.6px 24px;
	margin-top: 30px;
	border-radius: 36px;
	background: rgba(196, 8, 8, 0.8);
	border: none;
	cursor: pointer;
	color: rgb(255, 255, 255);
	font-family: Roboto;
	/* font-size: 14px; */
	font-size: 17px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0%;
	text-align: left;
}

.banner-button:hover {
	/* color: rgba(0, 0, 0, 0.6); */
	font-family: Roboto;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0%;
	text-align: left;
	box-sizing: border-box;
	border: 1px solid rgba(0, 0, 0, 0.2);
	box-shadow: 0px 10px 10px 0px rgba(196, 8, 8, 0.35);
}

.banner-button img {
	width: 14.4px;
	height: 14.4px;
}

/*========================== Main Content =============*/
/* Main Content */
.content {
	/* background-color: #f5f5f5; */
}

/* Footer */
footer {
	width: 100%;
	background-color: #333;
	box-sizing: content-box;
}

.footer-container {
	max-width: 88.542vw;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
	padding: 20px;
	box-sizing: content-box;
}

.video {
	/* width: 1440px; */
	margin: 0;
	padding: 0;
	margin: 0 auto;
	display: flex;
	background: linear-gradient(0deg, rgba(22, 80, 163, 0.2), rgba(255, 255, 255, 0.1) 100%);
	justify-content: center;
}

.video .video-container {
	padding-top: 68px;
	padding-bottom: 52px;
	width: 100%;
	/* 使容器宽度占满父元素 */
	/* 移除 max-width: 1440px; 限制，使其可以随屏幕尺寸变化 */
	margin: 0 auto;
}

.video ul {
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
	width: 100%;
	overflow-x: auto;
	scrollbar-width: none;
}

/* .video li {
	width: 399.95px;
	height: 225.17px;
	border-radius: 4px;
	margin-left: 10px;
	margin-right: 10px;
} */
.video li {
	width: calc(30% - 5px);
	aspect-ratio: 16 / 9;
	border-radius: 4px;
	margin-left: 10px;
	margin-right: 10px;
	min-width: 300px;
}

.video li iframe {
	width: 100%;
	height: 100%;
	border: none;
	/* 移除默认边框 */
	object-fit: cover;
}

/* .video li iframe {
	width: 399.95px;
	height: 225.17px;
	border: none;
	/* 移除默认边框 */
/* object-fit: cover; */
/* 可选：控制视频填充方式 */
/* } */
.layer-1 {
	margin: 0 auto;
	width: 100vw;
	height: 840px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 38.4000015259;
	background: rgb(255, 255, 255);
}

.layer-2 {
	margin: 0 auto;
	/* width: 1440px; */
	height: 771.6px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 38.4000015259;
	/* background-image: url(../img/Frame105.png) */
	background-image: url(../img/layer-2.webp);
	background-size: cover;
	/* 等比例缩放，覆盖整个容器，超出部分裁剪 */
	background-position: center;
	/* 居中显示 */
	background-repeat: no-repeat;
	/* 不重复 */
	/* background-size: 1440px auto; */
}

/* 	.layer-3 {
		margin: 0 auto;
		width: 1440px;
		height: 878.81px;
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		gap: 24;
	} */
/* 	
.layer-4 {
		margin: 0 auto;
		width: 1440px;
		height: 906.2px;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 68;
		padding: 72px 84px 0px 84px;
	} */
.tilte-container {
	margin: 0 auto;
	width: 88.542vw;
	height: 93.6px;
	/* 自动布局 */
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 4.8000001907;
	margin-top: 78.6px;
}

.title-container-1 {
	/* SERVICES */
	width: 1238.4px;
	height: 20px;
	color: rgb(0, 63, 125);
	font-family: Roboto;
	font-size: 16.8px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
	margin-bottom: 4.8px;
}

.title-container-2 {
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 39.6px;
	font-weight: 600;
	line-height: 43.2px;
	letter-spacing: 0%;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 10.8px;
}

.title-container-3 {
	color: rgb(102, 102, 102);
	font-family: Roboto;
	font-size: 16.8px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
}

.tilte-container-img {
	margin: 38.4px auto;
	/* Frame 45 */
	width: 1238.4px;
	height: 561.6px;
	/* 自动布局 */
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.services-container {
	margin: 38.4px auto;
	width: 88.542vw;
	height: 561.6px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background-size: cover;
}

.service-item {
	text-align: center;
	width: 30vw;
	height: 561.6px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* background-color: red; */
}

.service-item img {
	text-align: center;
	width: 48px;
	height: 48px;
	opacity: 0.5;
}

.service-item:hover {
	backdrop-filter: blur(30px);
	background: rgba(77, 77, 77, 0.05);
}

.service-item:hover img {
	opacity: 1;
}

.service-content {
	width: 268.8px;
	height: auto;
	color: rgba(255, 255, 255, 0.5);
	font-family: Roboto;
	font-size: 20px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
}

.service-content span {
	line-height: 2;
}

.service-description {
	margin-top: 0;
	background-color: transparent;
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 12px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: center;
}

.service-content .service-description {
	height: 24px;
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 12px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: center;
	display: none;
}

.service-item:hover .service-description {
	display: block;
}

.service-item:hover .service-title {
	color: rgb(255, 255, 255);
}

.tilte-container ul {
	padding: 0;
	margin: 0;
	margin-top: 24px;
	margin-bottom: 24px;
}

.tilte-container ul li {
	float: left;
	/* Frame 52 */
	width: 137.8px;
	height: 43.2px;
	/* 自动布局 */
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 12;
	box-sizing: border-box;
	border: 0.6px solid rgba(0, 0, 0, 0.4);
	border-radius: 36px;
	background: rgba(255, 255, 255, 0);
	margin-right: 15px;
	margin-top: 4px;
}

.tilte-container .active {
	border-radius: 36px;
	border: 0;
	color: #ffffff;
	background: rgba(196, 8, 8, 0.8);
}

.tilte-container ul li:hover {
	border-radius: 36px;
	border: 0;
	color: #ffffff;
	background: rgba(196, 8, 8, 0.8);
}

/*=========================product box  ================*/
.product-box-1 {
	display: flex;
	width: 88.542vw;
	gap: 10px;
	/* padding: 20px; */
}

.product-item {
	float: left;
	width: 22.5vw;
	height: 457.2px;
	background-color: #fff;
	transition: all 1s ease;
	padding: 15px;
	box-sizing: border-box;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

/* 第一个产品默认展开 */
.product-item:first-child {
	width: 45vw;
	background-image: var(--product-bg-image);
}

/* 默认展开时使用悬停样式 */
.product-item:first-child .product-container-1,
.product-item:first-child .product-container-3 {
	color: rgb(255, 255, 255);
}

.product-item:first-child .product-container-2 {
	color: rgba(255, 255, 255, 0.8);
}

/* 缩小后恢复默认颜色 */
.product-box-1:hover .product-item:first-child:not(:hover) .product-container-1 {
	color: rgb(50, 50, 50);
}

.product-box-1:hover .product-item:first-child:not(:hover) .product-container-2 {
	color: rgba(39, 39, 39, 0.8);
}

.product-box-1:hover .product-item:first-child:not(:hover) .product-container-3 {
	color: rgb(50, 50, 50);
}

/* 悬停时所有产品缩小并移除背景 */
.product-box-1:hover .product-item {
	width: 22.5vw;
	background-image: none;
}

/* 被悬停的产品单独放大并显示背景 */
.product-box-1:hover .product-item:hover {
	width: 45vw;
	background-image: var(--product-bg-image);
}

/* 展开时字体为白色 */
.product-box-1:hover .product-item:hover .product-container-1,
.product-box-1:hover .product-item:hover .product-container-3 {
	color: rgb(255, 255, 255);
}

.product-box-1:hover .product-item:hover .product-container-2 {
	color: rgba(255, 255, 255, 0.8);
}

/* 产品内容样式 */
.product-container-1,
.product-container-2,
.product-container-3 {
	transition: color 0.3s ease;
}

.product-container-1 {
	margin-top: 15px;
	color: rgb(50, 50, 50);
	font-family: Roboto;
	font-size: 22px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0%;
	text-align: left;
	padding-bottom: 12px;
}

.product-container-2 {
	/* 15.6" Tablet PC for Endoscopy | EN-150 */
	color: rgba(39, 39, 39, 0.8);
	font-family: Roboto;
	font-size: 15px;
	font-weight: 200;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
	padding-bottom: 12px;
}

.product-container-3 {
	/* Learn More */
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 14px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
	position: relative;
}

.product-container-img {
	margin: 0 auto;
	width: 297.6px;
	height: 304.8px;
	transition: transform 0.3s ease;
	/* 添加过渡动画 */
}

.product-item:first-child .product-container-img {
	transform: translateY(35px);
}

.product-box-1:hover .product-item:first-child:not(:hover) .product-container-img {
	transform: translateY(0px);
}

.product-item:hover:not(:first-child) .product-container-img {
	transform: translateY(35px);
}

.product-container-img img {
	margin: 0 auto;
	width: 297.6px;
	height: 304.8px;
}

.product-container-3 img {
	/* fluent:arrow-right-24-filled */
	width: 12px;
	position: absolute;
	top: 2px;
	margin-left: 5px;
}

footer {
	margin: 0 auto;
	/* height: 686px; */
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 10;
	background: radial-gradient(115.76% 50.16% at 14% 26%, rgb(3, 70, 149) 10%, rgb(0, 29, 87) 52%, rgb(0, 6, 42) 76%);
}

.footer-header {
	/* Frame 870 */
	margin: 0 auto;
	width: 88vw;
	height: 85px;
	/* 自动布局 */
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	padding-top: 88px;
	padding-bottom: 40px;
}

.footer-logo {
    width: 13.073vw;
    height: 3.698vw;
	float: left;
}
.footer-logo img{

	height: 100%;
	object-fit: cover;
}

.footer-subscribe {
	float: right;
	width: 329px;
	height: 85px;
	/* 自动布局 */
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10;
}

.subscribe-title {
	/* Subscribe to Estone's Newsletter */
	width: 329px;
	height: 16px;
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 14px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
	padding-bottom: 10px;
}

.subscribe-placeholder {
	/* Enter your email address */
	width: 132px;
	height: 14px;
	color: white;
	font-family: Roboto;
	font-size: 12px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
	/* padding-bottom: 5px; */
}

.subscribe-input input::placeholder {
	color: rgba(0, 0, 0, 0.5);
}

/*
.subscribe-input {
   border-bottom: 1px solid rgba(255, 255, 255, 0.5); 
  padding-bottom: 5px;
  padding-right: 15px;
  position: relative;
}
*/
.subscribe-input {
	position: relative;
	transform: translateY(-50%);
	top: 0%;
	width: 310px;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 15px 27px 13px 14px;
	box-sizing: border-box;
	border: 1px solid rgb(51, 51, 51);
	border-radius: 20px;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	background: rgba(0, 0, 0, 0);
	cursor: pointer;
}

/* 原始状态图标 */
.input-icon {
	position: absolute;
	right: 20px;
	width: 15px;
	height: 15px;
	background-image: url(../img/section-icon-1.png);
	background-size: contain;
	pointer-events: none;
}

.subscribe-input input {
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.5);
	outline: none;
	color: white;
	caret-color: transparent;
	width: 320px;
	padding: 5px 0;
	cursor: pointer;
}

.subscribe-note {
	/* By registering, you agree to receive emails from Estone and its trusted partners. View our Terms and Privacy Policy. */
	width: 329px;
	height: 24px;
	font-family: Roboto;
	font-size: 10px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
	color: rgba(255, 255, 255, 0.5);
	padding-bottom: 5px;
	line-height: 14px;
}

.subscribe-note a {
	color: rgb(255, 255, 255) !important;
}

/* 直接定位第三个子元素（因为第二个是technology-list） */
.technology-wrapper>*:nth-child(3) {
	display: none;
}

.layer-3 {
	margin: 0 auto;
	width: 88.542vw;
	height: 878.81px;
	display: flex;
	flex-direction: column;
	/* 如果需要垂直排列，保留；否则改为 row */
	background: white;
	/* background-image: url(../img/layer-3.png); */
}

.layer-3 .technology-wrapper {
	padding-top: 37px;
	display: flex;
	flex-direction: row;
	/* 确保子元素水平排列 */
	width: 100%;
	/* 确保宽度足够 */
	height: 760.7px;
	justify-content: center;
	/* 水平居中 */
	align-items: flex-start;
	/* 顶部对齐 */
	gap: 24px;
	/* 调整间距，避免过大 */
}

.layer-3 .technology-wrapper .technology-image {
	width: 50%;
	/* 或固定宽度，如 583.2px */
	height: 738.81px;
	/* background: red; */
}

.layer-3 .technology-wrapper .technology-image .technology-title {
	/* Rectangle 17 */
	margin: 0 auto;
	width: 90%;
	height: 15.32px;
	border-radius: 4px 4px 0px 0px;
	background: rgb(231, 247, 255);
}

.layer-3 .technology-list {
	display: inline-block;
	/* Frame 68 */
	/* width: 486px; */
	width: 50%;
	height: 639.84px;
	/* 自动布局 */
	display: flex;
	flex-direction: column;
	gap: 10;
	border-radius: 4px;
	margin-top: 12px;
	margin-left: 47px;
}

.layer-3 .technology-list ul {
	padding: 0;
}

.layer-3 .technology-list ul li {
	width: 40vw;
	height: 76.07px;
	box-sizing: border-box;
	border: 0.6px solid rgba(0, 0, 0, 0.1);
	border-radius: 4.8px;
	margin-bottom: 5px;
}

.layer-3 .technology-list .tech-title {
	 color:rgb(0,65,120);
    font-family: "Roboto";
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0%;
    text-align: left;
}

.layer-3 .technology-list .tech-subtitle {
	width: 486px;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 39px;
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: 0%;
	text-align: left;
	text-transform: uppercase;
	margin-top: 7px;
	margin-bottom: 17px;
}

.layer-3 .technology-list .tech-description {
	color: rgb(102, 102, 102);
	font-family: Roboto;
	font-size: 16px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
}

li .item-icon {
	/* 		width: 90px;
  				padding: 15px; */
	float: left;
}

li .item-content {
	float: left;
	width: 31vw;
}

li .item-icon img {
	/* MIL-STD-810G 1 */
	width: 40px;
	height: 40px;
	padding-left: 35px;
	padding-top: 15px;
	padding-right: 41px;
}

li .item-title {
  color: rgb(50, 50, 50);
  font-family: Open Sans;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0%;
  text-align: left;
  padding-top: 14px;
}

li .item-content p {
	padding: 0;
}

li .item-description {
	color: rgb(102, 102, 102);
	font-family: Roboto;
	font-size: 12px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
	/* 关键属性：超出部分隐藏并显示省略号 */
	white-space: nowrap;
	/* 禁止换行 */
	overflow: hidden;
	/* 隐藏溢出内容 */
	text-overflow: ellipsis;
	/* 显示省略号 */
	width: 100%;
	/* 限制宽度（需父盒子有固定或约束宽度） */
}

/*====================内盒子=============*/
.technology-info {
	margin: 0 auto;
	width: 45vw;
	height: 742.25px;
	position: relative;
	background-image: url(../img/technology.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	/* margin-left: 100px; */
	/* 添加过渡动画效果 */
	transition: background-image 1s ease-in-out, opacity 1s ease;
	opacity: 1;
	border-radius: 5px;
	/* 添加以下属性防止hover抖动 */
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
	will-change: transform;
}

.technology-item:hover {
	box-sizing: border-box;
	border: 1px solid rgb(196, 8, 8) !important;
	border-radius: 4px;
}

/* 可以添加一个淡入淡出效果类 */
.technology-info.fade-out {
	opacity: 0;
}

.technology-info.fade-in {
	opacity: 1;
}

/* 或者添加一个缩放动画 */
.technology-info.zoom-effect {
	animation: zoomInOut 1.5s ease;
}

@keyframes zoomInOut {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}

/* 修复hover抖动问题 */
.technology-info-content {
	position: absolute;
	margin: 0 auto;
	width: 35vw;
	/* 固定高度防止内容变化导致容器高度变化 */
	height: 200px;
	bottom: 41.8px;
	left: 50%;
	transform: translateX(-50%);
	box-sizing: border-box;
	border-radius: 4px;
	background: linear-gradient(180deg, rgb(234, 236, 239), rgb(161, 171, 183) 100%);
	/* 水平居中 */
	/* background: red; */
	/* 如果内容需要 Flex 布局 */
	display: flex;
	/* flex-direction: column; */
}

@keyframes heightChange {
	from {
		min-height: 0;
	}

	to {
		min-height: var(--dynamic-height);
	}
}

.technology-info-content .image-icon {
	float: left;
}

.technology-info-content .image-icon img {
    width: 40px;
    height: 40px;
	padding: 29px;
}

.technology-info-content .image-content {
	display: inline-block;
	width: 31vw;
	padding-top: 30px;
	padding-bottom: 30px;
}

.technology-info-content .image-title {
	color: rgb(50, 50, 50);
	font-family: Roboto;
	font-size: 16px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
}

.technology-info-content .image-description {
	color: rgba(39, 39, 39, 0.8);
	font-family: Roboto;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
	width: 29vw;
	transition: min-height 0.3s ease;
	animation: heightChange 0.5s ease-in-out;
	overflow: hidden;
}

.layer-4 {
	/* Frame 104 */
	padding: 0;
	margin: 0 auto;
	/* width: 1440px; */
	/* height: 906.2px; */
	/* 自动布局 */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 68px;
	background: radial-gradient(75% 38% at -7% 31%, rgb(255, 255, 255), rgb(230, 247, 254) 100%);
}

.content-section {
	/* background-color: red; */
	margin: 0 auto;
	display: flex;
	/* Frame 64 */
	width: 88.542vw;
	height: 359px;
	/* 自动布局 */
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 12px;
}

.news-list {
	width: 100%;
	/* 高度由内容撑开（自动换行后高度自适应） */
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.news-list li {
	width: 30vw;
	height: 9vw;
	display: flex;
	border-radius: 4px;
	background: white;
	padding: 0;
}

.news-item img {
	/* Rectangle 18 */
	float: left;
	width: 7vw;
	height: 7vw;
	padding: 22px;
}

.news-item:hover .news-date {
	color: red;
	border: 0.5px solid red;
}

.featured-img {
	/* Frame 99 */
	width: 26vw;
	height: 20vw;
	/* 自动布局 */
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 10;
	background-image: url(../img/featured-img.png);
	background-size: contain;
	background-repeat: no-repeat;
}

.news-title {
	width: 29vw;
	height: 30px;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 17px;
	font-weight: 400;
	word-wrap: break-word;
	white-space: normal;
	padding-bottom: 50px;
	padding-top: 22px;
	/* max-width: 382px; */
}

.news-date {
	/* Frame 84 */
	width: 120px;
	height: 18px;
	/* 自动布局 */
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10;
	box-sizing: border-box;
	border: 0.5px solid rgba(39, 39, 39, 0.2);
	border-radius: 1px;
	color: rgba(39, 39, 39, 0.8);
	font-family: Roboto;
	font-size: 12px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
}

.news-date:hover {
	color: red;
	border: 0.5px solid red;
}

.featured-image {
	position: relative;
}

.featured-image:hover .featured-date {
	color: red;
	border: 0.5px solid red;
}

.featured-text {
	position: absolute;
	/* Rugged Mobile Tablet */
	width: 313px;
	height: 16px;
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 14px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
	bottom: 80px;
	left: 31px;
}

.featured-date {
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 11px;
	font-weight: 400;
	line-height: 100%;
	text-align: left;
	width: 127px;
	height: 18px;
	line-height: 18px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 2px 12px 2px 12px;
	box-sizing: border-box;
	border: 0.5px solid rgb(255, 255, 255);
	border-radius: 1px;
	text-align: left;
	position: absolute;
	bottom: 47px;
	left: 33px;
}

.featured-date:hover {
	font-weight: 600;
	border: 1px solid rgb(255, 255, 255);
}

.section {
	/* Frame 100 */
	margin: 0 auto;
	width: 88.542vw;
	height: 383px;
	/* 自动布局 */
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 38.4000015259;
	/* padding: 80px 180px 28.8px 180px; */
	background: rgb(255, 255, 255);
}

.section-title {
	/* Over 20 Years of Excellence inRugged & Embedded Computing Solutions */
	width: 64vw;
	height: 82px;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 2.292vw;
	font-weight: 550;
	line-height: 30pxvw;
	letter-spacing: 0%;
	text-align: center;
	padding-top: 80px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 2vw;
}

.section-description {
	/* Estone Technology designs and delivers high-performance intelligent devices tailored for medical, industrial, and rugged environments. With over two decades of ODM/OEM expertise, we specialize in customizable tablets, panel PCs, and embedded systems offering robust hardware, software integration, and reliable connectivity to meet the unique demands of each industry. */
	width: 60vw;
	height: 60px;
	color: rgb(0, 0, 0, 0.7);
	font-family: Roboto;
	font-size: 16px;
	font-weight: 200;
	line-height: 20px;
	letter-spacing: 0%;
	text-align: center;
}

.button-list {
	/* Frame 100 */
	width: 60%;
	height: 36.2px;
	/* 自动布局 */
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 12px;
	padding-top: 38.4px;
}

.section .button-list .button-item {
	width: 135px; // 宽度根据内容自适应
	min-width: calc(fit-content * 3);
	/* 尝试2倍宽度（但兼容性较差） */
	text-align: center;
	padding: 0 1em; // 添加左右内边距避免文字贴边（可调整）
}

.button-item {
	position: relative;
	width: auto;
	height: 36.2px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 38.4px;
	padding: 9.6px 24px;
	padding-right: 57px;
	color: rgb(0, 0, 0);
	font-family: Roboto;
	font-size: 12px;
	font-weight: 600;
	/* line-height: 100%; */
	letter-spacing: 0%;
	text-align: left;
	box-sizing: border-box;
	border: 0.6px solid rgba(0, 0, 0, 0.4);
	border-radius: 36px;
	background: rgba(255, 255, 255, 0);
	transition: all 0.3s ease;
	/* 添加过渡效果 */
	cursor: pointer;
	/* 添加手型指针 */
}

/* 原始状态图标 */
.button-item::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 15px;
	height: 15px;
	background-image: url("../img/section-icon.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease;
	/* 图标过渡效果 */
}

/* Action 状态 */
.button-item.action {
	color: rgb(255, 255, 255);
	background: rgba(196, 8, 8, 0.8);
}

/* Action 状态图标 */
.button-item.action::after {
	background-image: url("../img/section-icon-1.png");
}

.contact-title {
	width: 195px;
	height: 19px;
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 16px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
	text-transform: uppercase;
}

.contact-list {
	padding: 0;
}

.contact-item {
	/* 自动布局 */
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 5px 0 5px;
}

.contact-icon {
	position: relative;
	padding: 0 0 0 5px;
}

.contact-icon img {
	position: absolute;
	width: 16px;
	height: 16px;
	left: 15%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.contact-icon span {
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 16px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
	text-transform: uppercase;
	padding-left: 18px;
}

.contact-value {
	/* Windows Rugged Tablet */
	width: 195px;
	height: 28px;
	color: rgba(255, 255, 255, 0.7);
	font-family: Roboto;
	font-size: 12px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
	padding: 4px;
}

.social-media {
	display: flex;
	align-items: center;
	gap: 10px;
}

.social-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 2px;
	position: relative;
}

.social-icon:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.social-icon img {
  width: 37px;
  height: 37px;
  object-fit: contain;
}

.footer-middle {
	width: 90vw;
	height: 312px;
	/* Frame 132 */
	/* 自动布局 */
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 12px;
	border-top: solid 1px rgba(217, 217, 217, 0.3);
	padding-top: 40px;
	padding-bottom: 80px;
	border-bottom: solid 1px rgba(217, 217, 217, 0.3);
}

.footer-menu {
	/* Frame 141 */
	/* width: 1077px; */
	height: 299px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 35px;
}

.footer-contact {
	width: 195px;
	height: 312px;
	padding-right: 118px;
}

.menu-section {
	/* Frame 111 */
	/* width: 135px; */
	height: 72px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 16px;
	text-align: left;
	padding-right: 12px;
}

.menu-item {
	color: rgba(255, 255, 255, 0.7);
	font-family: Roboto;
	font-size: 12px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
	white-space: nowrap;
	text-align: left;
}

.menu-item:hover {
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 12px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
	white-space: nowrap;
	text-align: left;
}

.iso-image img {
	/* icon6 */
	width: 58px;
	height: 58px;
	padding: 2px;
}

.contact-button {
	/* Frame 33/Variant3 */
	width: 90px;
	height: 32px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 8px 20px 8px 24px;
	border-radius: 30px;
	color: #fff;
	background: rgba(196, 8, 8, 0.8);
	margin-top: 28px;
	margin-left: -6px;
}

.menu-title {
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 16px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 2px;
}

.menu-title::after {
	position: absolute;
	right: 0;
	/* 从右侧开始 */
	bottom: 0;
	width: 0%;
	/* 初始宽度为0 */
	height: 1px;
	background: #fff;
	/* 线条颜色 */
	transition: all 0.4s;
	/* 动画时长和缓动效果 */
	content: "";
	display: block;
}

.menu-title:hover::after {
	width: 100%;
	left: 0;
	right: auto;
}

.footer-bottom {
	padding-top: 9px;
	color: rgba(255, 255, 255, 0.5);
	font-family: Roboto;
	font-size: 12px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
	display: flex;
	justify-content: space-between;
	/* 左右两侧分散对齐 */
	width: 100%;
}

.copyright {
	/* ©2025 ESTONE. All rights reserved. */
	height: 14px;
}

.footer-links {
	display: flex;
	/* 关键：启用 Flex 布局 */
	gap: 20px;
	/* 链接间距 */
}

.footer-link {
	/* Frame 133 */
	/* width: 105px; */
	height: 14px;
	/* 自动布局 */
	display: flex;
	text-align: right;
}

.footer-middle-1200 {
	display: none;
}

.product-indicators {
	display: none;
}

.services-container-320,
.dropdown-item-phone-7 {
	display: none;
}

.slider-indicator-videos-1400 {
	display: none;
}

.download-container {
	position: relative;
}

.people-container {
	position: relative;
}
/*
.coming {
	position: absolute;
	right: -6px;
	top: calc(100% + 5px);
	opacity: 0;
	width: 102px;
	height: 26px;
	border-radius: 4px;
	background: rgb(0, 63, 125);
	z-index: 9999;
	transition: opacity 0.3s ease;
	white-space: nowrap;
}

.coming span {
	color: #fff !important;
	padding: 10px;
}
*/
.coming {
  position: absolute;
  right: -6px;
  top: calc(100% + 5px);
  opacity: 0;
  width: 118px !important;
  height: 33px !important;
  border-radius: 4px;
  background: rgb(0, 63, 125);
  z-index: 9999;
  transition: opacity 0.3s ease;
  white-space: nowrap;
	
}

.coming span {
  color: #fff !important;
  padding: 10px;
	font-size: 1.1vw  !important;
}
.hover-effect span {
    font-size:0.95vw;
    font-weight: 400;
    font-family: Noto Sans SC;
    cursor: pointer;
}

.download-container {
	position: relative;
}

.coming-link {
	position: absolute;
	padding: 10px;
	top: -44%;
	left: -8%;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.coming-link>.coming {
	pointer-events: auto;
}

/* Download container hover effect to show coming tooltip */
.download-container:hover .coming {
	opacity: 1;
}

/* People container hover effect to show coming tooltip */
.people-container:hover .coming {
	opacity: 1;
}

/* 为people-container内的coming-link设置特定位置 */
.people-container .coming-link {
	top: -44%;
	left: 55%;
}

/* @media (max-width: 1650px) {
	.footer-menu {
		gap: 32px;
	}
} */

@media (min-width: 1650px) {
	.footer-menu {
		margin-left: auto;
		
		gap: 12px;
	}
}
@media (max-width: 1650px) {
	.footer-menu {
		
		margin-left: auto;
		gap: 12px;
	}
}
@media (max-width: 1441px) {
	.footer-menu {
		margin-left: auto;
		gap: 2px;
	}
}
