@charset "utf-8";
/* 固定位置的 Banner 样式 */
.swtong-image {
    position: fixed;
    left: 0;
    top: 265px;
    z-index: 10005000;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}

/* 当页面宽度小于 1023px 时，隐藏 .swtong-image */
@media (max-width: 1023px) {
    .swtong-image {
        display: none;
    }
}
