@charset "utf-8";

/* CSS Document */
.wad_1 {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: #fafafa url(../img/body_bg.png) repeat;
    background-size: 85%;
    padding-bottom: 0.6rem;
}

.con_box {
    width: 14.9rem;
    margin: 0 auto;
    background: #fff;
    margin-top: -0.6rem;
    z-index: 0;
}

.content {
    position: relative;
    display: flex;
}
.item_box {
    width: 100%;
}
.sh_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0.4rem;
}
.sh_box .img_s{
    position: relative;
    width: 31%;
    overflow: hidden;
    margin: 0.1rem;
    height: 0;
    padding-bottom: 21%;
}
.sh_box .img_s a{
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.sh_box .img_s a p.title{
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    padding: 0.2rem;
    font-family: Verdana;
    background: #00000069;
    font-size: 0.18rem
}

.sh_box .img_s img{
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: all .7s ease-in-out;
}
.sh_box .img_s :hover img{
    transform: scale(1.1);
}