Blame view

src/styles/jgPublic.scss 23.6 KB
任超 committed
1
@import '~@/styles/jgElement-ui.scss';
任超 committed
2

任超 committed
3 4 5 6 7
.el-menu--horizontal {
  display: flex;
  background: none !important;
}

xiaomiao committed
8
// 列表样式
任超 committed
9
.tableClass {
任超 committed
10
  .el-table {
任超 committed
11 12 13
    border: none !important;
    border-radius: 0 !important;
    background-color: rgba(0, 0, 0, 0);
任超 committed
14

任超 committed
15 16
    .el-table__header-wrapper {
      border-right: none;
任超 committed
17

任超 committed
18
    }
任超 committed
19

任超 committed
20 21 22 23
    .el-table__row .cell {
      color: #8DEAF9 !important;
      font-weight: 100 !important;
    }
任超 committed
24

任超 committed
25 26 27
    .el-table__row {
      background: rgba(0, 0, 0, 0) !important;
    }
任超 committed
28

任超 committed
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
    thead {
      background: #073781;
      border-radius: 2px;
      height: 42px;

      & th {
        //inherit:规定应该从父元素继承 background-color 属性的设置。
        //transparent:默认。背景颜色为透明。
        // background-color: inherit !important;
        background-color: transparent;
        color: #02D9FD;
      }

      & tr {
        // background-color: inherit !important;
        background-color: transparent;
      }
任超 committed
46
    }
任超 committed
47
  }
任超 committed
48 49
}

任超 committed
50
//*****start*通用表单查询条件,列表样式******//
任超 committed
51 52 53 54 55
.bgc {
  box-shadow: inset 0px 0px 8px 0px rgba(255, 255, 255, 0.5);
  background-color: rgba(0, 0, 0, 0);
}

56 57 58 59 60 61
//input
.el-input__inner {
  color: #FFFFFF !important;
  padding: 0 7px !important;
}

xiaomiao committed
62 63


