/* 礼品定制 ugreen */
.customized_main {
	margin-top: 90px;
}

/* 面包屑-黑色字体 */
#breadcrumb.txt_b .crumb {
	color: #333;
	opacity: 0.75;
}

#breadcrumb.txt_b .bread_swiper .slide:last-of-type .crumb {
	color: #333;
	opacity: 1;
}

#breadcrumb.txt_b .bread_swiper .slide:last-of-type .crumb::before {
	background-color: #333;
}

#breadcrumb.txt_b .icon .svg {
	fill: #000;
	opacity: 0.75;
}

#breadcrumb.txt_b .jt .svg {
	s fill: #333;
	opacity: 0.75;
}


/* 页面滚动条样式 */


/* banner top */
#customized_banner {
	width: 100%;
	height: calc(100vh - 90px);
}

#customized_banner .pic {
	width: 100%;
	height: 100%;
}

#customized_banner .pic picture {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#customized_banner .pic img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* 动画基础配置 */
	transform-origin: center center;
	will-change: transform;
	animation: bannerscaleloop 10s ease-in-out infinite;
}

/* banenr top 背景动画 */
@keyframes bannerscaleloop {
	0% {
		transform: scale(1.0);
		/* 初始状态 */
	}

	50% {
		transform: scale(1.1);
		/* 中间状态：放大到1.3倍 */
	}

	100% {
		transform: scale(1.0);
		/* 结束状态：回到原尺寸 */
	}
}


#customized_banner .cont_text {
	height: max-content;
	top: 50%;
	transform: translatey(-50%);
	z-index: 1;
}

#customized_banner .cont_text .box {
	width: 60%;
}

#customized_banner .cont_text .text .title {
	font-size: 52px;
	line-height: 65px;
	color: #333;
	font-weight: 600;
	text-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

#customized_banner .cont_text .text .brief {
	font-size: 22px;
	line-height: 1.4;
	color: #333;
	margin-top: 30px;
	text-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
	font-weight: 400;
}

#customized_banner .cont_text .text .brief span {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	padding-left: 10px;
}

#customized_banner .cont_text .text .brief br {
	display: none;
}

#customized_banner .cont_text .text .more {
	margin-top: 100px;
	padding: 0 30px;
	width: max-content;
	height: 50px;
	font-size: 16px;
	color: #ffffff;
	background-color: #00cc88;
	font-weight: 400;
}

#customized_banner .cont_text .text .more .btn_icon {
	margin-right: 20px;
}

#customized_banner .cont_text .text .more .btn_icon .svg {
	width: 24px;
	height: 24px;
}

#customized_banner .cont_text .text .more .i1 {
	display: inline-block;
}


#customized_banner .cont_text .text .more:hover {
	background-color: #03b076;
	color: #fff;
	opacity: 0.85;
}



#customized_banner .breadcrumb {
	position: absolute;
	bottom: 3%;
	left: 0;
	z-index: 1;
}

#customized_banner .txt_b .cont_text .text {
	color: #333;
}



/* 通用标题 */
.customized-general-title {
	padding: 60px 0px;
	text-align: center;
}

.customized-general-title .customized-title {
	text-align: center;
	font-size: 36px;
	position: relative;
	font-weight: 500;
}

.customized-general-title::after {
	content: '';
	display: block;
	width: 90px;
	height: 4px;
	background-color: #27ae60;
	margin: 20px auto 0;
	border-radius: 10px;
}

.customized-general-title .sub-title {
	font-size: 18px;
	padding-top: 15px;
	padding-bottom: 5px;
	color: #464646;
	font-weight: 400;
}



/* 定制type css */
.customized-type-box {
	padding-top: 30px;
}

.customized-type-flexbox {
	padding: 0px;
	padding-bottom: 0px;
	margin-top: 0px;
	display: flex;
	flex-wrap: wrap;
}

.customized-type-flexbox .customized-type-item {
	width: 100%;
	display: flex;
	align-items: stretch;
	margin-bottom: 40px;
	overflow: hidden;
	min-height: 400px;
	position: relative;
	justify-content: space-between;
}

.customized-type-flexbox .customized-type-item .customized-type-text {
	width: 50%;
	padding: 40px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
}

.customized-type-flexbox .customized-type-item .customized-type-text h3 {
	font-size: 28px;
	margin-bottom: 18px;
	font-weight: 500;
	width: 100%;
}

.customized-type-flexbox .customized-type-item .customized-type-text p {
	font-size: 16px;
	line-height: 1.6;
	color: #666;
}

.customized-type-flexbox .customized-type-item .customized-type-img {
	width: 48.5%;
	height: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 5px;
	box-sizing: border-box;
}

.customized-type-flexbox .customized-type-item .customized-type-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: relative;
	z-index: 2;
	/* 更精细的过渡效果 */
	opacity: 1;
	transform: translatey(1px);
	/* 初始位置轻微下移 */
	transition: all 0.35s;

}

.customized-type-flexbox .customized-type-item:hover .customized-type-img img {
	transform: scale(1.08);
}

/* 图片加载完成后显示 */
.customized-type-flexbox .customized-type-item .customized-type-img img.loaded {
	opacity: 1;
}

.customized-type-flexbox .customized-type-flexbox .customized-type-item:nth-child(0) {
	flex-direction: row-reverse;
}


/* 通用标题-2 */
.customized-general-title-2 {
	padding: 36px 0px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}

.customized-general-title-2 .title-wrap {
	width: 100%;
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 55px;
	line-height: 55px;
}

.customized-general-title-2 .title-wrap .icon {
	width: 25px;
	height: 25px;
	margin-right: 25px
}

.customized-general-title-2 .title-wrap .customized-general-title-2-h2 {
	font-size: 32px;
	font-weight: 500;
}

.customized-general-title-2 .text-wrap {
	padding-top: 15px;
}

.customized-general-title-2 .text-wrap .text-p {
	font-size: 18px;
	color: #464646;
}

/* 礼品定制场景布局样式 */
.customized-scenario-listbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px
}

.customized-scenario-listbox .customized-scenario-item {
	position: relative;
	overflow: hidden;
	border-radius: 5px;
	flex-shrink: 0;
	background: #f8f8f8;
	will-change: transform;
	height: 400px;
}

/* 场景布局第一行 */
.customized-scenario-listbox .customized-scenario-item:nth-child(1) {
	width: calc(65% - 20px);
}

.customized-scenario-listbox .customized-scenario-item:nth-child(2) {
	width: calc(35% - 20px);
}

.customized-scenario-listbox .customized-scenario-item:nth-child(3) {
	width: calc(35% - 20px);
}

.customized-scenario-listbox .customized-scenario-item:nth-child(4) {
	width: calc(65% - 20px);
}

