app.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /**app.wxss**/
  2. page {
  3. background-color: #f8f8f8;
  4. box-sizing: border-box;
  5. color: #333;
  6. font-size: 14px;
  7. }
  8. view {
  9. box-sizing: border-box;
  10. }
  11. .container {
  12. height: 100%;
  13. display: flex;
  14. flex-direction: column;
  15. box-sizing: border-box;
  16. font-size: 14px;
  17. color: #5a5a5a;
  18. }
  19. .page-foot {
  20. position: absolute;
  21. bottom: 30px;
  22. width: 100%;
  23. margin: 15px 0;
  24. text-align: center;
  25. font-size: 10px;
  26. color: #b0b0b0;
  27. }
  28. .border-bottom {
  29. border-bottom: solid 1px #e5e6e7;
  30. }
  31. .border-top {
  32. border-top: solid 1px #e5e6e7;
  33. }
  34. .no-border {
  35. border: none;
  36. }
  37. .loading {
  38. text-align: center;
  39. font-size: 12px;
  40. color: #999;
  41. margin-top: 20px;
  42. }
  43. .define-btn-kf {
  44. border: none;
  45. padding: 0;
  46. margin: 0;
  47. background-color: inherit;
  48. font-size: inherit;
  49. line-height: inherit;
  50. }
  51. .define-btn-kf::after {
  52. border: none;
  53. }
  54. .flex-row {
  55. display: flex;
  56. flex-direction: row;
  57. align-items: center;
  58. }
  59. .flex-between {
  60. justify-content: space-between;
  61. }
  62. .flex-around {
  63. justify-content: space-around;
  64. }
  65. .flex-start {
  66. justify-content: flex-start;
  67. }
  68. .flex-end {
  69. justify-content: flex-end;
  70. }
  71. .flex-column {
  72. display: flex;
  73. flex-direction: column;
  74. }
  75. .no-more {
  76. margin: 50px 0;
  77. font-size: 12px;
  78. color: #888;
  79. text-align: center;
  80. }
  81. .define-btn-kf {
  82. border: none;
  83. padding: 0;
  84. margin: 0;
  85. background-color: inherit;
  86. font-size: inherit;
  87. line-height: inherit;
  88. }
  89. .define-btn-kf::after {
  90. border: none;
  91. }
  92. .no-btn {
  93. border: none;
  94. background: none;
  95. padding: 0;
  96. line-height: 1;
  97. overflow: visible;
  98. }
  99. .no-btn::after {
  100. border: none;
  101. background: none;
  102. }