index.less
1.02 KB
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
.quotationBox {
width: 100%;
height: 100%;
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
.quotationNavigation {
width: 30%;
height: 100%;
:global .adm-side-bar {
background-color: #ebf2fd;
}
}
:global .adm-capsule-tabs-content{
padding: 0;
}
.quotationContent {
width: 70%;
height: 100%;
overflow-y: auto;
.contentItem {
width: 92%;
height: 120px !important;
border-radius: 10px;
background-color: #fff;
margin: 0 auto;
margin-bottom: 16px !important;
display: flex;
padding: 10px !important;
.contentItemImg {
width: 80px !important;
height: 80px !important;
border-radius: 10px;
}
.contentItemTitle {
font-size: 17px !important;
color: #333;
margin-left: 10px !important;
font-weight: 700;
}
}
.nestedItems {
.contentItem {
background-color: '#333';
}
}
}
}