@charset "utf-8";
/***
 *  .--,       .--,
 * ( (  \.---./  ) )
 *  '.__/o   o\__.'
 *     {=  ^  =}
 *      >  -  <
 *     /       \
 *    //       \\
 *   //|   .   |\\
 *   "'\       /'"_.-~^`'-.
 *      \  _  /--'         `
 *    ___)( )(___
 *   (((__) (__)))    忽忘初心。
 */


.grid figure {
    position: relative;
    overflow: hidden;
    text-align: center;
    max-height: 450px;
    cursor: pointer;
    width: 31%;
    float: left;
    margin: 1%;
    background-color: #002f7b;
}
.grid figure *{
    transition: all 0.35s;
}
.grid figure  figcaption{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -80px;
    height: 80px;
    background-color: #002f7b;
    text-align: left;
}
.grid figure figcaption p {
    font-size: 20px;
    color: #fff;
    text-align: left;
    display: block;
    padding: 26px 15px;
    display: inline-block;
}

@media  (min-width: 768px){
    .grid figure:hover  figcaption{
        bottom: 0px;
    }
    .grid figure:hover img{
        -webkit-transform: translateY(-80px);
        -moz-transform: translateY(-80px);
        -ms-transform: translateY(-80px);
        -o-transform: translateY(-80px);
        transform: translateY(-80px);
    }
}
@media  (max-width: 767px){
    .grid figure{
        width: 100%;
        margin: 0;
        margin-bottom: 15px;
    }
    .grid figure figcaption {
        position: relative;
        bottom: 0;
        height:auto;
    }
    .grid figure figcaption p {
        font-size: 16px;
        padding: 10px 15px;
    }
}