.customized-scenario-item:nth-child(5),
.customized-scenario-item:nth-child(6),
.customized-scenario-item:nth-child(7) {
	width: calc((100% - 80px) / 3);
}




/* 礼品定制场景 图片基础样式 */
.customized-scenario-listbox .customized-scenario-item .customized-scenario-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.customized-scenario-listbox .customized-scenario-item:hover .customized-scenario-img {
	transform: scale(1.05);
}

/* ====== 阴影区域 ====== */

/* 默认状态的渐变（始终显示） */
.customized-scenario-listbox .customized-scenario-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 0) 55%,
			rgba(0, 0, 0, 0.4) 65%,
			rgba(0, 0, 0, 0.9) 100%);
}

/* hover 状态的渐变（默认隐藏） */
.customized-scenario-listbox .customized-scenario-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.3s ease;
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.1) 0%,
			rgba(0, 0, 0, 0.2) 55%,
			rgba(0, 0, 0, 0.5) 70%,
			rgba(0, 0, 0, 0.5) 100%);
}

/* hover 时显示 hover 状态的渐变 */
.customized-scenario-listbox .customized-scenario-item:hover::before {
	opacity: 0.8;
}


/* ====== 文本区域 ====== */
.customized-scenario-listbox .customized-scenario-item .customized-scenario-text {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 26px;
	color: #fff;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	align-content: flex-end;
	justify-content: flex-start;
	z-index: 2;
}

.customized-scenario-listbox .customized-scenario-item .customized-scenario-text h3 {
	display: inline-block;
	font-size: 20px;
	font-weight: 500;
	margin: 0 0 12px 0px;
	padding-bottom: 6px;
	transition: all 0.35s;
	position: relative;

}

.customized-scenario-listbox .customized-scenario-item .customized-scenario-text h4 {
	width: 100%;
	font-size: 15px;
	font-weight: 400;
	margin: 0 0 6px;
	color: #dbdbdb;
}

.customized-scenario-listbox .customized-scenario-item .customized-scenario-text p {
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
	color: #dbdbdb;
	font-weight: 300;
}



.customized-scenario-listbox .customized-scenario-item:hover .customized-scenario-text h3 {
	color: #00cc88;
}


/* 下划线初始状态 */
.customized-scenario-listbox .customized-scenario-item .customized-scenario-text h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	/* 下划线与文字的距离 */
	width: 0;
	/* 初始宽度为0（隐藏） */
	height: 1.5px;
	/* 下划线高度 */
	background-color: #fff;
	/* 下划线颜色，与文字hover颜色一致 */
	transition: width 0.35s ease;
	/* 宽度过渡动画，0.35秒 */
}

/*  hover时显示下划线 */
.customized-scenario-listbox .customized-scenario-item:hover .customized-scenario-text h3 {
	color: #fff;
}

.customized-scenario-listbox .customized-scenario-item:hover .customized-scenario-text h3::after {
	width: 100%;
	/* hover时宽度变为100%（显示） */
}



/* 定制适用产品 */
.customized-applicableproducts-box {
	margin-top: 50px;
}



/* 最外层容器 */
.customized-applicableproducts-swipertabbox {
	margin: 0 auto;
	border-radius: 8px;
	overflow: hidden;
}

/* tab导航区域 */
.customized-applicableproducts-swipertab-nav {
	width: 100%;
	padding: 0 0px;
	border-bottom: 1px solid #e5e7eb;
	display: flex;
	margin-bottom: 50px;
}

/* tab列表 */
.customized-applicableproducts-swipertab-nav .customized-applicableproducts-swipertab-navitem {
	padding: 16px 0;
	margin: 0;
	width: 200px;
	display: inline-block;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s;
}

/* 激活状态样式 */
.customized-applicableproducts-swipertab-nav .customized-applicableproducts-swipertab-navitem.active {
	color: #00cc88;
	font-weight: 500;
}

/* 激活状态下划线 */
.customized-applicableproducts-swipertab-nav .customized-applicableproducts-swipertab-navitem.active::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: #00cc88;
	/* 自定义激活线颜色 */
	transition: width 0.35s ease;
}

/* 鼠标悬停效果 */
.customized-applicableproducts-swipertab-nav .customized-applicableproducts-swipertab-navitem:not(.active):hover {
	color: #00cc88;
}

/* 内容区域（图片容器） */
.customized-applicableproducts-swipertab-content {
	width: 100%;
	overflow: hidden;
	padding-bottom: 30px;
}

/* 切换的图片 */
.customized-applicableproducts-swipertab-content .customized-applicableproducts-swipertab-slide {
	width: 100%;
	height: auto;
}

.customized-applicableproducts-swipertab-content .customized-applicableproducts-swipertab-slide .image-box {
	width: 100%;
}

.customized-applicableproducts-swipertab-content .customized-applicableproducts-swipertab-slide .image-box img {
	width: 100%;
	height: auto;
}

.customized-applicableproducts-swipertab-content .customized-applicableproducts-swipertab-slide .text-p {
	text-align: right;
	width: 100%;
	display: inline-block;
	font-size: 16px;
	color: #b2b2b2;
	padding: 10px 15px;
}


/* 成功案例与合作伙伴 */
.customized-case-wrap {
	margin-top: 30px;
	background: #f8f8f8;
	margin-bottom: 35px;
}

.customized-partners-box .ccustomized-general-title-2:nth-child(1) {
	padding-top: 0px;
	padding-bottom: 18px;
}


/* 合作伙伴容器样式 */
.customized-partners-itembox {
	overflow: hidden;
	position: relative;
	padding: 40px 0;
	padding-top: 0px;
}

/* 滚动视口 */
.customized-partners-viewport {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 15px 0px;
}

/* 滚动轨道 - 使用flex布局 */
.customized-partners-track {
	display: flex;
	position: relative;
	height: 100px;
	will-change: transform;
	/* 启用硬件加速 */
	transform: translatez(0);
	/* 触发gpu加速 */
}

/* 单个logo项 */
.customized-partners-item {
	flex-shrink: 0;
	width: 232px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
}

/* logo图片样式 */
.customized-partners-logo {
	max-width: 100%;
	max-height: 120px;
	object-fit: contain;
	opacity: 0.955;
	transition: all 0.3s ease;
}

/* 悬停效果 - 确保优先级足够高 */
.customized-partners-viewport .customized-partners-item:hover .customized-partners-logo {
	opacity: 1 !important;
	transform: scale(1.05) !important;
}


/* 合作成功案例展示 */
.customized-caselist-box .ccustomized-general-title-2 {
	padding-top: 0px;
}


/* 大盒子：居中 相对定位 */
.customized-caselist-swiperbox {
	position: relative;
	margin: 0 auto;
	padding: 20px 0px;
	padding-top: 0px;
	box-sizing: border-box;
	height: 600px;
}

