/* 移动设备等比例缩放 */
@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: #eee4d8;
	padding: 5vw;
}

.page{
	margin-top: 40px;
}


p{ text-indent: 2em;}

.content {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 1vw;
	justify-content: center;
	background: url("../img/bg4.jpg") !important;
}
.banner {
	max-width:1280px;
    width: 100%;
	display: flex;
	background: white;
	overflow: hidden;
	box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	margin: 40px auto;

}
.banner:hover {
	transform: translateY(-0.5vw);
	box-shadow: 0 1.5vw 3vw rgba(0, 0, 0, 0.15);
}

.card {
	width:58vw;
	display: flex;
	background: white;
	border-radius: 1vw;
	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 40%;
	overflow: hidden;
	height: 16vw;
}

.image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.card:hover .image-container img {
	transform: scale(1.05);
}

.text-content {
	flex: 0 0 60%;
	padding:0 3vw 0 3vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.text-content h2 {
	font-size:1.2vw;
	color: #e11917;
	margin-bottom: 1vw;
}

.text-content h2 a{
	color: #e11917;
}

.text-content p a{
	color: #444;
}

.text-content p {
	font-size:0.7vw;
	color: #444;
	line-height: 1.9;
	margin-bottom:1vw;
}

.btn {
	display: inline-block;
	padding:0.6vw 1vw;
	background: linear-gradient(to right, #e51816, #fdbb2d);
	color: white;
	text-decoration: none;
	border-radius: 0.4vw;
	font-weight: 600;
	font-size:0.8vw;
	transition: all 0.3s ease;
	align-self: flex-start;
	box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
}

.btn:hover {
	background: linear-gradient(to right, #0a81cf, #ffb93e);
	transform: translateY(-0.3vw);
	box-shadow: 0 0.8vw 1.5vw rgba(0, 0, 0, 0.15);
	color: white;
}

