| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .button-check {
- width: 100%;
- height: 124rpx;
- background: #fff;
- display: flex;
- align-items: center;
- justify-content: center;
- position: fixed;
- bottom: 0;
- left: 0;
- }
- .button-check-content {
- width: 690rpx;
- height: 88rpx;
- color: #fff;
- font-size: 34rpx;
- border-radius: 10rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- position: relative;
- }
- .button-check-left {
- height: 88rpx;
- width: 220rpx;
- line-height: 88rpx;
- text-align: center;
- border-radius: 10rpx;
- box-sizing: border-box;
- }
- .button-check-right {
- flex: 1;
- height: 88rpx;
- text-align: center;
- line-height: 88rpx;
- border-radius: 10rpx;
- margin-left: 20rpx;
- }
|