.list{
    width: 1150px;
    margin: 30px auto;
}
.terrace{
    float:left;
    padding: 0 20px;
    height: 82px;
    line-height: 82px;
    text-align:center;
    color:#fff;
    font-size:2rem;
    letter-spacing:8px;
    background:#0974d6;
}
.image_box{
    width: 200px;
    overflow: hidden;
    height: 260px;
    box-sizing: border-box;
    border: 10px solid #fff;
    border-radius: 5px;
    float: left;
    margin:20px 15px;
    box-shadow: 0 0 10px #999;
    position: relative;
    transition: border .5s;
    display: -webkit-flex;
    display: flex;
    flex-flow: column;
    justify-content: center;
    -webkit-justify-content: center;
    -webkit-flex-flow: column;
}
.image_box img{
    width: 100%;
    height: 100%;
}
.image_box p{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 1.5rem;
    color: #fff;
    z-index: 2;
    opacity: 0;
    transition: background .5s ,opacity .5s;
}
.image_box:hover{
    border:10px solid #c7161e;
}
.image_box:hover p{
    opacity: 1;
    background: linear-gradient(#c7161e00, #c7161e7a,#c7161e);
}