forked from gzzfw/frontEnd/gzDyh

dminyi
2024-09-11 8d6b46929dc3cb6d012c889f22cb8976fa6bd04d
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
@import '../../styles/theme.less';
 
.registerChooseModal {
    &-item {
        position: relative;
        padding: 12px 16px 16px;
        border: 1px solid @divider-color;
 
        .public-mainBtn {
            &:hover {
                background-color: @main-color;
                color: #ffffff;
            }
        }
    }
 
    &-subtitle {
        color: @text-color-secondary;
        width: 150px;
        margin-bottom: 12px;
    }
 
    &-img {
        position: absolute;
        top: 0;
        right: 0;
    }
 
    &-copyItem {
        text-align: center;
 
        &-content {
            width: 280px;
            margin: 24px auto 32px;
        }
    }
}