| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /* pages/workorderstep/index.wxss */
- page{
- width: 100%;
- /* height: 100%; */
- background-color: #f9f9f9;
- }
- .block{
- margin-top: 30rpx;
- }
- .Scancode{
- display: flex;
- padding: 30rpx;
- margin-top: 40rpx;
- }
- .Scancode_left{
- margin-left: 10rpx;
-
- }
- .Scancode_lefticon{
- width: 100rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- border: 1rpx solid #cccccc;
- }
- .Scancode_right{
- display: flex;
- align-items: center;
- }
- .Scan_problem{
- padding:20rpx 30rpx 20rpx 30rpx;
- margin-top: 40rpx;
- background-color: #ffffff;
- }
- .Scan_problemname{
- font-size: 32rpx;
- color: #999999;
- }
- .Scan_handle{
- display: flex;
- font-size: 28rpx;
- margin-top: 30rpx;
- color: #999999;
- }
- .Scan_image{
- width: 100rpx;
- height: 100rpx;
- margin-right: 20rpx;
- }
- .Scan_feedback{
- display: flex;
- font-size: 28rpx;
- margin-top: 40rpx;
- color: #222222;
- }
- .Scan_feedback1{
- display: flex;
- font-size: 28rpx;
- margin-top: 20rpx;
- color: #222222;
- }
- .Scan_width{
- width: 200rpx;
- min-width: 200rpx;
- display: flex;
- }
- .Scancode_textarea{
- width: 100%;
- height: 100rpx;
-
- }
- .external-class{
- width: 100%;
- height: 100rpx;
-
- }
- .onstep{
- position: fixed;
- left: 0rpx;
- bottom: 60rpx;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .onstepbutton{
- width: 400rpx;
- height: 80rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 100rpx;
- color: #ffffff;
- background-color: #0F80DC;
- }
|