Blame view

src/styles/sbPublic.scss 14.9 KB
任超 committed
1
@import '~@/styles/sbElement-ui.scss';
任超 committed
2
@import "~@/styles/_handle.scss";
xiaomiao committed
3
@import "~@/styles/_handle.scss";
任超 committed
4

5 6 7 8 9
//input
.el-input__inner {
  color: #7A7A7A !important;
  padding: 0 7px !important;
}
任超 committed
10

xiaomiao committed
11

任超 committed
12
.from-clues {
13
  // height: 100%;
任超 committed
14 15 16 17 18 19 20
  width: 100%;
  min-width: 1280px;
  box-sizing: border-box;
  overflow-x: hidden;

  &-header {
    width: 100%;
21
    padding: 7px 15px 15px 15px;
任超 committed
22 23 24 25 26 27 28 29
    box-sizing: border-box;
    background: #FFFFFF;
    border-radius: 4px;
  }

  &-content {
    width: 100%;
    box-sizing: border-box;
任超 committed
30
    margin-top: 10px;
任超 committed
31 32
    background: #FFFFFF;
    border-radius: 4px;
任超 committed
33
    padding: 15px;
任超 committed
34 35
  }

36 37 38
  // .el-dialog__close {
  //   font-size: 0;
  // }
任超 committed
39

xiaomiao committed
40 41 42 43
  .el-form-item {
    display: flex;
    width: 100%;
  }
任超 committed
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58

  .el-form--inline .el-form-item {
    width: auto;
    margin-right: 0px;

    .el-form-item__content {
      width: auto;
    }
  }

  .el-form-item--small.el-form-item {
    margin-bottom: 0px;
  }
}

59 60 61 62 63 64
.echarts-box {
  display: flex;
  justify-content: center;
  height: calc(100vh - 230px);
}

任超 committed
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
/* --------------进度条美化---------------- */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  width: 7px;
  background-color: rgba(255, 255, 255, 0);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(207, 208, 209);
  background-clip: padding-box;
  min-height: 28px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(162, 164, 167);
xiaomiao committed
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
}

// 搜索框按钮的位置
.btnColRight {
  box-sizing: border-box;
  text-align: right;
}

// 按钮样式
.button:hover {
  width: 86px;
  height: 32px;
  color: #ffffff;
  cursor: pointer;
  border: 0;
  font-size: 12px;
  background: none;
}

.cx {
  width: 86px;
  height: 32px;
任超 committed
112
  @include background_color("btnBg");
xiaomiao committed
113 114 115 116 117 118 119
  color: white;
  border: none;
}

.cx:hover {
  width: 86px;
  height: 32px;
任超 committed
120
  @include background_color("btnBg");
xiaomiao committed
121 122 123 124 125 126 127 128
  color: white;
  border: none;
}

.cz {
  width: 86px;
  height: 32px;
  background-color: white;
任超 committed
129
  @include font_color("btnColor");
xiaomiao committed
130 131 132 133 134 135 136
  border: 1px solid rgba(65, 98, 216, 0.3);
}

.cz:hover {
  width: 86px;
  height: 32px;
  background-color: white;
任超 committed
137
  @include font_color("btnColor");
xiaomiao committed
138 139 140 141 142
  border: 1px solid rgba(65, 98, 216, 0.3);
}

.cx:focus {
  color: white;
任超 committed
143
  @include background_color("btnBg");
xiaomiao committed
144 145 146 147 148 149
  background-size: cover;
}

.cz:focus {
  background-color: white;
  background-size: cover;
xiaomiao committed
150 151 152 153
}

