index.scss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. background-color: #79797938;
  10. .bg-container {
  11. width: 100%;
  12. height:300rpx;
  13. background-color: #005598;
  14. display: flex;
  15. align-items: center;
  16. justify-content: center;
  17. color: #fefefe;
  18. font-size: 40rpx;
  19. font-weight: 600;
  20. }
  21. .register-container {
  22. width: 90%;
  23. margin-top: -100rpx;
  24. z-index: 1;
  25. border-radius: 20rpx;
  26. padding: 20rpx;
  27. box-sizing: border-box;
  28. background-color: #fefefe;
  29. /deep/ .form-content{
  30. padding: 20rpx;
  31. }
  32. /deep/ .u-form {
  33. .u-form-item {
  34. .u-form-item__body__left {
  35. width: auto !important;
  36. }
  37. .u-form-item__body__right__message{
  38. margin-left: 0 !important;
  39. }
  40. .u-form-item__body__left__content__label{
  41. font-weight: bold !important;
  42. }
  43. }
  44. }
  45. }
  46. }
  47. page {
  48. height: 100%;
  49. }