app.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /**app.wxss**/
  2. @import "utils/iconfont.wxss";
  3. view {
  4. box-sizing: border-box;
  5. transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  6. }
  7. page {font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica,
  8. Segoe UI, Arial, Roboto, 'PingFang SC', 'miui', 'Hiragino Sans GB', 'Microsoft Yahei',
  9. sans-serif;
  10. }
  11. .centerdispley {
  12. display: flex;
  13. flex-direction: column;
  14. justify-content: center;
  15. align-items: center;
  16. }
  17. .itemdisplay {
  18. display: flex;
  19. align-items: center;
  20. }
  21. .display-between {
  22. display: flex;
  23. justify-content: space-between;
  24. align-items: center;
  25. }
  26. .flex {
  27. display: flex;
  28. align-items: center;
  29. }
  30. .al-e {
  31. align-items: flex-end;
  32. }
  33. .al-s {
  34. align-items: flex-start;
  35. }
  36. .ju-c {
  37. justify-content: center;
  38. }
  39. .ju-a {
  40. justify-content: space-around;
  41. }
  42. .ju-b {
  43. justify-content: space-between;
  44. }
  45. .ju-e {
  46. justify-content: flex-end;
  47. }
  48. .m-top-10 {
  49. margin-top: 10rpx;
  50. }
  51. .m-top-15 {
  52. margin-top: 15rpx;
  53. }
  54. .m-top-20 {
  55. margin-top: 20rpx;
  56. }
  57. .m-top-25 {
  58. margin-top: 25rpx;
  59. }
  60. .m-top-30 {
  61. margin-top: 30rpx;
  62. }
  63. .m-top-40 {
  64. margin-top: 40rpx;
  65. }
  66. .m-top-50 {
  67. margin-top: 50rpx;
  68. }
  69. .m-left-10 {
  70. margin-left: 10rpx;
  71. }
  72. .m-left-15 {
  73. margin-left: 15rpx;
  74. }
  75. .m-left-25 {
  76. margin-left: 25rpx;
  77. }
  78. .m-bottom-15 {
  79. margin-bottom: 15rpx;
  80. }
  81. .m-bottom-20 {
  82. margin-bottom: 20rpx;
  83. }
  84. .m-bottom-25 {
  85. margin-bottom: 25rpx;
  86. }
  87. .m-bottom-30 {
  88. margin-bottom: 30rpx;
  89. }
  90. .m-bottom-50 {
  91. margin-bottom: 50rpx;
  92. }
  93. .m-right-10 {
  94. margin-right: 10rpx;
  95. }
  96. .m-right-15 {
  97. margin-right: 15rpx;
  98. }
  99. .m-right-25 {
  100. margin-right: 25rpx;
  101. }
  102. .m-right-20 {
  103. margin-right: 20rpx;
  104. }
  105. .m-right-30 {
  106. margin-right: 30rpx;
  107. }
  108. .img-bgs {
  109. left: 0;
  110. top: 0;
  111. position: absolute;
  112. z-index: -1;
  113. width: 100%;
  114. height: 100%;
  115. }
  116. .b-bottom {
  117. border-bottom: 1rpx solid #EDEDED;
  118. transform: border scaleY(0.5);
  119. }
  120. .t-text-ellipsis2 {
  121. text-overflow: -o-ellipsis-lastline;
  122. overflow: hidden;
  123. text-overflow: ellipsis;
  124. display: -webkit-box;
  125. -webkit-line-clamp: 2;
  126. line-clamp: 2;
  127. -webkit-box-orient: vertical;
  128. }
  129. /*隐藏滚动条*/
  130. ::-webkit-scrollbar {
  131. width: 0;
  132. height: 0;
  133. color: transparent;
  134. }
  135. .btn-sky {
  136. background: linear-gradient(270deg, #467FFF 0%, #4699FF 100%);
  137. text-align: center;
  138. color: #FFFFFF;
  139. }
  140. .btn-border {
  141. text-align: center;
  142. color: #191C27;
  143. border: 1rpx solid #CCCCCC;
  144. }