index.wxss 491 B

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