index.scss 847 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .register-bg {
  2. width: 100%;
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. justify-content: flex-start;
  7. align-items: center;
  8. background-color: #79797938;
  9. .bg-container {
  10. width: 100%;
  11. height:300rpx;
  12. background-color: #005598;
  13. display: flex;
  14. align-items: center;
  15. justify-content: center;
  16. color: #fefefe;
  17. font-size: 40rpx;
  18. font-weight: 600;
  19. }
  20. .register-container {
  21. width: 90%;
  22. margin-top: -100rpx;
  23. z-index: 1;
  24. border-radius: 20rpx;
  25. padding: 20rpx;
  26. box-sizing: border-box;
  27. background-color: #fefefe;
  28. /deep/ .u-form {
  29. .u-form-item {
  30. .u-form-item__body__left {
  31. width: auto !important;
  32. }
  33. .u-form-item__body__right__message{
  34. margin-left: 0 !important;
  35. }
  36. }
  37. }
  38. }
  39. }
  40. page {
  41. height: 100%;
  42. }