body {
	background-color: #F5F5F7;
	text-align: center;
}

.solution-header {
	max-width: 1920px; 
	height: 650px; 
	background-image: url('../images/solution_header.png');
	background-size: 1920px 650px;
	background-position: center;
	color: #FFF;
	margin-left: auto;
	margin-right: auto;
}

.solution-header h1{
	font-size: 42px;
	font-weight: normal;
	padding-top: 170px;
}

.solution-header p:first-of-type {
	padding-top: 46px;
}
	
.solution-header p{
	font-size: 28px;
	padding-top: 10px;
}

.img-show {
	max-width: 1920px;
	min-height: 970px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	text-align: left;
	background-color: #FFF;
	padding-top: 1px;
	position: relative;
}

.img-show h1 {
	font-size: 46px;
	margin-left: 260px;
	margin-top: 120px;
}

.img-show h1 span {
	color: #727272;
}

.img-list {
	width: 1920px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 78px;
	overflow: hidden;
	position: relative;
}

.img-list ul {
	list-style-type: none;
	margin-left: 260px;
	padding: 0;
	display: flex;
	transition: margin-left 0.3s ease;
}

.img-list ul li {
	width: 375px;
	height: 100%;
	margin-right: 20px;
	border-radius: 16px;
	flex-shrink: 0;
}

.img-list ul li p {
	font-size: 18px;
	color: #808080;
	margin-top: 58px;
}

.img-list ul li p span {
	font-weight: 900;
	color: #000;
}

/* 翻页按钮样式 */
.nav-buttons {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.nav-button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: background-color 0.3s ease;
}

.nav-button:hover {
	background-color: rgba(0, 0, 0, 0.9);
}

.nav-button:disabled {
	background-color: rgba(0, 0, 0, 0.3);
	cursor: not-allowed;
}

/* 左右翻页按钮 */
.prev-button, .next-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 64px;
	height: 64px;
	background-color: rgba(0, 0, 0, 0.3);
	color: white;
	border: none;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.prev-button:hover, .next-button:hover {
	background-color: rgba(0, 0, 0, 0.9);
	transform: translateY(-50%) scale(1.1);
}

.prev-button {
	left: 180px;
}

.next-button {
	right: 180px;
}

/* 隐藏超出容器的内容 */
.img-list-container {
	width: 100%;
	position: relative;
}

/* 指示器小圆点 */
.indicator {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.3);
	margin: 0 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.indicator.active {
	background-color: rgba(0, 0, 0, 0.8);
	transform: scale(1.2);
}

.block-show {
	max-width: 1920px;
	height: 1205px;
	margin-left: auto;
	margin-right: auto;
}

.block-list {
	margin-left: 260px;
	margin-top: 135px;
	width: 1400px;
	height: 1060px;
}

.block-list ul {
	list-style-type: none;
	padding: 0;
	display: flex;
}

.block-list ul li {
	width: 690px;
	height: 520px;
	background-color: #FFF;
	text-align: left;
	position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.block-list ul li:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.block-list ul li h1 {
	font-size: 46px;
	font-weight: normal;
	margin-top: 90px;
	margin-left: 100px;
}

.block-list ul li p {
	width: 526px;
	font-size: 16px;
	margin-top: 40px;
	margin-left: 100px;
}

.block-list ul li span {
	position: absolute;
    top: 100px;
    left: 96px;
    color: #FFF;
    font-size: 28px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.block-list ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	transition: transform 0.6s ease;
}

.block-list ul li:hover img {
    transform: scale(1.08); /* 图片比容器放大更多一点 */
}

.block-list ul:last-of-type {
	margin-top: 20px;
}

.block-list ul li:last-of-type {
	margin-left: 20px;
}