index.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. page {
  2. background-color: #f1f2f3;
  3. }
  4. .type {
  5. padding: 5px;
  6. font-size: 22rpx;
  7. color: #fff;
  8. letter-spacing: 3px;
  9. writing-mode: vertical-lr;
  10. background: #4F7BFD;
  11. border-radius: 3px;
  12. margin-right: 5px;
  13. }
  14. .flex-column-between {
  15. height: 100%;
  16. display: flex;
  17. flex-direction: column;
  18. justify-content: space-between;
  19. }
  20. .small {
  21. font-size: 26rpx;
  22. color: #333;
  23. line-height: 25px;
  24. }
  25. .tags {
  26. width: 100%;
  27. }
  28. .mr-5 {
  29. margin-right: 5px;
  30. }
  31. .mt-5 {
  32. margin-bottom: 5px;
  33. }
  34. .textIndentNodeChild {
  35. padding-left: 10px;
  36. }
  37. .smallChild {
  38. font-size: 24rpx;
  39. color: #666
  40. }
  41. .footer {
  42. display: flex;
  43. justify-content: space-between;
  44. padding: 0 30rpx;
  45. position: fixed;
  46. width: 100vw;
  47. height: 130rpx;
  48. background: #FFFFFF;
  49. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  50. bottom: 0;
  51. box-sizing: border-box;
  52. z-index: 9999;
  53. padding-top: 10rpx;
  54. .but-box {
  55. .but {
  56. min-width: 180rpx;
  57. height: 90rpx;
  58. background: #3874F6;
  59. border-radius: 8rpx;
  60. font-size: 28rpx;
  61. font-family: PingFang SC-Bold, PingFang SC;
  62. font-weight: bold;
  63. color: #FFFFFF;
  64. }
  65. .delete {
  66. background: var(--warning);
  67. }
  68. .abandon {
  69. background: var(--error);
  70. }
  71. }
  72. }