/* 新版首页 Banner */
.index-banner-new {
	position: relative;
	/*height: 720px;*/
	padding: 100px 0;
	box-sizing: border-box;
	overflow: hidden;
}

.index-banner-new-bg {
	position: absolute;
	inset: 0;
	background-image: url(../images/home/banner-new.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.index-banner-new-inner {
	display: flex;
	align-items: center;
	flex-direction: column;
	position: relative;
	justify-content: center;
}

/* 两行两列：第1行右侧为标题+副标题，第2行左侧为特性+CTA、右侧为卡片（左侧与卡片顶部对齐） */
.index-banner-new-content {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	gap: 0 70px;
	align-items: start;
}

.index-banner-new-right-top {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-bottom: 48px;
}

.index-banner-new-title {
	margin: 0 0 12px;
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 1.25;
	color: #FF8F32;
	text-align: left;
}

.index-banner-new-subtitle {
	margin: 0;
	line-height: 1.5;
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
	text-align: left;
}

.index-banner-new-right-cards {
	grid-column: 2;
	grid-row: 2;
	min-width: 0;
}

.index-banner-new-cards {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: flex-start;
}

/* 左侧：特性列表（一行两个）+ 应用中心，与右侧卡片同一行、顶部对齐 */
.index-banner-new-left {
	grid-column: 1;
	grid-row: 2;
	display: flex;
	flex-direction: column;
	min-width: 280px;
}

.index-banner-new-features {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.index-banner-new-features li {
	margin-bottom: 0;
}

.index-banner-new-feature-link {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 14px;
	line-height: 1.4;
	padding: 10px 12px;
	border-radius: 4px 4px 4px 4px;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.22);
	text-decoration: none;
	transition: background 0.2s;
}

.index-banner-new-feature-link:hover {
	background: rgba(255, 255, 255, 0.32);
	color: #fff;
}

.index-banner-new-feature-icon {
	display: inline-flex;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	color: #fff;
}

.index-banner-new-feature-icon svg {
	width: 100%;
	height: 100%;
}

.index-banner-new-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	padding: 10px 12px;
	width: calc((100% - 20px) / 2);
	max-width: 100%;
	box-sizing: border-box;
	background-color: #FF8F32;
	color: #fff !important;
	font-size: 15px;
	font-weight: 500;
	border-radius: 6px;
	transition: background-color 0.2s, opacity 0.2s;
}

.index-banner-new-cta:hover {
	background-color: #e67d28;
	color: #fff !important;
	opacity: 0.95;
}


.index-banner-new-card {
	width: 224px;
	/*height: 370px;*/
	flex: 0 0 224px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
	padding: 32px 20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	text-align: center;
	transition: box-shadow 0.2s, transform 0.2s;
	overflow: hidden;
}

.index-banner-new-card:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
	transform: translateY(-2px);
}

.index-banner-new-card-title {
	margin: 0 0 12px;
	font-weight: 600;
	font-size: 18px;
	color: #141414;
}

.index-banner-new-card-subtitle {
	margin: 0 0 24px;
	font-weight: 400;
	font-size: 14px;
	color: #8E8E8E;
	line-height: 14px;
}

.index-banner-new-card-price {
	margin-bottom: 24px;
}

.index-banner-new-card-price-current {
	display: flex;
	justify-content: center;
	gap: 12px;
	font-weight: 600;
	font-size: 48px;
	color: #141414;
	line-height: 1.2;
	margin-bottom: 12px;
}

.index-banner-new-card-price-right {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.index-banner-new-card-price-decimal {
	font-size: 18px;
	font-weight: 600;
	vertical-align: super;
	line-height: 1;
}

.index-banner-new-card-price-unit {
	font-weight: 400;
	font-size: 14px;
	color: #565656;
	vertical-align: super;
	line-height: 1;
}

.index-banner-new-card-price-old {
	display: block;
	font-weight: 400;
	font-size: 16px;
	color: #8E8E8E;
	line-height: 16px;
	/*text-decoration: line-through;*/
}

.index-banner-new-card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	background-color: #FF8F32;
	color: #fff !important;
	font-size: 13px;
	font-weight: 500;
	border-radius: 4px;
	margin-bottom: 14px;
	transition: background-color 0.2s, opacity 0.2s;
}

