index.scss 726 B

123456789101112131415161718192021222324252627282930313233343536
  1. @import "common/common.scss";
  2. .register-bg {
  3. width: 100%;
  4. height: 100%;
  5. display: flex;
  6. flex-direction: column;
  7. justify-content: flex-start;
  8. align-items: center;
  9. .register-container {
  10. width: 90%;
  11. padding: 20rpx 20rpx 50rpx 20rpx;
  12. box-sizing: border-box;
  13. background-color: #fefefe;
  14. /deep/ .form-content{
  15. padding: 20rpx;
  16. }
  17. /deep/ .u-form {
  18. .u-form-item {
  19. .u-form-item__body__left {
  20. width: auto !important;
  21. }
  22. .u-form-item__body__right__message{
  23. margin-left: 0 !important;
  24. }
  25. .u-form-item__body__left__content__label{
  26. font-weight: bold !important;
  27. }
  28. }
  29. }
  30. }
  31. }
  32. page {
  33. height: 100%;
  34. }