﻿.hr-avatar{
    font-size: 0px;
    position: relative;
}
.hr-head{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.head-delete{
    width: 12px;
    height: 12px;
    color: white;
    position: absolute;
    font-size: 12px;
    border-radius: 50%;
    background-color: red;
    cursor: pointer;
}

.delete-jian{
    width: 6px;
    height: 1px;
    margin: 5px 3px 5px;
    background-color: white; 
}
.delete-cha{
	width: 12px;
	height: 12px;
	margin: auto;
	position: relative; 
}
.delete-cha::before,
.delete-cha::after{
    content: "";
    position: absolute;  /*方便进行定位*/
    top: 5px;
    left: 2px;
    height: 1px;
    width: 8px;
    background: #ffffff;
}
.delete-cha::before{
    transform: rotate(45deg);  /*进行旋转*/
}
.delete-cha::after{
    transform: rotate(-45deg);
}