app.wxss 1.8 KB

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