body {
    background: #F1F1F1;
}
.wrap {
    width: 1400px;
    margin: 0px auto 50px auto;
    min-height: 800px;
}
/* 内容 */
.content-middle {
    width: 100%;
    padding-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
}
.content-middle .box{
    width: 250px;
    height: 300px;
    margin: 10px 15px 10px 15px;
    background-color: white;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
}
.content-middle .box:hover{
    background-color: #e4e4e4;
}
.box .top img {
    -webkit-border-radius: 50%;
    border: 1px #BAB4B7 solid;
    width: 90px;
    height: 90px;
    margin: 10px 0 3px 0px;
}
.box .top span{
    font-size: 16px;
    display: block;
}
.top .addr{
    border-bottom: 0.3px solid gainsboro;
    height: 25px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow:ellipsis;
}
.top .detail{
    text-align: left;
    height: 22px;
}
.box .top p{
    color: gray;
    font-size: 14px;
    margin: 0 10px 0 10px;
}
.top .position{
    height: 35px;
    line-height: 35px;
    text-align: left;
    margin-left: 10px;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow:ellipsis;
}

