.service-banner {
	width: 100%;
	font-size: 14px;
	height: 640px;
	background: url(../images/yy-banner.jpg) no-repeat center;
}

.service-conter {
	width: 100%;
	background-color: #f5f5f5;
	
}

.service-conter-box {
	width: 76%;
	margin: auto;
	background-color: #fff;
	font-size: 14px;
	padding-bottom: 40px;
}

.case-title {
	width: 100%;
	height: 44px;
	line-height: 44px;
	border-bottom: 1px solid #f5f5f5;
	padding: 0 20px;
	cursor: pointer;
}

.case-one {
	width: 100%;
	padding: 20px 20px;
	box-sizing: border-box;
}

.contaoner-title {
	font-size: 22px;
	font-weight: bold;
}

.contaoner-cont {
	/* width: 42%; */
	width: 100%;
	font-size: 14px;
	margin-top: 20px;
	color: #999;
}

/* 描述 */
.case-contaoner {
	padding: 20px 30px;
	box-sizing: border-box;
}

/* 经典案例 */
.gallery-container {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	cursor: pointer;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.image-box {
	flex: 0 0 31.5%;
	background: white;
	border-radius: 10px;
	margin: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s, box-shadow 0.3s;
	height: 100%;
}

.image-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.image-wrapper {
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
}

.image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
}

.image-box:hover .image-wrapper img {
	transform: scale(1.1);
}

.image-title {
	padding: 15px;
	font-size: 14px;
	font-weight: 600;
	color: #2c3e50;
	text-align: center;
	background: white;
}

/* 其他服务案例 */
.hos-container {
	width: 100%;
	max-width: 1400px;
	overflow: hidden;
	margin: auto;
}

.hos-scroll-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 15px;
	padding: 20px 0;
}

.hos-scroll-wrapper {
	display: flex;
	width: max-content;
	animation: scrollLeft 30s linear infinite;
}

/* 悬停时暂停动画 */
.hos-scroll-container:hover .hos-scroll-wrapper {
	animation-play-state: paused;
}

.hos-image-box {
	width: 280px;
	height: 350px;
	margin: 0 20px;
	flex-shrink: 0;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	background: #1e293b;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hos-scroll-container:hover .hos-image-box {
	transform: scale(1.02);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.hos-image-box:hover {
	transform: scale(1.08) !important;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
	z-index: 10;
}

.hos-image-wrapper {
	width: 100%;
	height: 75%;
	overflow: hidden;
}

.hos-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.hos-image-box:hover .hos-image-wrapper img {
	transform: scale(1.1);
}

.hos-image-info {
	padding: 20px;
	height: 25%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hos-image-title {
	font-size: 14px;
	font-weight: 600;
	color: #f1f5f9;
	margin-bottom: 8px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hos-image-desc {
	font-size: 0.9rem;
	color: #94a3b8;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hos-progress-bar {
	width: 200px;
	height: 4px;
	background: #334155;
	border-radius: 2px;
	overflow: hidden;
}

/* 动画定义 */
@keyframes scrollLeft {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@keyframes progressMove {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(400%);
	}
}

/* 经典案例详情页面 */
.hos_name-banner {
	font-size: 14px;
	height: 380px;
	padding: 90px 0;
	background: url(../images/new-banner.png) no-repeat center;
}

.banner-content {
	width: 80%;
	height: 100%;
	padding-left: 80px;
	padding-top: 80px;
	margin: auto;
	background-color: #fff;
	border-left: 4px solid #005eaf;
	box-sizing: border-box;
}

.banner-content-title {
	font-size: 32px;
	font-weight: bold;
	color: #333;
	margin-bottom: 34px;
}

.banner-content-title-min {
	font-size: 16px;
	color: #666;
	margin-bottom: 4px;
}

.banner-content-title-time {
	font-size: 14px;
	color: #666;
	margin-top: 30px;
}

.hos-name-content {
	width: 100%;
	padding: 20px 30px;
	box-sizing: border-box;
}

.content1 {
	margin-bottom: 120px;
	display: flex;
	justify-content: space-between;
	
}

.content1-iamge {
	width: 40%;
	height: 360px;
}

.content1-iamge img {
	width: 100%;
	height: 100%;
}

.content1-cont {
	width: 45%;
	height: 360px;
	font-size: 16px;
	color: #475a77;
	text-align: justify;
}

/* 其他案例 */
.qt-title {
	font-size: 22px;
	font-weight: bold;
	color: #333;
	width: 100%;
	margin: auto;
	box-sizing: border-box;
	padding-left: 40px;
}

.int-gallery-container {
	width: 100%;
	cursor: pointer;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 26px;
	margin-top: 20px;
	box-sizing: border-box;
}

.int-image-box {
	flex: 0 0 47.5%;
	background: white;
	margin: 12px;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
	height: 100%;
	display: flex;
}

.int-image-box:hover {
	transform: translateY(-8px);
}

.int-image-wrapper {
	width: 40%;
	height: 200px;
	overflow: hidden;
	position: relative;
}

.int-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
}

.int-image-box:hover .image-wrapper img {
	transform: scale(1.1);
}

.int-image-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #2c3e50;
}

.int-data-content {
	width: 60%;
	color: #999;
	font-size: 13px;
	padding: 0 20px;
	box-sizing: border-box;
}

.name-text {
	font-size: 26px;
	margin-bottom: 30px;
	font-weight: bold;
}