| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /* pages/deviceCheck/deviceCheck.wxss */
- .viewBox {
- position: fixed;
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- .list-box{
- height: 100%;
- width: 100%;
- }
- .sv{
- width: 100%;
- height: 100%;
- flex: 1;
- display: flex;
- flex-direction: column;
- }
- .weui-cells{
- width: 95%;
- height: 180rpx;
- position: relative;
- background: white;
- border-radius: 4px;
- margin-bottom: 5px;
- left: 8px;
- display: flex;
- align-items: center;
- margin-top: 8px;
- }
- .time-select{
- margin-left:10rpx;
- display: flex;
- flex-direction: column;
- justify-content: start;
- align-items: left;
- }
- .button-check{
- display: flex;
- align-items: center;
- margin-left: 5px;
- margin-right: 5px;
- }
- .button{
- display: flex;
- flex-direction: row;
- padding-left: 15px;
- position: absolute;
- right: 0;
- margin-right: 10px;
- }
- .check-btn{
- height: 22px;
- width: 60px;
- background-color: #669999;
- }
- .processStatusNameNormal{
- color:#FD7400;
- font-size:0.7rem;
- }
- .processStatusNameComplete{
- color:rgb(47, 113, 255);
- font-size:0.7rem;
- }
|