uflex.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. .flex {
  2. /* #ifndef APP-PLUS-NVUE */
  3. display: flex;
  4. /* #endif */
  5. flex-direction: row;
  6. }
  7. .inflex {
  8. /* #ifndef APP-PLUS-NVUE */
  9. display: inline-flex!important;
  10. /* #endif */
  11. flex-direction: row;
  12. }
  13. .fw_wrap {
  14. flex-wrap: wrap;
  15. }
  16. .fw_wr {
  17. flex-wrap: wrap-reverse;
  18. }
  19. .fw_nowrap {
  20. flex-wrap: nowrap;
  21. }
  22. .fd_c {
  23. flex-direction: column !important;
  24. }
  25. .fd_cr {
  26. flex-direction: column-reverse !important;
  27. }
  28. .fd_r {
  29. flex-direction: row !important;
  30. }
  31. .fd_rr {
  32. flex-direction: row-reverse !important;
  33. }
  34. .ai_center {
  35. align-items: center;
  36. }
  37. .ai_start {
  38. align-items: flex-start;
  39. }
  40. .ai_end {
  41. align-items: flex-end;
  42. }
  43. .ai_stretch {
  44. align-items: stretch;
  45. }
  46. /* #ifndef APP-PLUS-NVUE */
  47. .ai_baseline {
  48. align-items: baseline;
  49. }
  50. .ai_inherit {
  51. align-items: inherit;
  52. }
  53. .as_center {
  54. align-self: center;
  55. }
  56. .as_start {
  57. align-self: flex-start;
  58. }
  59. .as_end {
  60. align-self: flex-end;
  61. }
  62. .as_stretch {
  63. align-self: stretch;
  64. }
  65. .as_baseline {
  66. align-self: baseline;
  67. }
  68. .as_auto {
  69. align-self: auto;
  70. }
  71. .as_inherit {
  72. align-self: inherit;
  73. }
  74. .ac_center {
  75. align-content: center;
  76. }
  77. .ac_start {
  78. align-content: flex-start;
  79. }
  80. .ac_end {
  81. align-content: flex-end;
  82. }
  83. .ac_stretch {
  84. align-content: stretch;
  85. }
  86. .ac_between {
  87. align-content: space-between;
  88. }
  89. .ac_around {
  90. align-content: space-around;
  91. }
  92. .ac_inherit {
  93. align-content: inherit;
  94. }
  95. /* #endif */
  96. .jc_center {
  97. justify-content: center;
  98. }
  99. .jc_start {
  100. justify-content: flex-start;
  101. }
  102. .jc_end {
  103. justify-content: flex-end;
  104. }
  105. .jc_between {
  106. justify-content: space-between;
  107. }
  108. .jc_around {
  109. justify-content: space-around;
  110. }
  111. /* #ifndef APP-PLUS-NVUE */
  112. .flex_g {
  113. flex-grow: 1;
  114. }
  115. .flex_s {
  116. flex-shrink: 1;
  117. }
  118. .flex_s-0{
  119. flex-shrink: 0;
  120. }
  121. /* #endif */
  122. .flex1 {
  123. flex: 1;
  124. }
  125. .flex1_2 {
  126. flex: 1.2;
  127. }
  128. .flex1_5 {
  129. flex: 1.5
  130. }
  131. .flex2 {
  132. flex: 2;
  133. }
  134. .flex2_2 {
  135. flex: 2.2;
  136. }
  137. .flex3 {
  138. flex: 3;
  139. }
  140. .window{
  141. width: 100%;
  142. height: 100%;
  143. position: fixed;
  144. top: 0;
  145. left: 0;
  146. }
  147. .window_bg{
  148. width: 100%;
  149. height: 100%;
  150. position: fixed;
  151. top: 0;
  152. left: 0;
  153. background-color: rgba(0,0,0,0.5);
  154. }
  155. .close_icon{
  156. width: 24rpx;
  157. height: 24rpx;
  158. position: absolute;
  159. top: 40rpx;
  160. right: 30rpx;
  161. }
  162. .footer{
  163. width: 100%;
  164. min-height: 120rpx;
  165. padding: 20rpx 30rpx;
  166. position: fixed;
  167. bottom: 0;
  168. left: 0;
  169. background-color: #FFFFFF;
  170. }
  171. .footer_btn{
  172. flex: 1;
  173. height: 80rpx;
  174. background: linear-gradient(90deg, #FF4D32, #FF382E);
  175. border-radius: 20rpx;
  176. font-size: 32rpx;
  177. font-weight: 600;
  178. color: #FFFFFF;
  179. line-height: 80rpx;
  180. text-align: center;
  181. }
  182. .footer_hid{
  183. height: 200rpx;
  184. }