/* swiper 核心容器 */
.swiper.customized-caselist-swiper {
	width: 100%;
	height: auto;
	overflow: hidden;
}

/* swiper 包裹层：flex 布局实现滑动 */
.swiper-wrapper.customized-caselist-swiper-wrapper {
	display: flex;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	/* 平滑过渡 */
}

/* 单个幻灯片：宽度自适应   间距 34px */
.swiper-slide.customized-caselist-swiper-slide {
	flex-shrink: 0;
	width: calc((100% - 68px) / 3);
	/* 3个幻灯片，总间距 34px × 2 = 68px */
	margin-right: 34px;
	box-sizing: border-box;
	background: #fff;
	border-radius: 8px;
	padding: 0px;
	text-align: center;
}

/* 最后一个幻灯片：移除右侧间距 */
.swiper-slide.customized-caselist-swiper-slide:last-child {
	margin-right: 0;
}

/* 幻灯片内容样式 */
.swiper-slide.customized-caselist-swiper-slide .img-box {
	width: 100%;
	height: auto;
	height: 342px;
	overflow: hidden;
	margin-bottom: 15px;
	border-bottom: 1px solid #f3f3f3;
}

.swiper-slide.customized-caselist-swiper-slide .img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.35s;
}

.swiper-slide.customized-caselist-swiper-slide:hover .img-box img {
	transform: scale(1.03);
}

.swiper-slide.customized-caselist-swiper-slide h3 {
	font-size: 18px;
	margin-bottom: 8px;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	padding: 5px 20px;
	padding-top: 0px;
	padding-bottom: 0px;
	font-weight: 400;
}

.swiper-slide.customized-caselist-swiper-slide p {
	font-size: 14px;
	color: #999;
	text-align: left;
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 5px 20px;
	padding-top: 0px;
	margin-bottom: 14px;
}

/* 切换箭头 */
.swiper-button-prev.customized-caselist-swiper-btn-prev,
.swiper-button-next.customized-caselist-swiper-btn-next {
	position: absolute;
	bottom: 40px;
	top: auto;
	/* 定位到底部 */
	width: 55px;
	height: 55px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.2s ease;
	transition: all .35s;
	border: 1px solid #f3f3f3;
}

.swiper-button-prev.customized-caselist-swiper-btn-prev .iconfont,
.swiper-button-next.customized-caselist-swiper-btn-next .iconfont {
	color: #333;
	font-size: 16px;
	user-select: none;
}

/* 左箭头定位 */
.swiper-button-prev.customized-caselist-swiper-btn-prev {
	left: 50%;
	transform: translate(calc(-50% - 20px - 25px), -50%) rotate(180deg);
}

/* 右箭头定位 */
.swiper-button-next.customized-caselist-swiper-btn-next {
	left: 50%;
	transform: translate(calc(-50%   20px   25px), -50%);
}

/* 箭头悬停效果 */
.swiper-button-prev.customized-caselist-swiper-btn-prev:hover,
.swiper-button-next.customized-caselist-swiper-btn-next:hover {
	background: #f9fafb;
	border-color: #f8f8f8;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 隐藏 swiper 默认箭头样式，自定义箭头内容 */
.swiper-button-prev:after,
.swiper-button-next:after {
	font-size: 16px;
	color: #333;
}


/* 优势 */
.customized-advantages-itembox {
	display: flex;
	flex-wrap: wrap;
	/* 响应式自动换行 */
	gap: 24px;
	/* 卡片之间的间距 */
	margin: 0 auto;
	margin-top: -10px;
}

/* 子项：customized-advantages-itembox-item */
.customized-advantages-itembox-item {
	flex: 1 1 calc(50% - 12px);
	/* 两列布局，自动计算宽度（抵消gap的一半） */
	min-width: 300px;
	/* 最小宽度，防止小屏幕下过窄 */
	position: relative;
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	/* hover动画过渡 */
}

/* 子项 hover 效果：上移5px   阴影增强 */
.customized-advantages-itembox-item:hover {
	transform: translatey(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* 子项图片容器 */
.customized-advantages-itembox-item-img {
	width: 100%;
	height: 436px;
	/* 图片固定高度 */
	overflow: hidden;
}

.customized-advantages-itembox-item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* 保持图片比例，覆盖容器 */
	transition: transform 0.5s ease;
	/* 图片 hover 缩放动画 */
}

/* 图片 hover 缩放效果 */
.customized-advantages-itembox-item:hover .customized-advantages-itembox-item-img img {
	transform: scale(1.05);
}

/* 子项内容容器（绝对定位在底部，配合渐变背景） */
.customized-advantages-itembox-item-content {
	position: absolute;
	bottom: 0;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	/* 底部到顶部的渐变背景 */
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-end;
	padding: 28px;
	align-content: flex-end;
}

/* 子项标题 */
.customized-advantages-itembox-item-title {
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 8px;
	line-height: 30px;
}

/* 子项描述 */
.customized-advantages-itembox-item-desc {
	font-size: 16px;
	line-height: 1.6;
	opacity: 0.9;
}




/* 礼品定制流程 */
.customized-process-wrap {
	background: #f8f8f8;
	padding-top: 40px;
	padding-bottom: 40px;
	margin-top: 120px;
	margin-bottom: 40px;
}


/* 礼品定制流程开始 */
.customized-process-itembox.container-center {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	margin-top: 0px;
	margin-bottom: 60px;
}

/* 单个流程项样式 */
.customized-process-itembox-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	position: relative;
	z-index: 2;
	width: 20%;
}

/* 流程节点圆形样式 */
.customized-process-itembox-node {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #d8d8d8;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #00cc88;
	font-weight: bold;
	font-size: 30px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
	position: relative;
	z-index: 3;
}

.customized-process-itembox-node .svg {
	width: 30px;
	height: 30px;
	filter: brightness(0) saturate(100%) invert(97%) sepia(0%) saturate(0%) hue-rotate(162deg) brightness(89%) contrast(97%);
	transition: all .35s;
}

.customized-process-itembox-node:hover,
.customized-process-itembox-item.active .customized-process-itembox-node {
	border: 2px solid #00cc88;
	transform: scale(1);
}

.customized-process-itembox-node:hover .svg,
.customized-process-itembox-item.active .customized-process-itembox-node .svg {
	filter: brightness(0) saturate(100%) invert(54%) sepia(49%) saturate(2564%) hue-rotate(122deg) brightness(100%) contrast(101%);
}

.customized-process-itembox-content {
	text-align: center;
	padding: 0 15px;
}

.customized-process-itembox-step {
	font-size: 22px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
}

.customized-process-itembox-desc {
	font-size: 16px;
	color: #999999;
	line-height: 1.6;
	font-weight: 400;
}

/* 连接线容器 */
.customized-process-itembox-connector {
	position: absolute;
	top: 35px;
	left: 10%;
	/* 从第一个节点的中心开始 */
	right: 10%;
	/* 到最后一个节点的中心结束 */
	height: 6px;
	/* 增加高度以容纳圆点 */
	z-index: 1;
	display: flex;
	align-items: center;
}

/* 基础连接线样式 - 使用真正的圆点 */
.customized-process-itembox-line {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}

/* 创建圆点虚线效果 - 使用svg确保高清无锯齿 */
.customized-process-itembox-line::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 6px;
	transform: translatey(-50%);
	/* 使用svg背景确保圆点清晰 */
	background-image: ;
	background-size: 12px 6px;
	background-repeat: repeat-x;
}

