/* 牌型显示区域布局设置 */
div#cardinfo {
    display: block;
    overflow: auto;
    position: absolute;
    top: 0;
    left: 2vw; /* 最左侧只留白2% */
    width: 48vw; /* 占满左侧完整空间 */
    height: 95vh; /* 添加高度确保在桌面端显示完整 */
}

div#fxb {
    display: block;
    overflow: auto;
    position: absolute;
    top: 0;
    left: 52vw; /* 右侧分析表格位置，紧贴左侧区域 */
    width: 46vw; /* 分析表格宽度，充分利用右侧空间 */
    height: 95vh;
    background: #cccccc;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    div#cardinfo {
        position: static !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
    }
    
    div#fxb {
        position: static !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
    }
}