xiaomiao committed
64
// 查询表单样式
任超 committed
65
.from-clues {
任超 committed
66 67
  height: 100%;
  width: 100%;
任超 committed
68
  // min-width: 1280px;
任超 committed
69 70 71 72 73
  box-sizing: border-box;
  overflow-x: hidden;
  padding: 2px;

  &-header {
任超 committed
74
    width: 100%;
任超 committed
75
    padding: 5px 30px 20px 24px;
任超 committed
76
    box-sizing: border-box;
任超 committed
77 78 79
    background: url("~@/image/formHeader.png") no-repeat;
    background-size: 100% 100%;
    margin-top: 15px;
任超 committed
80

任超 committed
81
    .el-form-item__label {
任超 committed
82
      color: #E3F1FF;
任超 committed
83 84
    }

xiaomiao committed
85 86 87 88 89 90 91 92


    /deep/.el-icon-arrow-right {
      color: rgb(228, 20, 20) !important;
    }



任超 committed
93
    .el-input__inner {
任超 committed
94 95
      background: #07388B;
      border-radius: 2px;
xiaomiao committed
96
      color: #E3F1FF !important;
任超 committed
97 98
      border: 1px solid #6BC1FC;
    }
任超 committed
99 100

    .el-input__inner::placeholder {
任超 committed
101
      color: #92BEDC !important;
任超 committed
102
    }
任超 committed
103
  }
任超 committed
104

xiaomiao committed
105 106 107 108 109 110 111 112 113
  .el-dialog__close {
    font-size: 0;
  }

  .el-form-item {
    display: flex;
    width: 100%;
  }

任超 committed
114 115 116 117 118 119
  .advanced-search {
    display: flex;
    font-size: 12px;
    flex-wrap: wrap;
    padding-top: 5px;
    height: 30px;
任超 committed
120

任超 committed
121 122 123 124
    span {
      display: flex;
      align-items: center;
    }
任超 committed
125

任超 committed
126 127 128 129
    i {
      color: $light-blue;
      margin-left: 5px;
      cursor: pointer;
任超 committed
130 131
    }

任超 committed
132 133 134 135 136 137 138 139 140 141 142 143
    ul {
      display: flex;
      align-items: center;

      li {
        color: $light-blue;
        border: 1px solid $light-blue;
        border-radius: 10px;
        padding: 2px 8px;
        line-height: 16px;
      }
    }
任超 committed
144

任超 committed
145 146 147 148
    .clean-btn {
      margin-left: 10px;
    }
  }
任超 committed
149

任超 committed
150 151 152 153 154 155 156 157 158
  &-content {
    width: 100%;
    box-sizing: border-box;
    margin-top: 15px;
    background: url("~@/image/formContent.png") no-repeat;
    background-size: 100% 100%;
    padding: 22px 42px 20px;
    //修改表头的背景颜色横向渐变色
    @extend .tableClass;
任超 committed
159

任超 committed
160
    .el-pagination__total {
任超 committed
161 162
      color: #FFFFFF;
    }
任超 committed
163

任超 committed
164
    .el-pagination {
任超 committed
165 166 167 168 169
      .el-input__inner {
        color: #FFFFFF;
        border: none;
        @extend .bgc;
      }
任超 committed
170

任超 committed
171 172 173 174 175 176 177 178 179 180 181
      .el-pager li:not(.disabled).active {
        box-shadow: inset 0px 0px 12px 0px #02D9FD;
        border-radius: 1px;
        border: 1px solid #02D9FD;
        background-color: rgba(0, 0, 0, 0);
      }

      .el-pager li {
        @extend .bgc;
        color: #FFFFFF;
      }
任超 committed
182
    }
任超 committed
183
  }
任超 committed
184 185 186



任超 committed
187 188 189 190 191 192
  .el-form--inline .el-form-item {
    width: auto;
    margin-right: 0px;

    .el-form-item__content {
      width: auto;
任超 committed
193
    }
任超 committed
194 195
  }

xiaomiao committed
196 197
  .el-table__expand-icon {
    color: #8DEAF9;
任超 committed
198

xiaomiao committed
199
  }
任超 committed
200 201 202 203

  .el-form-item--small.el-form-item {
    margin-bottom: 0px;
  }
任超 committed
204 205
}

206 207 208 209 210 211
.echarts-box {
  display: flex;
  justify-content: center;
  height: calc(100vh - 260px);
}

212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
.complex-header {
  .el-table--border th.el-table__cell {
    border-bottom: 1px solid #458ACF !important;
  }

  .el-table--border .el-table__cell {
    border-right: 1px solid #458ACF !important;
  }

  .el-table--group,
  .el-table--border {
    border: 1px solid #458ACF !important;
  }
}

任超 committed
227 228 229 230 231
.el-pagination.is-background .btn-prev,
.el-pagination.is-background .btn-next {
  @extend .bgc;
  color: #FFFFFF;
}
任超 committed
232

233 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 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
// 通过 入库 样式
.adopt,
.success {
  color: #00FAA8;
  position: relative;
}

.warehousing {
  color: #FFCA57;
  position: relative;
}

.fail {
  color: #F56C6C;
  position: relative;
}


.adopt::before {
  position: absolute;
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  left: -15px;
  top: 5px;
  background: #00FAA8;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.2);
}

.warehousing::before {
  position: absolute;
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  left: -15px;
  top: 4px;
  background: #FF9933;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.2);
}

// 成功 失败
.success::before {
  position: absolute;
  content: '√';
  display: block;
  width: 0;
  height: 8px;
  left: -10px;
  top: 2px;
  background: #00FAA8;
  color: #00FAA8;
}

.fail {
  color: #FF7962;
  position: relative;
}

.fail::before {
  position: absolute;
  content: '!';
  display: block;
  width: 0;
  height: 8px;
  left: -10px;
  top: 2px;
  background: #FF7962;
  color: #FF7962;
}

任超 committed
307

任超 committed
308
//*****end*通用表单查询条件,列表样式******//
任超 committed
309
.el-range-separator {
任超 committed
310
  line-height: 28px !important;
任超 committed
311 312 313
}