/* 动画连接线样式 - 使用真正的圆点 */
.customized-process-itembox-line-animated {
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	display: flex;
	align-items: center;
	overflow: hidden;
	/* 移除css动画，由js控制 */
}

/* 创建绿色圆点虚线效果 - 使用svg确保高清无锯齿 */
.customized-process-itembox-line-animated::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 6px;
	transform: translatey(-50%);
	/* 使用svg背景确保圆点清晰 */
	background-image: ;
	background-size: 12px 6px;
	background-repeat: repeat-x;
}



/* 底部：引导提交定制需求 */
/* 最外层盒子 */
.customized-guide-box {
	min-height: 520px;
	background-color: var(--dark-green);
	position: relative;
	display: block;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	color: var(--text-light);
	overflow: hidden;
	margin-bottom: 50px;
	border-radius: 5px;
}


/* 背景图（替换为实际图片地址） */
.customized-guide-box .customized-guide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	opacity: 0.9;
	/* 可根据需要调整透明度 */
}

.customized-guide-box .customized-guide-bg.mobileimage {
	display: none;
}


.customized-guide-box .customized-guide-boxflex {
	width: 100%;
	min-height: 520px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	align-content: center;

}

/* 定制项目 */
.customized-guide-box {
	min-height: 320px;
	padding-top: 10px;
	margin-bottom: 20px;
}



/* 提交按钮 */
.customized-guide-btn {
	background-color: #00cc88;
	color: white;
	border: none;
	padding: 12px 32px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	/* 平滑过渡 */
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}

.customized-guide-btn:hover {
	background-color: #00b377;
	transform: translatey(-2px);
	box-shadow: 0 4px 12px rgba(0, 204, 136, 0.4);
}

.customized-guide-btn .svg {
	width: 22px;
}

/* 联系信息区 */
.customized-guide-contact {
	position: absolute;
	bottom: 40px;
	right: 40px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	z-index: 1;
	color: #fff;
}

.customized-guide-qrcode {
	width: 110px;
	height: 110px;
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
}

.customized-guide-qrcode-img {
	width: 98px;
	height: 98px;
	object-fit: cover;
}

.customized-guide-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.customized-guide-info-title {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 6px;
}

.customized-guide-info-item {
	font-size: 14px;
	line-height: 1.5;
}




/* 礼品定制 表单 弹出层 */

/* 遮罩层样式 */
.customized-layer-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.75);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.customized-layer-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* 弹出层表单容器 */
.customized-layer-wrap {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 1200px;
	transform: translate(-50%, -50%) scale(0.9);
	min-height: 500px;
	max-height: 90vh;
	background: white;
	border-radius: 0px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	opacity: 0;
	transition: all 0.3s ease;
	overflow: hidden;
	visibility: hidden;
}

.customized-layer-wrap.active {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

.customized-layer-wrap-header {
	width: 100%;
	height: 80px;
	background: #ffffff;
	line-height: 80px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: fixed;
	top: 0px;
	border-bottom: 1px solid #e5e5e5;
	position: relative;
}

.customized-layer-box-title {
	font-size: 29px;
	font-weight: 700;
	color: #333;
	margin-bottom: 0px;
	line-height: 80px;
	padding-left: 25px;
	font-weight: 500;
}

/* 关闭按钮 */
.customized-layer-box-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 35px;
	height: 35px;
	background: #f0f2f5;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
}




.customized-layer-box-close:hover {
	background: #e0e6ed;
	transform: rotate(90deg);
}

.customized-layer-box-close::before,
.customized-layer-box-close::after {
	content: '';
	position: absolute;
	width: 18px;
	height: 2px;
	background: #666;
}

.customized-layer-box-close::before {
	transform: rotate(45deg);
}

.customized-layer-box-close::after {
	transform: rotate(-45deg);
}

.customized-layer-boxflex {
	display: flex;
	background: #f9fafb;
	padding-top: 30px;
	padding-bottom: 30px;
}

/* 左侧内容区域 */
.customized-layer-box-left {
	width: 540px;
	padding: 0px 40px 0px 40px;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	border-right: 1px solid #dfdfdf;
	padding-bottom: 0px;
	overflow: hidden;
	justify-content: flex-start;
}



.customized-layer-box-subtitle {
	font-size: 20px;
	font-weight: 600;
	color: #080808;
	margin-bottom: 15px;
	padding-bottom: 25px;
	font-weight: 500;
}

.customized-layer-box-contact {
	margin-bottom: 40px;
	display: flex;
	position: relative;
	top: -5px;
}

.customized-layer-box-contact .qr-box {
	width: 110px;
	height: 110px;
	background: white;
	margin-right: 18px;
	display: flex;
	justify-content: center;
	align-items: center
}

.customized-layer-box-contact .qr-box img {
	width: 95px;
	height: 95px;
}

.customized-layer-box-contact p {
	font-size: 16px;
	color: #666;
	margin-bottom: 8px;
	line-height: 1.2;
}

/* swiper案例标题 */
.customized-layer-box-case-title {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
	margin-top: 80px;
}

/* swiper样式 */
.customized-layer-box-swiper {
	width: 366px;
	height: auto;
	overflow: hidden;
	margin-bottom: 30px;
	margin-left: 10px;
}

.customized-layer-box-slide {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: flex-start;
	border-radius: 12px;
	overflow: hidden;
	flex-wrap: wrap;
}

.customized-layer-box-slide img {
	width: 366px;
	height: 275px;
	object-fit: cover;
	display: block;
	margin-bottom: 15px;
	border-radius: 5px;
}

.customized-layer-box-slide .customized-layer-box-case-desc {
	font-size: 16px;
	width: 100%;
	color: #a0a0a0;
	text-align: left;
	overflow: hidden;
	font-weight: 400;
	line-height: 30px;
	white-space: nowrap;
	text-overflow: ellipsis;

}

/* 右侧表单区域 */
.customized-layer-box-right {
	padding: 0px 40px 0px 40px;
	width: calc(100% - 520px);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	height: 100%;


}


.customized-layer-box-right .customized-layer-box-formbox {
	max-height: 700px;
	overflow-y: auto;
	flex-direction: column;
	padding-right: 20px;
	padding-bottom: 40px;
	padding-left: 5px;
	position: relative;
	margin-top: -8px;
}

