广州矛调粤政易端
xusd
7 days ago d27794814b69d18aeb8ee96a46cae91d5613570c
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
.communityService {
    &-searchBar {
        position: fixed;
        top: @navBarHeight;
        left: 0;
        right: 0;
        z-index: 99;
 
        &-height {
            height: 48px;
        }
    }
 
    &-main {
        height: calc(100% - @navBarHeight - 48px - 24px);
        padding: 12px;
        display: flex;
        flex-direction: column;
 
        &-title {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
 
            &-icon {
                font-size: 16px;
            }
        }
 
        &-list {
            flex: 1;
            overflow: hidden;
        }
 
        &-item {
            padding: 4px 8px 8px;
            border-radius: 5px;
            background-color: @common_bg_z1_color;
            margin-bottom: 8px;
 
            &-subtitle {
                display: flex;
                font-size: 12px;
                line-height: 20px;
                margin-top: 4px;
            }
        }
    }
 
    &-statistics {
        padding: 8px 12px 28px;
 
        &-form {
            border-radius: 10px;
            overflow: hidden;
            background-color: @common_bg_z1_color;
        }
 
        &-formItem {
            padding: 12px 16px;
            background-color: @common_bg_z1_color;
 
            .dtm-list-extra {
                max-width: 160px;
            }
        }
 
        &-formListItem {
            padding-left: 0;
            min-height: 0 !important;
 
            .dtm-list-line {
                padding: 0;
            }
        }
 
        &-btn {
            padding: 8px 16px;
            display: flex;
 
            .public-btn-primary {
                width: 115px;
                margin-right: 24px;
            }
        }
 
        &-title {
            padding: 12px;
            background-color: @common_bg_z1_color;
            position: relative;
 
            &::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 12px;
                right: 12px;
                border-top: 1px dashed @common_line_light_color;
            }
        }
 
        &-subtitle {
            padding: 12px;
            background-color: @common_bg_z1_color;
            position: relative;
 
            &::after {
                content: '';
                position: absolute;
                height: 12px;
                width: 3px;
                left: 0;
                top: 50%;
                margin-top: -6px;
                background-color: @theme_primary1_color;
            }
        }
 
        &-table {
            padding: 0 12px 16px;
            background-color: @common_bg_z1_color;
 
            &-col {
                width: 100%;
                display: flex;
                font-size: 12px;
                line-height: 20px;
 
                div,
                h5 {
                    padding: 6px 8px;
                    flex: 1;
                    .ellipsis-text-1;
                }
            }
        }
 
        &-blue1 {
            background-color: #e6f7ff;
        }
 
        &-blue2 {
            background-color: #a3ddff;
        }
 
        &-green1 {
            background-color: #e6fffb;
        }
 
        &-green2 {
            background-color: #b5f5ec;
        }
    }
}