保誠-保戶業務員媒合平台
Tomas
2023-08-05 f3e662798b3b83a83c2d60dc7b4e6cf1ee4f1331
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
.el-carousel__indicators--outside {
    .el-carousel__indicator--horizontal {
        .el-carousel__button {
            width: 9px;
            height: 9px;
            border-radius: 50px;
            border: solid 1px $LIGHT_GREY;
            background-color: $PRIMARY_WHITE;
        }
 
        &.is-active {
            .el-carousel__button {
                background-color: $PRIMARY_RED;
            }
        }
    }
 
    .el-carousel__indicator--horizontal:nth-child(2) {
        .el-carousel__button {
            margin: 0 20px;
        }
    }
}
 
.pam-quickFilter-carousel {
    border-radius: 10px;
    box-shadow: 0 0 6px 0 #00000029;
    .el-carousel__container {
        .el-carousel__item {
            width: 100%;
            border-radius: 10px;
            background-color: $PRIMARY_WHITE;
        }
    }
 
    @include desktop {
        border-radius: 0;
        box-shadow: 0;
        .el-carousel__container {
            .el-carousel__item {
                box-shadow: 0 0 6px #00000029;
            }
        }
    }
 
    @media (min-width: 768px) {
        .el-carousel__container {
            transform: translateX(30%);
            .el-carousel__item {
                max-width: 336px;
            }
        }
    }
}
 
@media (min-width: 576px) {
    .pam-home-carousel {
        .el-carousel__container {
            height: 350px;
        }
    }
}
 
@include desktop {
    .pam-home-carousel {
        .el-carousel__container {
            height: 500px;
        }
    }
}