.width200px {
任超 committed
314
  width: 200px;
任超 committed
315 316 317
}

.width300px {
任超 committed
318
  width: 300px;
任超 committed
319 320 321 322
}


.slxx_title {
任超 committed
323 324 325 326 327 328 329 330
  border-bottom: 1px solid $borderColor;
  padding-left: 10px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 500;
  color: #4a4a4a;
任超 committed
331 332 333 334
}

// 搜索框按钮的位置
.btnColRight {
任超 committed
335 336
  box-sizing: border-box;
  text-align: right;
xiaomiao committed
337 338 339 340 341 342 343 344 345


  .is-disabled,
  .is-disabled:hover,
  .is-disabled:focus {
    cursor: wait;
    background: url("../image/btn.png") no-repeat 0 0;
    background-size: cover;
  }
xiaomiao committed
346
}
任超 committed
347

xiaomiao committed
348

xiaomiao committed
349
// 角色管理人员菜单配置弹框样式
任超 committed
350
.roleconfiguration {
任超 committed
351
  .el-dialog__body {
xiaomiao committed
352 353 354 355
    display: flex;
    flex-direction: column;
  }

任超 committed
356
  .el-tabs {
xiaomiao committed
357 358 359 360
    color: #cef8ff;
  }

  .sjmx {
任超 committed
361
    .el-tabs__item {
xiaomiao committed
362 363 364 365 366
      height: 50px;
      padding-top: 6px;
    }
  }

任超 committed
367
  .el-tabs__item {
xiaomiao committed
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
    color: #cef8ff !important;

    display: flex;
    flex-direction: row;
    justify-content: center;
    background: url("~@/image/tabitem.png") no-repeat;
    background-size: 100% 100%;
    border: none !important;
  }

  .obligee-item-name {
    background: #05275b;
    color: #ffffff;
    background: url("~@/image/itembg.png") no-repeat;
    background-size: 100% 100%;
  }

任超 committed
385
  .el-tabs__nav-scroll {
xiaomiao committed
386 387 388
    background: none;
  }

任超 committed
389
  .el-tabs__nav {
xiaomiao committed
390 391 392 393
    display: flex;
    border: none !important;
  }

任超 committed
394
  .el-tabs__item.is-top {
xiaomiao committed
395 396 397 398 399
    border: 1px solid #dfe4ed;
    border-top: 1px solid #dfe4ed;
    border-bottom: 1px solid transparent;
  }

任超 committed
400
  .el-tabs__item.is-top:not(:last-child) {
xiaomiao committed
401 402 403
    margin-right: 5px;
  }

任超 committed
404
  .el-tabs__item.is-top {
xiaomiao committed
405 406 407
    background-color: none !important;
  }

任超 committed
408
  .el-tabs__item.is-active {
xiaomiao committed
409 410 411 412 413 414 415 416 417 418 419 420 421 422
    background: url("~@/image/tabitemse.png") no-repeat;
    background-size: 100% 100%;
  }

  .success-images {
    width: 30px;
    height: 30px;
    position: relative;
    top: 10px;
    right: 3px;
  }

  .tab-pane-item {
    line-height: 20px;
423
    color: #FFFFFF;
xiaomiao committed
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442

    p {
      text-align: center;
    }
  }

  .edit-content {
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 1px;
    margin-bottom: 10px;
    border-top: none;
  }



  .el-dialog__wrapper {
    overflow: hidden;
  }
任超 committed
443

任超 committed
444
  .el-table {
xiaomiao committed
445
    background: none;
任超 committed
446

xiaomiao committed
447 448 449 450
    th.el-table__cell {
      background-color: #073781;
      color: #02d9fd;
    }
任超 committed
451

xiaomiao committed
452 453 454 455 456 457 458 459
    tr {
      background: none;

      td {
        color: white;
      }
    }
  }
460
}
任超 committed
461 462 463 464 465 466 467 468 469 470 471 472 473 474