// 角色管理人员菜单配置弹框样式
.roleconfiguration {
xiaomiao committed
154 155 156 157
  .el-tabs__item {
    color: #cef8ff !important;
    // background: url("~@/image/tabitem.png") no-repeat;
    // background-size: 100% 100%;
xiaomiao committed
158
    @include background("btnBg");
xiaomiao committed
159 160 161
    border-radius: 3px;
  }

xiaomiao committed
162 163 164 165
  .el-tabs__item.is-active {
    @include background("btnselect");
  }

xiaomiao committed
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
  .el-dialog__headerbtn .el-dialog__close {
    font-size: 20px;
    color: white;
  }

  .el-dialog__header {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 24px;
    background-color: #3D59C4;

    .dialog_title {

      color: white;
      margin-bottom: 10px;
    }
xiaomiao committed
183 184 185 186 187
  }

}

// 面包屑
xiaomiao committed
188 189 190 191 192 193 194 195 196 197 198
// .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
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 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253

.el-icon-arrow-right {
  width: 2px;
  position: relative;
  left: 10px;
}

.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;
}

.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;
  }
}

// 登簿日志弹出框
254
.commonDialog {
xiaomiao committed
255 256 257 258 259
  .el-textarea.is-disabled .el-textarea__inner {
    margin-top: 20px;
    @include borderColor("border");
  }

260 261 262 263 264 265 266 267 268 269 270 271
  /deep/.dialog-from_header {
    margin: 0 !important;
  }

  .el-dialog__headerbtn .el-dialog__close {
    font-size: 20px;
    color: white;
  }

  .el-dialog__header {
    text-align: center;
    font-size: 24px;
xiaomiao committed
272
    @include background("navbg");
273 274
  }

xiaomiao committed
275
  .el-tabs__header {
276
    margin: 0 !important;
xiaomiao committed
277
    border-bottom: none;
xiaomiao committed
278 279 280 281 282 283 284 285 286 287
  }

  .el-dialog {
    display: flex;
    flex-direction: column;
  }

  .el-dialog__body {
    display: flex;
    flex-direction: column;
288
    padding-top: 0px;
xiaomiao committed
289 290 291 292 293 294 295 296 297
    padding-bottom: 30px;
    height: 100%;
    flex: 1;
    position: relative;
  }

  .regularHeight {
    display: flex;
    flex-direction: column;
298
    height: 80vh;
xiaomiao committed
299 300 301 302 303 304 305
    margin-bottom: 5px;

    .editDialogBox-con,
    .JsonEditor {
      flex: 1;
    }

306 307 308 309 310 311 312 313
    .editXML {
      margin-top: 10px;

      .el-textarea__inner {
        height: 68vh !important;
      }
    }
  }
xiaomiao committed
314 315

  .dialog_title {
316 317
    color: white;
    margin-bottom: 10px;
xiaomiao committed
318 319 320 321
  }

  .el-tabs__item {
    color: #CEF8FF !important;
322
    background-color: none;
xiaomiao committed
323 324 325
    display: flex;
    flex-direction: row;
    justify-content: center;
326
    border-radius: 3px;
xiaomiao committed
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
  }

  .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;
  }

xiaomiao committed
342 343 344 345 346 347 348 349 350
  .el-tabs__item {
    color: #cef8ff !important;
    display: flex;
    flex-direction: row;
    justify-content: center;
    @include background("btnBg");
    border-radius: 3px;
  }

xiaomiao committed
351
  .el-tabs__item.is-active {
xiaomiao committed
352
    @include background("btnselect");
xiaomiao committed
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
  }

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

  .editDialogBox-box {
    position: relative;
    top: 10px;
  }

  .dialog-from {
    padding-top: 0;

    .el-col {
370 371 372
      height: 40px;
      line-height: 40px;
      display: flex;
xiaomiao committed
373 374 375 376 377 378 379 380 381 382 383 384 385 386
      justify-content: space-between;
    }

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

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

xiaomiao committed
387 388


xiaomiao committed
389
    .el-textarea__inner {
xiaomiao committed
390

xiaomiao committed
391 392 393 394
      margin: 0;
    }

    &_header {
395
      // margin: 0 -5px !important;
xiaomiao committed
396 397 398 399
    }

    &_title {
      font-size: 14px;
400 401
      font-weight: 600;
      color: #000000;
xiaomiao committed
402 403 404 405 406
      margin: 3px 0;
    }
  }
}

