global.css 970 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. :root {
  2. --default-matchLogo-url: ;
  3. --default-matchBanner-url: ;
  4. }
  5. .body {
  6. display: flex;
  7. flex-direction: column;
  8. align-items: center;
  9. justify-content: center;
  10. }
  11. .body-radius {
  12. border-radius: 50rpx;
  13. overflow: hidden;
  14. /* 确保边框圆角不会溢出 */
  15. }
  16. .uni-row {
  17. display: flex;
  18. flex-direction: row;
  19. align-items: center;
  20. }
  21. .uni-column {
  22. display: flex;
  23. flex-direction: column;
  24. align-items: center;
  25. }
  26. .uni-jct {
  27. justify-content: flex-start;
  28. }
  29. .uni-jcc {
  30. justify-content: center;
  31. }
  32. .uni-jce {
  33. justify-content: flex-end;
  34. }
  35. .uni-jcsa {
  36. justify-content: space-around;
  37. }
  38. .uni-jcsb {
  39. justify-content: space-between;
  40. }
  41. .uni-jcse {
  42. justify-content: space-evenly;
  43. }
  44. .uni-ais {
  45. align-items: flex-start;
  46. }
  47. .uni-aie {
  48. align-items: flex-end;
  49. }
  50. .uni-aibl {
  51. align-items: baseline;
  52. }
  53. .uni-hidden {
  54. visibility: hidden;
  55. }
  56. .uni-nowrap {
  57. white-space: nowrap;
  58. }
  59. .uni-ovf-hidden {
  60. overflow: hidden;
  61. }
  62. .uni-ovf-ellipsis {
  63. text-overflow: ellipsis;
  64. }