/*.index-banner-new-card-btn:hover {*/
/*	background-color: #e67d28;*/
/*	color: #fff !important;*/
/*	opacity: 0.95;*/
/*}*/

.index-banner-new-card-desc {
	margin: 0;
	font-weight: 400;
	font-size: 14px;
	color: #3D3D3D;
	line-height: 22px;
	flex: 1;
	min-height: 0;
	text-align: left;
	/*overflow: hidden;*/
	/*display: -webkit-box;*/
	/*-webkit-line-clamp: 3;*/
	/*-webkit-box-orient: vertical;*/
}

.index-banner-new-below {
	background: #fff;
	padding: 48px 24px;
}

.index-banner-new-below-inner {
	max-width: 1280px;
	margin: 0 auto;
	text-align: center;
}

.index-banner-new-below-title {
	margin: 0 0 16px;
	font-size: 24px;
	font-weight: 700;
	color: #1a1a1a;
}

.index-banner-new-below-desc {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: #444;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* 移动端 Banner 下方竖排卡片容器（桌面端隐藏） */
.index-banner-cards-mobile {
	display: none;
}

/* 响应式 */
@media (max-width: 1024px) {
	.index-banner-new-content {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		gap: 24px 0;
	}
	.index-banner-new-right-top {
		grid-column: 1;
		grid-row: 1;
		text-align: center;
		margin-bottom: 0;
	}
	.index-banner-new-right-top .index-banner-new-title,
	.index-banner-new-right-top .index-banner-new-subtitle {
		text-align: center;
	}
	.index-banner-new-left {
		grid-column: 1;
		grid-row: 2;
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
		align-items: center;
		text-align: center;
	}
	.index-banner-new-features {
		width: 100%;
	}
	.index-banner-new-right-cards {
		grid-column: 1;
		grid-row: 3;
		width: 100%;
		max-width: 100%;
	}
	.index-banner-new-cards {
		width: 100%;
		max-width: 100%;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x proximity;
		padding-bottom: 8px;
	}
	.index-banner-new-cards::-webkit-scrollbar {
		height: 6px;
	}
	.index-banner-new-cards::-webkit-scrollbar-thumb {
		background: rgba(255, 143, 50, 0.4);
		border-radius: 3px;
	}
	.index-banner-new-card {
		width: 224px;
		min-width: 224px;
		height: 370px;
		flex: 0 0 224px;
		scroll-snap-align: start;
	}
}

@media (max-width: 768px) {
	.index-banner-new {
		padding: 84px 0;
		height: max-content;
	}
	.index-banner-new-title {
		font-size: 26px;
	}
	.index-banner-new-subtitle {
		font-size: 14px;
		margin-bottom: 24px;
	}
	.index-banner-new-right-cards {
		display: none;
	}
	.index-banner-new-cards {
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x proximity;
		padding-bottom: 8px;
	}
	.index-banner-new-card {
		width: 224px;
		min-width: 224px;
		height: 370px;
		flex: 0 0 224px;
		scroll-snap-align: start;
	}
	/* Banner 下方竖排展示的三张卡片（仅移动端显示） */
	.index-banner-cards-mobile {
		display: block;
		padding: 24px 16px 32px;
		background: #F7F7F7;
	}
	.index-banner-cards-mobile .index-banner-new-cards {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
		overflow: visible;
		flex-wrap: nowrap;
		padding-bottom: 0;
		scroll-snap-type: none;
		max-width: 400px;
		margin: 0 auto;
	}
	.index-banner-cards-mobile .index-banner-new-card {
		width: 100%;
		min-width: 0;
		max-width: 100%;
		height: auto;
		min-height: 320px;
		flex: none;
		scroll-snap-align: none;
	}
	.index-banner-new-below {
		padding: 32px 16px;
	}
	.index-banner-new-below-title {
		font-size: 20px;
	}
	.index-banner-new-below-desc {
		font-size: 14px;
	}
}
/* Banner 下方：全球数据中心网络 / 为什么选择我们 / 匹配场景 / 一键部署 / 我们懂你 */
.index-main-new {
	padding: 80px 0 0 0;
	background: #F7F7F7;
}

.index-main-new-inner {
	max-width: 1040px;
	margin: 0 auto;
}

.index-main-new-title {
	margin: 0 0 16px;
	font-weight: 600;
	font-size: 26px;
	color: #1C375C;
	line-height: 26px;
	text-align: center;
}

.index-main-new-subtitle {
	margin: 0 0 48px;
	font-weight: 400;
	font-size: 16px;
	color: #6A6A6A;
	line-height: 24px;
	text-align: center;
}

.index-main-new-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 0px;
	margin-top: auto;
	width: 120px;
	background-color: #FF8F32;
	color: #fff;
	font-size: 14px;
	border-radius: 4px;
	transition: background-color 0.2s, opacity 0.2s;
}

