@charset "utf-8";

/* 主体部分 */
.pic_body {
    margin: 0 auto;
    width: 1280px;
}
.pic_body .container {
    margin: 0 auto;
    width: 1280px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.pic_body .container li {
    position: relative;
    margin: 20px 20px 0 0;
    width: 304px;
    height: 176px;
    border-radius: 8px;
    overflow: hidden;
}
.pic_body .container li:nth-child(4n) {
    margin-right: 0;
}
.pic_body .container a {
    display: inline-block;
    width: 100%;
    height: 100%;
}
.pic_body .container li:hover img{
    transform: scale(1.1);
}
.pic_body .container li img {
    width: 100%;
    height: 100%;
    transition: all .8s ease;
}

.pic_body .container .title {
    position: absolute;
    width: 100%;
    bottom: -50px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    line-height: 40px;
    transition: all .8s ease;
    background-color: rgba(193, 65, 43, .8);
}
.pic_body .container a:hover .title{
    bottom: 0;
}