cloud-business 0.1.102 → 0.1.103-1

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.
@@ -261,7 +261,7 @@ li {
261
261
  @font-face {
262
262
  font-family: 'cloud-react-icon-font';
263
263
  /* Project id 2990746 */
264
- src: url('//cloud-cdn.shuyun.com/fe-publish-asset/0.0.99/libs/cloud-react/icon/font/iconfont.woff2') format('woff2'), url('//cloud-cdn.shuyun.com/fe-publish-asset/0.0.99/libs/cloud-react/icon/font/iconfont.woff') format('woff'), url('//cloud-cdn.shuyun.com/fe-publish-asset/0.0.99/libs/cloud-react/icon/font/iconfont.ttf') format('truetype');
264
+ src: url('https://cloud-cdn.shuyun.com/fe-publish-asset/0.0.99/libs/cloud-react/icon/font/iconfont.woff2') format('woff2'), url('https://cloud-cdn.shuyun.com/fe-publish-asset/0.0.99/libs/cloud-react/icon/font/iconfont.woff') format('woff'), url('https://cloud-cdn.shuyun.com/fe-publish-asset/0.0.99/libs/cloud-react/icon/font/iconfont.ttf') format('truetype');
265
265
  }
266
266
  .newCloud-icon {
267
267
  font-family: 'cloud-react-icon-font' !important;
@@ -5066,7 +5066,8 @@ input::-webkit-search-cancel-button {
5066
5066
  }
5067
5067
  .newCloud-pagination ul {
5068
5068
  display: flex;
5069
- padding-inline-start: 0;
5069
+ -webkit-padding-start: 0;
5070
+ padding-inline-start: 0;
5070
5071
  }
5071
5072
  .newCloud-pagination ul li {
5072
5073
  min-width: 32px;
@@ -5458,6 +5459,21 @@ input::-webkit-search-cancel-button {
5458
5459
  border-right: 0;
5459
5460
  border-left: 1px solid #e8e8e8;
5460
5461
  }
5462
+ .newCloud-table td.padding-32 {
5463
+ padding-right: 32px;
5464
+ }
5465
+ .newCloud-table td.padding-34 {
5466
+ padding-right: 34px;
5467
+ }
5468
+ .newCloud-table td.padding-54 {
5469
+ padding-right: 54px;
5470
+ }
5471
+ .newCloud-table td.padding-52 {
5472
+ padding-right: 52px;
5473
+ }
5474
+ .newCloud-table td.padding-74 {
5475
+ padding-right: 74px;
5476
+ }
5461
5477
  .newCloud-table tr:not(.newCloud-table-expanded-row):hover td {
5462
5478
  background: #fafafa;
5463
5479
  transition: all 0.3s;
@@ -5663,6 +5679,10 @@ input::-webkit-search-cancel-button {
5663
5679
  }
5664
5680
  .newCloud-table .newCloud-table-config-column {
5665
5681
  min-width: auto;
5682
+ padding-right: 0;
5683
+ }
5684
+ .newCloud-table td.newCloud-table-config-column::after {
5685
+ display: none;
5666
5686
  }
5667
5687
  .newCloud-table .newCloud-table-checkbox-column {
5668
5688
  min-width: auto;
@@ -5739,17 +5759,32 @@ input::-webkit-search-cancel-button {
5739
5759
  .newCloud-table-summary tr td {
5740
5760
  background: #fafafa;
5741
5761
  }
5762
+ .newCloud-table .title-container {
5763
+ display: flex;
5764
+ align-items: center;
5765
+ gap: 6px;
5766
+ }
5767
+ .newCloud-table .title-container.align-right {
5768
+ justify-content: end;
5769
+ }
5742
5770
  .newCloud-table .title-container .sort-icon-container {
5771
+ position: relative;
5772
+ top: -4px;
5743
5773
  display: inline-flex;
5744
5774
  flex-direction: column;
5745
5775
  align-items: center;
5746
5776
  cursor: pointer;
5747
5777
  }
5748
- .newCloud-table .title-container .sort-icon-container:hover:not(.cell-align-right):after {
5778
+ .newCloud-table .title-container .sort-icon-container .sort-up-icon {
5779
+ height: 7px;
5780
+ }
5781
+ .newCloud-table .title-container .sort-icon-container .sort-down-icon {
5782
+ height: 7px;
5783
+ }
5784
+ .newCloud-table .title-container .sort-icon-container:hover:after {
5749
5785
  position: absolute;
5750
- top: 50%;
5751
- transform: translate(0, -50%);
5752
- right: 11px;
5786
+ top: 4px;
5787
+ left: -1px;
5753
5788
  content: '';
5754
5789
  display: inline-block;
5755
5790
  width: 16px;
@@ -5757,10 +5792,6 @@ input::-webkit-search-cancel-button {
5757
5792
  background: #e8e8e8;
5758
5793
  z-index: 0;
5759
5794
  }
5760
- .newCloud-table .title-container .sort-icon-container.cell-align-right .sort-up-icon,
5761
- .newCloud-table .title-container .sort-icon-container.cell-align-right .sort-down-icon {
5762
- right: 0;
5763
- }
5764
5795
  .newCloud-table .title-container .sort-icon-container.sort-asc .sort-up-icon {
5765
5796
  color: var(--shuyunBlue4);
5766
5797
  }
@@ -5769,31 +5800,14 @@ input::-webkit-search-cancel-button {
5769
5800
  }
5770
5801
  .newCloud-table .title-container .sort-icon-container .sort-up-icon,
5771
5802
  .newCloud-table .title-container .sort-icon-container .sort-down-icon {
5772
- position: absolute;
5773
- right: 12px;
5774
5803
  font-size: 14px;
5775
5804
  color: #949494;
5776
5805
  display: inline-block;
5777
5806
  transform: scale(0.9);
5778
5807
  z-index: 1;
5779
5808
  }
5780
- .newCloud-table .title-container .sort-icon-container .sort-up-icon {
5781
- top: calc(50% - 13px);
5782
- }
5783
- .newCloud-table .title-container .sort-icon-container .sort-down-icon {
5784
- top: calc(50% - 6px);
5785
- }
5786
- .newCloud-table .title-container.filter-container .sort-icon-container:hover:not(.cell-align-right):after {
5787
- right: 35px;
5788
- }
5789
- .newCloud-table .title-container.filter-container .sort-icon-container .sort-up-icon,
5790
- .newCloud-table .title-container.filter-container .sort-icon-container .sort-down-icon {
5791
- right: 36px;
5792
- }
5793
5809
  .newCloud-table .title-container .filter-icon {
5794
- position: absolute;
5795
- right: 14px;
5796
- top: 13px;
5810
+ height: 17px;
5797
5811
  cursor: pointer;
5798
5812
  color: rgba(0, 0, 0, 0.45);
5799
5813
  }
@@ -5808,11 +5822,15 @@ input::-webkit-search-cancel-button {
5808
5822
  align-items: center;
5809
5823
  }
5810
5824
  .newCloud-table .title-with-tip .title-tip-icon {
5811
- margin: 0 4px;
5825
+ height: 17px;
5812
5826
  color: rgba(0, 0, 0, 0.25);
5813
5827
  }
5828
+ .newCloud-table .title-with-tip.title-with-tip-right {
5829
+ gap: 4px;
5830
+ }
5814
5831
  .newCloud-table .title-with-tip.title-with-tip-left {
5815
5832
  flex-direction: row-reverse;
5833
+ gap: 4px;
5816
5834
  }
5817
5835
  .newCloud-table-sticky-holder {
5818
5836
  position: sticky;
@@ -6141,19 +6159,27 @@ input::-webkit-search-cancel-button {
6141
6159
  display: none;
6142
6160
  }
6143
6161
  .newCloud-table-tooltip {
6144
- max-width: 300px;
6162
+ min-width: 236px;
6163
+ max-height: 466px;
6164
+ padding: 16px;
6145
6165
  }
6146
6166
  .newCloud-table-tooltip-content {
6147
6167
  display: flex;
6148
- flex-wrap: wrap;
6168
+ flex-direction: column;
6169
+ gap: 12px;
6149
6170
  }
6150
6171
  .newCloud-table-tooltip-content > li {
6151
6172
  width: 114px;
6152
- padding: 4px 10px;
6153
6173
  white-space: nowrap;
6154
6174
  overflow: hidden;
6155
6175
  text-overflow: ellipsis;
6156
6176
  }
6177
+ .newCloud-table-tooltip-content > li .newCloud-checkbox-text {
6178
+ font-size: 14px;
6179
+ }
6180
+ .newCloud-table-tooltip::after {
6181
+ display: none;
6182
+ }
6157
6183
  .newCloud-table-drag-line {
6158
6184
  border: 1px solid var(--shuyunBlue4) !important;
6159
6185
  }
@@ -7038,11 +7064,10 @@ input::-webkit-search-cancel-button {
7038
7064
  position: fixed;
7039
7065
  background: white;
7040
7066
  transition: top 500ms, right 500ms, bottom 500ms, left 500ms;
7041
- z-index: -1;
7067
+ z-index: 1010;
7042
7068
  }
7043
7069
  .newCloud-drawer1.show {
7044
7070
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1), 0px 2px 8px 0px rgba(0, 0, 0, 0.04);
7045
- z-index: 1010;
7046
7071
  }
7047
7072
  .newCloud-drawer1.top {
7048
7073
  top: 0;
@@ -8331,6 +8356,163 @@ input::-webkit-search-cancel-button {
8331
8356
  pointer-events: none;
8332
8357
  }
8333
8358
 
8359
+ /* 不要在此引入normalize.less及其他放置公用无需编译的css */
8360
+ /* 不要在此引入animation.less及其他放置公用无需编译的css */
8361
+ .newCloud-notification {
8362
+ display: flex;
8363
+ align-items: baseline;
8364
+ gap: 9px;
8365
+ padding: 20px;
8366
+ background: #FFFFFF;
8367
+ box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1), 0 0 1px 0 rgba(0, 0, 0, 0.3);
8368
+ border-radius: 12px;
8369
+ }
8370
+ .newCloud-notification.small {
8371
+ border-radius: 3px;
8372
+ }
8373
+ .newCloud-notification.middle {
8374
+ border-radius: 6px;
8375
+ }
8376
+ .newCloud-notification.light-theme {
8377
+ color: white;
8378
+ }
8379
+ .newCloud-notification.light-theme .info-icon {
8380
+ color: white!important;
8381
+ }
8382
+ .newCloud-notification.light-theme header,
8383
+ .newCloud-notification.light-theme main,
8384
+ .newCloud-notification.light-theme header i.close-icon {
8385
+ color: white;
8386
+ }
8387
+ .newCloud-notification-content {
8388
+ flex: 1;
8389
+ }
8390
+ .newCloud-notification .info-icon {
8391
+ position: relative;
8392
+ top: 2px;
8393
+ font-size: 20px;
8394
+ }
8395
+ .newCloud-notification .info-icon.info {
8396
+ color: #496BF5;
8397
+ }
8398
+ .newCloud-notification .info-icon.success {
8399
+ color: #21BA45;
8400
+ }
8401
+ .newCloud-notification .info-icon.fail {
8402
+ color: #E74949;
8403
+ }
8404
+ .newCloud-notification .info-icon.warn {
8405
+ color: #FD830A;
8406
+ }
8407
+ .newCloud-notification header {
8408
+ display: flex;
8409
+ align-items: center;
8410
+ justify-content: space-between;
8411
+ height: 24px;
8412
+ line-height: 24px;
8413
+ font-size: 16px;
8414
+ font-weight: 500;
8415
+ color: rgba(0, 0, 0, 0.85);
8416
+ margin-bottom: 8px;
8417
+ }
8418
+ .newCloud-notification header i.close-icon {
8419
+ font-size: 16px;
8420
+ color: #D8D8D8;
8421
+ cursor: pointer;
8422
+ }
8423
+ .newCloud-notification main {
8424
+ line-height: 20px;
8425
+ font-size: 14px;
8426
+ font-weight: 400;
8427
+ color: rgba(0, 0, 0, 0.65);
8428
+ overflow: hidden;
8429
+ text-overflow: ellipsis;
8430
+ display: -webkit-box;
8431
+ -webkit-line-clamp: 3;
8432
+ -webkit-box-orient: vertical;
8433
+ }
8434
+ .newCloud-notification footer {
8435
+ display: flex;
8436
+ align-items: center;
8437
+ flex-direction: row-reverse;
8438
+ gap: 16px;
8439
+ margin-top: 20px;
8440
+ }
8441
+
8442
+ /* 不要在此引入normalize.less及其他放置公用无需编译的css */
8443
+ /* 不要在此引入animation.less及其他放置公用无需编译的css */
8444
+ .newCloud-notification-container {
8445
+ z-index: 1100;
8446
+ position: fixed;
8447
+ }
8448
+ .newCloud-notification-container .newCloud-notification-wrapper {
8449
+ position: absolute;
8450
+ width: 360px;
8451
+ transition: all 300ms;
8452
+ margin-bottom: 20px;
8453
+ }
8454
+ .newCloud-notification-container .newCloud-notification-wrapper.fade-out {
8455
+ opacity: 0;
8456
+ }
8457
+ .newCloud-notification-container.top-left {
8458
+ top: 20px;
8459
+ }
8460
+ .newCloud-notification-container.top-left .newCloud-notification-wrapper {
8461
+ left: -360px;
8462
+ }
8463
+ .newCloud-notification-container.top-left .newCloud-notification-wrapper.fade-in {
8464
+ left: 20px;
8465
+ }
8466
+ .newCloud-notification-container.top-right {
8467
+ top: 20px;
8468
+ right: 0;
8469
+ }
8470
+ .newCloud-notification-container.top-right .newCloud-notification-wrapper {
8471
+ right: -360px;
8472
+ }
8473
+ .newCloud-notification-container.top-right .newCloud-notification-wrapper.fade-in {
8474
+ right: 20px;
8475
+ }
8476
+ .newCloud-notification-container.bottom-left {
8477
+ bottom: 114px;
8478
+ }
8479
+ .newCloud-notification-container.bottom-left .newCloud-notification-wrapper {
8480
+ left: -360px;
8481
+ }
8482
+ .newCloud-notification-container.bottom-left .newCloud-notification-wrapper.fade-in {
8483
+ left: 20px;
8484
+ }
8485
+ .newCloud-notification-container.bottom-right {
8486
+ bottom: 114px;
8487
+ right: 20px;
8488
+ }
8489
+ .newCloud-notification-container.bottom-right .newCloud-notification-wrapper {
8490
+ right: -360px;
8491
+ }
8492
+ .newCloud-notification-container.bottom-right .newCloud-notification-wrapper.fade-in {
8493
+ right: 0;
8494
+ }
8495
+ .newCloud-notification-container.top {
8496
+ top: 20px;
8497
+ left: calc(50% - 360px / 2);
8498
+ }
8499
+ .newCloud-notification-container.top .newCloud-notification-wrapper {
8500
+ top: -114px;
8501
+ }
8502
+ .newCloud-notification-container.top .newCloud-notification-wrapper.fade-in {
8503
+ top: 0!important;
8504
+ }
8505
+ .newCloud-notification-container.bottom {
8506
+ bottom: 0;
8507
+ left: calc(50% - 360px / 2);
8508
+ }
8509
+ .newCloud-notification-container.bottom .newCloud-notification-wrapper {
8510
+ bottom: -114px;
8511
+ }
8512
+ .newCloud-notification-container.bottom .newCloud-notification-wrapper.fade-in {
8513
+ bottom: 0!important;
8514
+ }
8515
+
8334
8516
  /* 不要在此引入normalize.less及其他放置公用无需编译的css */
8335
8517
  /* 不要在此引入animation.less及其他放置公用无需编译的css */
8336
8518
  .newCloud-breadcrumbs {
@@ -11093,6 +11275,16 @@ body {
11093
11275
  width: 10px;
11094
11276
  }
11095
11277
 
11278
+ body {
11279
+ margin: 0;
11280
+ --shuyunBlue1: #EDF6FF;
11281
+ --shuyunBlue2: #CCE6FF;
11282
+ --shuyunBlue3: #72B0ED;
11283
+ --shuyunBlue4: #0066CC;
11284
+ --shuyunBlue5: #004CA3;
11285
+ --shuyunBlue6: #003775;
11286
+ --shuyunBlue7: #002147;
11287
+ }
11096
11288
  .goods-selector-pro-form {
11097
11289
  display: flex;
11098
11290
  flex-flow: row wrap;
@@ -11223,13 +11415,27 @@ body {
11223
11415
  display: inline-block;
11224
11416
  margin-left: 10px;
11225
11417
  text-align: center;
11226
- color: #0083BA;
11227
- border: 1px solid #0083BA;
11418
+ color: #0083ba;
11419
+ border: 1px solid #0083ba;
11228
11420
  border-radius: 50%;
11229
11421
  cursor: pointer;
11230
11422
  line-height: 10px;
11231
11423
  font-size: 12px !important;
11232
11424
  }
11425
+ .add-condition .common-disabled-btn {
11426
+ width: 12px;
11427
+ height: 12px;
11428
+ display: inline-block;
11429
+ margin-left: 10px;
11430
+ text-align: center;
11431
+ color: #ddd !important;
11432
+ border: 1px solid #ddd !important;
11433
+ border-radius: 50%;
11434
+ line-height: 10px;
11435
+ font-size: 12px !important;
11436
+ pointer-events: none;
11437
+ cursor: not-allowed;
11438
+ }
11233
11439
 
11234
11440
  .goods-failure-tip {
11235
11441
  width: 154px;
@@ -18250,7 +18456,7 @@ body {
18250
18456
  overflow: visible;
18251
18457
  }
18252
18458
  .add-goods-btn {
18253
- width: 380px;
18459
+ width: 410px;
18254
18460
  height: 32px;
18255
18461
  display: inline-block;
18256
18462
  line-height: 32px;
@@ -18329,6 +18535,9 @@ body {
18329
18535
  .newCloud-goods-selector-pro-table-container .newCloud-table td {
18330
18536
  white-space: normal !important;
18331
18537
  }
18538
+ .newCloud-goods-selector-pro-table-container .newCloud-table thead tr th:first-child .newCloud-checkbox-wrapper {
18539
+ display: none !important;
18540
+ }
18332
18541
  .newCloud-goods-selector-pro-table-container .newCloud-table-two-level-tree .newCloud-table-row-level-1 td.newCloud-table-row-expand-column + td {
18333
18542
  padding-left: 14px !important;
18334
18543
  }
@@ -19361,312 +19570,6 @@ body {
19361
19570
  -webkit-font-smoothing: antialiased;
19362
19571
  -moz-osx-font-smoothing: grayscale;
19363
19572
  }
19364
- .icon-xinxi:before {
19365
- content: "\e6b5";
19366
- }
19367
- .icon-jixuzhihang:before {
19368
- content: "\e6a6";
19369
- }
19370
- .icon-zanting:before {
19371
- content: "\e6ae";
19372
- }
19373
- .icon-zhengshizhihang:before {
19374
- content: "\e6b2";
19375
- }
19376
- .icon-zhongzhizhihang:before {
19377
- content: "\e6b4";
19378
- }
19379
- .icon-suoxiao:before {
19380
- content: "\e6a7";
19381
- }
19382
- .icon-quanping:before {
19383
- content: "\e6b3";
19384
- }
19385
- .icon-shenpi:before {
19386
- content: "\e6b1";
19387
- }
19388
- .icon-jilu:before {
19389
- content: "\e6a2";
19390
- }
19391
- .icon-chexiao:before {
19392
- content: "\e6a3";
19393
- }
19394
- .icon-fanhui:before {
19395
- content: "\e6a4";
19396
- }
19397
- .icon-huifu:before {
19398
- content: "\e6a5";
19399
- }
19400
- .icon-fasong:before {
19401
- content: "\e6a8";
19402
- }
19403
- .icon-chakan:before {
19404
- content: "\e6a9";
19405
- }
19406
- .icon-moban:before {
19407
- content: "\e6aa";
19408
- }
19409
- .icon-kuabu:before {
19410
- content: "\e6ab";
19411
- }
19412
- .icon-xia:before {
19413
- content: "\e6ac";
19414
- }
19415
- .icon-sousuo:before {
19416
- content: "\e6ad";
19417
- }
19418
- .icon-xiazai:before {
19419
- content: "\e6af";
19420
- }
19421
- .icon-piliang:before {
19422
- content: "\e6b0";
19423
- }
19424
- .icon-moren:before {
19425
- content: "\e69d";
19426
- }
19427
- .icon-douyin1:before {
19428
- content: "\e69e";
19429
- }
19430
- .icon-offline1:before {
19431
- content: "\e69f";
19432
- }
19433
- .icon-weimob:before {
19434
- content: "\e6a1";
19435
- }
19436
- .icon-xiaoshangdian:before {
19437
- content: "\e69a";
19438
- }
19439
- .icon-vip:before {
19440
- content: "\e69c";
19441
- }
19442
- .icon-group-fill:before {
19443
- content: "\e786";
19444
- }
19445
- .icon-move1:before {
19446
- content: "\e761";
19447
- }
19448
- .icon-undo:before {
19449
- content: "\e739";
19450
- }
19451
- .icon-list:before {
19452
- content: "\e7863";
19453
- }
19454
- .icon-jd02:before {
19455
- content: "\e663";
19456
- }
19457
- .icon-jd01:before {
19458
- content: "\e664";
19459
- }
19460
- .icon-jd03:before {
19461
- content: "\e666";
19462
- }
19463
- .icon-kuaishou01:before {
19464
- content: "\e667";
19465
- }
19466
- .icon-kuaishou02:before {
19467
- content: "\e668";
19468
- }
19469
- .icon-kuaishou03:before {
19470
- content: "\e669";
19471
- }
19472
- .icon-mogu03:before {
19473
- content: "\e66a";
19474
- }
19475
- .icon-mogu02:before {
19476
- content: "\e66b";
19477
- }
19478
- .icon-mogu01:before {
19479
- content: "\e66d";
19480
- }
19481
- .icon-suning01:before {
19482
- content: "\e66e";
19483
- }
19484
- .icon-suning02:before {
19485
- content: "\e66f";
19486
- }
19487
- .icon-suning03:before {
19488
- content: "\e670";
19489
- }
19490
- .icon-taobao01:before {
19491
- content: "\e671";
19492
- }
19493
- .icon-taobao03:before {
19494
- content: "\e672";
19495
- }
19496
- .icon-taobao02:before {
19497
- content: "\e673";
19498
- }
19499
- .icon-icon-douyin03:before {
19500
- content: "\e674";
19501
- }
19502
- .icon-douyin:before {
19503
- content: "\e675";
19504
- }
19505
- .icon-icon-douyin:before {
19506
- content: "\e676";
19507
- }
19508
- .icon-wechat01:before {
19509
- content: "\e677";
19510
- }
19511
- .icon-wechat03:before {
19512
- content: "\e678";
19513
- }
19514
- .icon-wechat02:before {
19515
- content: "\e679";
19516
- }
19517
- .icon-weimob03:before {
19518
- content: "\e67a";
19519
- }
19520
- .icon-icon-weimob1:before {
19521
- content: "\e67b";
19522
- }
19523
- .icon-icon-weimob:before {
19524
- content: "\e67c";
19525
- }
19526
- .icon-xianxia03:before {
19527
- content: "\e67d";
19528
- }
19529
- .icon-xianxia01:before {
19530
- content: "\e67f";
19531
- }
19532
- .icon-xianxia02:before {
19533
- content: "\e681";
19534
- }
19535
- .icon-xiaohongshu01:before {
19536
- content: "\e682";
19537
- }
19538
- .icon-xiaohongsh03:before {
19539
- content: "\e683";
19540
- }
19541
- .icon-xiaohongshu02:before {
19542
- content: "\e684";
19543
- }
19544
- .icon-zan03:before {
19545
- content: "\e685";
19546
- }
19547
- .icon-zan01:before {
19548
- content: "\e686";
19549
- }
19550
- .icon-zan02:before {
19551
- content: "\e687";
19552
- }
19553
- .icon-gongzhonghao:before {
19554
- content: "\e689";
19555
- }
19556
- .icon-xiaochengxu:before {
19557
- content: "\e68a";
19558
- }
19559
- .icon-qiyeweixin:before {
19560
- content: "\e68b";
19561
- }
19562
- .icon-shipinhao:before {
19563
- content: "\e68c";
19564
- }
19565
- .icon-dangdang01:before {
19566
- content: "\e68d";
19567
- }
19568
- .icon-dangdang02:before {
19569
- content: "\e68e";
19570
- }
19571
- .icon-dangdang03:before {
19572
- content: "\e690";
19573
- }
19574
- .icon-pinduoduo01:before {
19575
- content: "\e691";
19576
- }
19577
- .icon-pinduoduo02:before {
19578
- content: "\e692";
19579
- }
19580
- .icon-pinduoduo03:before {
19581
- content: "\e693";
19582
- }
19583
- .icon-zidingyi01:before {
19584
- content: "\e694";
19585
- }
19586
- .icon-zidingyi03:before {
19587
- content: "\e695";
19588
- }
19589
- .icon-zidingyi02:before {
19590
- content: "\e696";
19591
- }
19592
- .icon-a-1haodian02:before {
19593
- content: "\e697";
19594
- }
19595
- .icon-a-1haodian03:before {
19596
- content: "\e698";
19597
- }
19598
- .icon-a-1haodian01:before {
19599
- content: "\e699";
19600
- }
19601
- .icon-offline:before {
19602
- content: "\e747";
19603
- }
19604
- .icon-suning:before {
19605
- content: "\e76e";
19606
- }
19607
- .icon-jos:before {
19608
- content: "\e76f";
19609
- }
19610
- .icon-taobao:before {
19611
- content: "\e771";
19612
- }
19613
- .icon-stop:before {
19614
- content: "\e7ed";
19615
- }
19616
- .icon-executing:before {
19617
- content: "\e7ee";
19618
- }
19619
- .icon-youzan:before {
19620
- content: "\e6d0";
19621
- }
19622
- .icon-error:before {
19623
- content: "\e7ef";
19624
- }
19625
- .icon-all1:before {
19626
- content: "\e612";
19627
- }
19628
- .icon-dingdan1:before {
19629
- content: "\e6ee";
19630
- }
19631
- .icon-money:before {
19632
- content: "\e611";
19633
- }
19634
- .icon-count:before {
19635
- content: "\e626";
19636
- }
19637
- .icon-ticket:before {
19638
- content: "\e680";
19639
- }
19640
- .icon-man:before {
19641
- content: "\e665";
19642
- }
19643
- .icon-dialogfill:before {
19644
- content: "\e67e";
19645
- }
19646
- .icon-tihuantupian:before {
19647
- content: "\e66c";
19648
- }
19649
- .icon-arrow:before {
19650
- content: "\e6a0";
19651
- }
19652
- .icon-new-campaign:before {
19653
- content: "\e629";
19654
- }
19655
- .icon-new-template:before {
19656
- content: "\e60c";
19657
- }
19658
- .icon-test-execute:before {
19659
- content: "\e7ec";
19660
- }
19661
- .icon-gaishuai:before {
19662
- content: "\e60d";
19663
- }
19664
- .icon-qiehuan1:before {
19665
- content: "\e731";
19666
- }
19667
- .icon-flag-fill:before {
19668
- content: "\e785";
19669
- }
19670
19573
  .icon-a-webpage:before {
19671
19574
  content: "\e7861";
19672
19575
  }
@@ -19676,162 +19579,6 @@ body {
19676
19579
  .icon-applets-line:before {
19677
19580
  content: "\e788";
19678
19581
  }
19679
- .icon-video-line:before {
19680
- content: "\e7b1";
19681
- }
19682
- .icon-success1:before {
19683
- content: "\e723";
19684
- }
19685
- .icon-zanting2:before {
19686
- content: "\e620";
19687
- }
19688
- .icon-resume-execute:before {
19689
- content: "\e69b";
19690
- }
19691
- .icon-C3:before {
19692
- content: "\e61c";
19693
- }
19694
- .icon-C2:before {
19695
- content: "\e61d";
19696
- }
19697
- .icon-C1:before {
19698
- content: "\e61f";
19699
- }
19700
- .icon-huobao:before {
19701
- content: "\e6be";
19702
- }
19703
- .icon-jiazai:before {
19704
- content: "\e628";
19705
- }
19706
- .icon-execute-stop:before {
19707
- content: "\e7eb";
19708
- }
19709
- .icon-pingjunzhisuanzi:before {
19710
- content: "\e610";
19711
- }
19712
- .icon-jiantouyou:before {
19713
- content: "\e774";
19714
- }
19715
- .icon-jiantouzuo:before {
19716
- content: "\e775";
19717
- }
19718
- .icon-wait:before {
19719
- content: "\e60f";
19720
- }
19721
- .icon-success:before {
19722
- content: "\ebe5";
19723
- }
19724
- .icon-finish:before {
19725
- content: "\e6f3";
19726
- }
19727
- .icon-shalou:before {
19728
- content: "\e600";
19729
- }
19730
- .icon-jinyong:before {
19731
- content: "\e60e";
19732
- }
19733
- .icon-cuowu:before {
19734
- content: "\e61e";
19735
- }
19736
- .icon-A1:before {
19737
- content: "\e602";
19738
- }
19739
- .icon-B1:before {
19740
- content: "\e603";
19741
- }
19742
- .icon-B3:before {
19743
- content: "\e604";
19744
- }
19745
- .icon-A5:before {
19746
- content: "\e605";
19747
- }
19748
- .icon-A2:before {
19749
- content: "\e606";
19750
- }
19751
- .icon-A6:before {
19752
- content: "\e607";
19753
- }
19754
- .icon-B2:before {
19755
- content: "\e608";
19756
- }
19757
- .icon-A4:before {
19758
- content: "\e609";
19759
- }
19760
- .icon-A3:before {
19761
- content: "\e60a";
19762
- }
19763
- .icon-remark:before {
19764
- content: "\e68f";
19765
- }
19766
- .icon-shangchuan1:before {
19767
- content: "\e6c5";
19768
- }
19769
- .icon-report:before {
19770
- content: "\e6c6";
19771
- }
19772
- .icon-zhongshi-:before {
19773
- content: "\e6c8";
19774
- }
19775
- .icon-execute:before {
19776
- content: "\e6c9";
19777
- }
19778
- .icon-full-screen:before {
19779
- content: "\e6ca";
19780
- }
19781
- .icon-return-right:before {
19782
- content: "\ebe4";
19783
- }
19784
- .icon-all:before {
19785
- content: "\e6e6";
19786
- }
19787
- .icon-question-mark:before {
19788
- content: "\e601";
19789
- }
19790
- .icon-dele:before {
19791
- content: "\e688";
19792
- }
19793
- .icon-view-list:before {
19794
- content: "\e65a";
19795
- }
19796
- .icon-view-chart:before {
19797
- content: "\e65d";
19798
- }
19799
- .icon-add:before {
19800
- content: "\e74a";
19801
- }
19802
- .icon-reduce:before {
19803
- content: "\e74b";
19804
- }
19805
- .icon-export1:before {
19806
- content: "\e719";
19807
- }
19808
- .icon-pause:before {
19809
- content: "\e6c1";
19810
- }
19811
- .icon-return:before {
19812
- content: "\e6cd";
19813
- }
19814
- .icon-submit-approve:before {
19815
- content: "\e756";
19816
- }
19817
- .icon-approve:before {
19818
- content: "\e6c3";
19819
- }
19820
- .icon-exit-screen-full:before {
19821
- content: "\e6c4";
19822
- }
19823
- .icon-jinggao:before {
19824
- content: "\e64f";
19825
- }
19826
- .icon-execute-stop1:before {
19827
- content: "\e7862";
19828
- }
19829
- .icon-close:before {
19830
- content: "\e60b";
19831
- }
19832
- .icon-search:before {
19833
- content: "\e615";
19834
- }
19835
19582
 
19836
19583
  .mart {
19837
19584
  background-color: #fff;