123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .register-bg {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- background-color: #79797938;
- .bg-container {
- width: 100%;
- height:300rpx;
- background-color: #005598;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #fefefe;
- font-size: 40rpx;
- font-weight: 600;
- }
- .register-container {
- width: 90%;
- margin-top: -100rpx;
- z-index: 1;
- border-radius: 20rpx;
- padding: 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;
- }
- }
- }
- }
- }
- page {
- height: 100%;
- }
|