﻿/*通用类*/

@media only screen and (max-width: 750px) {
	.about_box_3 {
		padding: 50px 0;
	}
	.ab3-title {
		font-size: 28px;
	}
	.ab3-desc {
		font-size: 15px;
		margin-bottom: 36px;
	}
	.ab3-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 28px 16px;
	}
	.ab3-logo {
		height: 64px;
	}
}


/* ===================== APPLICATION yinyong_box_1 ===================== */
.yinyong_box_1 {
	position: relative;
	background: #fff;
	padding: 80px 0;
}

/* 顶部居中的文字背景图（不裁剪） */
.yinyong_box_1::before {
	content: "";
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 240px;
	background: url('../images/bg1.png') no-repeat center top;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

.yinyong_box_1 > .container {
	position: relative;
	z-index: 1;
}

.yy-head {
	margin-bottom: 50px;
}

.yy-sub {
	color: #2d8ac0;
	font-size: 18px;
	margin-bottom: 8px;
}

.yy-title {
	font-family: "Montserrat Alt Bold", sans-serif;
	font-size: 48px;
	font-weight: 700;
	color: #222;
	letter-spacing: 1px;
}

/* 行：图 + 内容；偶数行通过 row-reverse 左右调换 */
.yy-row {
	display: flex;
	align-items: flex-start;
	gap: 60px;
	margin-bottom: 80px;
}

.yy-row:last-child {
	margin-bottom: 0;
}

.yy-row:nth-child(even) {
	flex-direction: row-reverse;
}

/* 大图 + 橙色 L 角 */
.yy-pic {
	flex: 0 0 26%;
	max-width: 26%;
	position: relative;
}

.yy-pic img {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
	/* 第 1 行：左上小、左下大，右侧直角（L 角在右下露出） */
	border-radius: 40% 0 0 40%;
}

/* 第 2 行镜像：右上小、右下大，左侧直角（L 角在左下露出） */
.yy-row:nth-child(even) .yy-pic img {
	border-radius: 0 40% 40% 0;
}

/* 橙色 L 角（伪元素） */
.yy-pic::before {
	content: "";
	position: absolute;
	right: -14px;
	bottom: -14px;
	width: 90px;
	height: 90px;
	background: #2d8ac0;
	z-index: 1;
	/* L 形：上边 + 右边切空 */
	clip-path: polygon(0 70%, 30% 70%, 30% 0, 100% 0, 100% 100%, 0 100%);
}

.yy-row:nth-child(even) .yy-pic::before {
	right: auto;
	left: -14px;
	clip-path: polygon(0 0, 70% 0, 70% 70%, 100% 70%, 100% 100%, 0 100%);
}

/* 信息区 */
.yy-info {
	flex: 1 1 auto;
	min-width: 0;
}

.yy-info-title {
	display: flex;
	align-items: center;
	font-family: "Montserrat Alt Bold", sans-serif;
	font-size: 30px;
	font-weight: 700;
	color: #222;
	margin-bottom: 8px;
	margin-top: -20px;
}

.yy-info-title img {
	width: 56px;
	height: 56px;
	object-fit: contain;
	margin-right: 18px;
	flex: 0 0 auto;
}

.yy-info-desc {
	font-size: 16px;
	line-height: 1.8;
	color: #3a3a3a;
	margin-bottom: 32px;
	text-align: left;
}

/* 3 张小图（改为 Swiper 轮播 + 两侧箭头） */
.yy-thumbs {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
}

.yy-swiper {
	flex: 1 1 0;
	width: 0;
	min-width: 0;
	overflow: hidden;
}

/* 左右箭头（圆形按钮） */
.yy-arrow {
	position: relative;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #f0f0f0;
	cursor: pointer;
	transition: background 0.3s ease;
	display: block;
	user-select: none;
}

.yy-arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	border-right: 2px solid #666;
	border-bottom: 2px solid #666;
	transition: border-color 0.3s ease;
}

.yy-arrow-prev::before {
	transform: translate(-30%, -50%) rotate(135deg);
}

.yy-arrow-next::before {
	transform: translate(-70%, -50%) rotate(-45deg);
}

.yy-arrow:hover {
	background: #2d8ac0;
}

.yy-arrow:hover::before {
	border-color: #fff;
}

.yy-arrow.swiper-button-disabled {
	opacity: 0.45;
	cursor: default;
}

.yy-thumb {
	text-align: center;
	box-sizing: border-box;
}

.yy-thumb img {
	width: 100%;
	height: 225px;
	object-fit: contain;
	display: block;
	margin: 0 auto;
	background: #f4f4f4;
	border-radius: 6px;
	padding: 4px;
	transition: transform 0.35s ease;
}

.yy-thumb:hover img {
	transform: scale(1.06);
}

.yy-thumb p {
	font-size: 14px;
	color: #444;
	text-align: center;
	margin-top: 12px;
}

