cloud-business 0.1.91-2 → 0.1.91-4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11239,6 +11239,290 @@ body {
11239
11239
  width: 50px;
11240
11240
  }
11241
11241
 
11242
+ body {
11243
+ margin: 0;
11244
+ --shuyunBlue1: #EDF6FF;
11245
+ --shuyunBlue2: #CCE6FF;
11246
+ --shuyunBlue3: #72B0ED;
11247
+ --shuyunBlue4: #0066CC;
11248
+ --shuyunBlue5: #004CA3;
11249
+ --shuyunBlue6: #003775;
11250
+ --shuyunBlue7: #002147;
11251
+ }
11252
+ .cloud-satisfaction-survey-popup {
11253
+ position: absolute;
11254
+ width: -moz-fit-content;
11255
+ width: fit-content;
11256
+ padding: 16px;
11257
+ background: #FFFFFF;
11258
+ box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08), 0 1px 4px 0 rgba(0, 0, 0, 0.04);
11259
+ border-radius: 4px;
11260
+ z-index: 10000;
11261
+ font-family: PingFangSC-Medium, PingFang SC;
11262
+ }
11263
+ .cloud-satisfaction-survey-popup:after {
11264
+ position: absolute;
11265
+ left: 50%;
11266
+ top: -5px;
11267
+ transform: translate(-50%) rotate(45deg);
11268
+ display: block;
11269
+ content: '';
11270
+ width: 0;
11271
+ height: 0;
11272
+ border: 5px solid transparent;
11273
+ border-top-width: 5px;
11274
+ background: white;
11275
+ }
11276
+
11277
+ body {
11278
+ margin: 0;
11279
+ --shuyunBlue1: #EDF6FF;
11280
+ --shuyunBlue2: #CCE6FF;
11281
+ --shuyunBlue3: #72B0ED;
11282
+ --shuyunBlue4: #0066CC;
11283
+ --shuyunBlue5: #004CA3;
11284
+ --shuyunBlue6: #003775;
11285
+ --shuyunBlue7: #002147;
11286
+ }
11287
+ .cloud-satisfaction-survey-reason-title {
11288
+ height: 20px;
11289
+ line-height: 20px;
11290
+ font-size: 14px;
11291
+ font-weight: 500;
11292
+ color: rgba(0, 0, 0, 0.85);
11293
+ }
11294
+ .cloud-satisfaction-survey-reason-list {
11295
+ display: flex;
11296
+ flex-wrap: wrap;
11297
+ gap: 12px;
11298
+ font-size: 12px;
11299
+ margin-top: 16px;
11300
+ margin-bottom: 12px;
11301
+ }
11302
+ .cloud-satisfaction-survey-reason-item {
11303
+ min-width: 72px;
11304
+ height: 18px;
11305
+ padding: 4px 8px;
11306
+ line-height: 18px;
11307
+ background: white;
11308
+ border: 1px solid #E8E8E8;
11309
+ color: rgba(0, 0, 0, 0.85);
11310
+ cursor: pointer;
11311
+ text-align: center;
11312
+ white-space: nowrap;
11313
+ overflow: hidden;
11314
+ text-overflow: ellipsis;
11315
+ }
11316
+ .cloud-satisfaction-survey-reason-item:hover,
11317
+ .cloud-satisfaction-survey-reason-item.active {
11318
+ border: 1px solid #DBECFF;
11319
+ color: #0055CC;
11320
+ background: #F0F7FF;
11321
+ }
11322
+ .cloud-satisfaction-survey-reason-operate {
11323
+ display: flex;
11324
+ flex-direction: row-reverse;
11325
+ gap: 8px;
11326
+ }
11327
+ .cloud-satisfaction-survey-reason-operate button.newCloud-button.small {
11328
+ padding: 3px 8px;
11329
+ }
11330
+
11331
+ body {
11332
+ margin: 0;
11333
+ --shuyunBlue1: #EDF6FF;
11334
+ --shuyunBlue2: #CCE6FF;
11335
+ --shuyunBlue3: #72B0ED;
11336
+ --shuyunBlue4: #0066CC;
11337
+ --shuyunBlue5: #004CA3;
11338
+ --shuyunBlue6: #003775;
11339
+ --shuyunBlue7: #002147;
11340
+ }
11341
+ .cloud-satisfaction-survey-result-list-title {
11342
+ display: flex;
11343
+ flex-direction: column;
11344
+ align-items: center;
11345
+ gap: 4px;
11346
+ color: #0055CC;
11347
+ font-size: 14px;
11348
+ font-weight: bold;
11349
+ line-height: 18px;
11350
+ }
11351
+ .cloud-satisfaction-survey-result-list-list {
11352
+ display: flex;
11353
+ align-items: center;
11354
+ justify-content: center;
11355
+ flex-wrap: wrap;
11356
+ gap: 8px;
11357
+ font-size: 12px;
11358
+ margin-top: 16px;
11359
+ }
11360
+ .cloud-satisfaction-survey-result-list-one-line {
11361
+ white-space: nowrap;
11362
+ overflow: hidden;
11363
+ text-overflow: ellipsis;
11364
+ }
11365
+ .cloud-satisfaction-survey-result-list-item {
11366
+ min-width: 72px;
11367
+ padding: 4px 8px;
11368
+ line-height: 18px;
11369
+ color: rgba(0, 0, 0, 0.85);
11370
+ border: 1px solid #DBECFF;
11371
+ color: #0055CC;
11372
+ background: #F0F7FF;
11373
+ text-align: center;
11374
+ }
11375
+ .cloud-satisfaction-survey-result-list-extra-container {
11376
+ width: 100%;
11377
+ display: flex;
11378
+ justify-content: center;
11379
+ }
11380
+ .cloud-satisfaction-survey-result-list-extra-item {
11381
+ min-width: auto;
11382
+ width: -moz-fit-content;
11383
+ width: fit-content;
11384
+ display: flex;
11385
+ justify-content: center;
11386
+ }
11387
+
11388
+ body {
11389
+ margin: 0;
11390
+ --shuyunBlue1: #EDF6FF;
11391
+ --shuyunBlue2: #CCE6FF;
11392
+ --shuyunBlue3: #72B0ED;
11393
+ --shuyunBlue4: #0066CC;
11394
+ --shuyunBlue5: #004CA3;
11395
+ --shuyunBlue6: #003775;
11396
+ --shuyunBlue7: #002147;
11397
+ }
11398
+ .cloud-flash-line {
11399
+ background: url("data:image/png;base64,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") no-repeat;
11400
+ background-size: 100% 100%;
11401
+ width: 26px;
11402
+ height: 26px;
11403
+ position: absolute;
11404
+ top: 0;
11405
+ left: 0;
11406
+ animation: run 800ms linear infinite;
11407
+ }
11408
+ @keyframes run {
11409
+ 0% {
11410
+ left: 0;
11411
+ }
11412
+ 100% {
11413
+ left: 90%;
11414
+ }
11415
+ }
11416
+
11417
+ body {
11418
+ margin: 0;
11419
+ --shuyunBlue1: #EDF6FF;
11420
+ --shuyunBlue2: #CCE6FF;
11421
+ --shuyunBlue3: #72B0ED;
11422
+ --shuyunBlue4: #0066CC;
11423
+ --shuyunBlue5: #004CA3;
11424
+ --shuyunBlue6: #003775;
11425
+ --shuyunBlue7: #002147;
11426
+ }
11427
+ .cloud-satisfaction-survey {
11428
+ position: relative;
11429
+ min-width: 177px;
11430
+ width: -moz-fit-content;
11431
+ width: fit-content;
11432
+ font-family: PingFangSC-Medium, PingFang SC;
11433
+ }
11434
+ .cloud-satisfaction-survey-question {
11435
+ position: relative;
11436
+ display: flex;
11437
+ align-items: center;
11438
+ gap: 5px;
11439
+ font-size: 12px;
11440
+ height: 26px;
11441
+ width: -moz-fit-content;
11442
+ width: fit-content;
11443
+ padding: 0 6px;
11444
+ background: linear-gradient(314deg, #91C7FF 0%, #D8EAFF 100%);
11445
+ box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08), 0 1px 4px 0 rgba(0, 0, 0, 0.04);
11446
+ border-radius: 6px;
11447
+ cursor: pointer;
11448
+ font-weight: 500;
11449
+ color: #123B75;
11450
+ }
11451
+ .cloud-satisfaction-survey-remark-icon {
11452
+ font-size: 12px;
11453
+ }
11454
+ .cloud-satisfaction-survey-evaluate {
11455
+ display: flex;
11456
+ align-items: center;
11457
+ justify-content: center;
11458
+ height: 26px;
11459
+ width: -moz-fit-content;
11460
+ width: fit-content;
11461
+ background: #FFFFFF;
11462
+ box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08), 0 1px 4px 0 rgba(0, 0, 0, 0.04);
11463
+ border-radius: 6px;
11464
+ color: #0055CC;
11465
+ }
11466
+ .cloud-satisfaction-survey-support,
11467
+ .cloud-satisfaction-survey-oppose {
11468
+ display: flex;
11469
+ align-items: center;
11470
+ font-size: 12px;
11471
+ cursor: pointer;
11472
+ line-height: 22px;
11473
+ margin: 2px;
11474
+ border-radius: 4px;
11475
+ }
11476
+ .cloud-satisfaction-survey-support.active,
11477
+ .cloud-satisfaction-survey-oppose.active {
11478
+ background: #DBECFF;
11479
+ }
11480
+ .cloud-satisfaction-survey-support {
11481
+ padding-left: 12px;
11482
+ padding-right: 11px;
11483
+ }
11484
+ .cloud-satisfaction-survey-oppose {
11485
+ padding-left: 11px;
11486
+ padding-right: 12px;
11487
+ }
11488
+ .cloud-satisfaction-survey-split {
11489
+ width: 1px;
11490
+ height: 12px;
11491
+ background: #E8E8E8;
11492
+ }
11493
+ .cloud-satisfaction-survey-result {
11494
+ display: flex;
11495
+ align-items: center;
11496
+ gap: 5px;
11497
+ height: 26px;
11498
+ width: -moz-fit-content;
11499
+ width: fit-content;
11500
+ line-height: 26px;
11501
+ padding: 0 6px;
11502
+ background: #FFFFFF;
11503
+ box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
11504
+ border-radius: 6px;
11505
+ font-size: 12px;
11506
+ color: #008F21;
11507
+ }
11508
+ .cloud-satisfaction-survey-success-fill {
11509
+ color: #21BA45;
11510
+ }
11511
+ .cloud-satisfaction-survey-view-estimate {
11512
+ color: #21BA45;
11513
+ cursor: pointer;
11514
+ }
11515
+ .cloud-satisfaction-survey-popover {
11516
+ width: 220px!important;
11517
+ padding: 16px;
11518
+ height: -moz-fit-content;
11519
+ height: fit-content;
11520
+ font-family: PingFangSC-Medium, PingFang SC;
11521
+ }
11522
+ .cloud-satisfaction-survey-popover .newCloud-popover-main-content {
11523
+ width: 100%;
11524
+ }
11525
+
11242
11526
  body {
11243
11527
  margin: 0;
11244
11528
  --shuyunBlue1: #EDF6FF;
@@ -13788,7 +14072,7 @@ body {
13788
14072
  max-width: calc(100% - 20px) !important;
13789
14073
  }
13790
14074
  .newCloud-ccascader-menus .newCloud-ccascader-menu:nth-child(1) {
13791
- width: 300px;
14075
+ width: 270px !important;
13792
14076
  }
13793
14077
  .newCloud-ccascader-menus .newCloud-ccascader-menu:nth-child(1) .newCloud-ccascader-menu-item-content {
13794
14078
  overflow: hidden;
@@ -13801,6 +14085,10 @@ body {
13801
14085
  .newCloud-input-disabled {
13802
14086
  background: #f5f5f5 !important;
13803
14087
  }
14088
+ #newCloud-popover-confirm {
14089
+ background: #0055cc !important;
14090
+ border: 1px solid #0055cc !important;
14091
+ }
13804
14092
  .customer-view-new-tip-temp {
13805
14093
  display: flex;
13806
14094
  }
@@ -13902,7 +14190,7 @@ body {
13902
14190
  max-width: calc(100% - 20px) !important;
13903
14191
  }
13904
14192
  .newCloud-ccascader-menus .newCloud-ccascader-menu:nth-child(1) {
13905
- width: 300px;
14193
+ width: 270px !important;
13906
14194
  }
13907
14195
  .newCloud-ccascader-menus .newCloud-ccascader-menu:nth-child(1) .newCloud-ccascader-menu-item-content {
13908
14196
  overflow: hidden;
@@ -13915,6 +14203,10 @@ body {
13915
14203
  .newCloud-input-disabled {
13916
14204
  background: #f5f5f5 !important;
13917
14205
  }
14206
+ #newCloud-popover-confirm {
14207
+ background: #0055cc !important;
14208
+ border: 1px solid #0055cc !important;
14209
+ }
13918
14210
  .customer-view-new-tip-temp {
13919
14211
  display: flex;
13920
14212
  }
@@ -14195,7 +14487,7 @@ body {
14195
14487
  max-width: calc(100% - 20px) !important;
14196
14488
  }
14197
14489
  .newCloud-ccascader-menus .newCloud-ccascader-menu:nth-child(1) {
14198
- width: 300px;
14490
+ width: 270px !important;
14199
14491
  }
14200
14492
  .newCloud-ccascader-menus .newCloud-ccascader-menu:nth-child(1) .newCloud-ccascader-menu-item-content {
14201
14493
  overflow: hidden;
@@ -14208,6 +14500,10 @@ body {
14208
14500
  .newCloud-input-disabled {
14209
14501
  background: #f5f5f5 !important;
14210
14502
  }
14503
+ #newCloud-popover-confirm {
14504
+ background: #0055cc !important;
14505
+ border: 1px solid #0055cc !important;
14506
+ }
14211
14507
  .customer-view-new-tip-temp {
14212
14508
  display: flex;
14213
14509
  }
@@ -14586,7 +14882,7 @@ body {
14586
14882
  .grid-area-new .customer-order-area-new .order-table-body .order-title .order-time {
14587
14883
  height: 20px;
14588
14884
  line-height: 20px;
14589
- font-size: 14px;
14885
+ font-size: 12px;
14590
14886
  color: rgba(0, 0, 0, 0.85);
14591
14887
  }
14592
14888
  .grid-area-new .customer-order-area-new .order-table-body .order-title .order-shop .copy-order-id,
@@ -14619,16 +14915,29 @@ body {
14619
14915
  cursor: pointer;
14620
14916
  }
14621
14917
  .grid-area-new .customer-order-area-new .order-table-body .order-title .order-time {
14622
- width: 200px;
14918
+ width: 180px;
14919
+ }
14920
+ .grid-area-new .customer-order-area-new .order-table-body .order-title .order-special {
14921
+ width: 350px !important;
14922
+ }
14923
+ .grid-area-new .customer-order-area-new .order-table-body .order-title .order-common-width-0 {
14924
+ width: calc((100% - 180px - 180px - 350px - 120px) / 2);
14925
+ }
14926
+ .grid-area-new .customer-order-area-new .order-table-body .order-title .order-common-width-1-1 {
14927
+ width: calc((100% - 180px - 180px - 180px - 350px - 150px) / 2);
14928
+ }
14929
+ .grid-area-new .customer-order-area-new .order-table-body .order-title .order-common-width-1-2 {
14930
+ width: calc((100% - 180px - 180px - 350px - 150px) / 3);
14931
+ }
14932
+ .grid-area-new .customer-order-area-new .order-table-body .order-title .order-common-width-2 {
14933
+ width: calc((100% - 180px - 180px - 180px - 350px - 180px) / 3);
14623
14934
  }
14624
14935
  .grid-area-new .customer-order-area-new .order-table-body .order-title .order-shop {
14625
- width: calc((100% - 400px - 120px) / 3);
14626
14936
  overflow: hidden;
14627
14937
  white-space: nowrap;
14628
14938
  text-overflow: ellipsis;
14629
14939
  }
14630
14940
  .grid-area-new .customer-order-area-new .order-table-body .order-title .order-other {
14631
- width: calc((100% - 400px - 120px) / 3);
14632
14941
  display: flex;
14633
14942
  }
14634
14943
  .grid-area-new .customer-order-area-new .order-table-body .order-title .order-other span {
@@ -14664,9 +14973,10 @@ body {
14664
14973
  margin-bottom: 10px;
14665
14974
  }
14666
14975
  .grid-area-new .customer-order-area-new .order-table-body .order-title-another .order-temp {
14976
+ display: flex;
14667
14977
  height: 20px;
14668
14978
  line-height: 20px;
14669
- font-size: 14px;
14979
+ font-size: 12px;
14670
14980
  color: rgba(0, 0, 0, 0.85);
14671
14981
  width: calc((100% - 90px) / 4);
14672
14982
  margin-left: 30px;
@@ -14945,7 +15255,7 @@ body {
14945
15255
  }
14946
15256
  .grid-area-new .customer-account-new .account-info-right .info-copy .newCloud-icon {
14947
15257
  cursor: pointer;
14948
- color: rgba(0, 0, 0, 0.45);
15258
+ color: rgba(0, 0, 0, 0.65);
14949
15259
  }
14950
15260
  .grid-area-new .tips-label {
14951
15261
  text-align: right;
@@ -14980,6 +15290,56 @@ body {
14980
15290
  height: calc(100% - 50px);
14981
15291
  }
14982
15292
 
15293
+ body {
15294
+ margin: 0;
15295
+ --shuyunBlue1: #EDF6FF;
15296
+ --shuyunBlue2: #CCE6FF;
15297
+ --shuyunBlue3: #72B0ED;
15298
+ --shuyunBlue4: #0066CC;
15299
+ --shuyunBlue5: #004CA3;
15300
+ --shuyunBlue6: #003775;
15301
+ --shuyunBlue7: #002147;
15302
+ }
15303
+ .over-length-tip-common {
15304
+ width: 100%;
15305
+ cursor: pointer;
15306
+ overflow: hidden;
15307
+ white-space: nowrap;
15308
+ text-overflow: ellipsis;
15309
+ }
15310
+ .over-length-tip-href {
15311
+ display: block;
15312
+ width: 100%;
15313
+ overflow: hidden;
15314
+ white-space: nowrap;
15315
+ text-overflow: ellipsis;
15316
+ color: var(--shuyunBlue4) !important;
15317
+ cursor: pointer;
15318
+ }
15319
+ .over-length-tip-href:hover {
15320
+ color: var(--shuyunBlue4) !important;
15321
+ }
15322
+ .text-overflow-other {
15323
+ overflow: hidden;
15324
+ white-space: nowrap;
15325
+ text-overflow: ellipsis;
15326
+ width: calc(100% - 60px) !important;
15327
+ padding-right: 0;
15328
+ }
15329
+ .wx-span {
15330
+ width: 100%;
15331
+ }
15332
+ .search-empty-com {
15333
+ display: flex;
15334
+ width: 100%;
15335
+ height: 170px;
15336
+ flex-direction: column;
15337
+ justify-content: center;
15338
+ color: rgba(0, 0, 0, 0.45);
15339
+ align-items: center;
15340
+ border-radius: 2px;
15341
+ }
15342
+
14983
15343
  /**
14984
15344
  * index.less
14985
15345
  * wangbo
@@ -15074,7 +15434,7 @@ body {
15074
15434
  max-width: calc(100% - 20px) !important;
15075
15435
  }
15076
15436
  .newCloud-ccascader-menus .newCloud-ccascader-menu:nth-child(1) {
15077
- width: 300px;
15437
+ width: 270px !important;
15078
15438
  }
15079
15439
  .newCloud-ccascader-menus .newCloud-ccascader-menu:nth-child(1) .newCloud-ccascader-menu-item-content {
15080
15440
  overflow: hidden;
@@ -15087,6 +15447,10 @@ body {
15087
15447
  .newCloud-input-disabled {
15088
15448
  background: #f5f5f5 !important;
15089
15449
  }
15450
+ #newCloud-popover-confirm {
15451
+ background: #0055cc !important;
15452
+ border: 1px solid #0055cc !important;
15453
+ }
15090
15454
  .customer-view-new-tip-temp {
15091
15455
  display: flex;
15092
15456
  }
@@ -15248,46 +15612,6 @@ body {
15248
15612
  display: inline-block;
15249
15613
  }
15250
15614
 
15251
- body {
15252
- margin: 0;
15253
- --shuyunBlue1: #EDF6FF;
15254
- --shuyunBlue2: #CCE6FF;
15255
- --shuyunBlue3: #72B0ED;
15256
- --shuyunBlue4: #0066CC;
15257
- --shuyunBlue5: #004CA3;
15258
- --shuyunBlue6: #003775;
15259
- --shuyunBlue7: #002147;
15260
- }
15261
- .over-length-tip-common {
15262
- width: 100%;
15263
- cursor: pointer;
15264
- overflow: hidden;
15265
- white-space: nowrap;
15266
- text-overflow: ellipsis;
15267
- }
15268
- .over-length-tip-href {
15269
- display: block;
15270
- width: 100%;
15271
- overflow: hidden;
15272
- white-space: nowrap;
15273
- text-overflow: ellipsis;
15274
- color: var(--shuyunBlue4) !important;
15275
- cursor: pointer;
15276
- }
15277
- .over-length-tip-href:hover {
15278
- color: var(--shuyunBlue4) !important;
15279
- }
15280
- .text-overflow-other {
15281
- overflow: hidden;
15282
- white-space: nowrap;
15283
- text-overflow: ellipsis;
15284
- width: calc(100% - 60px) !important;
15285
- padding-right: 0;
15286
- }
15287
- .wx-span {
15288
- width: 100%;
15289
- }
15290
-
15291
15615
  /**
15292
15616
  * index.less
15293
15617
  * wangbo
@@ -15382,7 +15706,7 @@ body {
15382
15706
  max-width: calc(100% - 20px) !important;
15383
15707
  }
15384
15708
  .newCloud-ccascader-menus .newCloud-ccascader-menu:nth-child(1) {
15385
- width: 300px;
15709
+ width: 270px !important;
15386
15710
  }
15387
15711
  .newCloud-ccascader-menus .newCloud-ccascader-menu:nth-child(1) .newCloud-ccascader-menu-item-content {
15388
15712
  overflow: hidden;
@@ -15395,6 +15719,10 @@ body {
15395
15719
  .newCloud-input-disabled {
15396
15720
  background: #f5f5f5 !important;
15397
15721
  }
15722
+ #newCloud-popover-confirm {
15723
+ background: #0055cc !important;
15724
+ border: 1px solid #0055cc !important;
15725
+ }
15398
15726
  .customer-view-new-tip-temp {
15399
15727
  display: flex;
15400
15728
  }
@@ -15567,6 +15895,9 @@ body {
15567
15895
  .customer-label-area-new .customer-label-content .tag-item-edit {
15568
15896
  cursor: pointer;
15569
15897
  }
15898
+ .customer-label-area-new .customer-label-content .tag-item-edit-title {
15899
+ color: rgba(0, 0, 0, 0.65);
15900
+ }
15570
15901
  .customer-label-area-new .customer-label-content .info-tag-p2 .tag-item {
15571
15902
  display: flex;
15572
15903
  width: calc((100% - 20px) / 2);
@@ -15756,12 +16087,15 @@ body {
15756
16087
  .customer-label-area-new .customer-label-content .custom-module-new .dependent-tag {
15757
16088
  width: 100%;
15758
16089
  background: #FAFAFA;
15759
- padding-top: 14px;
16090
+ padding-top: 16px;
15760
16091
  font-weight: 400;
15761
16092
  color: rgba(0, 0, 0, 0.85);
15762
16093
  line-height: 20px;
15763
16094
  margin-bottom: 14px;
15764
16095
  }
16096
+ .customer-label-area-new .customer-label-content .custom-module-new .dependent-tag .tag-item-com {
16097
+ margin-bottom: 0;
16098
+ }
15765
16099
  .customer-label-area-new .customer-label-content .custom-module-new .dependent-tag > span {
15766
16100
  cursor: pointer;
15767
16101
  }
@@ -15778,14 +16112,22 @@ body {
15778
16112
  color: rgba(0, 0, 0, 0.85);
15779
16113
  cursor: pointer;
15780
16114
  }
15781
- .customer-label-area-new .customer-label-content .custom-module-new .common-title-right span {
15782
- padding-right: 13px;
15783
- cursor: pointer;
15784
- font-size: 14px;
15785
- color: rgba(0, 0, 0, 0.45);
16115
+ .customer-label-area-new .customer-label-content .custom-module-new .common-title-right {
16116
+ display: flex;
16117
+ align-items: center;
16118
+ }
16119
+ .customer-label-area-new .customer-label-content .custom-module-new .common-title-right > span {
16120
+ display: inline-block;
16121
+ border-right: 1px solid #E8E8E8;
16122
+ height: 12px;
16123
+ margin-right: 12px;
15786
16124
  }
15787
16125
  .customer-label-area-new .customer-label-content .custom-module-new .common-title-right .newCloud-icon {
16126
+ display: inline-block;
16127
+ margin-right: 12px;
15788
16128
  font-size: 14px;
16129
+ cursor: pointer;
16130
+ color: rgba(0, 0, 0, 0.45);
15789
16131
  }
15790
16132
  .customer-label-area-new .customer-label-content .custom-module-new .common-title-right .active-icon {
15791
16133
  color: var(--shuyunBlue4) !important;
@@ -15795,7 +16137,6 @@ body {
15795
16137
  }
15796
16138
  .customer-label-area-new .customer-label-content .custom-module-new .common-block-info .shop-block {
15797
16139
  margin-bottom: 16px;
15798
- padding-bottom: 8px;
15799
16140
  border-bottom: 1px solid #E8E8E8;
15800
16141
  }
15801
16142
  .customer-label-area-new .customer-label-content .custom-module-new .common-block-info .shop-block:last-child {
@@ -15832,11 +16173,10 @@ body {
15832
16173
  .customer-label-area-new .customer-label-content .custom-module-new .common-block-info-group {
15833
16174
  border-radius: 2px;
15834
16175
  border-bottom: 1px solid #E8E8E8;
15835
- padding: 12px 0 6px 0;
16176
+ padding: 16px 0 6px 0;
15836
16177
  }
15837
16178
  .customer-label-area-new .customer-label-content .custom-module-new .common-block-info-group:last-child {
15838
16179
  border-bottom: none;
15839
- padding: 12px 0px 0px;
15840
16180
  }
15841
16181
  .customer-label-area-new .customer-label-content .custom-module-new .common-block-info-group .info-title {
15842
16182
  font-size: 14px;
@@ -15870,8 +16210,9 @@ body {
15870
16210
  }
15871
16211
  .edit-tag .edit-tag-container {
15872
16212
  display: flex;
15873
- height: 100%;
16213
+ height: calc(100% - 16px - 38px);
15874
16214
  overflow: hidden;
16215
+ margin-top: 16px;
15875
16216
  }
15876
16217
  .edit-tag .edit-tag-container .edit-tag-search-block {
15877
16218
  flex: 0 0 380px;
@@ -16079,10 +16420,6 @@ body {
16079
16420
  color: rgba(0, 0, 0, 0.65);
16080
16421
  line-height: 20px;
16081
16422
  }
16082
- .edit-tag .edit-tag-container .edit-tag-form .age-item-container {
16083
- display: flex;
16084
- align-items: center;
16085
- }
16086
16423
  .edit-tag .edit-tag-container .edit-tag-form .age-item-container .newCloud-form-item:first-child {
16087
16424
  flex: 0 0 295px;
16088
16425
  }
@@ -16099,7 +16436,15 @@ body {
16099
16436
  .edit-tag .edit-tag-container .edit-tag-form .tag-info-value .disable-tag {
16100
16437
  position: absolute;
16101
16438
  top: 16px;
16102
- right: 48px;
16439
+ right: 40px;
16440
+ }
16441
+ .edit-tag .edit-tag-container .edit-tag-form .tag-info-value .disable-tag .disable-tag-span {
16442
+ width: 36px;
16443
+ height: 17px;
16444
+ line-height: 17px;
16445
+ font-size: 12px;
16446
+ color: rgba(0, 0, 0, 0.45);
16447
+ padding-left: 4px;
16103
16448
  }
16104
16449
  .edit-tag .edit-tag-container .edit-tag-form .tag-info-value .remove-tag-value {
16105
16450
  position: absolute;
@@ -16188,11 +16533,14 @@ body {
16188
16533
  .edit-tag .edit-tag-container .edit-tag-form .dependent-wrapper .dependent-instance .instance-content {
16189
16534
  padding: 16px 12px 0 12px;
16190
16535
  }
16191
- .edit-tag .edit-tag-container .edit-tag-form .dependent-wrapper .dependent-instance .instance-content .newCloud-form-item {
16536
+ .edit-tag .edit-tag-container .edit-tag-form .dependent-wrapper .dependent-instance .instance-content .newCloud-form-item:not(:last-child) {
16192
16537
  padding: 0 0 24px 0 !important;
16193
16538
  }
16539
+ .edit-tag .edit-tag-container .edit-tag-form .dependent-wrapper .dependent-instance .instance-content .newCloud-form-item:last-child {
16540
+ padding: 0 0 16px 0 !important;
16541
+ }
16194
16542
  .edit-tag .edit-tag-container .edit-tag-form .dependent-wrapper .dependent-instance .instance-content .newCloud-form-item-label {
16195
- margin-bottom: 8px !important;
16543
+ margin-bottom: 12px !important;
16196
16544
  }
16197
16545
  .edit-tag .edit-tag-container .edit-tag-form .empty {
16198
16546
  display: flex;