/**
 * 首页弹屏广告
 */
.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%;
}
.plugins-popupscreen-ad-content .am-close {
    color: #5a5a5a;
    width: 3rem;
    line-height: 3rem;
    opacity: 1;
}
@media only screen and (min-width:641px) {
    .plugins-popupscreen-ad-content {
        width: 50rem;
        height: 34.5rem;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -25rem;
        margin-top: -18rem;
    }
}
@media only screen and (max-width:640px) {
    .plugins-popupscreen-ad-content {
        max-width: 100%;
        padding: 6rem;
        margin-top: 50%;
    }
}