index.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. .float-but {
  2. display: flex;
  3. align-items: center;
  4. justify-content: center;
  5. width: 120rpx;
  6. height: 120rpx;
  7. background-color: var(--assist);
  8. border-radius: 50%;
  9. color: #ffffff;
  10. transform: translate(-50%, -50%);
  11. }
  12. .history {
  13. background-color: #F4F5F7;
  14. .item {
  15. width: 100vw;
  16. padding: 20rpx 30rpx;
  17. box-sizing: border-box;
  18. background-color: #ffffff;
  19. margin: 10rpx 0;
  20. .time {
  21. height: 40rpx;
  22. line-height: 40rpx;
  23. font-size: 28rpx;
  24. color: #333333;
  25. }
  26. .location {
  27. margin-top: 10rpx;
  28. .iconfont {
  29. margin-right: 4rpx;
  30. }
  31. line-height: 34rpx;
  32. font-size: 24rpx;
  33. color: #666666;
  34. }
  35. .exp {
  36. line-height: 34rpx;
  37. font-size: 24rpx;
  38. color: #999999;
  39. margin-top: 10rpx;
  40. }
  41. .user {
  42. height: 64rpx;
  43. margin-top: 12rpx;
  44. display: flex;
  45. .portrait {
  46. width: 64rpx;
  47. height: 64rpx;
  48. font-size: 0;
  49. border-radius: 50rpx;
  50. margin-right: 10rpx;
  51. overflow: hidden;
  52. image {
  53. width: 100%;
  54. height: 100%;
  55. }
  56. .text {
  57. width: 100%;
  58. height: 100%;
  59. line-height: 64rpx;
  60. text-align: center;
  61. background: #F0F3FF;
  62. font-size: 24rpx;
  63. font-family: PingFang SC-Regular, PingFang SC;
  64. color: #3874F6;
  65. }
  66. }
  67. .main {
  68. flex: 1;
  69. .name {
  70. height: 34rpx;
  71. line-height: 34rpx;
  72. font-size: 24rpx;
  73. color: #333333;
  74. }
  75. .text {
  76. height: 28rpx;
  77. line-height: 28rpx;
  78. font-size: 20rpx;
  79. color: #999999;
  80. margin-top: 2rpx;
  81. }
  82. }
  83. }
  84. }
  85. }
  86. .attachment {
  87. .label {
  88. display: flex;
  89. justify-content: space-between;
  90. line-height: 34rpx;
  91. font-size: 24rpx;
  92. font-family: PingFang SC-Regular, PingFang SC;
  93. color: #333333;
  94. margin-top: 20rpx;
  95. navigator {
  96. color: #3874F6;
  97. padding-left: 20rpx;
  98. }
  99. }
  100. }