checkProcessInfo.wxss 978 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /* pages/deviceCheck/process/checkProcessList.wxss */
  2. page {
  3. position: fixed;
  4. width: 100%;
  5. height: 100%;
  6. overflow: hidden;
  7. }
  8. .viewBody {
  9. height: 100%;
  10. display: flex;
  11. flex-direction: column;
  12. padding-left: 10rpx;
  13. padding-right: 10rpx;
  14. }
  15. .lineTitle{
  16. margin-top: 20rpx;
  17. display: flex;
  18. flex-direction: row;
  19. }
  20. .lineTitle .title{
  21. width: 30%;
  22. }
  23. .lineTitle .title text{
  24. font-size: 1rem;
  25. color: black;
  26. }
  27. .lineTitle .content{
  28. width: 60%;
  29. }
  30. .lineTitle .content text{
  31. font-size: 0.8rem;
  32. color: gray;
  33. }
  34. .processSuggest {
  35. width: 100%;
  36. height: 200rpx;
  37. border-style: solid;
  38. border-width: 1px;
  39. border-color: gray;
  40. }
  41. .processSuggest text {
  42. font-size: 0.9rem;
  43. color: black;
  44. padding-left: 10rpx;
  45. }
  46. .photoBox {
  47. width: 100%;
  48. display: flex;
  49. flex-direction: row;
  50. justify-content: flex-start;
  51. margin-top: 40rpx;
  52. flex-flow: wrap;
  53. }
  54. .item-img {
  55. width: 150rpx;
  56. height: 150rpx;
  57. margin: 5rpx 5rpx 5rpx 5rpx;
  58. border-radius: 5rpx;
  59. }