app.wxss 1.5 KB

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