index.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. .container {
  2. width: 100%;
  3. height: 100%;
  4. display: flex;
  5. flex-flow: column nowrap;
  6. overflow: hidden;
  7. box-sizing: border-box;
  8. color: #333;
  9. font-size: 16px;
  10. }
  11. .flex1 {
  12. display: flex;
  13. flex-grow: 1;
  14. }
  15. .flex0 {
  16. display: flex;
  17. flex-shrink: 0;
  18. }
  19. .fixed {
  20. position: fixed;
  21. }
  22. .relative {
  23. position: relative;
  24. }
  25. .absolute {
  26. position: absolute;
  27. }
  28. .flexRow {
  29. display: flex;
  30. flex-flow: row nowrap !important;
  31. flex-shrink: 0;
  32. }
  33. .flexCol {
  34. display: flex;
  35. flex-flow: column nowrap !important;
  36. }
  37. .flexCenter {
  38. display: flex;
  39. justify-content: center;
  40. align-items: center;
  41. }
  42. .flexWarp {
  43. display: flex;
  44. flex-flow: row wrap !important;
  45. }
  46. .jCenter {
  47. display: flex;
  48. justify-content: center;
  49. }
  50. .aCenter {
  51. display: flex;
  52. align-items: center;
  53. }
  54. .jcsb {
  55. justify-content: space-between;
  56. }
  57. .p10 {
  58. padding: 10rpx;
  59. box-sizing: border-box;
  60. }
  61. .p15 {
  62. padding: 15rpx;
  63. box-sizing: border-box;
  64. }
  65. .p0-15 {
  66. padding: 0 15rpx;
  67. box-sizing: border-box;
  68. }
  69. .p20 {
  70. padding: 20rpx;
  71. box-sizing: border-box;
  72. }
  73. .p0-20 {
  74. padding: 0 20rpx;
  75. box-sizing: border-box;
  76. }
  77. .p30 {
  78. padding: 30rpx;
  79. box-sizing: border-box;
  80. }
  81. .p0-30 {
  82. padding: 0 30rpx;
  83. box-sizing: border-box;
  84. }
  85. .p30 {
  86. padding: 30rpx;
  87. box-sizing: border-box;
  88. }
  89. .borderD {
  90. height: 1px;
  91. width: 100%;
  92. border: none;
  93. background: #ddd;
  94. display: flex;
  95. }
  96. .bf2 {
  97. background: #f2f2f2;
  98. }
  99. .h30 {
  100. height: 30rpx;
  101. }
  102. .oHidden {
  103. overflow: hidden;
  104. }
  105. .oScroll {
  106. overflow: scroll;
  107. }
  108. .oxScroll {
  109. overflow-x: scroll;
  110. }
  111. .oyScroll {
  112. overflow-y: scroll;
  113. }
  114. .w50 {
  115. width: 50%;
  116. }
  117. .w100 {
  118. width: 100%;
  119. }
  120. .width_full {
  121. width: 750rpx !important;
  122. box-sizing: border-box;
  123. }
  124. .h100 {
  125. height: 100%;
  126. }
  127. .wh100 {
  128. width: 100%;
  129. height: 100%;
  130. box-sizing: border-box;
  131. }
  132. .mt10 {
  133. margin-top: 10rpx;
  134. }
  135. .mt20 {
  136. margin-top: 20rpx;
  137. }
  138. .mt30 {
  139. margin-top: 30rpx;
  140. }
  141. .fs12 {
  142. font-size: 12px;
  143. }
  144. .fs14 {
  145. font-size: 14px;
  146. }
  147. .fs16 {
  148. font-size: 16px;
  149. }
  150. .fs18 {
  151. font-size: 18px;
  152. }
  153. .fs20 {
  154. font-size: 20px;
  155. }
  156. .fwb {
  157. font-weight: bold;
  158. }
  159. .gray {
  160. color: #ccc;
  161. }
  162. .bgw {
  163. background: white;
  164. }
  165. .border_bottom {
  166. border-bottom: 1rpx solid #efefef;
  167. }
  168. .handle_nav {
  169. background: #2cae36;
  170. color: #fff;
  171. }
  172. .hover-active {
  173. background-color: #ececec;
  174. }