/* =====================================
   OJS 3.5 Pragma Homepage Image Upgrade
   ===================================== */


/* 去除Pragma黑白效果 */
.main__content figure img {
    mix-blend-mode: normal !important;
    filter: none !important;
}


/* 去掉灰色背景 */
.main__content figure {
    background: transparent !important;
    overflow: hidden;
}


/* 图片动态效果 */
.main__content figure img {

    width:100%;
    animation: 
        pragmaZoom 20s ease-in-out infinite;

}


/* 缓慢放大缩小 */
@keyframes pragmaZoom {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }

}

/* 页脚背景改黑色 */
.main-footer {

    background-color: #000000 !important;

    color: #ffffff !important;

}


/* 页脚所有文字白色 */
.main-footer,
.main-footer p,
.main-footer span,
.main-footer strong,
.main-footer h2,
.main-footer h3,
.main-footer li {

    color: #ffffff !important;

}


/* 页脚链接白色 */
.main-footer a {

    color: #ffffff !important;

}


/* 鼠标悬停链接颜色 */
.main-footer a:hover {

    color: #cccccc !important;

}
.main__content figure {

    background:none !important;

    padding:0 !important;

}


.main__content figure img.img-fluid {

    display:block;

    width:100%;

}


