.box1 {
	padding-top: 0.8rem;
	padding-bottom: 1.2rem;
}

.box1 .info {
	font-size: 0.18rem;
	color: #333333;
	line-height: 0.34rem;
	text-align: center;
}
.box1 .list_flex {
	margin-top: 0.5rem;
	margin-left: -0.15rem;
	margin-right: -0.15rem;
}

.box1 .list_flex .item {
	flex: 0 0 calc(100% / 3);
	padding: 0 0.15rem;
	margin-bottom: 0.4rem;
}

.box1 .fun {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	max-width: 90%;
	opacity: 0;
	transition: 0.3s;
	z-index: 3;
}
.box1 .fun_tit {
	text-align: center;
	font-size: 0.18rem;
	color: #FFFFFF;
}
.box1 .fun_tit::after {
	content: '';
	margin-top: 0.15rem;
	margin-left: auto;
	margin-right: auto;
	display: block;
	background: #fff;
	width: 0.4rem;
	height: 0.01rem;
}
.box1 .fun_des {
	margin-top: 0.3rem;
	color: #fff;
}
.box1 .scale_box {
	position: relative;
	height: 3.2rem;
}
.box1 .scale_box::after {
	content: '';
	display: block;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: 0.3s;
}
.box1 .hover_box:hover .scale_box::after{
	opacity: 1;
}
.box1 .hover_box:hover .fun {
	opacity: 1;
}
.box1 .title {
	line-height: 0.5rem;
	background: var(--c);
	color: #fff;
	text-align: center;
	font-size: 0.2rem;
}
@media only screen and (max-width: 1024px) {
    .box1 .list_flex .item{
        flex: 0 0 calc(100% / 2);
    }
    .box1 .title{
        font-size: 0.24rem;
    }
}