Blame view

antis-ncc-admin/src/components/kpi-drill/common-styles.scss 4.44 KB
5e0c6e5a   “wangming”   feat: 完善会员画像功能,优化...
1
2
3
4
5
  // KPI穿透组件公共样式
  
  .billing-wrapper {
    width: 100%;
    overflow: hidden;
6ec1ef37   李宇   最新
6
7
8
9
    // background: red;
    // height: 50vh;
    // overflow-y: scroll;
    border-radius: 32px;
5e0c6e5a   “wangming”   feat: 完善会员画像功能,优化...
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
    .billing-layout {
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      gap: 16px;
      width: 100%;
    }
  
    .billing-left {
      flex: 0 0 75%;
      max-width: 75%;
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-width: 0;
    }
  
    .billing-right {
      flex: 0 0 25%;
      max-width: 23.5%;
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-width: 0;
    }
  
    .chart-card {
      background: #fff;
      border: 1px solid #ebeef5;
      border-radius: 10px;
      padding: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      flex-shrink: 0;
  
      .chart-title {
        font-size: 13px;
        color: #606266;
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        gap: 6px;
  
        i {
          color: #409EFF;
        }
      }
  
      .chart-mini {
        height: 220px;
        width: 100%;
      }
    }
  
    .table-card {
      background: #fff;
      border: 1px solid #ebeef5;
      border-radius: 10px;
      padding: 10px 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      flex: 1;
6ec1ef37   李宇   最新
70
      // min-height: 700px;
5e0c6e5a   “wangming”   feat: 完善会员画像功能,优化...
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
      display: flex;
      flex-direction: column;
  
      .table-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 8px;
        flex-shrink: 0;
      }
  
      .table-title {
        font-size: 14px;
        font-weight: 600;
        color: #303133;
        display: flex;
        align-items: center;
        gap: 6px;
  
        i {
          color: #409EFF;
        }
      }
  
      .el-table {
        flex: 1;
        min-height: 0;
      }
  
      .pagination-bar {
        flex-shrink: 0;
        margin-top: 8px;
      }
    }
  
    .stat-card {
      background: #fff;
      border: 1px solid #ebeef5;
      border-radius: 10px;
      padding: 10px 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      flex-shrink: 0;
6ec1ef37   李宇   最新
113
114
      position: relative;
      overflow: hidden;
5e0c6e5a   “wangming”   feat: 完善会员画像功能,优化...
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
  
      &.compact {
        display: flex;
        align-items: center;
        gap: 10px;
        min-height: 70px;
      }
  
      .stat-icon-circle {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        flex-shrink: 0;
  
        i {
          font-size: 16px;
        }
      }
  
6ec1ef37   李宇   最新
138
139
140
141
142
143
144
145
      &.neon-green {
        border-left: 4px solid #67C23A;
        border-color: #e1f3d8;
        border-left-color: #67C23A;
  
        .stat-icon-circle {
          background: #67C23A;
        }
5e0c6e5a   “wangming”   feat: 完善会员画像功能,优化...
146
147
      }
  
6ec1ef37   李宇   最新
148
149
150
151
152
153
154
155
      &.neon-orange {
        border-left: 4px solid #E6A23C;
        border-color: #fde3c9;
        border-left-color: #E6A23C;
  
        .stat-icon-circle {
          background: #E6A23C;
        }
5e0c6e5a   “wangming”   feat: 完善会员画像功能,优化...
156
157
      }
  
6ec1ef37   李宇   最新
158
159
160
161
162
163
164
165
      &.neon-red {
        border-left: 4px solid #F56C6C;
        border-color: #fde2e2;
        border-left-color: #F56C6C;
  
        .stat-icon-circle {
          background: #F56C6C;
        }
5e0c6e5a   “wangming”   feat: 完善会员画像功能,优化...
166
167
      }
  
6ec1ef37   李宇   最新
168
169
170
171
172
173
174
      &.neon-blue {
        border-left: 4px solid #409EFF;
        border-left-color: #409EFF;
  
        .stat-icon-circle {
          background: #409EFF;
        }
5e0c6e5a   “wangming”   feat: 完善会员画像功能,优化...
175
176
      }
  
6ec1ef37   李宇   最新
177
178
179
180
181
182
183
      &.neon-purple {
        border-left: 4px solid #9C27B0;
        border-left-color: #9C27B0;
  
        .stat-icon-circle {
          background: #9C27B0;
        }
5e0c6e5a   “wangming”   feat: 完善会员画像功能,优化...
184
185
      }
  
6ec1ef37   李宇   最新
186
187
188
189
190
191
192
193
      &.neon-cyan {
        border-left: 4px solid #17A2B8;
        border-color: #d1ecf1;
        border-left-color: #17A2B8;
  
        .stat-icon-circle {
          background: #17A2B8;
        }
5e0c6e5a   “wangming”   feat: 完善会员画像功能,优化...
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
      }
  
      .stat-content {
        flex: 1;
        min-width: 0;
      }
  
      .stat-title {
        font-size: 13px;
        color: #606266;
        margin-bottom: 4px;
        line-height: 1.3;
      }
  
      .stat-body {
        color: #303133;
  
        .value-lg {
          font-size: 18px;
          font-weight: 700;
          margin-top: 4px;
        }
  
        .highlight {
          font-size: 14px;
          font-weight: 600;
          line-height: 1.3;
          display: flex;
          align-items: center;
          gap: 8px;
          flex-wrap: wrap;
  
          .value-inline {
            font-size: 16px;
            font-weight: 700;
            color: #409EFF;
            white-space: nowrap;
          }
        }
      }
5e0c6e5a   “wangming”   feat: 完善会员画像功能,优化...
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
    }
  }
  
  .pagination-bar {
    display: flex;
    justify-content: flex-end;
    padding: 10px 0 4px 0;
  }
  
  .list-filters {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 8px 0;
  
    &.inline {
      margin: 0;
    }
  }
  
  .text-ellipsis-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }