index.scss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. justify-content: flex-end;
  17. align-items: center;
  18. .but {
  19. flex-shrink: 0;
  20. display: flex;
  21. align-items: center;
  22. justify-content: center;
  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. .exp {
  34. margin-top: 8rpx;
  35. font-size: 24rpx;
  36. font-family: PingFang SC-Regular, PingFang SC;
  37. color: #333333;
  38. }
  39. .record-box {
  40. width: 100vw;
  41. padding: 0 30rpx;
  42. box-sizing: border-box;
  43. background-color: #ffffff;
  44. .item {
  45. width: 100%;
  46. border-bottom: 1px solid #DDDDDD;
  47. padding: 20rpx 0;
  48. .head {
  49. display: flex;
  50. width: 100%;
  51. height: 80rpx;
  52. .portrait {
  53. width: 80rpx;
  54. height: 80rpx;
  55. border-radius: 50%;
  56. overflow: hidden;
  57. margin-right: 20rpx;
  58. flex-shrink: 0;
  59. .replace {
  60. text-align: center;
  61. line-height: 80rpx;
  62. background-color: #3874F6;
  63. font-size: 28rpx;
  64. font-family: PingFang SC-Regular, PingFang SC;
  65. color: #FFFFFF;
  66. }
  67. }
  68. .introduce {
  69. flex: 1;
  70. height: 80rpx;
  71. .title {
  72. display: flex;
  73. align-items: flex-end;
  74. height: 42rpx;
  75. font-size: 30rpx;
  76. font-weight: 400;
  77. color: #333333;
  78. font-family: PingFang SC-Regular, PingFang SC;
  79. .line-1 {
  80. max-width: 400rpx;
  81. }
  82. text {
  83. display: inline-block;
  84. margin-left: 20rpx;
  85. font-size: 24rpx;
  86. color: #666666;
  87. }
  88. }
  89. .time {
  90. font-size: 24rpx;
  91. color: #999999;
  92. margin-top: 6rpx;
  93. }
  94. }
  95. }
  96. .remarks {
  97. font-size: 24rpx;
  98. font-family: PingFang SC-Regular, PingFang SC;
  99. color: #666666;
  100. line-height: 28rpx;
  101. margin-top: 20rpx;
  102. word-break: break-all;
  103. }
  104. }
  105. }