123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- .col-start {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- }
-
- .col-center {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
-
- .row-start {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: flex-start;
- }
-
- .row-center {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- }
-
- .row-between {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- }
-
-
- .bottom-bg {
- position: absolute;
- left: 46rpx;
- right: 46rpx;
- bottom: 100rpx;
- color: #fff;
- height: 96rpx;
- border-radius: 16rpx;
- background: rgb(72, 207, 60);
- display: flex;
- align-items: center;
- justify-content: center;
- }
-
- .t-tab-bar {
- display: flex;
- flex-wrap: nowrap;
- align-items: center;
- position: fixed;
- left: 0;
- bottom: 0;
- right: 0;
- z-index: 99;
- display: flex;
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- background-color: #fff;
- }
-
- .t-tab-bar--padding {
- padding: 16rpx 40rpx 24rpx 40rpx;
- width: 100%;
- }
|