app.wxss 2.0 KB

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