wupengfei
22 小时以前 9c8b6d1cf6b43c6652b5183cd0183e8e257001f7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
@import '@/styles/common.scss';
 
.loginB-form-wrapper {
  flex: 1;
  min-height: 0;
  background-color: #fff;
  border-radius: 32px 32px 0px 0px;
  margin: 0 32px;
  display: flex;
  flex-direction: column;
 
  .loginB-form-tab {
    height: 108px;
    display: flex;
    margin-bottom: 46px;
 
    .loginB-form-tab-item {
      flex: 1;
      min-width: 0;
      display: flex;
      justify-content: center;
      padding-top: 20px;
      position: relative;
 
      .loginB-form-tab-item-content {
        position: relative;
        z-index: 1;
      }
 
      .loginB-form-tab-item-text {
        font-weight: 400;
        font-size: 28px;
        color: boleGetCssVar('text-color', 'primary');
        line-height: 40px;
        margin-bottom: 8px;
      }
 
      .loginB-form-tab-item-line {
        width: 36px;
        height: 2px;
        background-color: boleGetCssVar('color', 'primary');
        margin: 0 auto;
        display: none;
      }
 
      .loginB-form-tab-item-bg1 {
        position: absolute;
        z-index: 0;
        width: 376px;
        height: 108px;
        top: 1px;
        left: 1px;
      }
 
      .loginB-form-tab-item-bg2 {
        position: absolute;
        z-index: 0;
        width: 376px;
        height: 108px;
        top: 1px;
        right: 1px;
      }
 
      &.active {
        .loginB-form-tab-item-text {
          color: boleGetCssVar('color', 'primary');
        }
 
        .loginB-form-tab-item-line {
          display: block;
        }
 
        .loginB-form-tab-item-bg1,
        .loginB-form-tab-item-bg2 {
          display: none;
        }
      }
    }
  }
 
  .nut-cell-group__wrap {
    overflow: visible;
  }
 
  .bole-form-item {
    padding: 0 !important;
    margin-bottom: 40px;
 
    &:last-child {
      margin-bottom: 0;
    }
 
    &.error.line::before {
      z-index: 1;
      display: none;
      // right: 0;
      // left: 0;
      // top: 0;
      // border-radius: 44px;
    }
 
    &.error {
      .bole-input-text {
        border: 1px solid #fa2c19;
        box-sizing: border-box;
      }
    }
 
    .nut-form-item__body__tips {
      left: 30rpx !important;
      bottom: -36rpx !important;
    }
  }
 
  .bole-input-text {
    // border-bottom: none;
    border: 1px solid #f5f7fb;
    height: 88px;
    background: #f5f7fb;
    border-radius: 44px;
    padding: 24px 32px;
 
    /* .nut-input-value {
        display: flex;
        align-items: center;
      } */
 
    .h5-input {
      font-size: 28px;
    }
  }
}
 
.loginByForm-page-wrapper,
.registerForm-page-wrapper {
  .loginB-form-policy {
    margin-bottom: 40px;
  }
}
 
.verification-code-login-form-wrapper {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
 
  .verification-code-login-form {
    margin-bottom: 60px;
 
    .nut-cell-group__wrap {
      box-shadow: none;
      margin-bottom: 0;
    }
  }
 
  .login-btn {
    margin-bottom: 32px;
  }
 
  .go-register-btn {
    align-self: center;
    color: boleGetCssVar('color', 'primary');
    font-size: 24px;
    line-height: 34px;
  }
}