// 面包屑
.breadcrumb {
  width: 80%;
  text-indent: 10px;
  background: url("~@/image/breadcrumb.png") no-repeat;
  background-size: 100% 100%;
  line-height: 32px;
  height: 32px;
  padding-left: 35px;
  margin: 8px 0 10px 6px;
  color: #CEF8FF;
}

xiaomiao committed
475 476 477 478 479 480
// .el-icon-arrow-right {
//   width: 2px;
//   position: relative;
//   left: 10px;
//   color: #FFFFFF;
// }
任超 committed
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507

.el-breadcrumb__inner {
  color: #CEF8FF !important;
}

.breadcrumb1366 {
  padding: 10px 0 !important;
}

.cur-location {
  font-size: 16px;
  color: white;
  line-height: 40px;
  float: left;

  img {
    position: relative;
    top: 3px;
    margin-right: 4px;
  }
}

.el-breadcrumb__inner a,
.el-breadcrumb__inner.is-link {
  color: white;
  cursor: text;
  font-weight: normal;
xiaomiao committed
508 509 510 511 512 513 514 515 516 517 518
}

.button {
  width: 76px;
  height: 32px;
  color: #ffffff;
  cursor: pointer;
  border: 0;
  font-size: 12px;
}

xiaomiao committed
519

520
// 按钮样式
xiaomiao committed
521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
.cx {
  background: url("../image/btn.png") no-repeat 0 -34px;
  background-size: cover;
}

.cx:hover {
  background: url("../image/btn.png") no-repeat 0 -34px;
  background-size: cover;
  color: white;
}

.cz {
  background: url("../image/btn.png") no-repeat 0 0;
  background-size: cover;
}

.cz:hover {
  background: url("../image/btn.png") no-repeat 0 0;
  background-size: cover;
  color: white;
}

.el-button:focus {
  background: none;
}

.cx:focus {
  background: url("../image/btn.png") no-repeat 0 -34px;
  background-size: cover;
  color: white;
}

.cz:focus {
  background: url("../image/btn.png") no-repeat 0 0;
  background-size: cover;
  color: white;
}
xiaomiao committed
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618

