.znyyhj {
    background-image: url("../images/znyyhj_banner.jpg");
    height: 320px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.w1200{
    width: 1200px;
    flex-wrap: wrap;
}
.w1200 a{
    width: 383px;
    height: 300px;
    margin-right: 25.5px;
    margin-top: 60px;
    margin-bottom: 15px;
    box-shadow: 0px 6px 6px 2px rgba(0, 0, 0, 0.03);
    position: relative;
    color: #ffffff;
    font-size: 20px;
}

.w1200 a figcaption{
    width: 175px;
    height: 50px;
    background-color: #009eae;
    border-radius: 25px;
    position: absolute;
    top: 100%;left: 50%;transform: translate(-50%, -50%);
}
.w1200 a:nth-child(3n){
    margin-right: 0px;
}



/* Float Shadow */
.yyhj-shadow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}
.yyhj-shadow:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 110%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 80%);
    /* W3C */
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity;
}
.yyhj-shadow:hover, .yyhj-shadow:focus, .yyhj-shadow:active {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    /* move the element up by 5px */
}
.yyhj-shadow:hover:before, .yyhj-shadow:focus:before, .yyhj-shadow:active:before {
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}