* { margin: 0; padding: 0; box-sizing: border-box; } html, body { height: 100%; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif; color: #303133; background: #f0f2f5; } /* 手机竖屏适配:筛选表单换行、控件全宽、分页换行居中 */ @media (max-width: 767px) { .el-form--inline { display: flex; flex-wrap: wrap; } .el-form--inline .el-form-item { margin-right: 0; flex: 1 1 100%; } .el-form--inline .el-input, .el-form--inline .el-select, .el-form--inline .el-date-editor { width: 100% !important; } .el-pagination { flex-wrap: wrap; justify-content: center; row-gap: 8px; } }