@charset 'utf-8';

.box{
    width: 110px;
    height: 110px;
    position: relative;
    float: left;
    vertical-align: top;
    overflow: hidden;
    margin: 5px;
    background: #f1f1f1;
    border-radius: 20px;
}
.box .img{
	width: 90px;
    height: 90px;
    margin: 10%;
}
.author-num{
	float: right;
    background: url(../image/bg.png) left no-repeat;
    background-size: 20px;
    padding-left: 24px;
    color: #959595;
    cursor: default;
}
.mask{
	width: 100%;
    height: 208px;
    background: rgba(0,0,0,.7);
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.mask img{
	width: 80%;
	margin: 10px;
}
.mask button{
    line-height: 24px;
    background-color: rgba(253,203,46,9);
    border: 1px solid rgba(253,203,46,9);
    border-radius: 2px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}
.box .mask:hover{
	opacity: 1;
	transition: all 2s;
}