.pic-wrap {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
    z-index: 10;
    font-size: 0;
    text-align: center;
}
.pic-wrap .photo-item {
    position: relative;
    display: inline-block;
    margin-right: 60px;
    margin-bottom: 40px;
    width: 360px;
    height: 204px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #d9d9d9;
}
.pic-wrap .photo-item:hover {
    animation-name: updownNormal;
    animation-duration: 1s;
}
.pic-wrap .photo-item:nth-child(3n), .pic-wrap .photo-item:last-child {
    margin-right: 0;
}
.pic-wrap .photo-item .thumb {
    width: 100%;
    height: 100%;
    transition: all .5s ease;
}
.pic-wrap .photo-item .title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40px;
    line-height: 40px;
    font-size: 14px;
    color: #eee;
    text-align: center;
    font-weight: bold;
    background-color: #1bab82;
    background-color: rgb(27 171 130 / 88%);
    transition: bottom .5s ease;
}
.pic-wrap .photo-item:hover .title {
    bottom: 0;
}
.pic-wrap .photo-item:hover .thumb {
    opacity: 1;
    /* transform: scale(1.15); */
}

.pic-wrap .photo-item-current .thumb {
    transform: scale(1.15);
}

.day-pagination{
    margin-top: 10px;
}