1234567891011121314151617181920212223242526272829303132333435 |
- .page{
- padding-bottom: 160rpx;
- }
- .con{
- padding: 32rpx;
- }
- .btnBox{
- height: 160rpx;
- background: #FFFFFF;
- box-shadow: 0rpx 0rpx 8rpx 0rpx rgba(0,0,0,0.16);
-
- position: fixed;
- bottom: 0;
- width: calc(100% - 64rpx);
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 32rpx;
- .rBtn{
- width: 100%;
- height: 96rpx;
- background: #333333;
- border-radius: 4rpx;
- border: 2rpx solid #333333;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 32rpx;
- font-family: PingFang-SC-Medium, PingFang-SC;
- font-weight: 500;
- color: #FFFFFF;
- }
- }
|