index.scss 903 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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/ .form-content{
  29. padding: 20rpx;
  30. }
  31. /deep/ .u-form {
  32. .u-form-item {
  33. .u-form-item__body__left {
  34. width: auto !important;
  35. }
  36. .u-form-item__body__right__message{
  37. margin-left: 0 !important;
  38. }
  39. }
  40. }
  41. }
  42. }
  43. page {
  44. height: 100%;
  45. }