.customized-layer-box-form {
	display: flex;
	flex-direction: column;
	gap: 0px;


}

.customized-layer-box-form-group {
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
}

.customized-layer-box-form-label {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}

.customized-layer-box-form-label span {
	color: #e74c3c;
}

.customized-layer-box-form-input {
	padding: 12px 16px;
	border: 1px solid rgba(221, 221, 221, 0.5);
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s ease;
	max-height: 40px;
	background: white;
	width: 50%;
}

.customized-layer-box-form-input:focus {
	border-color: #00cc88;
	box-shadow: 0 0 0 2px rgba(0, 204, 136, 0.2);
	outline: none;
}

.customized-layer-box-form-input.error {
	border-color: #e74c3c;
}

.customized-layer-box-form-error {
	color: #e74c3c;
	font-size: 14px;
	margin-top: 5px;
	display: none;
	font-weight: 400;
}

.customized-layer-box-form-error.show {
	display: block;
}

/* 需求描述框 */
.customized-layer-box-form-textarea {
	min-height: 50px;
	width: 100%;
	resize: none;
	padding: 12px 16px;
	border: 1px solid rgba(221, 221, 221, 0.5);
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s ease;
	font-family: inherit;
	line-height: 1.5;
}

/* 自定义下拉选择框 */
.customized-layer-box-select {
	position: relative;
}

.customized-layer-box-select-header {
	padding: 12px 40px 12px 16px;
	border: 1px solid rgba(221, 221, 221, 0.5);
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: white;
	position: relative;
	width: 100%;
	user-select: none;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	height: 40px;

}

.customized-layer-box-select-header::after {
	content: '';
	width: 8px;
	height: 8px;
	border-right: 2px solid #666;
	border-bottom: 2px solid #666;
	transform: translatey(-50%) rotate(45deg);
	transition: transform 0.3s ease;
	position: absolute;
	background: #fff;
	right: 16px;
	top: calc(50% - 2px);
	flex-shrink: 0;
	/* 禁止图标被压缩，确保文本有足够空间 */
}

.customized-layer-box-select-header.active::after {
	transform: translatey(-50%) rotate(-135deg);
	top: calc(50%   2px);
}

/* 多级下拉选项 */



/* 下拉选项容器 */
.customized-layer-box-select-options {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: white;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	z-index: 10;
	max-height: 200px;
	overflow-y: auto;
	display: none;
	margin-top: 4px;
}

.customized-layer-box-select-options.active {
	display: block;
}

/* 单个选项 */
.customized-layer-box-option {
	padding: 12px 16px;
	cursor: pointer;
	transition: background 0.2s ease;
	display: flex;
	align-items: center;
	gap: 10px;
}

.customized-layer-box-option:hover {
	background: #f5f7fa;
}

.customized-layer-box-option.selected {
	background: #f3f3f3;
}

/* 自定义复选框 */
.customized-layer-box-checkbox {
	width: 18px;
	height: 18px;
	border: 2px solid #ddd;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.customized-layer-box-option.selected .customized-layer-box-checkbox {
	background: #00cc88;
	border-color: #00cc88;
}

.customized-layer-box-option.selected .customized-layer-box-checkbox::after {
	content: '';
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	margin-top: -3px;
}

/* 选项文本 */
.customized-layer-box-option-text {
	font-size: 15px;
	color: #333;
}


/* 验证码区域 */
.customized-layer-box-captcha {
	display: flex;
	gap: 10px;
}

.customized-layer-box-captcha-input {
	width: 50%;
}

.customized-layer-box-captcha-img {
	width: 120px;
	height: 40px;
	background: #f0f2f5;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: 600;
	color: #333;
	cursor: pointer;
	user-select: none;
}

.customized-layer-box-captcha-img img {
	width: 100%;
	height: 100%;
	border-radius: 5px;

}

/* 提交按钮 */
.customized-layer-box-submit {
	background: #00cc88;
	color: white;
	border: none;
	padding: 10px 20px;
	box-sizing: border-box;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 10px;
	width: 166px;
	border-radius: 50px;
	position: relative;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}


.customized-layer-box-submit .jt {
	margin-left: 15px;
}

.customized-layer-box-submit .jt .svg {
	font-size: 8px;
	color: #fff;
}

.customized-layer-box-submit input {
	width: 100%;
	height: 100%;
	opacity: 0;
}

.customized-layer-box-submit:hover {
	opacity: 0.8;
}

.customized-layer-box-submit .btn-loading.hide {
	display: none;
}

.customized-layer-box-submit .spinner {
	position: relative;
	top: 1px;
}

/* 提交成功 */
.customized-successfully-box {
	padding: 40px;
	min-height: 500px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	text-align: center;
}

.customized-successfully-box .imgbox {
	padding: 30px;
	padding-bottom: 25px;
	text-align: center;
	width: 100%;
}

.customized-successfully-box .imgbox .svg {
	width: 100px;
}

.customized-successfully-box .text {
	font-size: 18px;
	width: 100%;
	text-align: center;
	font-weight: 400;
}

.customized-successfully-box .text span {
	color: #00cc88;
	padding-right: 10px;
}

.customized-successfully-box .tip {
	font-size: 16px;
	padding-top: 20px;
	color: #8f8f8f;
}

.customized-successfully-box .back-box {
	width: 100%;
	text-align: center;
}

.customized-successfully-box .back-box a {
	background: #8f8f8f;
	display: inline-block;
	padding: 12px 40px;
	border-radius: 40px;
	color: #fff;
	margin-top: 30px
}

/* 弹出层后侧表单 下拉条形 */
.customized-layer-box-right .customized-layer-box-formbox::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

.customized-layer-box-right .customized-layer-box-formbox::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 4px;
}

.customized-layer-box-right .customized-layer-box-formbox::-webkit-scrollbar-thumb {
	background: #333;
	border-radius: 4px;
	border: 1px solid #f1f1f1;
}

.customized-layer-box-right .customized-layer-box-formbox::-webkit-scrollbar-thumb:hover {
	background: #111;
}

.customized-layer-box-right .customized-layer-box-formbox {
	scrollbar-color: #333 #f1f1f1;
	scrollbar-width: thin;
}

/* ------------------- 其他屏幕适配开始------------------- */

@media (max-width: 1680px) {

	#customized_banner {
		height: 88vh;
	}

	.customized-layer-wrap {
		max-height: 90vh;
	}

	.customized-layer-box-right .customized-layer-box-formbox {
		max-height: 62vh;
		overflow-y: scroll;
	}

	.customized-layer-box-subtitle {
		margin-bottom: 10px;
	}

	.customized-layer-box-contact {
		margin-top: 25px;
	}

	.customized-layer-box-left {
		justify-content: flex-start;
		padding-left: 30px;
	}

	.customized-layer-box-case-title {
		margin-top: 5px;
	}

}


