login.wxss 492 B

123456789101112131415161718192021222324252627
  1. /* 登陆页面总样式 */
  2. .login {
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. justify-content: center;
  7. }
  8. /* 头像样式 */
  9. .header {
  10. margin: 130rpx;
  11. }
  12. /* 输入框样式 */
  13. .van-field__control {
  14. border: 1px solid #ccc !important;
  15. width: 600rpx !important;
  16. height: 100rpx !important;
  17. border-radius: 5px;
  18. padding-left: 20rpx !important;
  19. }
  20. /* 登录按钮样式 */
  21. .van-button {
  22. margin-top: 280rpx;
  23. width: 600rpx;
  24. border-radius: 5px !important;
  25. }