// 监管弹框样式
.dialogBox {
  overflow: hidden;
  background: url("~@/image/dialogBg.png") no-repeat !important;
  background-size: 100% 100% !important;

  .dialog_title {
    display: flex;
    position: relative;
    font-size: 22px;
    top: -10px;
    width: 38%;
    height: 40px;
    margin-left: 28px;
    justify-content: center;
    white-space: nowrap;

    b {
      font-weight: 200;
      display: inline-block;
      position: relative;
      font-size: 24px;
      top: -11px;
      width: 38%;
      height: 40px;
      margin-left: 28px;
      // @include flex-center;
      display: flex;
      justify-content: center;
    }
  }

  .dialog_full {
    position: absolute;
    top: 0;
    right: 30px;
  }

  .el-dialog__body {
    max-height: 88vh;
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .dialog_footer {
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .dialogBox-content {
    height: auto
  }

  .editDialogBox-box {
    background: #031A46;
    box-shadow: inset 0px 0px 12px 0px #02D9FD;
    border-radius: 2px;
    border: 1px solid #6BC1FC;
619
    margin: 0 18px 0 18px;
xiaomiao committed
620 621 622
  }

  .item-content-input {
xiaomiao committed
623
    .el-input__inner {
xiaomiao committed
624 625
      border: none !important;
      text-align: right;
626
      color: #A5CBDA !important;
xiaomiao committed
627 628 629 630 631 632
    }
  }

  .regularHeight {
    display: flex;
    flex-direction: column;
633
    height: 85vh;
xiaomiao committed
634 635

    .JsonEditor {
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694
      height: 75vh;

      .editXML {
        height: 100%;
        padding: 15px;

        .el-textarea {
          height: 100% !important;
        }

        .el-textarea__inner {
          height: 100% !important;
          background: #04275B;
          border-radius: 2px;
          border: none;
        }
      }
    }

    // 响应结果
    .xyjg {
      height: 78vh;
      padding: 15px;

      .result-con {
        height: 49%;
        background: #04275B;
        border-radius: 2px;
        box-sizing: border-box;
        padding: 10px;

        .el-textarea {
          height: 90%;
        }

        .el-textarea__inner {
          height: 100%;
          background: transparent;
          border: none;
        }

        p {
          color: #2188E3;
          font-weight: 700;
          font-size: 18px;
          position: relative;
          padding-left: 8px;
        }

        p:before {
          content: '';
          width: 3px;
          height: 13px;
          position: absolute;
          left: 0;
          top: 4px;
          background-color: #2188E3;
        }
      }
xiaomiao committed
695 696 697 698 699 700 701
    }
  }

  .dialog-from {
    padding: 13px;
    border-radius: 2px;
    box-sizing: border-box;
702
    margin-top: 10px;
xiaomiao committed
703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724

    .el-row {
      display: flex;
      flex-wrap: nowrap;
    }

    .el-col {
      line-height: 18px;
      display: flex;
      align-items: center;
      margin-bottom: 3px;
      color: #B5D6DC;
      border-radius: 2px;
      border: 1px solid #224C7C;

      span {
        display: inline-block;
        padding: 3px;
        border-radius: 3px;
        overflow: hidden;
        white-space: nowrap;
        text-align: left;
725
        color: #0288B0;
xiaomiao committed
726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743
      }

      p {
        flex: 1;
        width: 100%;
        padding-left: 5px;
        line-height: 20px;
        color: #c0c4cc;
        cursor: not-allowed;
        white-space: nowrap;
        margin-right: 5px;
        text-align: right;
      }
    }

  }

  .el-textarea__inner {
744 745
    background: #04275B;
    border-radius: 2px;
xiaomiao committed
746 747 748 749 750 751
  }

  .el-input__inner {
    border: 1px solid #224C7C !important;
    margin: 0 !important;
    width: 100% !important;
752
    color: #A5CBDA !important;
xiaomiao committed
753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792
    background: transparent !important;
  }

  .el-dialog__header {
    color: #FFFFFF;
    height: 46px !important;
    width: 97%;
    margin: 0 auto;
    margin-top: 2px;
  }

  .el-dialog__body {
    padding-top: 0;
    padding-bottom: 0;
    // height: 95vh;
  }

  .el-dialog__headerbtn {
    width: 42px;
    height: 20px;
    background: url("~@/image/closebg.png") no-repeat;
    background-size: 100% 100%;
    right: 40px;
    top: 33px;

    &:hover {
      box-shadow: inset 0px 0px 12px 0px #02D9FD;
    }
  }

  .el-dialog__close {
    font-size: 0;
  }

  .el-form-item {
    display: flex;
    width: 100%;
  }

}
xiaomiao committed
793

xiaomiao committed
794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811
.contentCenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + 85px), -50%);
}

.mainCenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  // 展开收起按钮位置
  .el-input__suffix {
    right: 10px;
  }
}
xiaomiao committed
812

813 814 815 816 817
.el-tabs__header {
  border: none !important;
  margin-bottom: 0;
}

xiaomiao committed
818 819
// 登簿日志弹出框
.entryJournal {
820 821 822 823 824 825 826 827
  .el-textarea__inner {
    height: 67vh !important;
    border: none !important;
    background-color: #08346F !important;
    color: #ffffff;
    border: none !important;
  }

828 829
  .el-col {
    margin: 5px;
xiaomiao committed
830 831 832 833 834 835 836 837 838
  }

  .el-dialog__body {
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
    height: 100%;
    flex: 1;
    position: relative;
839
    margin-top: 10px;
xiaomiao committed
840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877
  }

  .el-tabs__item {
    color: #CEF8FF !important;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: url("~@/image/tabitem.png") no-repeat;
    background-size: 100% 100%;
    border: none !important;
  }

  .el-tabs__nav {
    display: flex;
    border: none !important;
  }

  .el-tabs__item.is-top:not(:last-child) {
    margin-right: 5px;
  }

  .el-icon-circle-close {
    display: none;
  }

  .el-tabs__item.is-active {
    background: url("~@/image/tabitemse.png") no-repeat;
    background-size: 100% 100%;
  }

  .from-clues-content {
    margin-top: 0;
    background: none;
    padding: 0;
  }

  .editDialogBox-box {
    position: relative;
878
    height: 98.5%;
xiaomiao committed
879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921
  }

  .dialog-from {
    padding-top: 0;

    .el-col {
      justify-content: space-between;
    }

    .bz {
      height: 100%;
      position: relative;
      top: 3px;
    }

    .el-input {
      flex: 1;
      width: 100%;
    }

    .el-textarea__inner {
      border: none !important;
      margin: 0;
    }

    &_header {
      margin: 0 -5px !important;
    }

    &_title {
      font-size: 14px;
      color: #d7eaee;
      margin: 3px 0;
    }
  }
}

