| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /* pages/setuplevel/index.wxss */
- page{
- background: linear-gradient(to bottom, #0F80DC -40%, #F0F5F5 40%,#F0F5F5 100%);
- }
- .buttom_{
- width: 100%;
- position: fixed;
- bottom: 88rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .buttom{
- width: 80%;
- height: 80rpx;
- color: #0F80DC;
- border: 1rpx solid #0F80DC;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 20rpx;
- }
- .box{
- width: 100%;
- padding: 0rpx 30rpx;
- box-sizing: border-box;
- }
- .allocation{
- width: 100%;
- height: 80rpx;
- display: flex;
- align-items: center;
- justify-content:space-between;
- padding: 0rpx 20rpx;
- box-sizing: border-box;
- }
- .allocation_1{
- display: flex;
- font-size:13px;
- align-items: center;
- }
- .allocation_box{
- border-radius: 16rpx;
- background-color: #ffffff;
- padding: 10rpx 0rpx;
- box-sizing: border-box;
- margin-top: 30rpx;
- box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
- }
- .allocation_2{
- color: #999999;
-
- }
- .allocation_3{
- font-size: 14px;
- }
|