index.scss 550 B

12345678910111213141516171819202122232425262728293031323334353637
  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. .mr-5{
  26. margin-right: 5px;
  27. }
  28. .mt-5{
  29. margin-bottom: 5px;
  30. }
  31. .textIndentNodeChild{
  32. padding-left: 10px;
  33. }
  34. .smallChild{
  35. font-size: 24rpx;
  36. color:#666
  37. }