/* ========== 全球数据中心网络地图（map-new.png 上的点位） ========== */
.index-main-map .container {
	/*max-width: 1040px;*/
	margin-left: auto;
	margin-right: auto;
	/*padding-left: 24px;*/
	/*padding-right: 24px;*/
}
.index-main-map #index-map {
	position: relative;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}
.index-main-map #index-map img {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: top;
}
/* 地图点位：绝对定位于地图之上 */
.index-main-map #index-map .index-map-pin {
	position: absolute;
	width: 28px;
	height: 28px;
	margin-left: -14px;
	margin-top: -14px;
	z-index: 2;
}
/* hover状态提升z-index，确保popup显示在其他pin上层 */
.index-main-map #index-map .index-map-pin:hover {
	z-index: 1000;
}
.index-main-map #index-map li:after {
	display: none;
}
.index-main-map #index-map .index-map-pin-hit {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	cursor: pointer;
}
.index-main-map #index-map .index-map-pin-hit i {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 14px;
	margin: -7px 0 0 -7px;
	background: url(../images/home/map-position.png) no-repeat center / 100% 100%;
	pointer-events: none;
}
/* 悬停弹框 */
.index-main-map #index-map .index-map-popup {
	position: absolute;
	top: 100%;
	left: 50%;
	margin-top: 8px;
	transform: translateX(-50%);
	min-width: 120px;
	padding: 12px 16px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	background: #E8E7E7;
	box-shadow: 0px 1px 2px 0px rgba(35,11,11,0.1), 2px 3px 3px 0px rgba(35,11,11,0.09), 3px 7px 4px 0px rgba(35,11,11,0.05), 6px 12px 5px 0px rgba(35,11,11,0.01), 10px 18px 6px 0px rgba(35,11,11,0);
	border-radius: 4px 4px 4px 4px;
	/*border: 1px solid rgba(233,234,235,0.3);*/
	transition: opacity 0.2s, visibility 0.2s, background 0.2s, border-color 0.2s;
	white-space: nowrap;
	z-index: 10;
}
/* 创建桥接区域，覆盖按钮和弹窗之间的8px间隙 */
.index-main-map #index-map .index-map-popup::before {
	content: '';
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	height: 8px;
}
.index-map-popup-container {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 12px 12px 12px 12px;
	border: 1px solid #DBD8E0;
	padding: 10px 8px 4px 8px;
}
.index-main-map #index-map .index-map-pin:hover .index-map-popup {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.index-main-map #index-map .index-map-popup-title {
	margin: 0 0 6px 0;
	padding: 0;
	font-weight: 400;
	font-size: 14px;
	color: rgba(0,0,0,0.9);
}
.index-main-map #index-map .index-map-popup a {
	display: block;
	padding: 2px 8px;
	margin:  0 0 6px;
	font-size: 13px;
	background: #FFFFFF;
	border-radius: 12px 12px 12px 12px;
	border: 1px solid #DCDCDC;
	text-decoration: none;
	transition: color 0.2s;
}
.index-main-map #index-map .index-map-pin:hover .index-map-popup a {
	font-weight: 400;
	font-size: 14px;
	color: #FF6F0A;;
}

