app.wxss 806 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /**app.wxss**/
  2. .container {
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. justify-content: center;
  8. box-sizing: border-box;
  9. row-gap: 50rpx;
  10. }
  11. page {
  12. height: 100vh;
  13. }
  14. .quick-start-title {
  15. font-size: 56rpx;
  16. font-weight: 500;
  17. }
  18. .quick-start-content {
  19. height: unset;
  20. row-gap: 40rpx;
  21. padding: 0 60rpx;
  22. font-size: 32rpx;
  23. align-items: flex-start;
  24. line-height: 46rpx;
  25. color: rgba(0,0,0,0.6);
  26. }
  27. .quick-start-content-item {
  28. display: flex;
  29. align-items: flex-start;
  30. justify-content: space-between;
  31. }
  32. .quick-start-content-item-text {
  33. margin-left: 16rpx;
  34. text-align: justify;
  35. }
  36. .quick-start-tips {
  37. padding: 0 40rpx;
  38. font-size: 22rpx;
  39. color: rgba(0,0,0,0.6);
  40. margin-top: 20rpx;
  41. }
  42. .btn {
  43. color: #fff;
  44. background-color: #FFAC0B;
  45. }