// 数据上报弹出框
.dataReporting {
  .el-dialog__body {
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
922
    margin-top: 10px;
xiaomiao committed
923 924 925 926 927 928 929 930 931 932 933 934 935
  }

  .el-tabs {
    color: #cef8ff;
  }

  .d-center {
    z-index: 1000;
  }

  .sjmx {
    display: flex;
    flex-direction: column;
936
    height: 52vh;
xiaomiao committed
937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952

    .el-tabs__item {
      height: 50px;
      padding-top: 6px;
    }
  }

  .result {
    flex: 1;
    height: 100%;
  }

  .editDialogBox-con {
    flex: 1;
    height: 100%;
    overflow-y: hidden;
953
    margin: 10px 18px;
xiaomiao committed
954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
  }

  .el-tabs__item {
    color: #cef8ff !important;

    display: flex;
    flex-direction: row;
    justify-content: center;
    background: url("~@/image/tabitem.png") no-repeat;
    background-size: 100% 100%;
    border: none !important;
  }

  .obligee-item-name {
    background: #05275b;
    color: #ffffff;
    background: url("~@/image/itembg.png") no-repeat;
    background-size: 100% 100%;
  }

  .el-tabs__nav-scroll {
    background: none;
  }

  .el-tabs__nav {
    display: flex;
    border: none !important;
  }

  .el-tabs__item.is-top {
    border: 1px solid #dfe4ed;
    border-top: 1px solid #dfe4ed;
    border-bottom: 1px solid transparent;
  }

  .el-tabs__item.is-top:not(:last-child) {
    margin-right: 5px;
  }

  .el-tabs__item.is-top {
    background-color: none !important;
  }

  .el-tabs__item.is-active {
    background: url("~@/image/tabitemse.png") no-repeat;
    background-size: 100% 100%;
  }

  .success-images {
    width: 30px;
    height: 30px;
    position: relative;
    top: 10px;
    right: 3px;
  }

  .tab-pane-item {
    line-height: 20px;
    color: #02d9fd;

    p {
      text-align: center;
    }
  }

  .edit-content {
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 1px;
    border-top: none;
  }

  .editDialogBox {
    border-radius: 8px;
    overflow: hidden;
    min-width: 1228px;

    .el-dialog__header {
      display: flex;
      margin-bottom: 10px;
    }

    .dialog_footer {
      flex-direction: column;

      .dialog_button {
        margin-top: 8px;
      }
    }

    .divider {
      width: 100%;
      border-bottom: 1px solid #ccc;
    }
  }

  .el-dialog__wrapper {
    overflow: hidden;
  }

  .dialog-from {
    padding-top: 0;

    .el-col {
      justify-content: space-between;
    }

    .bz {
      height: 100%;
      position: relative;
      top: 3px;
    }

    .el-select {
      padding-right: 15px;
    }

    .el-icon-circle-close {
      display: none;
    }

    .el-input__suffix {
      right: -25px !important;
      top: -5px;
    }

    .el-select,
    .el-input {
      flex: 1;
      width: 100%;
    }

    .el-textarea__inner {
      border: none !important;
      margin: 0;
    }

    &_header {
      margin: 0 -5px !important;
    }

    &_title {
      font-size: 18px;
      color: #d7eaee;
      margin: 3px 0;
    }
  }
}

