/* 移动设备等比例缩放 */
@media screen and (max-width: 1000px) {

	html,
	body {
		min-width: 1280px !important;
		overflow-x: auto;
	}
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: '微软雅黑', Tahoma, Geneva, Verdana, sans-serif;
}

a {
	text-decoration: none;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: url("../images/bg.png") repeat-y !important;
	background: #fff;
	padding: 5vw;
}

.page {
	margin-top: 40px;
}


p {
	text-indent: 2em;
}

.content {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 1vw;
	justify-content: center;

}

.banner {
	width: 100%;
	display: flex;
	overflow: hidden;
	margin:0 auto;

}

.banner img {
	width: 100%;

}



.card {
	width: 58vw;
	display: flex;
	background: white;
	border-radius: 0.6vw;
	overflow: hidden;
	box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	margin-bottom: 2vw;
	padding: 1vw;
}

.card:hover {
	transform: translateY(-0.5vw);
	box-shadow: 0 1.5vw 3vw rgba(0, 0, 0, 0.15);
}

.image-container {
	flex: 0 0 36%;
	overflow: hidden;
	height: 14vw;
	margin-right: 2vw;
}

.image-container images {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.card:hover .image-container images {
	transform: scale(1.05);
}

.text-content {
	flex: 0 0 60%;
	padding: 0 1vw 0 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.text-content h2 {
	font-size: 1.2vw;
	color: #000;
	line-height: 2vw;
}

.text-content h2 a {
	color: #000;
}

.text-content h2 a:hover {
	color: #d82411;
}

.text-content p a {
	color: #444;
}

.text-content p {
	font-size: 0.7vw;
	color: #444;
	line-height: 1.9;
	margin: 1vw 0 1vw 0;
}

.btn {
	display: inline-block;
	padding: 0.6vw 1vw;
	background: linear-gradient(to right, #0377f7, #59bdfd);
	color: white;
	text-decoration: none;
	border-radius: 0.4vw;
	font-weight: 600;
	font-size: 0.8vw;
	transition: all 0.3s ease;
	align-self: flex-end;
	box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
}

.btn:hover {
	background: linear-gradient(to right, #ffb209, #ff7800);
	transform: translateY(-0.3vw);
	box-shadow: 0 0.8vw 1.5vw rgba(0, 0, 0, 0.15);
	color: white;
}