123456789101112131415161718192021222324252627282930313233 |
- page {
- height: 100%;
- width: 100%;
- background: #f4f4f4;
- }
- .container {
- background: #f4f4f4;
- height: 100%;
- overflow: hidden;
- width: 100%;
- padding:20rpx 24rpx;
- }
- .bottom{
- position: absolute;
- bottom: 30rpx;
- width: 100%;
- display: flex;
- }
- .btn{
- background: #fff;
- height: 66rpx;
- line-height: 66rpx;
- font-size: 30rpx;
- font-weight: 500;
- text-align: center;
- color: #09AFFF;
- margin:auto;
- border: 1rpx solid #09AFFF;
- border-radius: 30rpx;
- /* width: 200rpx; */
- padding:0 20rpx;
- }
|