123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- view, scroll-view, text {
- box-sizing: border-box !important;
- }
- // u-button
- page .u-button.u-button--primary {
- line-height: 94rpx;
- color: #fff;
- font-size: 34rpx;
- height: 94rpx;
- background-color: $color-main;
- border-color: $color-main;
- border: 0;
- border-radius: 16rpx;
- &::before{
- border: 0;
- }
- &::after{
- border: 0;
- }
- }
- page .u-button{
- height: 80rpx;
- }
- image{
- display: block;
- }
- .white-box{
- background-color: #fff;
- border-radius: 16rpx;
- padding: 20rpx;
- }
- // 底部安全区域
- .safe-area-inset-bottom{
- padding-bottom: constant(safe-area-inset-bottom) !important;
- padding-bottom: env(safe-area-inset-bottom) !important;
- }
- .safe-area-issue {
- margin-bottom: constant(safe-area-inset-bottom) !important;
- margin-bottom: env(safe-area-inset-bottom) !important;
- }
- // 暂无数据
- .no-data{
- text-align: center;
- font-size: 28rpx;
- color: #707476;
- height: 200rpx;
- line-height: 200rpx;
- }
|