@media (max-width: 1536px) {

	#customized_banner {
		height: 80vh;
	}

	#customized_banner .cont_text .text .title {
		font-size: 40px;
	}

	#customized_banner .cont_text .text .brief {
		font-size: 20px;
	}

	#customized_banner .cont_text .text .more {
		margin-top: 50px;
	}

	/* 通用标题1 */
	.customized-general-title {
		padding: 40px 0px;
		text-align: center;
	}

	.customized-general-title .customized-title {
		font-size: 32px;
	}


	/* 弹出层小电脑屏幕  弹出层*/
	.customized-layer-wrap {
		max-height: 85vh;
	}

	.customized-layer-wrap-header {
		height: 55px;
		z-index: 9999;
	}

	.customized-layer-box-contact {
		margin-top: 5px;
	}

	.customized-layer-box-title {
		font-size: 24px;
		line-height: 55px;
	}

	.customized-layer-box-close {
		top: 8px;
	}

	.customized-layer-box-left {
		width: 400px;
		justify-content: flex-start;
		padding-left: 30px;
	}


	.customized-layer-box-subtitle {
		font-size: 17px;
		margin-bottom: 5px;
	}

	.customized-layer-box-contact {
		top: 0px;
		margin-bottom: 10px;
	}


	.customized-layer-box-contact .qr-box {
		width: 100px;
		height: 100px;
	}

	.customized-layer-box-contact p {
		font-size: 13px;
	}

	.customized-layer-box-case-title {
		margin-top: 10px;
	}

	.customized-layer-box-swiper {
		width: 270px
	}

	.customized-layer-box-slide img {
		width: 240px;
		height: 192px;
	}

	.customized-layer-box-case-title {
		font-size: 17px;
	}

	.customized-layer-box-slide .customized-layer-box-case-desc {
		font-size: 14px;
		line-height: 25px;
	}

	.customized-layer-box-right {
		width: calc(100% - 350px);
		height: auto;
	}

	.customized-layer-wrap-header {
		position: relative;
	}

	/* 滚动条 */
	.customized-layer-box-right .customized-layer-box-formbox {
		max-height: 58vh;
		overflow-y: scroll;
	}




	.customized-layer-box-form-group {
		margin-bottom: 8px;
	}

	.customized-layer-box-form-label,
	.customized-layer-box-form-textarea,
	.customized-layer-box-select-header,
	.customized-layer-box-form-input,
	.customized-layer-box-submit,
	.customized-layer-box-option-text {
		font-size: 14px;
	}

	.customized-layer-box-submit {
		margin-top: 20px;
	}

}

@media (max-width: 1440px) {
	#customized_banner {
		height: 70vh;
	}

	/* 礼品定制类型 */
	.customized-type-flexbox .customized-type-item {
		min-height: 300px;
		margin-bottom: 30px;
	}

	/* 定制礼盒场景 */

	.customized-scenario-listbox {
		gap: 26px;
	}

	.customized-scenario-listbox .customized-scenario-item {
		height: 300px
	}

	/* 场景布局第一行 */
	.customized-scenario-listbox .customized-scenario-item:nth-child(1) {
		width: calc(65% - 13px);
	}

	.customized-scenario-listbox .customized-scenario-item:nth-child(2) {
		width: calc(35% - 13px);
	}

	.customized-scenario-listbox .customized-scenario-item:nth-child(3) {
		width: calc(35% - 13px);
	}

	.customized-scenario-listbox .customized-scenario-item:nth-child(4) {
		width: calc(65% - 13px);
	}

	.customized-scenario-item:nth-child(5),
	.customized-scenario-item:nth-child(6),
	.customized-scenario-item:nth-child(7) {
		width: calc((100% - 52px) / 3);
	}

	.customized-scenario-listbox .customized-scenario-item::after {
		background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0.7) 65%, rgba(0, 0, 0, 0.9) 100%);
	}

	/* 通用标题 - 2 */
	.customized-general-title-2 {
		padding: 28px 0px;
	}

	.customized-general-title-2 .title-wrap .customized-general-title-2-h2 {
		font-size: 30px;
	}

	.customized-general-title-2 .text-wrap .text-p {
		font-size: 17px;
	}

	.customized-general-title .sub-title {
		font-size: 17px;
	}

	/* 礼品定制适用产品 */
	.customized-case-wrap {
		padding-top: 30px;
	}

	.customized-applicableproducts-swipertab-nav .customized-applicableproducts-swipertab-navitem {
		width: 20%;
	}

	.customized-applicableproducts-swipertab-nav {
		margin-bottom: 40px
	}

	.customized-partners-itembox {
		padding-bottom: 20px;
	}

	/* 礼品定制合作伙伴 */


	.customized-caselist-swiperbox {
		height: 550px;
	}

	.swiper-slide.customized-caselist-swiper-slide .img-box {
		height: 300px;
	}


	/* 绿联礼品定制核心优势 */
	.customized-advantages-itembox-item-img {
		height: 350px
	}


	.customized-advantages-itembox-item-title {
		font-size: 20px;
	}

	.customized-advantages-itembox-item-desc {
		font-size: 14px;
	}

	/* 定制流程 */
	.customized-process-wrap {
		margin-top: 70px;
		padding-top: 30px;
		margin-bottom: 10px;
	}


	.customized-guide-box .customized-guide-boxflex {
		min-height: 450px
	}

	/* 弹出层 */
	.customized-layer-wrap {
		max-width: 1100px;
	}

	.customized-layer-boxflex {
		padding-top: 18px;
	}

	.customized-layer-box-subtitle,
	.customized-layer-box-case-title {
		font-size: 16px;
	}

	.customized-layer-box-subtitle {
		padding-bottom: 10px;
	}


	.customized-layer-box-slide img {
		width: 200px;
		height: 167px;
	}

	.customized-layer-box-slide .customized-layer-box-case-desc {
		font-size: 13px;
		line-height: 20px;
	}

	.customized-layer-box-right .customized-layer-box-formbox {
		max-height: 63vh;
	}

}


@media (max-width: 1366px) {
	#customized_banner {
		height: 66vh;
	}

	/* 礼品定制类型 */
	.customized-type-flexbox .customized-type-item {
		min-height: 300px;
		margin-bottom: 30px;
	}

}


@media (max-width: 1280px) {


	/* banner */
	#customized_banner {
		height: 70vh;
	}

	#customized_banner .cont_text .text .title {
		font-size: 30px;
		line-height: 1;
	}

	#customized_banner .cont_text .text .brief {
		font-size: 16px;
	}

	#customized_banner .cont_text .text .more {
		margin-top: 25px;
		height: 40px;
	}

	.customized-layer-wrap {
		max-width: 85vw;
	}


}


