/* 电脑端样式覆盖 */

/* 覆盖原有样式 */
body {
    min-width: 1200px;
    overflow-x: auto;
}

/* 覆盖移动端样式 */
@media screen and (max-width: 768px) {
    .mobile-only {
        display: none !important;
    }
}

/* 强制显示电脑端元素 */
.pc-only {
    display: block !important;
}

/* 覆盖响应式布局 */
.container {
    width: 1200px !important;
    max-width: none !important;
    padding: 0 15px !important;
}

/* 覆盖导航栏样式 */
.navbar {
    height: 60px !important;
}

/* 覆盖按钮样式 */
.btn {
    padding: 8px 16px !important;
    font-size: 14px !important;
}

/* 覆盖表格样式 */
table {
    width: 100% !important;
    table-layout: fixed !important;
}

/* 覆盖图片样式：勿用 height:auto !important，会冲掉存款等方式图标的固定高度 */
img {
    max-width: 100%;
}

/* 存款页支付方式图标：与银行卡/USDT/微信保持一致 */
.style__list_box__2YvIs .style__listItem__25yiT img {
    width: auto !important;
    max-width: none !important;
    height: 36px !important;
    margin-top: 20px !important;
    object-fit: contain;
}

.style__list_box__2YvIs .style__listItem__25yiT li > p {
    margin-top: 4px;
    line-height: 1.2;
    text-align: center;
} 