.horizontal-banner {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin: 1rem 0 !important;
    justify-content: center !important;
}

.horizontal-banner a {
    display: block !important;
    max-width: 100% !important;
}

/* ==================== 电脑 + 平板 ==================== */
@media screen and (min-width: 768px) {
    .horizontal-banner img {
        width: 100% !important;
        max-width: 100% !important;
        aspect-ratio: 6 / 1 !important;           /* 严格保持 6:1 比例 */
        max-height: 100px !important;             /* 目标高度 100px */
        height: auto !important;
        object-fit: cover !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    }
}

/* ==================== 手机端（苹果 + 安卓） ==================== */
@media (max-width: 767px) {
    .horizontal-banner img {
        width: 100% !important;
        max-width: 100% !important;
        aspect-ratio: 6 / 1 !important;           /* 保持 6:1 比例 */
        max-height: 80px !important;              /* 手机端稍小一点 */
        height: auto !important;
        object-fit: cover !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    }
}