保誠-保戶業務員媒合平台
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
 
// reset
html,body {
    margin: 0;
    color: $PRIMARY_BLACK;
    font-family: Segoe UI;
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}
 
// 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 {
        @extend .fix-chrome-click--issue;
        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;
 
    }
}
 
.vue-scroll-picker {
    height: 250px;
 
    .vue-scroll-picker-list-rotator {
         .vue-scroll-picker-item {
              font-size: 20px;
              padding: 5px 0;
         }
    }
 
    .vue-scroll-picker-layer {
         .top {
             height: calc(50% - 1.2em);
         }
         .bottom {
            height: calc(50% - 1.2em);
         }
    }
 
}
 
.pam-clientReserved-input.el-input--suffix {
    .el-input__inner {
        border-radius: 30px;
    }
 
    .search {
        line-height: 40px;
        padding-right: 10px;
    }
}