index.scss 867 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .login-container {
  2. width: 100%;
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. justify-content: center;
  7. align-items: center;
  8. .login-tel {
  9. width: 600rpx;
  10. height: 80rpx;
  11. display: flex;
  12. align-items: center;
  13. justify-content: center;
  14. border-radius: 50px;
  15. box-sizing: border-box;
  16. padding: 0 40rpx;
  17. border: 1px solid rgba(84, 140, 247, 0.53);
  18. margin-bottom: 40rpx;
  19. &:focus-within {
  20. border: 1px solid #548cf7;
  21. /deep/ text {
  22. color: #548cf7 !important;
  23. }
  24. }
  25. }
  26. .login-btn{
  27. border: none;
  28. background-color: #548cf7;
  29. color: #ffffff;
  30. font-size: 32rpx;
  31. width: 600rpx;
  32. height: 80rpx;
  33. border-radius: 50px;
  34. display: flex;
  35. align-items: center;
  36. justify-content: center;
  37. .u-icon{
  38. margin-right: 20rpx;
  39. }
  40. }
  41. }
  42. page {
  43. height: 100%;
  44. }