/**
 * 首页弹屏广告
 */
.plugins-popupscreen-ad {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.3);
}
.plugins-popupscreen-ad-content img {
    max-width: 100%;
}
@media only screen and (min-width:641px) {
    .plugins-popupscreen-ad-content {
        width: 500px;
        height: 345px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -250px;
        margin-top: -180px;
    }
}
@media only screen and (max-width:641px) {
    .plugins-popupscreen-ad-content {
        max-width: 100%;
        padding: 10px;
        margin-top: 50%;
    }
}