/* 地图点位：按实际地理位置百分比定位（左% 上%） */
/* 法兰克福 Frankfurt, 德国 */
.index-main-map #index-map #flkf {
	left: 48.5%;
	top: 35%;
}
/* 西雅图 Seattle, 美国 */
.index-main-map #index-map #xyt {
	left: 21%;
	top: 38.5%;
}
/* 马来西亚 Malaysia */
.index-main-map #index-map #mlxy {
	left: 68.7%;
	top: 65%;
}
/* 新加坡 Singapore */
.index-main-map #index-map #xjp {
	left: 69.3%;
	top: 65.7%;
}
/* 东京 Tokyo, 日本 */
.index-main-map #index-map #jp {
	left: 76.8%;
	top: 47.2%;
}
/* 首尔 Seoul, 韩国 */
.index-main-map #index-map #kr {
	left: 74.2%;
	top: 46%;
}
/* 台湾 Taiwan */
.index-main-map #index-map #ty {
	left: 72.8%;
	top: 54%;
}
/* 香港 Hong Kong */
.index-main-map #index-map #hg {
	left: 71%;
	top: 55.2%;
}
/* 硅谷 Silicon Valley, 美国 */
.index-main-map #index-map #sv {
	left: 20.9%;
	top: 45%;
}
/* 洛杉矶 Los Angeles, 美国 */
.index-main-map #index-map #la {
	left: 21.8%;
	top: 48%;
}

/* ========== 1. 为什么选择我们 ========== */
.index-main-why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.index-main-why-card {
	height: 274px;
	background: #fff;
	border-radius: 8px;
	padding: 24px;
	box-sizing: border-box;
	cursor: pointer;
	transition: all 0.3s ease;
}

