| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /* pages/malfunction/index.wxss */
- .setup{
- width: 100%;
- height: 100vh;
- background: linear-gradient(to bottom, #0F80DC -40%, #F0F5F5 40%,#F0F5F5 100%);
- padding: 20rpx 20rpx;
- box-sizing: border-box;
-
- }
- .setup_list{
- width: 100%;
- background-color: #ffffff;
- border-radius: 10rpx;
- }
- .allocation{
- width: 100%;
- height: 80rpx;
- display: flex;
- align-items: center;
- justify-content:space-between;
- padding: 0rpx 20rpx;
- overflow: hidden;
- 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;
- }
- .content-container{
- margin-top: 40rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
|