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
| @import 'node_modules/@delon/theme/styles/default';
| :host {
| display: block;
| width: 368px;
| margin: 0 auto;
| ::ng-deep {
| .ant-tabs .ant-tabs-bar {
| border-bottom: 0;
| margin-bottom: 24px;
| text-align: center;
| }
| .ant-tabs-tab {
| font-size: 16px;
| line-height: 24px;
| }
| .ant-input-affix-wrapper .ant-input:not(:first-child) {
| padding-left: 34px;
| }
| .icon {
| font-size: 24px;
| color: rgba(0, 0, 0, 0.2);
| margin-left: 16px;
| vertical-align: middle;
| cursor: pointer;
| transition: color 0.3s;
| &:hover {
| color: @primary-color;
| }
| }
| .other {
| text-align: left;
| margin-top: 24px;
| line-height: 22px;
| nz-tooltip {
| vertical-align: middle;
| }
| .register {
| float: right;
| }
| }
| }
| }
|
|