app.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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. .flex {
  12. display: flex;
  13. align-items: center;
  14. }
  15. .al-e {
  16. align-items: flex-end;
  17. }
  18. .al-s {
  19. align-items: flex-start;
  20. }
  21. .ju-c {
  22. justify-content: center;
  23. }
  24. .ju-a {
  25. justify-content: space-around;
  26. }
  27. .ju-b {
  28. justify-content: space-between;
  29. }
  30. .ju-e {
  31. justify-content: flex-end;
  32. }
  33. .m-top-10 {
  34. margin-top: 10rpx;
  35. }
  36. .m-top-15 {
  37. margin-top: 15rpx;
  38. }
  39. .m-top-20 {
  40. margin-top: 20rpx;
  41. }
  42. .m-top-25 {
  43. margin-top: 25rpx;
  44. }
  45. .m-top-30 {
  46. margin-top: 30rpx;
  47. }
  48. .m-top-40 {
  49. margin-top: 40rpx;
  50. }
  51. .m-top-50 {
  52. margin-top: 50rpx;
  53. }
  54. .m-left-10 {
  55. margin-left: 10rpx;
  56. }
  57. .m-left-15 {
  58. margin-left: 15rpx;
  59. }
  60. .m-left-25 {
  61. margin-left: 25rpx;
  62. }
  63. .m-bottom-15 {
  64. margin-bottom: 15rpx;
  65. }
  66. .m-bottom-20 {
  67. margin-bottom: 20rpx;
  68. }
  69. .m-bottom-25 {
  70. margin-bottom: 25rpx;
  71. }
  72. .m-bottom-30 {
  73. margin-bottom: 30rpx;
  74. }
  75. .m-bottom-50 {
  76. margin-bottom: 50rpx;
  77. }
  78. .m-right-10 {
  79. margin-right: 10rpx;
  80. }
  81. .m-right-15 {
  82. margin-right: 15rpx;
  83. }
  84. .m-right-25 {
  85. margin-right: 25rpx;
  86. }
  87. .m-right-20 {
  88. margin-right: 20rpx;
  89. }
  90. .m-right-30 {
  91. margin-right: 30rpx;
  92. }
  93. .img-bgs {
  94. left: 0;
  95. top: 0;
  96. position: absolute;
  97. z-index: -1;
  98. width: 100%;
  99. height: 100%;
  100. }
  101. .b-bottom {
  102. border-bottom: 1rpx solid #EDEDED;
  103. transform: border scaleY(0.5);
  104. }
  105. .t-text-ellipsis2 {
  106. text-overflow: -o-ellipsis-lastline;
  107. overflow: hidden;
  108. text-overflow: ellipsis;
  109. display: -webkit-box;
  110. -webkit-line-clamp: 2;
  111. line-clamp: 2;
  112. -webkit-box-orient: vertical;
  113. }
  114. /*隐藏滚动条*/
  115. ::-webkit-scrollbar {
  116. width: 0;
  117. height: 0;
  118. color: transparent;
  119. }
  120. .btn-sky {
  121. background: linear-gradient(270deg, #467FFF 0%, #4699FF 100%);
  122. text-align: center;
  123. color: #FFFFFF;
  124. }
  125. .btn-border {
  126. text-align: center;
  127. color: #191C27;
  128. border: 1rpx solid #CCCCCC;
  129. }