/* ---- 响应式 ---- */
@media only screen and (max-width: 1200px) {
	.yy-title {
		font-size: 40px;
	}
	.yy-info-title {
		font-size: 24px;
	}
	.yy-info-title img {
		width: 46px;
		height: 46px;
	}
	.yy-pic::before,
	.yy-row:nth-child(even) .yy-pic::before {
		width: 70px;
		height: 70px;
	}
}

@media only screen and (max-width: 992px) {
	.yy-row {
		gap: 36px;
		margin-bottom: 60px;
	}
	.yy-info-desc {
		font-size: 14px;
	}
	.yy-thumb img {
		height: 150px;
	}
	/* 中屏：箭头/间距同步缩一点 */
	.yy-thumbs {
		gap: 12px;
	}
	.yy-arrow {
		width: 34px;
		height: 34px;
	}
	.yy-arrow::before {
		width: 9px;
		height: 9px;
	}
}

/* 手机端：统一上图下文 */
@media only screen and (max-width: 750px) {
	.yinyong_box_1 {
		padding: 50px 0;
	}
	.yy-head {
		margin-bottom: 30px;
	}
	.yy-title {
		font-size: 30px;
	}
	.yy-sub {
		font-size: 14px;
	}
	.yy-row,
	.yy-row:nth-child(even) {
		flex-direction: column;
		gap: 24px;
		margin-bottom: 50px;
	}
	.yy-pic {
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
	}
	.yy-info-title {
		font-size: 20px;
		margin-bottom: 12px;
	}
	.yy-info-title img {
		width: 36px;
		height: 36px;
	}
	.yy-info-desc {
		margin-bottom: 22px;
	}
	.yy-thumbs {
		gap: 6px;
	}
	.yy-thumb {
		padding: 0;
	}
	.yy-thumb img {
		height: 120px;
	}
	.yy-thumb p {
		font-size: 12px;
	}
	/* 手机端：箭头再缩一档，避免挤占轮播空间 */
	.yy-arrow {
		width: 28px;
		height: 28px;
	}
	.yy-arrow::before {
		width: 7px;
		height: 7px;
		border-right-width: 1.5px;
		border-bottom-width: 1.5px;
	}
	/* 手机端取消图片圆角与橙色 L 角 */
	.yy-pic img,
	.yy-row:nth-child(even) .yy-pic img {
		border-radius: 0 !important;
	}
	.yy-pic::before,
	.yy-row:nth-child(even) .yy-pic::before {
		display: none !important;
	}
	.banner{
		margin-top: 70PX;
	}
}


/* ===================== 新闻列表 news ===================== */
.news {
	background: #fff;
	padding: 70px 0 90px;
}

/* 筛选 */
.news-filter {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-bottom: 40px;
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 20px;
}

.news-filter a {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	color: #333;
	padding: 4px 4px;
	transition: color 0.3s ease;
}

.news-filter a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -22px;
	width: 100%;
	height: 2px;
	background: #2d8ac0;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.35s ease;
}

.news-filter a:hover,
.news-filter a.active {
	color: #2d8ac0;
}

.news-filter a.active::after {
	transform: scaleX(1);
}

/* 列表 */
.news-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.news-card {
	display: block;
	color: inherit;
	text-decoration: none;
	transition: transform 0.4s ease;
}

.news-card:hover {
	transform: translateY(-6px);
}

/* 图片区：整体右上大圆角切角 */
.news-pic {
	position: relative;
	width: 100%;
	height: 250px;
	border-radius: 4px 80px 4px 4px;
	overflow: hidden;
	background: linear-gradient(135deg, #d8d8d8, #f7f7f7 50%, #d8d8d8);
}

.news-pic img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-pic img {
	transform: scale(1.08);
}

/* 左下日期 badge */
.news-date {
	position: absolute;
	left: 0;
	bottom: 0;
	min-width: 90px;
	padding: 14px 20px;
	background: #fe5e10;
	border-radius: 0 24px 0 0;
	color: #fff;
	z-index: 3;
	text-align: left;
	transition: padding 0.4s ease, background 0.4s ease;
}

.news-date em {
	display: block;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.05;
	font-style: normal;
	letter-spacing: 0.5px;
}

/* 年份与月日间的细线 */
.news-date em::after {
	content: "";
	display: block;
	width: 28px;
	height: 2px;
	background: rgba(255, 255, 255, 0.65);
	margin: 8px 0 6px;
}

.news-date i {
	display: block;
	font-size: 14px;
	font-style: normal;
	opacity: 0.95;
	letter-spacing: 0.5px;
}

.news-card:hover .news-date {
	padding-right: 28px;
	background: #b3121f;
}

/* 标题 */
.news-title {
	font-family: "Montserrat Alt Bold", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: #1a1a1a;
	margin: 22px 0 14px;
	letter-spacing: 0.3px;
	text-align: left;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.3s ease;
}

.news-card:hover .news-title {
	color: #2d8ac0;
}

/* 描述 */
.news-desc {
	font-size: 14px;
	line-height: 1.7;
	color: #888;
	text-align: left;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* 分页器 */
.news-pager {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 60px;
}

.page-num {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #2b2b2b;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: background 0.3s ease, transform 0.3s ease;
}

.page-num:hover {
	background: #fe5e10;
	color: #fff;
	transform: translateY(-2px);
}

.page-num.active {
	background: #fe5e10;
	color: #fff;
}

.page-arrow {
	font-size: 18px;
	font-weight: 400;
}

/* ---- 响应式 ---- */
@media only screen and (max-width: 1200px) {
	.news-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.news-pic {
		height: 240px;
	}
}

@media only screen and (max-width: 992px) {
	.news-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
	.news-pic {
		height: 240px;
	}
}

@media only screen and (max-width: 750px) {
	.news {
		padding: 50px 0 60px;
	}
	.news-filter {
		gap: 18px;
		margin-bottom: 28px;
		padding-bottom: 14px;
	}
	.news-filter a {
		font-size: 16px;
	}
	.news-filter a::after {
		bottom: -16px;
	}
	.news-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.news-pic {
		height: 220px;
	}
	.news-date {
		width: 70px;
		height: 92px;
	}
	.news-date em {
		font-size: 18px;
	}
	.news-date i {
		font-size: 12px;
	}
	.news-title {
		font-size: 15px;
	}
	.news-pager {
		gap: 8px;
		margin-top: 40px;
	}
	.page-num {
		width: 38px;
		height: 38px;
		font-size: 14px;
	}
}


/* ===================== 联系页 contact_box_1 ===================== */
.contact_box_1 {
	background: #fff;
	padding: 70px 0 90px;
}

/* 上方 3 个信息卡片 */
.ct-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 80px;
}

.ct-card {
	text-align: center;
	padding: 10px 24px;
}

.ct-card-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	margin-bottom: 18px;
	transition: transform 0.4s ease;
}