@media (max-width: 1200px) {

	/* banner */
	#customized_banner {
		height: 77vh;
	}

	/* 礼品定制类型 */

	.customized-type-flexbox .customized-type-item {
		min-height: 220px;
		margin-bottom: 30px;
	}

	.customized-type-flexbox .customized-type-item .customized-type-text p {
		font-size: 14px;
	}

	.customized-type-flexbox .customized-type-item .customized-type-text p br {
		display: none;
	}

	.customized-scenario-listbox .customized-scenario-item {
		height: 260px;
	}

	.customized-scenario-listbox .customized-scenario-item .customized-scenario-text h3 {
		font-size: 18px;
	}

	/* 优势 */
	.customized-advantages-itembox-item-img {
		height: 260px;
	}

	.customized-caselist-swiperbox {
		height: 490px;
	}

	.swiper-slide.customized-caselist-swiper-slide .img-box {
		height: 240px;
	}

	.swiper-slide.customized-caselist-swiper-slide h3 {
		font-size: 16px;
	}

	.customized-process-itembox-desc {
		font-size: 14px
	}

	.customized-guide-box .customized-guide-boxflex {
		min-height: 370px;

	}

	.customized-guide-btn {
		padding: 8px 25px;
		margin-top: -1rem;
		font-size: 14px;
	}

}

/* 导航栏开始变成按钮方式 */
@media (max-width: 1050px) {

	.customized_main {
		margin-top: 90px;
	}

}

/* 导航栏变成移动端样式 */
@media (max-width: 992px) {

	.customized_main {
		margin-top: 66px;
	}


	.customized-layer-wrap {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		max-width: none;
		max-height: none;
		transform: none;
		border-radius: 0;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		/* 平滑滚动 */
	}

	.customized-layer-wrap.active {
		transform: none;
	}


	/* 调整布局为垂直排列 */
	.customized-layer-boxflex {
		flex-direction: column;
		padding: 0;
		height: auto;
		min-height: 100%;
		flex-wrap: wrap;
	}

	/* 移动端优先显示表单区域 */
	.customized-layer-box-right {
		width: 100%;
		padding: 20px 15px;
		order: 1;
		/* 表单区域显示在第一位 */
	}

	/* 移动端联系方式与案例 */
	.customized-layer-box-left {
		width: 100%;
		padding: 20px 15px;
		border-right: none;
		border-top: 1px solid #dfdfdf;
		order: 2;
		/* 左侧内容显示在第二位 */
		margin-top: 0;
	}

	.customized-layer-box-title {
		font-size: 3.8vmin;
		padding-left: 15px;
	}

	.customized-layer-box-close {
		right: 10px;
	}

	.customized-layer-box-subtitle,
	.customized-layer-box-case-title {
		font-size: 3.8vmin;
	}

	.customized-layer-box-case-title {
		margin-bottom: 3.8vmin;
	}

	/* 移动端取消滚动条 */
	.customized-layer-box-right .customized-layer-box-formbox {
		overflow-y: visible !important;
		max-height: none !important;
		min-height: 200px;
		height: auto;
		padding-bottom: .3rem;
	}

	.customized-layer-box-form-group {
		margin-bottom: 8px;
	}

	.customized-layer-box-form-input {
		padding: 7px 10px;
		max-height: 38px;
		overflow: hidden;
	}

	.customized-layer-box-select-header {
		padding: 7px 40px 7px 10px;
		max-width: calc(100% - 40px);
	}

	.customized-layer-box-form-label,
	.customized-layer-box-form-textarea,
	.customized-layer-box-select-header,
	.customized-layer-box-form-input,
	.customized-layer-box-submit,
	.customized-layer-box-option-text {
		font-size: 14px;
	}

	.customized-layer-box-captcha-img {
		height: 38px;
	}

	/* 提交按钮 */
	.customized-layer-box-submit {
		padding: 7px 10px;
		width: 188px;
		height: 38px;
	}

	.customized-layer-box-left .customized-layer-box-subtitle {
		margin-bottom: 0px;
	}

	.customized-layer-box-contact {
		margin-bottom: 20px;
	}

	/* 提交成功 */
	.customized-successfully-box .text {
		font-size: 16px;
	}

	.customized-successfully-box .tip {
		font-size: 14px;
	}

	.customized-layer-wrap-header {
		position: fixed;
	}

	.customized-layer-box-right {
		margin-top: 55px;
	}


}

