index.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. display: flex !important;
  28. justify-content: space-between !important;
  29. height: 48rpx !important;
  30. }
  31. .mr-5 {
  32. margin-right: 5px;
  33. }
  34. .mt-5 {
  35. margin-bottom: 5px;
  36. }
  37. .textIndentNodeChild {
  38. padding-left: 10px;
  39. }
  40. .smallChild {
  41. font-size: 24rpx;
  42. color: #666
  43. }
  44. .footer {
  45. display: flex;
  46. justify-content: space-between;
  47. padding: 0 30rpx;
  48. position: fixed;
  49. width: 100vw;
  50. height: 130rpx;
  51. background: #FFFFFF;
  52. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  53. bottom: 0;
  54. box-sizing: border-box;
  55. z-index: 9999;
  56. padding-top: 10rpx;
  57. .but-box {
  58. .but {
  59. min-width: 180rpx;
  60. height: 90rpx;
  61. background: #3874F6;
  62. border-radius: 8rpx;
  63. font-size: 28rpx;
  64. font-family: PingFang SC-Bold, PingFang SC;
  65. font-weight: bold;
  66. color: #FFFFFF;
  67. }
  68. .delete {
  69. background: var(--warning);
  70. }
  71. .abandon {
  72. background: var(--error);
  73. }
  74. }
  75. }