#main{
	margin: 0 auto!important;
	background-color: white;
}
.intro-img{
	display: flex;
	align-items: center;
}
/* 服务内容 */
.serve{
	margin: 1em auto;
	overflow: hidden;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:6% 12% 4% 12%;
}
.serve .serve-list{
	width: 22%;
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0;
	transform: translateY(50px);
	animation: fadeInUp 0.8s forwards;
}
 /* 为每个项目设置不同的动画延迟 */
.serve-list:nth-child(1) { animation-delay: 0.3s; }
.serve-list:nth-child(2) { animation-delay: 0.6s; }
.serve-list:nth-child(3) { animation-delay: 0.9s; }
.serve-list:nth-child(4) { animation-delay: 1.2s; }
 @keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.serve .serve-list img{
	width: 5em;
}
.serve .serve-list p{
	margin: 1em 0;
	color: #333;
	font-weight: bold;
}
.serve .serve-list span{
	color: #333;
	font-size: 0.7em;
	display: block;
	height: 7em;
}
/* 门店环境 */
.section-title{
	text-align: center;
}
.section-title p:first-child{
	color: #333;
	font-weight: bold;
	font-size: 1.5em;
	margin-bottom: 0.8em;
}
.cases-section {
	width: 60em;
	margin: 4em auto;
}

.cases-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
}

.case-item {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	height: 250px;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.active {
  opacity: 1;
  transform: translateY(0);
}
.case-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
}

.case-item:hover img {
	transform: scale(1.1);
}

.case-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 1));
	color: var(--white);
	padding: 20px;
	transform: translateY(100%);
	transition: all 0.3s ease;
}

.case-item:hover .case-overlay {
	transform: translateY(0);
}

.case-overlay h1 {
	margin-bottom: 10px;
	color: white;
	font-size: 1em;
}
.case-overlay p {
	margin-bottom: 10px;
	color: white;
	font-size: 0.7em;
}
/* 消费者 */
.experience{
	margin: 0 auto;
	background: #f5f5f5;
	padding:6% 12% 4% 12%;
}
.experience .customer{
	display: flex;
	align-items: center;
}
.experience .customer-top{
	text-align: center;
	margin-right: 3em;
}
.customer-title{
	margin:1em 0 0 0;
	padding: 0.5em 1em;
	color: white;
	border-radius: 30px;
	font-weight: bold;
	letter-spacing: 1px;
	background-color: rgb(15, 46, 159);
	box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 10px;
	color: white;
}
.customer-content p{
	margin: 1em 0;
	font-size: 0.8em;
	color: rgb(15, 46, 159);
	font-family: "微软雅黑";
}
.experience .manager{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: 3em;
}
.experience .manager-top{
	text-align: center;
	margin-left: 3em;
}
.manager-title{
	margin:1em 0 0 0;
	padding: 0.5em 1em;
	color: white;
	border-radius: 30px;
	font-weight: bold;
	letter-spacing: 1px;
	background-color: rgb(230, 113, 33);
	box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 10px;
	color: white;
}
.manager-content p{
	margin: 1em 0;
	font-size: 0.8em;
	color: rgb(230, 113, 33);
	font-family: "微软雅黑";
}