
.container .title {
	padding: 0 20px;
	text-align: center;
}

.container .title h1 {
	font-size: 2.2rem;
	margin-bottom: 10px;
	letter-spacing: 1px;
	font-weight: 600;
	color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
}

.container .title h1::before,
.container .title h1::after {
	content: "";
	display: inline-block;
	width: 11px;
	height: 11px;
	background: linear-gradient(#168ae1, rgb(1, 84, 201));
	margin: 0 20px;
}

.container .title p {
	color: #595757;
	padding-top: 10px;
	font-weight: 300;
	margin-bottom: 0;
}

.route-img {
	padding: 0 40px;
}

.route-img img {
	width: 100%;
	vertical-align: top;
}

.shot-img {
	padding: 0 40px;
	position: relative;
	height: 668px;

}

.stimg1 {
	position: absolute;
	left: 80px;
	top: 120px;
	z-index: 2;
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.18);
}

.stimg2 {
	position: absolute;
	right: 80px;
	top: 0;
	z-index: 1;
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.18);
}

.bg-light {
	background: linear-gradient(#f8fbfe, rgb(233, 242, 255));
	position: relative;
}

.linebg-right {
	position: absolute;
	width: 35%;
	right: 0;
	top: 0;
	z-index: 0;
}

.linebg-left {
	position: absolute;
	width: 25%;
	left: 0;
	bottom: 0;
	z-index: 0;
}

.linebg-right1 {
	position: absolute;
	width: 50%;
	right: 0;
	top: 0;
	z-index: 0;
}

.linebg-left1 {
	position: absolute;
	width: 35%;
	left: 0;
	bottom: 20%;
	z-index: 0;
}

.linebg-right img,
.linebg-left img,
.linebg-right1 img,
.linebg-left1 img {
	width: 100%;
}


.system .row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.system-card {
	position: relative;
	width: 100%;
	padding: 15px 15px;
	transition: all 0.3s ease;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
}

.system-card:hover {
	transform: translateY(-10px);
}


.systemBox {
	background: #fff;
	padding: 25px 35px;
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	position: relative;
}

.systemBox-icon {
	text-align: center;
}
.systemBox-icon img{
	height: 80px;
}
.systemBox dl {
	width: 100%;
	padding-top: 20px;
	padding-bottom: 15px;
}

.systemBox dt {
	font-size: 20px;
	text-align: center;
}

.systemBox dd {
	color: #595757;
	line-height: 1.75;
	margin-top: 1rem;
}

.actual {
	padding: 0 90px;
}

.actual dt {
	font-size: 20px;
	padding-bottom: 10px;
}

.actual dd {
	color: #595757;
	line-height: 1.75;
	padding: 10px 0;
}

.actual .row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -8px;
	margin-left: -8px;
}

.actual-card {
	position: relative;
	width: 100%;
	padding-right: 8px;
	padding-left: 8px;
	transition: all 0.3s ease;
	margin-top: 16px;
}



.actual-card img:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.1);
}

.actual-card img {
	width: 100%;
	border-radius: 15px;
	transition: all 0.3s ease;
}

.portrait {
	padding: 65px 90px 0;
}

.portrait dt {
	font-size: 20px;
	padding-bottom: 10px;
}

.portrait dd {
	color: #595757;
	line-height: 1.75;
	padding: 10px 0;
}

.actual-img {
	margin-top: 35px;
}

.actual-img img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.1);
}

.stack-container {
	position: relative;
	width: 100%;
	max-width: 1280px;
	height: 722px;
	padding-right: 0;
	padding-left: 0;
	margin-right: auto;
	margin-left: auto;
}

.stacked-image {
	position: absolute;
	cursor: pointer;
	transition: all 0.5s ease;
	width: 80%;

}

.stacked-image img {
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.2);
	border: 10px solid #fff;
	border-radius: 20px;
	width: 100%;
}

.image-black {
	left: -95px;
	top: 0;
	transform: scale(0.8);
	z-index: 1;
}

.image-red {
	right: -95px;
	top: 0;
	transform: scale(0.8);
	z-index: 1;
}

.image-black.active {
	transform: scale(1);
	z-index: 3;
	left: 0;
}

.image-red.active {
	transform: scale(1);
	z-index: 3;
	right: 0;
}

/* 移动端布局 - 取消堆叠效果 */
@media (max-width: 1180px) {
	.stack-container {
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.stacked-image {
		position: relative;
		padding: 0 15px;
		transform: scale(1) !important;
		z-index: 1 !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		width: 100%;
	}

	.shot-img {
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
		padding: 0 15px;

	}

	.shot-img img {
		width: 100%;
	}

	.stimg1 {
		position: relative;
		padding: 0 20px;
		transform: scale(1) !important;
		z-index: 1 !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.1);
	}

	.stimg2 {
		position: relative;
		padding: 0 20px;
		transform: scale(1) !important;
		z-index: 1 !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.1);
	}
}