detail.module.less 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. .detail {
  2. // height: 100vh;
  3. // overflow: hidden;
  4. .iconEdit {
  5. font-size: 24px;
  6. }
  7. }
  8. .cellGroup {
  9. margin-top: 12px;
  10. .cellTitle {
  11. padding: 15px 12px;
  12. .tag {
  13. font-size: 12px;
  14. background-color: #F2FFFC;
  15. padding: 3px 6px 2px;
  16. border-radius: 3px;
  17. margin-right: 6px;
  18. flex-shrink: 0;
  19. }
  20. .title {
  21. font-size: 16px;
  22. font-weight: 600;
  23. color: #333333;
  24. line-height: 22px;
  25. max-width: 240px;
  26. }
  27. }
  28. .cellTimerSkeleton {
  29. display: flex;
  30. justify-content: flex-end;
  31. }
  32. .cellTimer {
  33. :global {
  34. .van-cell__title {
  35. flex: 0 auto;
  36. }
  37. .van-cell__title,
  38. .van-cell__value {
  39. color: var(--k-gray-3);
  40. font-size: 14px;
  41. }
  42. }
  43. .ing {
  44. color: var(--k-font-primary);
  45. }
  46. }
  47. }
  48. .pTitle {
  49. font-size: 14px;
  50. color: var(--k-gray-2);
  51. line-height: 20px;
  52. margin: 20px 15px 12px;
  53. }
  54. .pCellGroup {
  55. .imgType {
  56. width: 46px;
  57. height: 20px;
  58. margin-right: 5px;
  59. flex-shrink: 0;
  60. }
  61. .title {
  62. font-size: 16px;
  63. font-weight: 600;
  64. color: var(--k-gray-1);
  65. line-height: 22px;
  66. }
  67. .time {
  68. font-size: 14px;
  69. color: var(--k-gray-3);
  70. }
  71. .moreCell {
  72. padding-top: 15px;
  73. padding-bottom: 20px;
  74. }
  75. .valueClass {
  76. .item {
  77. margin-bottom: 15px;
  78. }
  79. text-align: left;
  80. font-size: 15px;
  81. color: var(--k-gray-1);
  82. .label {
  83. color: var(--k-gray-3);
  84. }
  85. .content {
  86. font-weight: 500;
  87. span {
  88. font-size: 14px;
  89. color: var(--k-font-primary);
  90. margin-left: 10px;
  91. }
  92. }
  93. }
  94. .photoList {
  95. display: flex;
  96. margin-top: 15px;
  97. }
  98. .photo {
  99. position: relative;
  100. width: 76px;
  101. height: 76px;
  102. &+.photo {
  103. margin-left: 7px;
  104. }
  105. :global {
  106. .van-image {
  107. width: inherit;
  108. height: inherit;
  109. border-radius: 2px;
  110. overflow: hidden;
  111. }
  112. }
  113. .photoMore {
  114. position: absolute;
  115. top: 0;
  116. left: 0;
  117. bottom: 0;
  118. right: 0;
  119. background: rgba(0, 0, 0, 0.5);
  120. font-size: 14px;
  121. color: #fff;
  122. // font-weight: bold;
  123. display: flex;
  124. align-items: center;
  125. justify-content: center;
  126. border-radius: 2px;
  127. overflow: hidden;
  128. }
  129. }
  130. }