| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /* pages/deviceCheck/process/checkProcessList.wxss */
- page {
- position: fixed;
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- .viewBody {
- height: 100%;
- display: flex;
- flex-direction: column;
- padding-left: 10rpx;
- padding-right: 10rpx;
- }
- .lineTitle{
- margin-top: 20rpx;
- display: flex;
- flex-direction: row;
- }
- .lineTitle .title{
- width: 30%;
- }
- .lineTitle .title text{
- font-size: 1rem;
- color: black;
- }
- .lineTitle .content{
- width: 60%;
- }
- .lineTitle .content text{
- font-size: 0.8rem;
- color: gray;
- }
- .processSuggest {
- width: 100%;
- height: 200rpx;
- border-style: solid;
- border-width: 1px;
- border-color: gray;
- }
- .processSuggest text {
- font-size: 0.9rem;
- color: black;
- padding-left: 10rpx;
- }
- .photoBox {
- width: 100%;
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- margin-top: 40rpx;
- flex-flow: wrap;
- }
- .item-img {
- width: 150rpx;
- height: 150rpx;
- margin: 5rpx 5rpx 5rpx 5rpx;
- border-radius: 5rpx;
- }
|