// 人员管理上下移动按钮样式
.el-button.is-disabled.el-button--text {
  width: 64px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

// 人员管理角色管理菜单管理修改新增弹框样式
.PersonnelDialog {
xiaomiao committed
1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144
  .el-dialog__header {
    text-align: center;
    margin-bottom: 10px;

    .el-dialog__title {
      color: white;
    }
  }

  .el-form-item__label {
    color: white;
  }

  .el-input__inner {
    background-color: #07388b;
  }

  .el-input__inner {
    background: #07388b;
    border-radius: 2px;
    border: 1px solid #6bc1fc;
  }

  .el-textarea__inner {
    background: #07388b;
    color: #fff;
  }

  .el-form-item__label {
    color: #fff;
  }

xiaomiao committed
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173
  .el-dialog__header {
    .dialog_title {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      position: relative;
      top: -7px;
      width: 29%;
      height: 40px;
      margin-left: 28px;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      white-space: nowrap;

      b {
        font-size: 16px;
      }
    }

    .el-dialog__headerbtn {
      right: 20px !important;
      top: 23px !important;
    }
  }

  .selbig {
    width: 500px;
  }
xiaomiao committed
1174

xiaomiao committed
1175
}
xiaomiao committed
1176 1177 1178 1179 1180 1181 1182 1183 1184 1185

// 弹框中间区域样式
.dialogCon {
  background: #031A46;
  box-shadow: inset 0px 0px 12px 0px #02D9FD;
  border-radius: 0px 2px 2px 2px;
  border: 1px solid #6BC1FC;
  padding: 15px;
}

xiaomiao committed
1186 1187 1188 1189 1190 1191 1192 1193 1194 1195
//定时任务弹框
.scheduledtaskdialog {
  .el-dialog__headerbtn {
    width: 42px;
    height: 20px;
    right: 26px;
    top: 23px;
  }
}

xiaomiao committed
1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225
// 修改密码界面样式
.informationpassword {
  margin: 36px 200px;
  overflow-y: auto;

  .form-wrapper {
    padding: 24px 120px 0px;

    .el-form-item {
      margin-bottom: 24px;

      .el-form-item__label {
        color: #ffffff;
      }

      .el-input .el-input__inner {
        padding: 0 8px;
        height: 40px;
        line-height: 40px;
        border: 1px solid #6bc1fc;
      }
    }
  }

  .bottom-wrapper {
    padding: 32px 120px 24px;
    text-align: center;
  }
}

1226 1227 1228 1229 1230 1231
.information {
  .contentbox {
    height: 60vh;
  }
}

xiaomiao committed
1232 1233 1234 1235
// 修改基本信息界面样式
.informationbase {
  margin: 0.1875rem 1.0417rem;
  overflow-y: auto;
1236

1237 1238 1239 1240 1241 1242 1243
  .el-input__inner {
    background: #07388B;
    border-radius: 2px;
    color: #E3F1FF !important;
    border: 1px solid #6BC1FC;
  }

xiaomiao committed
1244 1245
  .form-wrapper {
    padding: 0px 120px 0px;
1246

xiaomiao committed
1247 1248 1249 1250
    .el-form-item {
      /deep/.el-form-item__label {
        color: #ffffff;
      }
1251

xiaomiao committed
1252 1253 1254 1255 1256 1257 1258
      ::v-deep .el-input .el-input__inner {
        padding: 0 8px;
        height: 40px;
        line-height: 40px;
        border: 1px solid #6bc1fc;
      }
    }
1259

xiaomiao committed
1260 1261 1262 1263
    .el-form-item--small.el-form-item {
      margin-bottom: 16px;
    }
  }
1264

xiaomiao committed
1265 1266 1267 1268 1269
  .bottom-wrapper {
    padding: 0px 120px 0px;
    text-align: center;
  }
}
xiaomiao committed
1270

1271 1272 1273 1274 1275
// 权利人信息样式
.itemForm {
  position: relative;
  padding: 10px;

1276
  .el-select {
1277 1278 1279
    width: 100%;
  }

1280
  .el-form-item__error {
1281 1282 1283 1284 1285 1286
    right: 25px;
    top: 15px;
    text-align: right;
    pointer-events: none;
  }

1287
  .el-date-editor {
1288 1289 1290
    width: 100%;
  }

1291
  .el-date-editor--date {
1292 1293 1294
    width: 100%;
  }

1295
  .el-cascader {
1296 1297 1298 1299
    width: 100%;
  }

  // table 样式
1300
  .el-form-item__label {
1301 1302 1303 1304 1305 1306 1307 1308 1309
    border-right: none;
    text-align: center;
    padding: 0;
    color: #05bbdb;
    line-height: 16px;
    font-size: 12px;
    margin-top: 8px !important;
  }

1310
  .el-form-item__content {
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322
    display: flex;
    margin-right: -1px;
  }

  .obligee-item-name,
  .receivingInfo-item-name,
  .auditInfo-item-name {
    background: url("~@/image/itembg.png") no-repeat;
    background-size: 100% 100%;
    color: #FFFFFF;
  }

1323
  .el-textarea__inner {
1324 1325 1326 1327 1328 1329 1330 1331
    margin: 5px;
    width: 96%;
    background: none;
    color: #FFFFFF;
    border-radius: 2px;
    border: 1px solid #6BC1FC;
  }

1332
  .el-input-number {
1333 1334 1335
    width: 100%;
  }

1336 1337
  .el-input-number__increase {
    display: none;
1338 1339
  }

1340 1341
  .el-input-number__decrease {
    display: none;
1342 1343
  }

1344
  .el-input__inner {
1345 1346 1347 1348 1349 1350 1351 1352 1353
    margin: 5px;
    width: 96%;
    background: #05275B;
    border-radius: 2px;
    border: 1px solid #6BC1FC;
    text-align: left;

  }

1354
  .el-form-item {
1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378
    margin-bottom: 0;
    margin-top: -1px;
  }

  .item-label {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    font-size: 12px;
    flex: 0 0 90px;
    margin-right: 3px;

    p {
      line-height: 16px;
      white-space: nowrap;
      text-align: right;
    }

    p:nth-child(1) {
      position: relative;
      right: 5px;
    }
  }
}
xiaomiao committed
1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435

// 配置参数
.configuration {
  color: white;
  margin-top: 6vh;

  .el-dialog {
    background-color: #031a46 !important;
    border: 1px solid #5f82c7;

    .el-dialog__header {
      .el-dialog__title {
        color: white !important;
      }

      .el-dialog__headerbtn {
        top: 20px;
      }
    }

    /deep/ .jsoneditor-vue {
      height: 100%;
    }

    .fullScreen {
      position: absolute;
      right: 4%;
      top: 17%;
      cursor: pointer;
      color: #fff;
    }

    /deep/ .jsoneditor-modes {
      display: none !important;
    }

    /deep/.jsoneditor-poweredBy {
      display: none !important;
    }

    .jsoneditor-menu {
      background-color: #031a46 !important;
      border-bottom: 1px solid #9c9e9f !important;
    }

    .jsoneditor {
      border: 1px solid #9c9e9f !important;
    }

    .el-collapse {
      border: 0;
    }

    .el-collapse-item__header {
      height: 44px;
    }
  }
1436 1437 1438 1439 1440 1441 1442
}

// 监管
.editDialogBox-box {
  .el-form-item__label {
    color: #0288B0 !important;
    line-height: 20px;
xiaomiao committed
1443
    margin-top: 20px;
1444
  }
xiaomiao committed
1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457
}

// 预告登记弹框样式
.auditInfo {
  .el-textarea.is-disabled .el-textarea__inner {
    background: none;
    color: #C0C4CC;
    border: 1px solid #224C7C !important;
    padding: 0;
    margin: 0;
    text-indent: 7px;
  }
}