global.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. :root {
  2. --default-matchLogo-url: ;
  3. --default-matchBanner-url: ;
  4. }
  5. uni-page {
  6. background-color: #FFF;
  7. overflow: scroll;
  8. }
  9. .body {
  10. display: flex;
  11. flex-direction: column;
  12. align-items: center;
  13. justify-content: center;
  14. }
  15. .body-radius {
  16. border-radius: 50rpx;
  17. overflow: hidden;
  18. /* 确保边框圆角不会溢出 */
  19. }
  20. .content {
  21. width: 100vw;
  22. }
  23. .top {
  24. width: 100%;
  25. justify-content: space-between;
  26. }
  27. .main {
  28. width: 100%;
  29. flex-grow: 1;
  30. }
  31. .uni-width-100 {
  32. width: 100%;
  33. }
  34. .uni-row {
  35. display: flex;
  36. flex-direction: row;
  37. align-items: center;
  38. }
  39. .uni-column {
  40. display: flex;
  41. flex-direction: column;
  42. align-items: center;
  43. }
  44. .uni-jct {
  45. justify-content: flex-start;
  46. }
  47. .uni-jcc {
  48. justify-content: center;
  49. }
  50. .uni-jce {
  51. justify-content: flex-end;
  52. }
  53. .uni-jcsa {
  54. justify-content: space-around;
  55. }
  56. .uni-jcsb {
  57. justify-content: space-between;
  58. }
  59. .uni-jcse {
  60. justify-content: space-evenly;
  61. }
  62. .uni-ais {
  63. align-items: flex-start;
  64. }
  65. .uni-aie {
  66. align-items: flex-end;
  67. }
  68. .uni-aibl {
  69. align-items: baseline;
  70. }
  71. .uni-hidden {
  72. visibility: hidden;
  73. }
  74. .uni-nowrap {
  75. white-space: nowrap;
  76. }
  77. .uni-ovf-hidden {
  78. overflow: hidden;
  79. }
  80. .uni-ovf-ellipsis {
  81. text-overflow: ellipsis;
  82. }
  83. /deep/ .uni-easyinput__placeholder-class {
  84. font-size: 14px !important;
  85. color: #999;
  86. }
  87. /deep/ .e-select-input-placeholder {
  88. font-size: 14px !important;
  89. color: #999;
  90. }
  91. /deep/ .uni-date__x-input {
  92. font-size: 14px !important;
  93. color: #999;
  94. }
  95. /deep/ .file-title {
  96. font-size: 14px !important;
  97. color: #999 !important;
  98. }