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.

50 lines
740 B

2 months ago
1 month ago
2 months ago
1 month ago
2 months ago
  1. page {
  2. background-color: #fff;
  3. font-size: 32rpx;
  4. color: #333;
  5. font-family: -apple-system-font, Helvetica Neue, Helvetica, sans-serif;
  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. image {
  42. display: block;
  43. width: 100%;
  44. height: 100%;
  45. }