/* CSS Document */
.cooperate-main {
	text-align: center;
	margin-bottom: 32px;
}
.cooperates{
	 
	width: 1024px;
	height: auto;
	margin: 0 auto;
}
.cooperate-left {
	 
	width: 100%;
}
.cooperate-left-p {
	font-size: 20px;
  text-indent: 40px;
  line-height: 40px;
}
.cooperate-right {
	float: right;
	width: 328px;
	height: 224px;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: box-shadow, transform;
	transition-property: box-shadow, transform;
}
.cooperate-right:hover {
	-webkit-transform: perspective(1px) translateZ(0) scale(1.05);
	transform: perspective(1px) translateZ(0) scale(1.05);
	 
}
.cooperates-dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start ;
	gap: 30px;
	 
}

.cooperates-dt, .cooperates-dt01 {
	flex: 0 0 calc(33.333% - 30px);
	max-width: 330px;
	min-width: 280px;
	perspective: 1000px;
}
.cooperates-dt {
	padding-right: 1.3%;
}
.cooperates-dt-bg-group {
	position: relative;
	width: 100%;
	

	
	background: #fff;
	/* 其他需要的样式 */
}
.cooperates-dt-bg {
	position: relative;
	width: 100%;
	height: 226px;
	border: #ddd;
	border-radius: 6px 6px 40px 6px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transform-style: preserve-3d;
	cursor: pointer;
	box-shadow: 0 10px 20px rgba(80, 80, 80, 0.2);
}
.magnifier-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 48px;
    height: 48px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    opacity: 0.8;
    transition: opacity 0.2s;
}

	.magnifier-icon img {
		width: 32px;
		height: 32px;
	}

.cooperates-dt-bg:hover .magnifier-icon {
	opacity: 1;
}

#img-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(102,102,102,0.92);
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s;
	opacity: 0;
}

	#img-modal.show {
		display: flex;
		opacity: 1;
		animation: imgModalFadeIn 0.3s;
	}

@keyframes imgModalFadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

#img-modal.hide {
	opacity: 0;
	transition: opacity 0.3s;
}

#img-modal-img {
	max-width: 85vw;
	max-height: 85vh;
	box-shadow: 0 0 24px #000;
	border-radius: 8px;
	background: #fff;
	margin: auto;
	display: block;
	position: relative;
	z-index: 10;
	transition: box-shadow 0.2s;
}

#img-modal-close {
	position: absolute;
	top: -32px;
	right: -32px;
	transform: translate(50%, -50%);
	width: 40px;
	height: 40px;
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 50%;
	font-size: 28px;
	cursor: pointer;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, border 0.2s;
	outline: none;
}

	#img-modal-close:hover {
		 
		border-color: #fff;
	}

.cooperates-dt-bg:hover .magnifier-icon {
	opacity: 1;
	display:block;
}
	.cooperates-dt-bg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	 
		transition: transform .5s ease-in-out
	}
 
	.cooperates-dt-bg img:hover {
		will-change: transform;
		transform: scale(1.05) translateZ(0)
	}


.cooperates-dt-p {
	width: 100%;
	padding: 15px 0;
	text-align: center;
	line-height: 1.3;
	font-size: 20px;
	font-weight: 600;
	 
	color: #000;
	z-index: 2;
	margin: 0;
}

 
 

 
.edu-btn-group {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 48px; /* 两按钮间距 */
	margin: 60px 0; /* 上下间距 */
}

.edu-btn {
	display: inline-block;
	padding: 6px 48px;
	font-size: 28px;
	border-radius: 40px;
	border: 3px solid;
	background: #fff;
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
	text-decoration: none;
	font-weight: 400;
	transition: box-shadow 0.2s, color 0.2s, border-color 0.2s;
}

.edu-btn-orange {
	color: #fa9703;
	border-color: #fa9703;
}

.edu-btn-green {
	color: #26989e;
	border-color: #26989e;
}

.edu-btn:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	color: #fff;
}

.edu-btn-orange:hover {
	background: #fa9703;
	border-color: #fa9703;
}

.edu-btn-green:hover {
	background: #26989e;
	border-color: #26989e;
}  