/* 移动端 手机端 样式 */
@media (max-width: 768px) {


	/* banner */
	#customized_banner {
		height: 145vw;
		max-height: max-content;
	}

	#customized_banner .cont_text {
		height: max-content;
		width: 100vw;
		top: 10%;
		transform: translatey(0);
		z-index: 1;
		animation: none;
	}

	#customized_banner .cont_text .text {
		display: flex;
	}

	#customized_banner .cont_text .box {
		width: 100%;
		text-align: center;
	}

	#customized_banner .cont_text .text .title {
		font-size: 0.45rem;
	}

	#customized_banner .cont_text .text .brief {
		font-size: 0.32rem;
	}

	#customized_banner .cont_text .text .brief br {
		display: block;
	}

	#customized_banner .cont_text .text .more {
		margin: 0 auto;
		margin-top: 0.8rem;
		font-size: 0.25rem;
		height: 35px;
		padding-left: 18px;
		padding-right: 18px;
	}

	#customized_banner .pic {
		position: relative;
		display: grid;
	}



	#customized_banner .pic img {
		animation: none;
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;

	}


	/* 移动端正式开始 */
	.customized-type-box {
		padding-top: 10px;
	}

	.customized-general-title {
		padding: 0.3rem 0.1rem;
	}

	.customized-general-title .customized-title {
		font-size: 0.34rem;
	}

	.customized-general-title::after {
		width: 1rem;
	}

	.customized-general-title .sub-title {
		font-size: 0.26rem;
	}

	/* 定制type */
	.customized-type-flexbox .customized-type-item {
		flex-wrap: wrap;
		min-height: 1px !important;
		margin-bottom: 10px;
	}

	.customized-type-flexbox .customized-type-item .customized-type-img {
		width: 100%;
		height: auto;
		object-fit: cover;
		display: block;
		position: relative;
		z-index: 2;
		opacity: 1;
		transform: translatey(1px);
		transition: all 0.35s;
	}

	.customized-type-flexbox .customized-type-item .customized-type-text {
		width: 100%;
		order: 2;
		padding: 0.4rem 0rem;
	}

	.customized-type-flexbox .customized-type-item .customized-type-text h3 {
		font-size: 0.31rem;
	}

	.customized-type-flexbox .customized-type-item .customized-type-text p {
		font-size: 0.24rem;
	}

	.customized-type-flexbox .customized-type-item:nth-child(2) .customized-type-text h3 {
		text-align: right;
	}

	/* 通用标题-2 */
	.customized-general-title-2 {
		padding: 0.2rem 0px;
	}

	.customized-general-title-2 .text-wrap {
		padding-top: 0.1rem;
	}

	.customized-general-title-2 .title-wrap .icon {
		width: 0.4rem;
		height: 0.4rem;
		margin-right: 0.3rem;
	}

	.customized-general-title-2 .title-wrap .customized-general-title-2-h2 {
		font-size: 0.34rem
	}

	.customized-general-title-2 .text-wrap .text-p {
		font-size: 0.24rem;
		padding-top: 0rem;
	}

	/* 定制场景说明 */
	.customized-scenario-listbox {
		gap: 0.2rem
	}

	.customized-scenario-listbox .customized-scenario-item {
		height: 4.4rem;
	}

	.customized-scenario-listbox .customized-scenario-item:nth-child(1) {
		width: calc(100%);
	}

	.customized-scenario-listbox .customized-scenario-item:nth-child(2) {
		width: calc(100%)
	}

	.customized-scenario-listbox .customized-scenario-item:nth-child(3) {
		width: calc(100%)
	}

	.customized-scenario-listbox .customized-scenario-item:nth-child(4) {
		width: calc(100%)
	}

	.customized-scenario-item:nth-child(5),
	.customized-scenario-item:nth-child(6),
	.customized-scenario-item:nth-child(7) {
		width: calc(100%)
	}

	.customized-scenario-listbox .customized-scenario-item .customized-scenario-text {
		padding: 0.3rem;
	}

	.customized-scenario-listbox .customized-scenario-item .customized-scenario-text h3 {
		font-size: 0.32rem;
		padding-bottom: 0rem;
	}

	.customized-scenario-listbox .customized-scenario-item .customized-scenario-text h4 {
		font-size: 0.28rem;
	}

	.customized-scenario-listbox .customized-scenario-item .customized-scenario-text p {
		font-size: 0.23rem;
	}

	/* 适用产品 */
	.customized-applicableproducts-box {
		margin-top: 0.5rem;
	}

	.customized-applicableproducts-swipertab-nav .customized-applicableproducts-swipertab-navitem {
		width: 2.5rem;
	}

	.customized-applicableproducts-swipertab-nav {
		margin-bottom: 0.5rem;
	}

	.customized-applicableproducts-swipertab-nav .customized-applicableproducts-swipertab-navitem:hover {
		color: #333;
	}

	.customized-applicableproducts-swipertab-nav .customized-applicableproducts-swipertab-navitem.active {
		color: #00cc88;
	}

	.customized-applicableproducts-swipertab-content .customized-applicableproducts-swipertab-slide .text-p {
		font-size: 0.24rem;
		text-align: left;
	}

	/* 合作伙伴 */
	.customized-case-wrap {
		margin-top: 0.1rem;
		padding-top: 0.2rem;
	}

	.customized-partners-box {
		padding-top: 0px;
		margin-top: -10px;
	}

	.customized-partners-track {
		height: 60px;
	}

	.customized-partners-item {
		width: 130px;
		height: 56px;
		padding: 0px 0.1rem;
	}

	.customized-partners-itembox {
		padding-bottom: 0px;
	}

	/* 合作案例 */
	.customized-caselist-swiperbox {
		height: 440px;
	}

	.swiper-slide.customized-caselist-swiper-slide .img-box {
		height: 260px;
	}

	.swiper-slide.customized-caselist-swiper-slide h3 {
		font-size: 0.26rem
	}

	.swiper-slide.customized-caselist-swiper-slide p {
		font-size: 0.24rem
	}

	.swiper-button-prev.customized-caselist-swiper-btn-prev:hover,
	.swiper-button-next.customized-caselist-swiper-btn-next:hover {
		box-shadow: none;
		background: #fff;
	}

	.swiper-button-prev.customized-caselist-swiper-btn-prev,
	.swiper-button-next.customized-caselist-swiper-btn-next {
		width: 44px;
		height: 44px;
		bottom: 5px;
	}

	/* 定制优势 */
	.customized-advantages-itembox {
		gap: 0.2rem;
		margin-top: 0.2rem;
	}

	.customized-advantages-itembox-item {
		height: 3.8rem;
	}

	.customized-advantages-itembox-item-title {
		font-size: 0.3rem;
	}

	.customized-advantages-itembox-item-content {
		padding: 0.3rem;
	}

	.customized-advantages-itembox-item-desc {
		font-size: 0.24rem;
	}

	/* 定制流程 */
	.customized-process-wrap {
		margin-top: 0.8rem;
		padding-top: 0.3rem;
		padding-bottom: 0px;
	}

	.customized-process-itembox {
		display: flex;
		flex-wrap: wrap;
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		margin-bottom: 0.3rem !important;
	}

	.customized-process-itembox-item {
		width: 50%;
		flex: none;
		padding-bottom: 0.4rem;
	}

	.customized-process-itembox-connector {
		display: none;
	}

	.customized-process-itembox-node {
		width: 66px;
		height: 66px;
	}

	.customized-process-itembox-step {
		font-size: 0.3rem;
	}

	.customized-process-itembox-desc {
		font-size: 0.24rem;
	}

	/* 开始专属定制引导 */
	.customized-guide-box {
		padding-top: 0rem;
		margin-bottom: 0rem;
		min-height: 1rem;
		width: 100%;
		height: 155vw;
		position: relative;
	}

	.customized-guide-contact {
		bottom: 10px;
		width: 100%;
		gap: 10px;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		right: 0px;
		padding-top: 1rem;
	}

	.customized-guide-box .customized-guide-bg.pcimage {
		display: none;
	}

	.customized-guide-box .customized-guide-bg.mobileimage {
		display: block;
		height: 100%;
		bottom: 0px;
		top: -20vw;
	}


	.customized-guide-box .customized-guide-boxflex {
		height: auto;
		min-height: 5rem !important;
	}

	.customized-guide-contact {
		display: flex;
		flex-wrap: wrap;
	}

	.customized-guide-qrcode {
		margin-right: 10px;
		width: 100px;
		height: 100px;
	}

	.customized-guide-qrcode-img {
		height: 95%;
		width: 95%;
	}


	.customized-guide-info-title {
		font-size: 16px;
	}

	..customized-guide-info-item {
		font-size: 0.24rem
	}

	.customized-guide-btn {
		margin-top: 1.5rem;
	}

	.customized-layer-box-swiper {
		width: 100%;
		margin-left: 0px;
	}

	.customized-layer-box-slide {
		width: 100%;
	}

	.customized-layer-box-slide img {
		width: 100%;
		height: auto;
	}


	.customized-layer-wrap-header {
		position: fixed;
	}



}


@media (max-width: 530px) {}