.ct-card-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: relative;
	z-index: 1;
	transition: transform 0.4s ease;
}

/* 圆形外的脉冲光环 */
.ct-card-pulse {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid #2d8ac0;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.ct-card:hover .ct-card-icon {
	transform: translateY(-4px);
	background: #fcd5d8;
}

.ct-card:hover .ct-card-icon img {
	transform: scale(1.08);
}

.ct-card:hover .ct-card-pulse {
	opacity: 1;
	animation: ctPulse 1.6s ease-out infinite;
}

@keyframes ctPulse {
	0% {
		transform: scale(1);
		opacity: 0.7;
	}
	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}

.ct-card-title {
	font-family: "Montserrat Alt Bold", sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 12px;
}

.ct-card-text {
	font-size: 15px;
	line-height: 1.7;
	color: #777;
	text-align: center;
}

/* 中间标题 */
.ct-head {
	text-align: center;
	margin-bottom: 50px;
}

.ct-sub {
	font-size: 14px;
	letter-spacing: 4px;
	color: #444;
	margin-bottom: 14px;
}

.ct-title {
	font-family: "Montserrat Alt Bold", sans-serif;
	font-size: 54px;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: 0.5px;
}

/* 表单 */
.ct-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px 26px;
}

.ct-field {
	position: relative;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 48px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
	height: 84px;
	transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.ct-field-textarea {
	grid-column: 1 / -1;
	height: auto;
	min-height: 240px;
	border-radius: 36px;
	padding-bottom: 20px;
}

.ct-field-icon {
	position: absolute;
	left: 10px;
	top: 10px;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #2d8ac0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, background 0.3s ease;
}

/* 聚焦时图标外的脉冲光环 */
.ct-field-icon::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid #2d8ac0;
	opacity: 0;
}

.ct-field:focus-within .ct-field-icon::after {
	animation: ctFieldPulse 1.6s ease-out infinite;
}

@keyframes ctFieldPulse {
	0% { transform: scale(1); opacity: 0.7; }
	100% { transform: scale(1.55); opacity: 0; }
}

.ct-field-icon img {
	width: 26px;
	height: 26px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	transition: transform 0.35s ease;
}

.ct-field:focus-within .ct-field-icon img {
	transform: rotate(-6deg) scale(1.08);
}

.ct-field input,
.ct-field textarea {
	width: 100%;
	height: 100%;
	padding: 0 30px 0 92px;
	background: transparent;
	border: none;
	outline: none;
	font-size: 16px;
	color: #333;
	font-family: "Montserrat Alt", sans-serif;
}

.ct-field textarea {
	padding: 30px 30px 30px 92px;
	resize: vertical;
	line-height: 1.7;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
	color: #aaa;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 聚焦：placeholder 轻微淡出右移，提示已激活 */
.ct-field:focus-within input::placeholder,
.ct-field:focus-within textarea::placeholder {
	opacity: 0.55;
	transform: translateX(4px);
}

/* 聚焦：整框描边变红 + 上浮 + 红色软阴影 */
.ct-field:focus-within {
	border-color: #2d8ac0;
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(211, 42, 58, 0.14);
}

.ct-field:focus-within .ct-field-icon {
	transform: scale(1.08);
	box-shadow: 0 10px 22px rgba(211, 42, 58, 0.45);
}

/* 提交按钮 */
.ct-submit-wrap {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	margin-top: 16px;
}

.ct-submit {
	position: relative;
	height: 62px;
	padding: 0 76px;
	background: #2d8ac0;
	color: #fff;
	border: none;
	border-radius: 31px;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 1px;
	cursor: pointer;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(45, 138, 192, 0.28);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ct-submit span {
	position: relative;
	z-index: 1;
}

/* 按钮内的流光扫描 */
.ct-submit::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
	transition: left 0.6s ease;
}

.ct-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(211, 42, 58, 0.4);
}

