index.wxss 521 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* pages/index/index.wxss */
  2. page {
  3. background: #fff;
  4. }
  5. .main {
  6. display: block;
  7. width: 80vw;
  8. height: 60vh;
  9. margin: 10vh auto;
  10. }
  11. .go {
  12. width: 70vw;
  13. height: 12vw;
  14. line-height: 12vw;
  15. font-size: 5vw;
  16. text-align: center;
  17. background: #3e94f6;
  18. color: #fff;
  19. border-radius: 6vw;
  20. margin: 0 auto;
  21. margin-top: 60rpx;
  22. }
  23. .has-account {
  24. width: 300rpx;
  25. height: 70rpx;
  26. line-height: 70rpx;
  27. color: #888;
  28. text-decoration: underline;
  29. font-size: 32rpx;
  30. text-align: center;
  31. margin: 30rpx auto;
  32. }