index.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. .head {
  2. display: flex;
  3. align-items: center;
  4. width: 100vw;
  5. height: 120rpx;
  6. padding: 0 20rpx 0 30rpx;
  7. box-sizing: border-box;
  8. .count {
  9. font-size: 28rpx;
  10. font-family: PingFang SC-Regular, PingFang SC;
  11. color: #333333;
  12. }
  13. .expand {
  14. flex: 1;
  15. display: flex;
  16. align-items: center;
  17. justify-content: flex-end;
  18. .but {
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. flex-shrink: 0;
  23. width: 80rpx;
  24. height: 80rpx;
  25. background: #FFFFFF;
  26. border-radius: 8rpx;
  27. border: 2rpx solid #CCCCCC;
  28. margin-left: 20rpx;
  29. color: #666666;
  30. }
  31. }
  32. }
  33. .item {
  34. position: relative;
  35. width: 100vw;
  36. background-color: #fff;
  37. padding: 20rpx 30rpx;
  38. box-sizing: border-box;
  39. margin-bottom: 20rpx;
  40. .left {
  41. position: absolute;
  42. left: 0;
  43. top: 0;
  44. display: flex;
  45. align-items: center;
  46. justify-content: center;
  47. width: 80rpx;
  48. height: 48rpx;
  49. background: #3874F6;
  50. border-radius: 0rpx 0rpx 16rpx 0rpx;
  51. font-family: PingFang SC, PingFang SC;
  52. font-weight: 600;
  53. font-size: 28rpx;
  54. color: #FFFFFF;
  55. }
  56. .status {
  57. position: absolute;
  58. top: 10rpx;
  59. right: 30rpx;
  60. font-family: PingFang SC, PingFang SC;
  61. font-size: 24rpx;
  62. }
  63. .date {
  64. margin-left: 70rpx;
  65. line-height: 34rpx;
  66. font-family: PingFang SC, PingFang SC;
  67. font-size: 24rpx;
  68. color: #3874F6;
  69. margin-top: -10rpx;
  70. }
  71. .title {
  72. line-height: 40rpx;
  73. font-family: PingFang SC, PingFang SC;
  74. font-weight: bold;
  75. font-size: 28rpx;
  76. color: #333333;
  77. margin-top: 18rpx;
  78. }
  79. .value {
  80. line-height: 34rpx;
  81. font-family: PingFang SC, PingFang SC;
  82. font-size: 24rpx;
  83. color: #333333;
  84. margin-top: 8rpx;
  85. }
  86. .bottom {
  87. width: 100%;
  88. border-top: 1px solid #DDDDDD;
  89. margin-top: 20rpx;
  90. padding-top: 20rpx;
  91. box-sizing: border-box;
  92. line-height: 40rpx;
  93. font-family: PingFang SC, PingFang SC;
  94. font-size: 28rpx;
  95. .first-line {
  96. display: flex;
  97. .label {
  98. display: flex;
  99. align-items: center;
  100. color: #333333;
  101. .iconfont {
  102. color: #3874F6;
  103. margin-left: 10rpx;
  104. }
  105. }
  106. .confime {
  107. color: #EA820A;
  108. margin-right: 40rpx;
  109. text {
  110. margin-right: 10rpx;
  111. }
  112. }
  113. .add {
  114. color: #3874F6;
  115. }
  116. }
  117. .rows {
  118. position: relative;
  119. width: 100%;
  120. background: #F8F9FD;
  121. border-radius: 8rpx;
  122. margin-top: 20rpx;
  123. padding: 20rpx;
  124. box-sizing: border-box;
  125. .right {
  126. display: flex;
  127. justify-content: center;
  128. align-items: center;
  129. position: absolute;
  130. top: 0;
  131. right: 0;
  132. width: 128rpx;
  133. height: 48rpx;
  134. background: #ECF0F8;
  135. border-radius: 0rpx 8rpx 0rpx 8rpx;
  136. navigator {
  137. font-size: 24rpx;
  138. color: #999;
  139. padding: 0 10rpx;
  140. }
  141. }
  142. .changedate {
  143. line-height: 34rpx;
  144. font-family: PingFang SC, PingFang SC;
  145. font-size: 24rpx;
  146. color: #3874F6;
  147. }
  148. .record {
  149. line-height: 34rpx;
  150. font-family: PingFang SC, PingFang SC;
  151. font-size: 24rpx;
  152. color: #333333;
  153. margin-top: 8rpx;
  154. }
  155. }
  156. }
  157. }
  158. .textarea {
  159. width: 90%;
  160. height: 200rpx;
  161. box-sizing: border-box;
  162. padding: 20rpx 30rpx;
  163. background-color: #FDF9FC;
  164. margin: 20rpx auto;
  165. border: 1rpx solid #EEECEF;
  166. border-radius: 8rpx;
  167. }