// #region flex 布局

// 主轴垂直方向
.u-flex-col {
  /* #ifndef APP-NVUE */
  display: flex;
  /* #endif */
  flex-direction: column;
}

.u-full {
  height: calc(100vh - var(--window-top) - var(--window-bottom));
}

// #endregion

// $maxrpx: 10;
// @for $x1 from 0 through $maxrpx {
//   @if $x1 % 10 == 0 {
//     .wb-m-#{$x1} {
//       margin: $x1 * 1rpx !important;
//     }
//     @for $x2 from 0 through $maxrpx {
//       @if $x2 % 10 == 0 {
//         @if $x1 != $x2 {
//           // 定义外边距
//           .wb-m-#{$x1}-#{$x2} {
//             margin: $x1 * 1rpx $x2 * 1rpx !important;
//           }
//         }
//       }
//     }
//     @for $x2 from 0 through $maxrpx {
//       @if $x2 % 10 == 0 {
//         @for $x3 from 0 through $maxrpx {
//           @if $x3 % 10 == 0 {
//             @if $x1!= $x2 or $x2 != $x3 {
//               // 定义外边距
//               .wb-m-#{$x1}-#{$x2}-#{$x3} {
//                 margin: $x1 * 1rpx $x2 * 1rpx $x3 * 1rpx !important;
//               }
//             }
//           }
//         }
//       }
//     }
//   }
// }