.ct-submit:hover::before {
	left: 100%;
}

/* ---- 响应式 ---- */
@media only screen and (max-width: 992px) {
	.ct-cards {
		gap: 20px;
		margin-bottom: 60px;
	}
	.ct-card {
		padding: 10px;
	}
	.ct-card-icon {
		width: 76px;
		height: 76px;
	}
	.ct-title {
		font-size: 42px;
	}
}

@media only screen and (max-width: 750px) {
	.contact_box_1 {
		padding: 50px 0 60px;
	}
	.ct-cards {
		grid-template-columns: 1fr;
		gap: 30px;
		margin-bottom: 44px;
	}
	.ct-card-icon {
		width: 70px;
		height: 70px;
	}
	.ct-card-icon img {
		width: 100px;
		height: 100px;
	}
	.ct-card-title {
		font-size: 18px;
	}
	.ct-card-text {
		font-size: 14px;
	}
	.ct-head {
		margin-bottom: 30px;
	}
	.ct-title {
		font-size: 32px;
	}
	.ct-form {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.ct-field {
		height: 68px;
	}
	.ct-field-icon {
		width: 50px;
		height: 50px;
		left: 9px;
		top: 9px;
	}
	.ct-field-icon img {
		width: 22px;
		height: 22px;
	}
	.ct-field input,
	.ct-field textarea {
		padding-left: 72px;
		font-size: 14px;
	}
	.ct-field textarea {
		padding-top: 20px;
	}
	.ct-field-textarea {
		min-height: 200px;
	}
	.ct-submit {
		padding: 0 56px;
		height: 54px;
		font-size: 15px;
	}
}


/* ===================== 分类导航 two_nav ===================== */
.two_nav {
	padding: 36px 0 36px;
}

.tn-wrap {
	position: relative;
}

/* 手机端触发按钮（PC 隐藏） */
.tn-trigger {
	display: none;
	width: 100%;
	height: 50px;
	padding: 0 20px;
	background: #f3f3f3;
	border: none;
	border-radius: 25px;
	font-size: 15px;
	font-weight: 700;
	color: #333;
	text-align: left;
	cursor: pointer;
	position: relative;
}

.tn-trigger-text::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #2d8ac0;
	margin-right: 10px;
	vertical-align: middle;
	margin-top: -2px;
}

.tn-trigger-arrow {
	position: absolute;
	right: 24px;
	top: 50%;
	width: 10px;
	height: 10px;
	border-right: 2px solid #333;
	border-bottom: 2px solid #333;
	transform: translateY(-70%) rotate(45deg);
	transition: transform 0.3s ease;
}

.tn-wrap.open .tn-trigger-arrow {
	transform: translateY(-30%) rotate(-135deg);
}

/* 标签列表 */
.tn-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 10px;
}

.tn-item {
	display: inline-flex;
	align-items: center;
	height: 40px;
	padding: 0 22px;
	background: #ececec;
	color: #2b2b2b;
	border-radius: 20px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.tn-item::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #2b2b2b;
	margin-right: 10px;
	transition: background 0.3s ease;
}

.tn-item:hover,
.tn-item.active {
	background: #2d8ac0;
	color: #fff;
}

.tn-item:hover::before,
.tn-item.active::before {
	background: #fff;
}

.tn-item.active {
	padding-right: 32px;
}

/* ---- 响应式 ---- */
@media only screen and (max-width: 750px) {
	.two_nav {
		padding: 24px 0 0;
	}
	.tn-trigger {
		display: block;
	}
	.tn-list {
		display: none;
		margin-top: 12px;
		padding: 16px;
		background: #fafafa;
		border-radius: 16px;
		gap: 10px;
	}
	.tn-wrap.open .tn-list {
		display: flex;
	}
	.tn-item {
		height: 36px;
		padding: 0 16px;
		font-size: 14px;
	}
	.tn-item.active {
		padding-right: 22px;
	}
}


/* ===================== list_box_1 品牌卡片 + 轮播 ===================== */
.list_box_1 {
	background: #fff;
	padding: 40px 0 60px;
}

/* 胶囊容器 */
.lb1-wrap {
	position: relative;
	height: 375px;
	background: #ececec;
	border-radius: 175px;
	padding: 0 30px;
	display: flex;
	align-items: center;
	gap: 30px;
}

/* 左侧：箭头 + Swiper */
.lb1-left {
	flex: 0 0 660px;
	max-width: 660px;
	display: flex;
	align-items: center;
	gap: 18px;
}

