* {
	margin: 0;
	padding: 0;
	font-size: 0.16rem;
}


.body {
	width: 100%;
	height: auto;
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
}
.body .main{
	display: flex;
	flex-wrap: wrap;
}

.list{
	width: 4.8rem;
	height: 4.3rem;
	border-radius: 0.1rem;
	overflow: hidden;
	background-color: #F5F5F5;
	padding: 0.45rem 0.3rem 0.3rem;
	box-sizing: border-box;
	margin-right: 0.4rem;
	margin-bottom: 0.4rem;
	cursor: pointer;
}
.list:hover{
	background-color: #fff;
	box-shadow: 0.03rem 0.03rem 0.18rem 0.01rem rgba(0, 0, 0, 0.16);
}
.list:nth-child(3n){
	margin-right: 0;
}
.list_txt{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.41rem;
}
.list_txt .title{
	width: calc(100% - 0.45rem);
	position: relative;
	font-weight: bold;
	font-size: 0.2rem;
	color: #222222;
}
.list_txt .title::before{
	content: "";
	position: absolute;
	bottom: -0.15rem;
	left: 0;
	width: 0.36rem;
	height: 0rem;
	border: 0.01rem solid #03AFAC;
}
.list_txt i{
	width: 0.34rem;
	height: 0.34rem;
	background: linear-gradient( 132deg, #03AF9F 0%, #00AFEA 100%);
	border-radius: 0.54rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.list_txt i img{
	width: 0.16rem;
	height: auto;
}

.list_img{
	width: 4.2rem;
	height: 2.8rem;
	border-radius: 0.1rem;
	overflow: hidden;
}
.list_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition:all .4s;
	-moz-transition:all .4s;
	-webkit-transition:all .4s;
	-o-transition:all .4s;
}
.list:hover .list_img img{
	transform:scale(1.2);
}



