
/* 首页文章页面的图片点击后出现一个缩放效果 */
.article-container .img-father{
    position: relative;
    width: 180px;
    height: 105px;
    overflow: hidden;
    transition: all 0.5s;
}
@media (max-width: 766px){
    .article-container .img-father{
        width: 350px;
        height: 180px;
    }
}
.article-container .img-thumbnail{
    position: absolute;
}
.article-container .img-thumbnail:hover {
    transform: scale(1.5);
    transition: all 0.5s;
}

/*友情链接*/
.link-container .button{
    box-shadow:none!important;
}