index.wxss 355 B

123456789101112131415161718192021
  1. .container {
  2. min-height: 100vh;
  3. min-width: 100vw;
  4. box-sizing: border-box;
  5. }
  6. .section {
  7. width: 100%;
  8. height: 100%;
  9. background: #fff;
  10. border-radius: 8rpx 8rpx 0 0;
  11. padding-bottom: 100rpx;
  12. border-top: 20rpx solid #f7f7f7;
  13. }
  14. .section-content {
  15. display: flex;
  16. justify-content: center;
  17. flex-direction: column;
  18. align-items: center;
  19. }