| 12345678910111213141516171819202122232425262728293031323334 |
- /* 底部固定按钮 */
- .button-fixed {
- width: 100%;
- height: 124rpx;
- background: #fff;
- display: flex;
- align-items: center;
- justify-content: center;
- position: fixed;
- bottom: 0;
- left: 0;
- }
- .button-fixed-content {
- width: 690rpx;
- height: 88rpx;
- color: #fff;
- font-size: 34rpx;
- border-radius: 10rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- position: relative;
- }
- .button-fixed-content-button {
- height: 100%;
- width: 100%;
- position: absolute;
- left: 0;
- top: 0;
- opacity: 0;
- }
|