#group{
	display:flex;
	justify-content:space-between;
}
.author_icon {
	width:200px; 
	height:200px; 
	position:absolute;
	border-radius:50%;
	border:5px solid #fff;
	top:80px;
	right:-40px;
	overflow:hidden;
	z-index:2;
}

.image {
    width: 100%; /* 图片宽度填满容器 */
    height: 100%; /* 图片高度填满容器 */
    object-fit: cover; /* 图片在容器中等比例缩放，保持宽高比并填满容器 */
    object-position: center center; /* 图片在容器中居中显示 */
    display: block; /* 以块级元素显示 */
    margin: auto; /* 居中显示 */
}