| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- .bottom-section {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- background-color: #FFFFFF;
- box-shadow: inset 0rpx 2rpx 0rpx 0rpx #F0F0F0;
- padding: 20rpx 32rpx 58rpx 32rpx;
- display: flex;
- align-items: center;
- box-sizing: border-box;
- justify-content: space-around;
- .orders {
- display: flex;
- align-items: center;
- margin-right: 40rpx;
- padding: 8rpx 0 16rpx;
- &.active {
- text {
- color: #131415;
- }
- }
- image {
- width: 44rpx;
- height: 44rpx;
- }
- text {
- padding-left: 16rpx;
- font-weight: 500;
- font-size: 28rpx;
- color: #AAAAAA;
- line-height: 44rpx;
- text-align: center;
- }
- }
- .btnSection {
- flex: 1 auto;
- button {
- width: 100%;
- line-height: 88rpx;
- background: linear-gradient(270deg, #FF204B 0%, #FE5B71 100%);
- border-radius: 44rpx;
- font-weight: 500;
- font-size: 32rpx;
- color: #FFFFFF;
- padding-top: 0;
- padding-bottom: 0;
- &[disabled][type=primary] {
- opacity: 0.7;
- }
- }
- }
- }
|