.lb1-arrow {
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, opacity 0.3s ease;
	opacity: 0.85;
}

.lb1-arrow img {
	width: 100%;
	height: auto;
	display: block;
}

.lb1-arrow:hover {
	transform: scale(1.12);
	opacity: 1;
}

/* 轮播容器 */
.lb1-swiper {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
}

.lb1-swiper .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* 白色卡片 */
.lb1-card {
	width: 280px;
	height: 305px;
	background: #fff;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lb1-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.lb1-card img {
	width: 190px;
	height: 270px;
	object-fit: contain;
}

/* 右侧 */
.lb1-right {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	padding: 30px 30px 30px 10px;
}

.lb1-title {
	font-family: "Montserrat Alt Bold", sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #1b1b1b;
	margin-bottom: 18px;
}

.lb1-desc {
	font-size: 15px;
	line-height: 1.8;
	color: #4a4a4a;
	max-width: 86%;
	text-align: left;
}

.lb1-brand {
	position: absolute;
	right: 70px;
	top: 35px;
	max-width: 110px;
	max-height: 60px;
	object-fit: contain;
}

/* ---- 响应式 ---- */
@media only screen and (max-width: 1200px) {
	.lb1-wrap {
		height: 340px;
		padding: 0 24px;
		gap: 22px;
	}
	.lb1-left {
		flex: 0 0 560px;
		max-width: 560px;
	}
	.lb1-card {
		width: 240px;
		height: 270px;
	}
	.lb1-card img {
		width: 170px;
		height: 240px;
	}
}

@media only screen and (max-width: 992px) {
	.lb1-wrap {
		height: auto;
		padding: 40px 24px;
		flex-direction: column;
		gap: 28px;
		border-radius: 40px;
	}
	.lb1-left {
		flex: 0 0 auto;
		max-width: 100%;
		width: 100%;
	}
	.lb1-right {
		padding: 0 10px;
		text-align: center;
	}
	.lb1-desc {
		max-width: 100%;
	}
	.lb1-brand {
		position: static;
		display: block;
		margin: 0 auto 14px;
	}
}

@media only screen and (max-width: 750px) {
	.list_box_1 {
		padding: 30px 0 50px;
	}
	.lb1-wrap {
		padding: 30px 16px;
		gap: 22px;
		border-radius: 30px;
	}
	.lb1-arrow {
		width: 32px;
		height: 32px;
	}
	.lb1-card {
		width: 200px;
		height: 230px;
	}
	.lb1-card img {
		width: 140px;
		height: 200px;
	}
	.lb1-title {
		font-size: 26px;
		margin-bottom: 12px;
	}
	.lb1-desc {
		font-size: 14px;
	}
}


/* ===================== 产品 Tab 切换 list_box_2 ===================== */

/* 顶部白色 tab */
.top_tab {
	background: #fff;
}

.lb2-tabs {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	isolation: isolate;
}

/* 橙色滑块（indicator）：跟随当前选中/hover 的 tab */
.lb2-indicator {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #2d8ac0;
	border-radius: 0 28px 0 0;
	transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: none;
	z-index: 1;
	will-change: transform, width;
}

.lb2-tab {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	height: 56px;
	padding: 0 28px;
	color: #2b2b2b;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	transition: color 0.3s ease;
}

.lb2-tab:focus,
.lb2-tab:active {
	outline: none;
}

/* 只有滑块当前所在那个 tab：文字白色 */
.lb2-tab.is-hot {
	color: #fff;
}

/* 下方主内容（无背景，继承 body #f3f3f3） */
.box2_main {
	padding: 40px 0 60px;
}

/* panel 切换 */
.lb2-panel {
	display: none;
	align-items: flex-start;
	gap: 50px;
}

.lb2-panel.active {
	display: flex;
	animation: lb2PanelIn 0.5s ease both;
}

@keyframes lb2PanelIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

/* 左侧图片 */
.lb2-pic {
	position: relative;
	flex: 0 0 44%;
	max-width: 44%;
}

.lb2-pic img {
	width: 100%;
	height: auto;
	display: block;
}

