.links_list{
	display: grid;
    gap: 24px;
    grid-template-columns: repeat(3,minmax(0,1fr));
}
.links_list_box{
	padding-top: 20px;
}
.links_list_body{
	position: relative;
	border-radius: 8px;
	padding: 1rem;
    box-shadow: 0 1px 7px 0px rgb(0 0 0 / 42%);
}
.links_list_top{
	display: flex;
}
.links_list_img{
	position: relative;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	flex-shrink: 0;
}
.links_list_img img{
	width: 40px;
	height: 100%;
	margin: 0 auto;
	border-radius: 100px;
    border: 2px solid #beceeb;
}
.links_title{
	font-size: 15px;
	font-weight: 600;
	text-align: center ;
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
	margin-left:0;
	line-height: 45px;
	margin-top: 0;
}
.links_qm{
	text-align: center;
	background: #EFEFEF;
	font-size: 12px;
	padding: .8rem;
	margin-top: .5rem;
	border-radius: 8px;
}
@media print, screen and (max-width: 580px){
	.links_list {
		grid-template-columns: repeat(1,minmax(0,1fr));
	}
}