123456789101112131415161718192021222324252627282930313233343536 |
- @import "common/common.scss";
- .register-bg {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- .register-container {
- width: 90%;
- padding: 20rpx 20rpx 50rpx 20rpx;
- box-sizing: border-box;
- background-color: #fefefe;
- /deep/ .form-content{
- padding: 20rpx;
- }
- /deep/ .u-form {
- .u-form-item {
- .u-form-item__body__left {
- width: auto !important;
- }
- .u-form-item__body__right__message{
- margin-left: 0 !important;
- }
- .u-form-item__body__left__content__label{
- font-weight: bold !important;
- }
- }
- }
- }
- }
- page {
- height: 100%;
- }
|