/* 论坛版块页（forumdisplay）顶部横幅，模板内直接写 HTML 维护 */

.forum-top-banners {
    margin: 0 0 15px 0;
    box-sizing: border-box;
}
.forum-ad-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.forum-ad-item {
    position: relative;
    width: 100%;
}
.forum-ad-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}
.forum-ad-item a {
    text-decoration: none;
}
.forum-ad-item span {
    position: absolute;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 0 6px;
    color: #fff;
    font-size: 8px;
}
