html, body {
        position: relative;
		width: 100%;
}
body {
	background: #fff;
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	font-size: 14px;
	color:#000;
	margin: 0;
	padding: 0;
}
.header_container{
	width: 100%;
	height: 70px;
	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
}
.header_container .header {
    position: static;
    max-width: 1380px;
    margin: 0 auto;
    width: 100%;
    height: 70px;
    line-height: 70px;
    min-width: 1235px;
    box-shadow: none;
    padding: 0;
    box-sizing: inherit;
}
.header img{
	height: 70px;
}
.swiper-container {
	width: 100%;
	height: auto;
	display: grid;
	place-items: center;
	overflow: hidden;
}
.swiper-container img{
	max-width: 100%; /* 或使用grid属性控制大小 */
	height: auto;
}
.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.content-container{
	max-width: 1380px;
	margin: 0 auto;
	width: 100%;
	min-width: 1235px;
	box-shadow: none;
	padding: 0;
	box-sizing: inherit;
}
.content-content{
	border-radius: 10px;
	background-color: aliceblue;
}
.content{
	padding: 0px 20px 20px 20px;
}
.content h3{
	text-align: center;
	line-height: 60px;
	height: 60px;
	font-size: 16px;
	border-bottom: 1px #000 solid;
}
.content .desc{
	font-size: 15px;
	line-height: 30px;
}
.label_content{
	margin-top: 20px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); /* 创建多个列，每列宽度相等 */
	gap: 10px; /* 设置列与列之间的间距 */
}
.label_content li{
	list-style: none;
	background-color: aliceblue;
	border-radius: 10px;
	display: inline-block;
	height: 120px;
}
.label_content img{
	width: 40px;
	vertical-align: middle;
	margin-right: 20px;
}
.label_content .span-font{
	font-size: 16px;
	font-weight: 600;
}
.li-content{
	padding: 15px 20px;
	line-height: 30px;
}

.footer-container{
	margin-top: 30px;
	width: 100%;
	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
	/*
	background-color: #ccc;
	*/
}
.footer{
	border-top:1px #ccc solid ;
	padding: 20px 0px;
	text-align: center;
	line-height: 30px;
}
.footer a{
	text-decoration: none;
	color: #000;
}
