You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
1.0 KiB

2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
  1. page {
  2. background-color: #fff;
  3. font-size: 32rpx;
  4. font-family: -apple-system-font, Helvetica Neue, Helvetica, sans-serif;
  5. color: #333;
  6. }
  7. view {
  8. box-sizing: border-box;
  9. }
  10. .oneRowText {
  11. white-space: nowrap;
  12. overflow: hidden;
  13. text-overflow: ellipsis;
  14. }
  15. .towRowText {
  16. display: -webkit-box;
  17. overflow: hidden;
  18. white-space: normal;
  19. text-overflow: ellipsis;
  20. word-wrap: break-word;
  21. -webkit-line-clamp: 2;
  22. -webkit-box-orient: vertical
  23. }
  24. .flex {
  25. display: flex;
  26. align-items: center;
  27. }
  28. .flex-b {
  29. display: flex;
  30. justify-content: space-between;
  31. align-items: center;
  32. }
  33. .flex-c {
  34. display: flex;
  35. justify-content: center;
  36. align-items: center;
  37. }
  38. .padding {
  39. padding: 0 20px;
  40. }
  41. .status_bar {
  42. height: var(--status-bar-height);
  43. width: 100%;
  44. }
  45. .h1 {
  46. font-size: 32rpx;
  47. position: relative;
  48. color: #333;
  49. padding-left: 24rpx;
  50. font-weight: 700;
  51. &::before {
  52. content: '';
  53. position: absolute;
  54. width: 5rpx;
  55. height: 31rpx;
  56. background: #DE3A26;
  57. border-radius: 3rpx;
  58. left: 0;
  59. top: 50%;
  60. transform: translateY(-50%);
  61. }
  62. }