407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
.entryJournal {
  .el-textarea__inner {
    height: 67vh !important;
    border: none !important;
    background-color: #ffffff !important;
    color: #000000 !important;
  }
}

// 上报日志弹出框
.sbdialog {
  .el-textarea__inner {
    height: 30vh !important;
    border: none !important;
    background-color: #ffffff !important;
    color: #000000 !important;
  }
}

xiaomiao committed
426 427
// 数据上报弹出框
.dataReporting {
428 429 430 431 432
  .el-dialog__header {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 24px;
xiaomiao committed
433
    @include background("navbg");
434 435 436 437 438 439 440 441 442 443 444 445 446

    .dialog_title {

      color: white;
      margin-bottom: 10px;
    }
  }

  .el-dialog__headerbtn .el-dialog__close {
    font-size: 20px;
    color: white;
  }

xiaomiao committed
447
  .el-dialog__body {
448
    padding-top: 0px;
xiaomiao committed
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487
    display: flex;
    flex-direction: column;
  }

  .el-tabs {
    color: #cef8ff;
  }

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

  .sjmx {
    display: flex;
    flex-direction: column;
    height: 49vh;

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

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

  .editDialogBox-con {
    flex: 1;
    height: 100%;
    overflow-y: hidden;
  }

  .el-tabs__item {
    color: #cef8ff !important;
    display: flex;
    flex-direction: row;
    justify-content: center;
xiaomiao committed
488
    @include background("btnBg");
489
    border-radius: 3px;
xiaomiao committed
490 491 492
  }

  .obligee-item-name {
493 494
    // background: url("~@/image/itembg.png") no-repeat;
    // background-size: 100% 100%;
xiaomiao committed
495
    @include background("btnBg");
496
    border-radius: 3px;
xiaomiao committed
497
    @include borderColor("border");
xiaomiao committed
498 499 500 501 502 503
  }

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

504 505 506 507 508 509 510 511 512 513 514 515 516
  .result {
    padding: 15px;
    height: 100%;

    /deep/.el-textarea__inner {
      height: 50%;
      color: #ffffff;
      border: none !important;
      color: #ffffff;
    }

    &-con {
      background: #ffffff;
xiaomiao committed
517 518
      // @include borderColor("border");
      // border: 1px solid blue;
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
      border-radius: 2px;
      padding: 10px;
      box-sizing: border-box;
      height: 49%;

      p {
        color: #2997E8;
        font-size: 14px;
        position: relative;
        padding-left: 10px;
      }

      p::before {
        position: absolute;
        content: '';
        width: 3px;
        height: 10px;
        background-color: #2997E8;
        left: 0;
        top: 3px;
      }
    }
  }

xiaomiao committed
543 544 545 546 547 548 549 550 551 552 553 554 555 556
  .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__header {
    border: none;
    margin-bottom: 0;
xiaomiao committed
557
    border-bottom: none;
xiaomiao committed
558 559 560 561 562 563 564 565 566 567 568
  }

  .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 {
xiaomiao committed
569
    @include background("btnselect");
570
    color: #FFFFFF;
xiaomiao committed
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 619 620 621 622 623 624 625 626 627 628
  }

  .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 {
629 630 631
      height: 40px;
      line-height: 40px;
      display: flex;
xiaomiao committed
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649
      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 {
xiaomiao committed
650
      right: 0px !important;
xiaomiao committed
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
      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;
    }
  }
}

677 678 679 680 681 682 683
// // 人员管理上下移动按钮样式
// .el-button.is-disabled.el-button--text {
//   width: 64px;
//   height: 28px;
//   background: rgba(255, 255, 255, 0.1);
//   border-radius: 16px;
// }
xiaomiao committed
684 685 686

// 人员管理角色管理菜单管理修改新增弹框样式
.PersonnelDialog {
xiaomiao committed
687 688 689 690
  .el-dialog__headerbtn .el-dialog__close {
    font-size: 20px;
    color: white;
  }
xiaomiao committed
691 692 693 694

  .el-dialog__header {
    text-align: center;
    margin-bottom: 10px;
xiaomiao committed
695
    font-size: 24px;
xiaomiao committed
696
    @include background("navbg");
xiaomiao committed
697

xiaomiao committed
698 699 700 701 702 703
    .dialog_title {
      b {
        color: white !important;
      }

      margin-bottom: 10px;
xiaomiao committed
704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722
    }
  }

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

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

  .el-textarea__inner {
    // background: #07388b;
    // color: rgb(0, 0, 0);
  }

  .el-dialog__header {
723

xiaomiao committed
724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 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 793 794 795 796 797 798 799 800 801

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

  .selbig {
    width: 500px;
  }
}

// 弹框中间区域样式
.dialogCon {
  background: #ffffff;
  border: 1px solid #294ef1;
  padding: 15px;
}

// 修改密码界面样式
.informationpassword {
  margin: 36px 200px;
  overflow-y: auto;

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

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

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

      .el-input .el-input__inner {
        padding: 0 8px;
        height: 40px;
        line-height: 40px;
      }
    }
  }

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

// 修改基本信息界面样式
.informationbase {
  margin: 0.1875rem 1.0417rem;
  overflow-y: auto;

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

    .el-form-item {
      /deep/.el-form-item__label {
        color: #000000;
      }

      ::v-deep .el-input .el-input__inner {
        padding: 0 8px;
        height: 40px;
        line-height: 40px;
      }
    }

    .el-form-item--small.el-form-item {
      margin-bottom: 16px;
    }
  }

  .bottom-wrapper {
    padding: 0px 120px 0px;
    text-align: center;
  }
}
802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837

