app.wxss 848 B

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