app.acss 912 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. @import "/__antmove/static/app.acss";
  2. /**app.wxss**/
  3. .container {
  4. height: 100%;
  5. display: flex;
  6. flex-direction: column;
  7. align-items: center;
  8. justify-content: space-between;
  9. padding: 200rpx 0;
  10. box-sizing: border-box;
  11. }
  12. .page {
  13. width: 100vw;
  14. min-height: 100vh;
  15. box-sizing: border-box;
  16. overflow-x: hidden;
  17. background-color: #f3f4f6;
  18. }
  19. .text-green {
  20. color: green;
  21. }
  22. .text-red {
  23. color: red;
  24. }
  25. .text-grey {
  26. color: #606266 !important;
  27. }
  28. .text-blue {
  29. color: #5c8dd8 !important;
  30. }
  31. .btn-area {
  32. position: fixed;
  33. bottom: 0;
  34. background-color: #fff;
  35. height: 180rpx;
  36. width: 750rpx;
  37. padding: 20rpx 60rpx;
  38. box-sizing: border-box;
  39. }
  40. .btn-area > button {
  41. background-color: #3a3c65;
  42. color: #fff;
  43. height: 100rpx;
  44. width: 630rpx;
  45. line-height: 96rpx;
  46. margin: 0;
  47. }
  48. .border-radius-20 {
  49. border-radius: 20rpx;
  50. }