董国庆
7 天以前 63ecd83a0f17442cb1ce3b497f4c7932fda4177f
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
.ant-pro-form-login-container {
    background-color: #fff;
    border-radius: 23px;
    padding: 38px 95px 65px 95px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    margin-top: 69px;
}
 
.loginContent {
 
 
    .sysName {
        text-align: center;
        font-family: 'LogoSCUnboundedSans';
        font-weight: 400;
        letter-spacing: 2px;
        background: linear-gradient(270deg, #FFEEA7 0%, #FDF9FA 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
        font-size: 70px;
        line-height: 101px;
    }
 
    .ant-form-item {
        width: 480px;
        margin-bottom: 20px;
    }
 
    .ant-input-affix-wrapper {
        padding: 14px 18px;
        background: #F5F5F5;
        border-radius: 10px;
        border: 1px solid rgba(0, 0, 0, 0.15);
    }
 
    .ant-input-affix-wrapper:hover {
        border-color: #FC8D55;
    }
 
    .ant-input-affix-wrapper:focus-within {
        border-color: #FC8D55;
        box-shadow: 0 0 0 2px rgba(252, 141, 85, 0.2);
    }
 
 
    .ant-pro-form-login-main {
        width: unset !important;
        min-width: unset !important;
    }
 
    .codeBox {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 10px;
        background: #F5F5F5;
        border: 1px solid rgba(0, 0, 0, 0.15);
        margin-bottom: 25px;
        position: relative;
 
        .ant-form-item-additional {
            position: absolute;
            bottom: -1.5rem;
        }
 
        .ant-form-item {
            width: 365px;
            margin-bottom: unset;
 
            .ant-input-affix-wrapper {
                background: unset !important;
            }
 
            .ant-input-outlined {
                border: unset !important;
            }
        }
    }
 
    canvas {
        border-radius: 0 10px 10px 0;
    }
 
    .codeBox:hover {
        border-color: #FC8D55;
        background-color: #fff;
    }
 
    .codeBox:focus-within {
        border-color: #FC8D55;
        box-shadow: 0 0 0 2px rgba(252, 141, 85, 0.2);
    }
 
 
    .ant-btn {
        height: 50px;
        background: linear-gradient(270deg, #FC8D55 0%, #FF4948 100%);
        border-radius: 25px;
    }
 
    .ant-btn-variant-solid:hover {
        background: linear-gradient(270deg, #FC8D55 0%, #FF4948 100%) !important;
    }
 
    .ant-input-status-error {
        background-color: #F5F5F5 !important;
        border: 1px solid rgba(0, 0, 0, 0.15) !important;
    }
}