保誠-保戶業務員媒合平台
Mila
2021-11-04 7c9f9647fbc4ebb671cb297743b21322eda0fde3
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
 
// reset
html,body {
    margin: 0;
    color: $PRIMARY_BLACK;
    font-family: Segoe UI;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
 
h5 {
    margin: 0;
}
 
// btn
.btn {
    padding: 10px 20px;
    @include btn;
}
 
.confirm_btn {
    padding: 10px 40px;
    @include btn;
}
 
.outline_btn {
    padding: 10px 20px;
    border-radius: 30px;
    color: $PRIMARY_RED;
    border: solid 2px;
 
    &:hover {
        color: $PRIMARY_RED;
        background-color: $PRIMARY_WHITE;
    }
 
    &:focus {
        background-color: $CORAL;
    }
 
    &:disabled {
        background-color: $LIGHT_GREY;
    }
}
 
.pam-cus-tabs {
    display: flex;
    width: 100%;
    height: 45px;
 
    .cus-tab-item {
        width: 50%;
        text-align: center;
        font-size: 24px;
        border-bottom: solid 3px $LIGHT_GREY;
        cursor: pointer;
    }
 
    .is-active {
        font-weight: bold;
        border-bottom: solid 3px $PRIMARY_BLACK;
 
    }
}