.container{
    width: 1200px;
    margin: 50px auto;
}

.teamList > li{
    float:left;
    width: 267px;
    margin: 0 44px 44px 0;
    color: #fff;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
}

.teamList > li:nth-of-type(4n){
    margin-right: 0;
}

.teamList > li > img{
    display: block;
    width: 100%;
    height: auto;
}

.teamList > li > p:first-of-type{
    margin: 10px 0 0;
}

.team-info{
    width: 219px;
    height: 203px;
    background-color: rgba(0,0,0,.8);
    color: #fff;
    font-size: 14px;
    text-align: left;
    line-height: 1.6em;
    padding: 50px 24px;
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}

.teamList > li:hover > .team-info{
    display: block;
}