body {
	background-color: #F5F5F7;
}

/* 幻灯片样式 */
.slider-container {
	position: relative;
	max-width: 1920px;
	height: 650px;
	overflow: hidden;
	margin: 0 auto;
}

.slider {
	position: relative;
	width: 100%;
	height: 100%;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.slide.active {
	opacity: 1;
}

.slide img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: -1;
}

/* 模糊滤镜 */
.blur {
	filter: blur(4px);
	-webkit-filter: blur(4px);
}

/* 翻页按钮 */
.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	z-index: 10;
}

.prev, .next {
	width: 60px;
	height: 60px;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s;
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.prev:hover, .next:hover {
	background-color: rgba(0, 0, 0, 0.6);
	transform: scale(1.1);
}

/* 分页指示器 */
.pagination {
	position: absolute;
	background-color: #FFF;
	bottom: 40px;
	height: 3px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.dot {
	width: 144px;
	height: 3px;
	background-color: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}

.dot::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: #EB6C00;
	transition: right 0.3s;
}

.dot.active::after {
	left: 0;
}

.dot.active {
	background-color: transparent;
}

.product-info img{
	max-width: 1920px;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.container1 {
	width: 1920px;
	height: 815px;
	background-color: transparent;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
}

.content-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 180px;
	padding: 40px;
	max-width: 1600px;
}

/* 左侧产品展示区 */
.product-display {
	width: 668px;
	height: 528px;
	position: relative;
	flex-shrink: 0;
}

.main-image-container {
	width: 100%;
	height: 100%;
	position: relative;
	background: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.main-image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
}

/* 放大按钮 - 移动到图片右侧 */
.zoom-btn {
	position: absolute;
	top: 0%;
	right: -90px;
	transform: translateY(-50%);
	width: 43px;
	height: 43px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	z-index: 10;
	transition: all 0.2s ease;
	background: url('../images/zoom.png');
}

.zoom-btn:hover {
	transform: translateY(-50%) scale(1.05);
}

/* 底部控制栏 - 包含分页指示器和翻页按钮 */
.controls {
	position: absolute;
	top: 670px;
	left: 340px;
	width: 768px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	box-sizing: border-box;
}

/* 分页指示器 */
.product-pagination {
	display: flex;
	gap: 38px;
	align-items: center; /* 确保所有点垂直居中对齐 */
}

.pdot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #969696;
	cursor: pointer;
	transition: all 0.2s ease;
	vertical-align: middle;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.pdot.active {
	background-color: #000000;
	width: 7px;
	height: 7px;
	margin-top: -2px;
}

/* 翻页按钮 */
.nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 35px;
	height: 35px;
	background-color: rgba(255,255,255,0.7);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 10;
	font-size: 20px;
	color: #333;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	transition: all 0.3s ease;
}

.nav-arrow:hover {
	background-color: rgba(255,255,255,0.9);
	transform: translateY(-50%) scale(1.1);
}

.prev {
	right: 100px;
}

.next {
	right: 20px;
}

/* 右侧产品信息 */
.product-info1 {
	flex: 1;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-top: 20px;
	max-width: 500px;
}

.product-category {
	font-size: 14px;
	color: #e96c00;
	margin-bottom: 8px;
	letter-spacing: 1px;
}

.product-title {
	font-size: 28px;
	font-weight: bold;
	color: #333;
	margin-bottom: 32px;
	padding-bottom: 15px;
	border-bottom: 1px solid #878787;
}

.features {
	margin-bottom: 32px;
	border-bottom: 1px solid #878787;
	height: 415px;
	/*overflow: hidden;*/
}

.features h3 {
	font-size: 18px;
	color: #555;
	margin-bottom: 15px;
	font-weight: 600;
}

.features ul {
	list-style: none;
	padding-left: 0;
}

.features li {
	font-size: 16px;
	color: #595957;
	display: flex;
    align-items: baseline;
    position: static;
    padding-left: 0;
    margin-bottom: 8px;
    line-height: 26px;
}

.lang-en .features li {
	margin-bottom: 6px;
}

.features li::before {
	content: "•";
    color: #595957;
    font-size: 16px;
    margin-right: 8px;
    display: inline-block;
    flex-shrink: 0;
}

.buttons {
	display: flex;
	gap: 15px;
	margin-top: auto;
}

.btn {
	padding: 10px 25px;
	border-radius: 25px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s ease;
	font-weight: 500;
}

.btn-primary {
	background: #e96c00;
	color: white;
	border: none;
}

.btn-primary:hover {
	background: #e67a00;
}

.btn-outline {
	background: white;
	color: #000;
	border: 1px solid #000;
}

.btn-outline:hover {
	background: #e96c00;
	color: #FFF;
	border: 1px solid #e96c00;
}

/* 模态框样式 */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.92);
	z-index: 1000;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(4px);
}
.modal-content {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
	background-color: transparent;
	border-radius: 12px;
	box-shadow: 0 20px 35px rgba(0,0,0,0.5);
	transition: transform 0.2s ease;
	background-color: #FFF;
}
.close-modal {
	position: absolute;
	top: 24px;
	right: 32px;
	color: white;
	font-size: 42px;
	font-weight: 300;
	cursor: pointer;
	opacity: 0.8;
	transition: opacity 0.2s, transform 0.1s;
	z-index: 1002;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(0,0,0,0.4);
	backdrop-filter: blur(8px);
}
.close-modal:hover {
	opacity: 1;
	transform: scale(1.05);
	background: rgba(0,0,0,0.7);
}

/* 模态框左右导航按钮容器 */
.modal-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
	z-index: 1001;
	padding: 0 30px;
	box-sizing: border-box;
}
.modal-arrow {
	pointer-events: auto;
	width: 56px;
	height: 56px;
	background-color: rgba(30,30,40,0.65);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	transition: all 0.25s ease;
	border: 1px solid rgba(255,255,255,0.2);
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.modal-arrow:hover {
	background-color: rgba(235,108,0,0.85);
	transform: scale(1.08);
	border-color: rgba(255,255,255,0.6);
}
.modal-arrow:active {
	transform: scale(0.98);
}

/* 针对小屏幕适配 */
@media (max-width: 768px) {
	.modal-arrow {
		width: 44px;
		height: 44px;
		font-size: 22px;
	}
	.modal-nav {
		padding: 0 12px;
	}
	.close-modal {
		top: 16px;
		right: 20px;
		font-size: 36px;
	}
}
