/* 产品360度页面样式 */

/* 响应式设计 */
@media (max-width: 768px) {
	.product-360-page .header-banner {
		height: 70px;
		/* 移动端调整为70px */
	}

	.product-360-page .banner-container {
		width: 82%;
		/* 保持左右各9%的间距 */
		padding: 0;
	}

	.product-360-page .model-title {
		top: 26px;
		/* 调整为在70px容器中居中：(70-18)/2 = 26px */
		font-size: 14px;
	}

	.product-360-page .product-description {
		display: none;
		/* 移动端隐藏 */
	}

	.product-360-page .nav-overview,
	.product-360-page .nav-specification,
	.product-360-page .nav-360 {
		position: static;
		display: inline-block;
		margin: 0 10px;
		font-size: 14px;
	}

	.product-360-page .inquiry-btn {
		top: 17px;
		/* 调整为在70px容器中居中：(70-35)/2 ≈ 17px */
		right: 20px;
		width: 100px;
		height: 35px;
	}

	.product-360-page .inquiry-text {
		font-size: 13px;
	}

	.product-360-page .inquiry-arrow {
		width: 6px;
		height: 13px;
		position: relative;
		margin-left: 6px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.product-360-page .inquiry-arrow::before {
		font-size: 12px;
	}

	/* 360度展示区域移动端样式 */
	.product-360-page .product-360-content {
		width: 95%;
		height: 400px;
		margin: 20px auto;
	}

	.product-360-page .main-content.product-360-layout {
		min-height: calc(100vh - 70px);
		padding: 10px 0;
	}
}

/* 小屏幕优化 */
@media (max-width: 480px) {
	.product-360-page .header-banner {
		height: 60px;
		/* 小屏幕进一步减少高度 */
	}

	.product-360-page .banner-container {
		width: 95%;
		/* 小屏幕进一步减少间距 */
	}

	.product-360-page .model-title {
		top: 21px;
		/* 调整为在60px容器中居中：(60-18)/2 = 21px */
		font-size: 12px;
	}

	.product-360-page .nav-overview,
	.product-360-page .nav-specification,
	.product-360-page .nav-360 {
		font-size: 12px;
		margin: 0 5px;
	}

	.product-360-page .inquiry-btn {
		width: 80px;
		height: 30px;
		top: 15px;
		/* 调整为在60px容器中居中：(60-30)/2 = 15px */
		right: 15px;
	}

	.product-360-page .inquiry-text {
		font-size: 11px;
	}

	.product-360-page .inquiry-arrow {
		width: 5px;
		height: 11px;
		position: relative;
		margin-left: 4px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.product-360-page .inquiry-arrow::before {
		font-size: 10px;
	}

	/* 360度展示区域小屏幕样式 */
	.product-360-page .product-360-content {
		width: 98%;
		height: 300px;
		margin: 15px auto;
		border-radius: 5px;
	}

	.product-360-page .main-content.product-360-layout {
		min-height: calc(100vh - 60px);
		padding: 5px 0;
	}
}

body.product-360-page {
	background-color: #ffffff !important;
}

.product-360-page {
	background-color: #ffffff !important;
}


/* 头部banner样式 */
.product-360-page .header-banner {
	background-color: #ffffff;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	box-sizing: border-box;
	border-bottom: 1px solid #e5e5e5;
}

.product-360-page .banner-container {
	width: 82%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

/*   标题 - 居中 */
.product-360-page .model-title {
	position: absolute;
	top: 45px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 28px;
	line-height: 31px;
	letter-spacing: 0px;
	color: #000000;
	font-weight: bold;
}

/* 产品描述 - 左侧 */
.product-360-page .product-description {
	position: absolute;
	top: 48px;
	left: 0;
	font-size: 16px;
	font-weight: normal;
	line-height: 31px;
	letter-spacing: 0px;
	color: #000000;
	font-family: 'MiSans-Regular';

}

/* 导航链接样式 */
.product-360-page .nav-overview,
.product-360-page .nav-specification,
.product-360-page .nav-360 {
	position: absolute;
	top: 48px;
	font-size: 16px;
	font-weight: normal;
	line-height: 31px;
	letter-spacing: 0px;
	color: #000000;
	cursor: pointer;
	transition: color 0.3s ease;
}

/* Overview - 与 间距15% */
.product-360-page .nav-overview {
	left: calc(50% + 15%);
	/* 从中心点向右偏移15% */
}

.product-360-page .nav-overview:hover {
	color: #0078ff;
}

/* Specification - 与Overview间距4% */
.product-360-page .nav-specification {
	left: calc(50% + 15% + 70px + 4%);
	/* Overview位置 + Overview宽度估算 + 4%间距 */
}

.product-360-page .nav-specification:hover {
	color: #0078ff;
}

.product-360-page .nav-specification a:hover {
	color: #0078ff;
}

/* 360° - 与Specification间距3% */
.product-360-page .nav-360 {
	left: calc(50% + 15% + 70px + 4% + 100px + 3%);
	/* Specification位置 + Specification宽度估算 + 3%间距 */
	color: #0078ff;
}

.product-360-page .nav-360:hover {
	color: #0078ff;
}

/* Inquiry Now 按钮 - 与360°间距3% */
.product-360-page .inquiry-btn {
	position: absolute;
	top: 40px;
	left: calc(50% + 15% + 70px + 4% + 100px + 3% + 40px + 3%);
	/* 360°位置 + 360°宽度估算 + 3%间距 */
	width: 120px;
	height: 40px;
	border-radius: 5px;
	border: solid 1px #000000;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.product-360-page .inquiry-btn:hover {
	background-color: #0078ff;
	border-color: #0078ff;
}

.product-360-page .inquiry-btn:hover .inquiry-text {
	color: #ffffff;
}

.product-360-page .inquiry-btn:hover .inquiry-arrow::before {
	color: #ffffff;
}

.product-360-page .inquiry-text {
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: normal;
	color: #000000;
}

.product-360-page .inquiry-arrow {
	width: 7px;
	height: 15px;
	position: relative;
	margin-left: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-360-page .inquiry-arrow::before {
	content: '>';
	font-size: 14px;
	font-weight: bold;
	color: #000000;
	line-height: 1;
}

.product-360-page .m-header-banner {
	display: none;
}

@media (max-width: 768px) {
	 .m-banner-container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 10vw;
		line-height: 10vw;
		padding: 0 3vw;
	}

	 .m-model-title {
		font-size: 3.733vw;
		font-weight: 600;
		color: #000000;
	}

	 .m-banner-nav {
		display: flex;
		gap: 6vw;
		align-items: center;
	}

	 .m-banner-nav .m-nav-item {
		font-size: 3.2vw;
		color: #333333;
		text-decoration: none;
	}
}
.product-360-page .m-banner-nav .m-nav-item.active {
	color: #0078ff;
}

/* 主要内容区域 */
.product-360-page .main-content.product-360-layout {
	width: 100%;
	min-height: auto;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 0;
}

.product-360-page .product-360-content {
	width: 100%;
	max-width: none;
	height: auto;
	margin: 0;
	border-radius: 0;
	overflow: hidden;
	background: #ffffff;
}

.product-360-page .keyshot-360-viewer {
	width: 100%;
	height: calc(100vh - 100px);
	border: none;
	display: block;
	background: #f8f9fa url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiMwMDc4ZmYiPjxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMSAxKSIgc3Ryb2tlLXdpZHRoPSIyIj48Y2lyY2xlIHN0cm9rZS1vcGFjaXR5PSIuNSIgY3g9IjE4IiBjeT0iMTgiIHI9IjE4Ii8+PHBhdGggZD0ibTM5IDM5LTE5LTE5IDE5LTE5Ij48YW5pbWF0ZVRyYW5zZm9ybSBhdHRyaWJ1dGVOYW1lPSJ0cmFuc2Zvcm0iIHR5cGU9InJvdGF0ZSIgZnJvbT0iMCAxOSAxOSIgdG89IjM2MCAxOSAxOSIgZHVyPSIxcyIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiLz48L3BhdGg+PC9nPjwvZz48L3N2Zz4=') no-repeat center center;
	background-size: 40px 40px;
}

/* 加载完成后隐藏背景 */
.product-360-page .keyshot-360-viewer:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent;
	z-index: 1;
}

.product-360-page .m-360-content {
	display: none;
}

.product-360-page .m-keyshot-360-viewer {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

/* 1920px及以上分辨率的特定样式 */
@media (min-width: 1920px) {
	.product-360-page .banner-container {
		width: 82%;
		/* 保持左右各9%的间距 */
		margin: 0 auto;
		padding: 0;
	}

	/* 1920px分辨率下使用相同的右对齐逻辑 */
	.product-360-page .nav-overview {
		right: calc(120px + 25px + 40px + 25px + 80px + 25px);
		/* 稍微增加间距 */
	}

	.product-360-page .nav-specification {
		right: calc(120px + 25px + 40px + 25px);
		/* 稍微增加间距 */
	}

	.product-360-page .nav-360 {
		right: calc(120px + 25px);
		/* 稍微增加间距 */
	}

	.product-360-page .inquiry-btn {
		right: 0;
		/* 保持右对齐 */
	}
}

/* 响应式设计 */
@media (max-width: 768px) {
	.product-360-page .header-banner {
		display: none;
	}

	.product-360-page .m-header-banner {
		display: block;
		background-color: #ffffff;
		border-bottom: 1px solid #e3e3e3;
		margin-top: 51px;
	}

	.product-360-page .main-content.product-360-layout {
		display: none;
	}

	.product-360-page .m-360-content {
		display: block;
		width: 100%;
		height: auto;
		margin: 0;
		border-radius: 0;
		overflow: hidden;
		background: #ffffff;
	}

	.product-360-page .m-keyshot-360-viewer {
		width: 100%;
		height: calc(100vh - 70px);
		border: none;
		display: block;
	}

	.product-360-page .banner-container {
		width: 95%;
		flex-direction: column;
		gap: 10px;
		padding: 10px 0;
	}

	.product-360-page .model-title {
		position: static;
		transform: none;
		font-size: 24px;
		order: 1;
	}

	.product-360-page .product-description {
		position: static;
		transform: none;
		font-size: 14px;
		order: 2;
	}

	.product-360-page .nav-overview,
	.product-360-page .nav-specification,
	.product-360-page .nav-360 {
		display: none;
	}

	.product-360-page .inquiry-btn {
		position: static;
		transform: none;
		width: 100px;
		height: 35px;
		order: 3;
		margin-top: 10px;
	}

	.product-360-content {
		width: 100%;
		padding: 0;
	}

	.product-360-content h1 {
		font-size: 24px;
	}

	.product-360-content p {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.product-360-page .header-banner {
		height: 60px;
	}

	.product-360-page .model-title {
		font-size: 20px;
	}

	.product-360-page .product-description {
		font-size: 12px;
	}

	.product-360-page .inquiry-btn {
		width: 80px;
		height: 30px;
	}

	.product-360-page .inquiry-text {
		font-size: 11px;
	}

	.product-360-content {
		width: 100%;
		padding: 0;
	}

	.product-360-content h1 {
		font-size: 20px;
	}

	.product-360-content p {
		font-size: 13px;
	}
}