/* 移动端响应式样式 */

/* 基础响应式设置 */
@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    /* 确保内容不超出屏幕 */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* 表格响应式 */
    table {
        width: 100% !important;
    }
    
    /* iframe响应式 */
    iframe {
        width: 100% !important;
    }
}

/* 小屏幕设备 */
@media screen and (max-width: 480px) {
    body {
        font-size: 12px;
    }
}