/* 图下橙线：默认半长，hover 延伸到全长 */
.lb2-pic-line {
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 50%;
	height: 3px;
	background: #2d8ac0;
	transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lb2-pic:hover .lb2-pic-line {
	width: 100%;
}

/* 右侧内容 */
.lb2-info {
	flex: 1 1 auto;
	min-width: 0;
	padding-top: 14px;
}

.lb2-title {
	font-family: "Montserrat Alt Bold", sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.3;
	margin-bottom: 22px;
	text-align: left;
}

.lb2-desc {
	font-size: 15px;
	line-height: 1.9;
	color: #555;
	text-align: left;
	margin-bottom: 30px;
}

/* VIEW MORE 椭圆描边按钮 */
.lb2-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	padding: 0 38px;
	border: 1px solid #2b2b2b;
	border-radius: 23px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #2b2b2b;
	text-decoration: none;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.lb2-more:hover {
	background: #2d8ac0;
	border-color: #2d8ac0;
	color: #fff;
}

/* ---- 响应式 ---- */
@media only screen and (max-width: 1200px) {
	.lb2-title {
		font-size: 24px;
	}
}

@media only screen and (max-width: 992px) {
	.lb2-panel {
		flex-direction: column;
		gap: 30px;
	}
	.lb2-pic,
	.lb2-info {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media only screen and (max-width: 750px) {
	/* 手机端：单行 + 横向滚动，不使用滑动 indicator */
	.lb2-tabs {
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.lb2-tabs::-webkit-scrollbar {
		display: none;
	}
	.lb2-indicator {
		display: none;
	}
	.lb2-tab {
		flex: 0 0 auto;
		white-space: nowrap;
		height: 44px;
		padding: 0 18px;
		font-size: 14px;
	}
	.lb2-tab.active {
		background: #2d8ac0;
		color: #fff;
		border-radius: 0 22px 0 0;
	}
	.lb2-tab.is-hot:not(.active) {
		color: inherit;
	}
	.box2_main {
		padding: 30px 0 40px;
	}
	.lb2-title {
		font-size: 20px;
		margin-bottom: 14px;
	}
	.lb2-desc {
		font-size: 14px;
		line-height: 1.7;
	}
	.lb2-more {
		height: 40px;
		padding: 0 28px;
	}
}


/* ===================== 产品卡片网格 list_box_3 ===================== */
.list_box_3 {
	padding: 40px 0 80px;
}

/* panel 切换（跟随 list_box_2 tab） */
.lb3-panel {
	display: none;
}

.lb3-panel.active {
	display: block;
	animation: lb3PanelIn 0.5s ease both;
}

@keyframes lb3PanelIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.lb3-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.lb3-card {
	display: block;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.lb3-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 36px rgba(236, 90, 19, 0.18);
}

/* 图片区：上左/上右圆角 */
.lb3-pic {
	width: 100%;
	height: 328px;
	overflow: hidden;
	border-radius: 12px 12px 0 0;
}

.lb3-pic img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 12px 12px 0 0;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lb3-card:hover .lb3-pic img {
	transform: scale(1.05);
}

/* 文字区 */
.lb3-info {
	padding: 24px 26px 28px;
	background: #fff;
	transition: background 0.4s ease;
}

.lb3-title {
	font-family: "Montserrat Alt Bold", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: #1a1a1a;
	margin-bottom: 12px;
	text-align: left;
	transition: color 0.4s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.lb3-desc {
	font-size: 14px;
	line-height: 1.6;
	color: #888;
	text-align: left;
	transition: color 0.4s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* hover：文字区变橙底，文字变白 */
.lb3-card:hover .lb3-info {
	background: #2d8ac0;
}

.lb3-card:hover .lb3-title {
	color: #fff;
}

.lb3-card:hover .lb3-desc {
	color: rgba(255, 255, 255, 0.85);
}

/* ---- 响应式 ---- */
@media only screen and (max-width: 1200px) {
	.lb3-pic {
		height: 230px;
	}
}

@media only screen and (max-width: 992px) {
	.lb3-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.lb3-pic {
		height: 240px;
	}
}

@media only screen and (max-width: 750px) {
	.list_box_3 {
		padding: 30px 0 50px;
	}
	.lb3-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.lb3-pic {
		height: 280px;
	}
	.lb3-info {
		padding: 20px 22px;
	}
}


/* ===================== 面包屑 dqym_box ===================== */
.dqym_box {
	padding: 28px 0 20px;
	background: #fff;
}

.dqym-inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 18px;
	color: #888;
}

.dqym-home {
	width: 24px;
	height: 24px;
	object-fit: contain;
	margin-right: 4px;
	flex: 0 0 auto;
}

.dqym-text {
	color: #888;
}

.dqym-link {
	color: #888;
	text-decoration: none;
	transition: color 0.3s ease;
}

.dqym-link:hover {
	color: #2d8ac0;
}

.dqym-sep {
	color: #bbb;
	margin: 0 2px;
}

.dqym-current {
	color: #444;
	font-weight: 600;
}

@media only screen and (max-width: 750px) {
	.dqym_box {
		padding: 22px 0 4px;
	}
	.dqym-inner {
		font-size: 14px;
		gap: 6px;
	}
	.dqym-home {
		width: 20px;
		height: 20px;
	}
}


/* ===================== 产品详情 list_box_4 ===================== */
.list_box_4 {
	padding: 40px 0 60px;
	background: #fff;
}

.lb4-wrap {
	display: flex;
	gap: 50px;
	align-items: flex-start;
}

/* 左侧图片区 */
.lb4-pic {
	flex: 0 0 730px;
	width: 730px;
	height: 487px;
	background: #f5f5f5;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.lb4-pic img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
}

/* 右侧信息 */
.lb4-info {
	flex: 1 1 auto;
	min-width: 0;
	padding-top: 10px;
}

.lb4-title {
	font-family: "Montserrat Alt Bold", sans-serif;
	font-size: 30px;
	font-weight: 700;
	color: #fe5e10;
	margin-bottom: 22px;
	line-height: 1.3;
	text-align: left;
}

.lb4-desc {
	font-size: 15px;
	line-height: 1.9;
	color: #555;
	margin-bottom: 40px;
	text-align: left;
}

/* PREV / NEXT */
.lb4-nav p {
	font-size: 15px;
	margin-bottom: 12px;
	text-align: left;
}

.lb4-nav-key {
	color: #fe5e10;
	font-weight: 700;
	margin-right: 6px;
}

.lb4-nav a {
	color: #444;
	text-decoration: none;
	transition: color 0.3s ease;
}

.lb4-nav a:hover {
	color: #2d8ac0;
}

/* ---- 响应式 ---- */
@media only screen and (max-width: 1200px) {
	.lb4-pic {
		flex: 0 0 56%;
		width: 56%;
		height: 420px;
	}
}

@media only screen and (max-width: 992px) {
	.lb4-wrap {
		flex-direction: column;
		gap: 28px;
	}
	.lb4-pic {
		flex: 0 0 auto;
		width: 100%;
		height: 380px;
	}
	.lb4-title {
		font-size: 26px;
	}
}

@media only screen and (max-width: 750px) {
	.list_box_4 {
		padding: 24px 0 40px;
	}
	.lb4-pic {
		height: 260px;
	}
	.lb4-title {
		font-size: 22px;
		margin-bottom: 14px;
	}
	.lb4-desc {
		font-size: 14px;
		line-height: 1.8;
		margin-bottom: 26px;
	}
}


/* ===================== 详情 Tab list_box_5 ===================== */
.list_box_5 {
	padding: 30px 0 60px;
	background: #fff;
}

/* tab 栏 */
.lb5-tabs {
	display: flex;
	align-items: center;
	gap: 0;
	border-bottom: 1px solid #e5e5e5;
}

.lb5-tab {
	display: inline-flex;
	align-items: center;
	height: 56px;
	padding: 0 38px;
	color: #2b2b2b;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.lb5-tab-dot {
	display: inline-block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #2d8ac0;
	margin-right: 12px;
	transition: background 0.3s ease;
}

.lb5-tab.active {
	background: #2d8ac0;
	color: #fff;
	border-radius: 0 28px 0 0;
}

.lb5-tab.active .lb5-tab-dot {
	background: #fff;
}

/* 面板切换 */
.lb5-panel {
	display: none;
	padding: 28px 0 10px;
}

.lb5-panel.active {
	display: block;
	animation: lb5PanelIn 0.4s ease both;
}

@keyframes lb5PanelIn {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: translateY(0); }
}

/* 表格 */
.lb5-table-wrap {
	width: 100%;
	overflow-x: auto;
}

.lb5-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	color: #333;
}

.lb5-table th,
.lb5-table td {
	padding: 12px 16px;
	border: 1px solid #e5e5e5;
	text-align: left;
	vertical-align: middle;
	line-height: 1.5;
}

.lb5-table thead th {
	background: #fafafa;
	color: #2d8ac0;
	font-weight: 700;
}

.lb5-table thead th:first-child {
	color: #1a1a1a;
}

.lb5-table tbody tr:nth-child(even) td {
	background: #fafafa;
}

/* Application */
.lb5-app {
	margin-top: 26px;
}

.lb5-app p {
	font-size: 18px;
	line-height: 1.8;
	color: #555;
	text-align: left;
}

.lb5-app-key {
	font-size: 15px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 6px;
}

/* 表单 */
.lb5-form-title {
	font-family: "Montserrat Alt Bold", sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 22px;
}

.lb5-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px 50px;
}

.lb5-field {
	position: relative;
}

.lb5-field-full {
	grid-column: 1 / -1;
}

.lb5-field input,
.lb5-field textarea {
	width: 100%;
	border: none;
	border-bottom: 1px solid #d8d8d8;
	background: transparent;
	font-size: 14px;
	color: #333;
	padding: 12px 4px;
	font-family: "Montserrat Alt", sans-serif;
	outline: none;
	transition: border-color 0.3s ease;
}

.lb5-field textarea {
	min-height: 180px;
	border: 1px solid #d8d8d8;
	border-radius: 4px;
	padding: 14px;
	resize: vertical;
	line-height: 1.6;
}

.lb5-field input::placeholder,
.lb5-field textarea::placeholder {
	color: #999;
}

.lb5-field input:focus,
.lb5-field textarea:focus {
	border-color: #2d8ac0;
}

.lb5-submit-wrap {
	grid-column: 1 / -1;
	margin-top: 4px;
}

.lb5-submit {
	background: #2d8ac0;
	color: #fff;
	border: none;
	padding: 14px 40px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.lb5-submit:hover {
	background: #d44e0c;
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(236, 90, 19, 0.35);
}

/* ---- 响应式 ---- */
@media only screen and (max-width: 992px) {
	.lb5-form {
		grid-template-columns: 1fr;
		gap: 22px;
	}
}

@media only screen and (max-width: 750px) {
	.list_box_5 {
		padding: 20px 0 50px;
	}
	.lb5-tab {
		height: 46px;
		padding: 0 22px;
		font-size: 14px;
	}
	.lb5-tab.active {
		border-radius: 0 22px 0 0;
	}
	.lb5-table {
		font-size: 12px;
		min-width: 700px;
	}
	.lb5-table th,
	.lb5-table td {
		padding: 8px 10px;
	}
	.lb5-form-title {
		font-size: 18px;
	}
}


/* ===================== 相关新闻 list_box_6 ===================== */
.list_box_6 {
	background: #f6f6f6;
	padding: 70px 0 80px;
}

.lb6-head {
	margin-bottom: 36px;
}

.lb6-tag {
	color: #fe5e10;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.lb6-title {
	font-family: "Montserrat Alt Bold", sans-serif;
	font-size: 38px;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: 0.5px;
}

@media only screen and (max-width: 750px) {
	.list_box_6 {
		padding: 50px 0 60px;
	}
	.lb6-title {
		font-size: 26px;
	}
	.lb6-tag {
		font-size: 13px;
	}
}


/* ===================== Get Quotes 弹窗 ===================== */
.gq-modal {
	position: fixed;
	inset: 0;
	z-index: 5000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(20, 20, 20, 0.55);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gq-modal.active {
	opacity: 1;
	visibility: visible;
}

/* 弹窗面板 */
.gq-modal-panel {
	position: relative;
	width: 100%;
	max-width: 560px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	transform: translateY(40px) scale(0.96);
	opacity: 0;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.gq-modal.active .gq-modal-panel {
	transform: translateY(0) scale(1);
	opacity: 1;
}

/* 顶部橙色渐变条 */
.gq-modal-panel::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ff8a3c, #2d8ac0 55%, #ff8a3c);
}

/* 头部 */
.gq-modal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 26px 30px 20px;
}

.gq-modal-head h3 {
	font-family: "Montserrat Alt Bold", sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: 0.5px;
}

.gq-modal-close {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: #f2f2f2;
	color: #444;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.gq-modal-close:hover {
	transform: rotate(90deg);
	background: #2d8ac0;
	color: #fff;
}

/* 内容区 */
.gq-modal-body {
	padding: 0 30px 30px;
}

.gq-modal-tip {
	font-size: 14px;
	color: #777;
	line-height: 1.6;
	margin-bottom: 22px;
	text-align: left;
}

/* 表单 */
.gq-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.gq-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.gq-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.gq-field label {
	font-size: 13px;
	font-weight: 600;
	color: #333;
}

.gq-field label i {
	color: #2d8ac0;
	font-style: normal;
	margin-right: 3px;
}

.gq-field input,
.gq-field textarea {
	width: 100%;
	background: #f7f7f7;
	border: 1px solid transparent;
	border-radius: 10px;
	padding: 12px 14px;
	font-size: 14px;
	color: #333;
	font-family: "Montserrat Alt", sans-serif;
	outline: none;
	transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.gq-field textarea {
	resize: vertical;
	min-height: 100px;
	line-height: 1.6;
}

.gq-field input:focus,
.gq-field textarea:focus {
	background: #fff;
	border-color: #2d8ac0;
	box-shadow: 0 4px 14px rgba(236, 90, 19, 0.14);
}

.gq-field input::placeholder,
.gq-field textarea::placeholder {
	color: #aaa;
}

/* Send 按钮 */
.gq-send {
	position: relative;
	overflow: hidden;
	margin-top: 8px;
	height: 48px;
	border: none;
	border-radius: 24px;
	background: #2d8ac0;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	cursor: pointer;
	box-shadow: 0 8px 18px rgba(236, 90, 19, 0.32);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gq-send span {
	position: relative;
	z-index: 1;
}

.gq-send::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.6s ease;
}

.gq-send:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(236, 90, 19, 0.42);
}

.gq-send:hover::before {
	left: 100%;
}

/* 响应式 */
@media only screen and (max-width: 620px) {
	.gq-row {
		grid-template-columns: 1fr;
	}
	.gq-modal-panel {
		border-radius: 16px;
	}
	.gq-modal-head {
		padding: 20px 22px 14px;
	}
	.gq-modal-head h3 {
		font-size: 20px;
	}
	.gq-modal-body {
		padding: 0 22px 24px;
	}
}





/* Tab激活橙色样式，和你截图效果匹配 */
.lb2-tab {
  padding: 12px 28px;
  border-radius: 30px;
  background: #f5f5f5;
  color: #333;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}
.lb2-tab.is-hot {
  background: #ff6600;
  color: #fff;
}
/* 橙色滑动滑块 */
.lb2-indicator {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #ff6600;
  border-radius: 30px;
  transition: all 0.3s ease;
  z-index: 1;
}
/* 面板默认隐藏，active才显示 */
.lb2-panel, .lb3-panel {
  display: none;
}
.lb2-panel.active, .lb3-panel.active {
  display: flex;
}
.lb3-panel.active .lb3-grid {
  display: grid;
}