// 权利人信息样式
.itemForm {
  position: relative;
  padding: 10px;

  .el-select {
    width: 100%;
  }

  .el-form-item__error {
    right: 25px;
    top: 15px;
    text-align: right;
    pointer-events: none;
  }

  .el-date-editor {
    width: 100%;
  }

  .el-date-editor--date {
    width: 100%;
  }

  .el-cascader {
    width: 100%;
  }

  // table 样式
  .el-form-item__label {
    border-right: none;
    text-align: center;
    padding: 0;
    line-height: 16px;
    font-size: 12px;
838
    text-align: right;
839 840 841 842 843 844 845 846 847 848 849
    margin-top: 8px !important;
  }

  .el-form-item__content {
    display: flex;
    margin-right: -1px;
  }

  .obligee-item-name,
  .receivingInfo-item-name,
  .auditInfo-item-name {
xiaomiao committed
850
    @include background("btnselect");
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 878 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
    border-radius: 3px;
    color: #FFFFFF;
  }

  .el-textarea__inner {
    margin: 5px;
    width: 96%;
    background: none;
    color: #FFFFFF;
    border-radius: 2px;
  }

  .el-input-number {
    width: 100%;
  }

  .el-input-number__increase {
    // background: #05275B;
    color: #FFFFFF;
    border: none;
    right: 7px;
    top: 2px;
  }

  .el-input-number__decrease {
    // background: #05275B;
    color: #FFFFFF;
    border: none;
    right: 7px;
    bottom: 10px;
  }

  .el-input__inner {
    margin: 5px;
    width: 96%;
    // background: #05275B;
    border-radius: 2px;
    text-align: left;

  }

  .el-form-item {
    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
917 918 919 920 921 922 923 924

// 字典管理弹框
.dictionary {
  .el-dialog__header {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 24px;
xiaomiao committed
925
    @include background("navbg");
xiaomiao committed
926 927 928 929 930 931 932 933 934 935 936 937 938

    .dialog_title {

      color: white;
      margin-bottom: 10px;
    }
  }

  .el-dialog__headerbtn .el-dialog__close {
    font-size: 20px;
    color: white;
  }
}