.index-main-why-card:hover {
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.index-main-why-icon {
	width: 40px;
	height: 40px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.index-main-why-icon svg {
	width: 24px;
	height: 24px;
	color: #FF8F32;
}

.index-main-why-icon span[class^="icon-"] {
	width: 24px;
	height: 24px;
	background: #FF8F32;
	border-radius: 4px;
	display: block;
}

.index-main-why-card-title {
	margin: 0 0 12px;
	font-weight: 600;
	font-size: 16px;
	color: #1C375C;
	line-height: 16px;
}

.index-main-why-card-hidden-title {
	display: none;
	margin: 0 0 8px;
	font-weight: 400;
	font-size: 12px;
	color: #565656;
	line-height: 20px;
}

.index-main-why-card:hover .index-main-why-card-hidden-title {
	display: block;
}

.index-main-why-solution {
	margin: 0 0 12px;
	font-weight: 400;
	font-size: 14px;
	color: #1C375C;
	line-height: 22px;
}

.index-main-why-case {
	line-height: 14px;
	font-weight: 400;
	font-size: 14px;
	color: #747474;
	padding: 8px;
	background: #F7F7F7;
	border-radius: 4px 4px 4px 4px;
}

/* CTA 卡片：按钮在底部 */
.index-main-why-card-cta {
	display: flex;
	flex-direction: column;
}

.index-main-why-card-cta-spacer {
	flex: 1;
	min-height: 16px;
}

.index-main-why-card-cta .index-main-new-btn {
	margin-top: auto;
	width: 100%;
	max-width: 200px;
}

/* ========== 2. 我们到底有多懂你 ========== */
.index-main-scenarios-wrap {
	display: flex;
	gap: 32px;
	align-items: flex-start;
}

.index-main-scenarios-left {
	flex: 0 0 184px;
}

.index-main-scenarios-tabs {
	margin: 0;
	padding: 0;
	list-style: none;
}

.index-main-scenarios-tabs li {
	display: flex;
	align-items: center;
	justify-content: center;
	/*width: 184px;*/
	padding: 0 14px;
	height: 48px;
	font-weight: 400;
	font-size: 14px;
	color: #565656;
	line-height: 14px;
	margin-bottom: 12px;
	background: #FFFFFF;
	border-radius: 8px;
	box-sizing: border-box;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s, color 0.2s;
}

.index-main-scenarios-tabs li:hover,
.index-main-scenarios-tabs li.active {
	background: #FF8F32;
	color: #ffffff;
}

.index-main-scenarios-right {
	flex: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: 348px;
	background: #FFFFFF;
	border-radius: 8px 8px 8px 8px;
}

.index-main-scenarios-card {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 24px;
	box-sizing: border-box;
}

.index-main-scenarios-card-img {
	width: 308px;
	height: 170px;
}

.index-main-scenarios-card-title {
	font-weight: 600;
	font-size: 18px;
	color: #1C375C;
	line-height: 24px;
	margin: 24px 0 12px 0;
}

.index-main-scenarios-card-desc {
	font-weight: 400;
	font-size: 14px;
	color: #565656;
	line-height: 22px;
	text-align: center;
}

/* ========== 3. 一键部署，立即启航 ========== */
.index-main-deploy-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.index-main-deploy .index-main-new-inner {
	background-color: #fff;
	padding: 40px 60px;
	border-radius: 8px 8px 8px 8px;
	box-sizing: border-box;
}
.index-main-deploy-card {
	border-radius: 8px;
	padding: 24px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: box-shadow 0.2s, border-color 0.2s;
}

.index-main-deploy-icon {
	width: 56px;
	height: 56px;
	margin-bottom: 16px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
.index-main-deploy-icon.icon-wp {
	background-image: url(../images/market/icon-wordpress.png);
}

.index-main-deploy-icon.icon-bt {
	background-image: url(../images/market/icon-baota.png);
}

.index-main-deploy-icon.icon-ss {
	background-image: url(../images/market/icon-shadowsocks.png);
}

.index-main-deploy-icon.icon-mysql {
	background-image: url(../images/market/icon-mysql.png);
}

.index-main-deploy-icon.icon-pg {
	background-image: url(../images/market/icon-postgresql.png);
}

.index-main-deploy-icon.icon-coming {
	width: 138px;
	height: 138px;
	background-image: url(../images/home/icon-coming.png);
	display: flex;
	align-items: center;
	justify-content: center;
}

.index-main-deploy-card-title {
	margin: 0 0 10px;
	font-weight: 600;
	font-size: 16px;
	color: #1C375C;
	line-height: 16px;
}

.index-main-deploy-card-desc {
	margin: 0 0 16px;
	font-weight: 400;
	font-size: 14px;
	color: #565656;
	line-height: 22px;
}

.index-main-deploy-card-coming .index-main-deploy-card-desc {
	margin-bottom: 16px;
}

/* ========== 4. 我们懂你，不止于技术 ========== */
.index-main-understand {
	padding-bottom: 80px;
}

.index-main-understand-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.index-main-understand-card {
	padding: 0 24px;
	box-sizing: border-box;
	text-align: center;
	transition: box-shadow 0.2s, border-color 0.2s;
}

.index-main-understand-icon {
	width: 40px;
	height: 40px;
	margin: 0 auto 20px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.index-main-understand-icon.icon-scene {
	background-image: url(../images/home/icon-scene.png);
}

.index-main-understand-icon.icon-finance {
	background-image: url(../images/home/icon-finance.png);
}

.index-main-understand-icon.icon-culture {
	background-image: url(../images/home/icon-culture.png);
}

.index-main-understand-card-title {
	margin: 0 0 10px;
	font-weight: 600;
	font-size: 16px;
	color: #1C375C;
	line-height: 16px;
}

.index-main-understand-card-desc {
	margin: 0;
	font-weight: 400;
	font-size: 14px;
	color: #565656;
	line-height: 22px;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
	.index-main-why-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.index-main-scenarios-wrap {
		flex-direction: column;
		align-items: center;
	}
	.index-main-scenarios-left {
		flex: none;
		width: 100%;
		max-width: 400px;
	}
	.index-main-scenarios-tabs {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		justify-content: center;
	}
	.index-main-scenarios-right {
		width: 100%;
	}
	.index-main-deploy-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.index-main-understand-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.index-main-why-card-hidden-title {
		display: block;
	}
	.index-main-new {
		padding: 40px 14px;
	}
	.index-main-new-title {
		font-size: 22px;
	}
	.index-main-new-subtitle {
		font-size: 14px;
		margin-bottom: 28px;
	}
	.index-main-map .container {
		padding-left: 16px;
		padding-right: 16px;
	}
	.index-main-why-grid {
		grid-template-columns: 1fr;
	}
	.index-main-scenarios-right {
		grid-template-columns: 1fr;
	}
	/* 我们到底有多懂你：移动端菜单横着一行展示，可横向滚动 */
	.index-main-scenarios-tabs {
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		justify-content: flex-start;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 4px;
		scrollbar-width: none;
	}
	.index-main-scenarios-tabs li {
		flex: 0 0 auto;
		width: auto;
		min-width: 100px;
		margin-bottom: 0;
		margin-right: 8px;
	}
	.index-main-scenarios-tabs li:last-child {
		margin-right: 0;
	}
	.index-main-deploy-grid {
		grid-template-columns: 1fr;
	}
	.index-main-understand-grid {
		grid-template-columns: 1fr;
	}
}

/* ========== 期待与您交谈 弹窗 ========== */
.index-talk-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(4px);
	transition: opacity 0.2s ease;
}
.index-talk-modal-overlay.index-talk-modal-hidden {
	display: none;
}
.index-talk-modal {
	position: relative;
	width: 100%;
	max-width: 520px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}
.index-talk-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 24px 24px 0;
}
.index-talk-modal-title {
	margin: 0;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.4;
	color: #1a1a1a;
	text-align: left;
}
.index-talk-modal-close {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	background: none;
	font-size: 24px;
	line-height: 1;
	color: #666;
	cursor: pointer;
	transition: color 0.2s ease;
}
.index-talk-modal-close:hover {
	color: #1a1a1a;
}
.index-talk-modal-body {
	padding: 24px;
}
.index-talk-field {
	margin-bottom: 20px;
}
.index-talk-field:last-of-type {
	margin-bottom: 24px;
}
.index-talk-label {
	display: block;
	margin-bottom: 16px;
	text-align: left;
	font-weight: 400;
	font-size: 16px;
	color: rgba(0, 0, 0, 0.6);
}
.index-talk-textarea,
.index-talk-input {
	width: 100%;
	padding: 12px 14px;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	box-sizing: border-box;
	transition: border-color 0.2s ease;
}
.index-talk-textarea {
	min-height: 100px;
	resize: vertical;
}
.index-talk-textarea::placeholder,
.index-talk-input::placeholder {
	color: #999;
}
.index-talk-textarea:focus,
.index-talk-input:focus {
	outline: none;
	border-color: #FF8F32;
}
.index-talk-modal-actions {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
}
.index-talk-btn {
	padding: 6px 24px;
	font-size: 14px;
	font-weight: 500;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.index-talk-btn-cancel {
	background: #fff;
	border: 1px solid #e0e0e0;
	color: #333;
}
.index-talk-btn-cancel:hover {
	border-color: #ccc;
	background: #f5f5f5;
}
.index-talk-btn-submit {
	background: #FF8F32;
	border: none;
	color: #fff;
}
.index-talk-btn-submit:hover:not(:disabled) {
	background: #e67d28;
}
.index-talk-btn-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

