cleanReport.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /* pages/my/cleanReport/cleanReport.wxss */
  2. page {
  3. width: 750rpx;
  4. min-height: 100vh;
  5. background: #F6F6F6;
  6. }
  7. .itemBox {
  8. margin: 25rpx auto;
  9. width: 702rpx;
  10. background: #FFFFFF;
  11. border-radius: 12rpx;
  12. padding: 24rpx;
  13. position: relative;
  14. padding-top: 95rpx;
  15. }
  16. .itemBox .tips {
  17. width: 178rpx;
  18. height: 46rpx;
  19. border-radius: 0px 23rpx 23rpx 0px;
  20. position: absolute;
  21. left: 0rpx;
  22. top: 25rpx;
  23. text-align: center;
  24. font-size: 26rpx;
  25. color: #FFFFFF;
  26. line-height: 46rpx;
  27. }
  28. .itemBox .tips.orage {
  29. background: #FF663D;
  30. }
  31. .itemBox .item {
  32. padding-bottom: 30rpx;
  33. }
  34. .itemBox .item .topBox .icon {
  35. width: 70rpx;
  36. height: 70rpx;
  37. margin-right: 35rpx;
  38. }
  39. .item .topBox .message .tit {
  40. font-size: 30rpx;
  41. font-weight: 500;
  42. color: #191C27;
  43. }
  44. .item .topBox .message .col {
  45. font-size: 26rpx;
  46. color: #999999;
  47. }
  48. .item .scroll {
  49. white-space: nowrap;
  50. width: 650rpx;
  51. height: 130rpx;
  52. margin-top: 35rpx;
  53. }
  54. .item .scroll scroll-view {
  55. width: 100%;
  56. height: 100%;
  57. }
  58. .item .scroll .icon {
  59. width: 120rpx;
  60. height: 120rpx;
  61. margin-right: 25rpx;
  62. }
  63. .item .reason .tit {
  64. font-size: 30rpx;
  65. font-weight: 500;
  66. color: #191C27;
  67. margin-bottom: 25rpx;
  68. }
  69. .item .reason .cont {
  70. font-size: 26rpx;
  71. color: #666666;
  72. }