app.wxss 1.7 KB

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