app.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /**app.wxss**/
  2. page {
  3. /* background: #F9F9F9; */
  4. background: #F7F8FA;
  5. /* background: linear-gradient(180deg, #FA7D22 0%, rgba(255, 202, 224, 0) 100%);
  6. background-repeat: no-repeat; */
  7. }
  8. .container {
  9. height: 100%;
  10. display: flex;
  11. flex-direction: column;
  12. align-items: center;
  13. justify-content: space-between;
  14. padding: 200rpx 0;
  15. box-sizing: border-box;
  16. }
  17. .flex {
  18. display: flex;
  19. }
  20. .flex-start {
  21. align-items: flex-start;
  22. justify-content: flex-start;
  23. }
  24. .flex-align-center {
  25. display: flex;
  26. align-items: center;
  27. }
  28. .flex-align-baseline {
  29. display: flex;
  30. align-items: baseline;
  31. }
  32. .flex-justify-center {
  33. display: flex;
  34. justify-content: center;
  35. }
  36. .flex-justify-space-around {
  37. display: flex;
  38. justify-content: space-around;
  39. }
  40. .flex-justify-space-between {
  41. display: flex;
  42. justify-content: space-between;
  43. }
  44. .flex-center {
  45. display: flex;
  46. align-items: center;
  47. justify-content: center;
  48. }
  49. .flex-column {
  50. display: flex;
  51. flex-direction: column;
  52. /* align-items: flex-start;
  53. justify-content: flex-start; */
  54. }
  55. .flex1 {
  56. flex: 1;
  57. }
  58. .radius {
  59. border-radius: 8rpx;
  60. box-sizing: border-box;
  61. overflow: hidden;
  62. }
  63. .popup-radius .wux-popup__content {
  64. border-top-left-radius: 40rpx;
  65. border-top-right-radius: 40rpx;
  66. }
  67. .ellipsis {
  68. white-space: nowrap;
  69. overflow: hidden;
  70. text-overflow: ellipsis;
  71. }
  72. .ellipsis2 {
  73. /* overflow: hidden;
  74. text-overflow: ellipsis;
  75. display: -webkit-box;
  76. -webkit-line-clamp: 2;
  77. -webkit-box-orient: vertical; */
  78. text-overflow: ellipsis;
  79. display: -webkit-box;
  80. -webkit-line-clamp: 2;
  81. -webkit-box-orient: vertical;
  82. display: -moz-box;
  83. -moz-line-clamp: 2;
  84. -moz-box-orient: vertical;
  85. word-wrap: break-word;
  86. word-break: break-all;
  87. white-space: normal !important;
  88. overflow: hidden;
  89. }
  90. .ellipsis3 {
  91. overflow: hidden;
  92. text-overflow: ellipsis;
  93. display: -webkit-box;
  94. -webkit-line-clamp: 3;
  95. -webkit-box-orient: vertical;
  96. }
  97. text {
  98. font-size: 32rpx;
  99. color: #333333;
  100. /* color: #FFFFFF; */
  101. font-family: PingFangSC-Regular;
  102. }
  103. .btm-text {
  104. font-size: 28rpx;
  105. color: #999999;
  106. text-align: center;
  107. margin: 42rpx 0;
  108. }
  109. .no-data {
  110. text-align: center;
  111. margin-top: 400rpx;
  112. color: #666;
  113. }
  114. .no-more-data {
  115. text-align: center;
  116. margin-top: 28rpx;
  117. color: #666;
  118. }
  119. rich-text .richImg {
  120. max-width: 100%;
  121. max-height: 100%;
  122. vertical-align: middle;
  123. height: auto !important;
  124. width: auto !important;
  125. }