common.css 11.7 KB
Newer Older
潘际乾 committed
1
:root {
Wuyuqiu committed
2 3
  /* 白色 */
  /* --bgcolor: #fff;
潘际乾 committed
4 5
    --sidecolor: #fff;
    --darkbgcolor: rgb(232, 232, 232); */
Wuyuqiu committed
6 7
  /* 灰灰 */
  /* --bgcolor: #f8f8f5;
潘际乾 committed
8 9
    --sidecolor: #fafafa;
    --darkbgcolor: rgb(232, 232, 232); */
Wuyuqiu committed
10 11
  /* 淺綠色 */
  /* --bgcolor: #dff9fb;
潘际乾 committed
12 13
    --sidecolor: #c7ecee;
    --darkbgcolor: rgb(232, 232, 232); */
Wuyuqiu committed
14 15
  /* 淡黄色 */
  /* --bgcolor: #f5f5d5;
潘际乾 committed
16 17
    --sidecolor: #f5f5d5;
    --darkbgcolor: rgb(232, 232, 232); */
Wuyuqiu committed
18 19 20
  /* 绿色 */

  /* --bgcolor: #ccffcc;
潘际乾 committed
21 22
    --sidecolor: #ccffcc;
    --darkbgcolor: rgb(232, 232, 232); */
Wuyuqiu committed
23
  /* --bgcolor: #ccffff;
潘际乾 committed
24 25
    --sidecolor: #64d7eb;
    --darkbgcolor: rgb(232, 232, 232); */
Wuyuqiu committed
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
  /* 蓝色系 */
  --bgcolor: #f7faff;
  /* #E3F3FF; */
  --sidecolor: #fff;
  /* #E3F3FF; */
  --darkbgcolor: #f4f5fa;
  /* rgb(232, 232, 232); */
  --lineheight: 32px;
  --normalfont: 12px;
  /* --themecolor: #1561E0; */
  --themecolor: #1561E0;
}

#app {
  font-family: Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
}

.e-table-wrapper {
  display: flex;
  flex-direction: column;
}

.e-table-wrapper .el-table {
  flex: 1;
}

/* 配色 */
/* .fold {
潘际乾 committed
56 57
    background-color: var(--color);
  } */
Wuyuqiu committed
58 59

/* .unfold {
潘际乾 committed
60 61
    background-color: var(--color);
  } */
Wuyuqiu committed
62 63
.m-app-main {
  /* background-color: var(--bgcolor); */
Wuyuqiu committed
64
  box-shadow: 0 1px 15px 0 rgb(0 0 0 / 12%), 0 0 3px 0 rgb(0 0 0 / 4%);
Wuyuqiu 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 90 91 92 93 94 95 96
}

.m-app {
  background-color: var(--darkbgcolor);
}

.fold {
  width: 60px !important;
}

/* sidemenu */
.el-menu {
  background: var(--sidecolor);
}

.el-menu-item.is-active {
  color: #fff;
  background-color: var(--themecolor);
}

.eContainer-menu-search {
  background: var(--sidecolor);
}

.eContainer-menu-search button {
  background: var(--sidecolor);
}

.eContainer-scroller {
  background: var(--sidecolor);
}

Wuyuqiu committed
97 98


Wuyuqiu committed
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
.topbtnbar {
  position: absolute;
  top: 20px;
  right: 60px;
  z-index: 90;
  display: inline-block;
}

.topbtnbar>span {
  display: inline-block;
}

/* 页签样式调整 */
.el-tabs .el-tabs__header {
  margin: 0;
}

.el-tabs .el-tabs__content {
  /* background: #fff; */
潘际乾 committed
118
  /* padding: 10px; */
Wuyuqiu committed
119 120 121 122 123
}

.el-tabs--card>.el-tabs__header .el-tabs__item {
  border-left: 1px solid #ccc;
  padding: 0 10px;
124 125
  height: 38px;
  line-height: 38px;
Wuyuqiu committed
126
  font-size: 16px;
Wuyuqiu committed
127
  font-weight: bold;
Wuyuqiu committed
128 129 130
  border-bottom: 1px solid var(--themecolor);
  /* border-top: 1px solid #ccc; */
  background-image: linear-gradient(#fff, #dedede);
131
  box-sizing: content-box;
Wuyuqiu committed
132

Wuyuqiu committed
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
}

.el-tabs--top.el-tabs--card>.el-tabs__header .el-tabs__item:nth-child(2) {
  padding-left: 10px;
}

.el-tabs--top.el-tabs--card>.el-tabs__header .el-tabs__item:last-child {
  padding-right: 10px;
}

.el-tabs--card>.el-tabs__header {
  border-bottom: 2px solid var(--themecolor);
}

.el-tabs--card>.el-tabs__header .el-tabs__item.is-active {
  border-left: 1px solid var(--themecolor);
  border-right: 1px solid var(--themecolor);
  border-top: 1px solid var(--themecolor);
Wuyuqiu committed
151 152 153 154
  /* background-image: linear-gradient(#fff, #fff); */
  background-image: linear-gradient(#1561E0, #1561E0);
  color: white;
  /* color: var(--themecolor); */
Wuyuqiu committed
155 156
  /* border-bottom: 1px solid #fff; */
  border-bottom: 1px solid var(--themecolor);
Wuyuqiu committed
157 158 159 160
  box-sizing: content-box;
  font-weight: bold;
}

161 162
.el-tabs__nav-wrap {
  margin-bottom: 0px;
Wuyuqiu committed
163 164
}

潘际乾 committed
165 166
.el-form-item__label {
  padding: 0 20px 0 0;
Wuyuqiu committed
167
  line-height: 20px !important;
168 169 170
  display: flex;
  align-items: center;
  justify-content: flex-end;
潘际乾 committed
171 172
}

Wuyuqiu committed
173 174 175 176 177 178 179 180
.el-form-item--small .el-form-item__label {
  font-size: var(--normalfont);
  height: var(--lineheight);
  line-height: var(--lineheight);
}

.el-form-item--mini.el-form-item,
.el-form-item--small.el-form-item {
潘际乾 committed
181 182
  margin-bottom: 20px;
  /* margin-top: 20px; */
Wuyuqiu committed
183 184 185 186 187 188 189
}

.el-input--small .el-input__inner {
  height: var(--lineheight);
  line-height: var(--lineheight);
  font-size: var(--normalfont);
}
Wuyuqiu committed
190

191
/* input框去除margin值 */
Wuyuqiu committed
192 193
.el-input--prefix .el-input__inner {
  padding-right: 0px;
194
}
Wuyuqiu committed
195 196 197 198 199 200

.el-form-item--small .el-form-item__content,
.el-form-item--small .el-form-item__label {
  line-height: var(--lineheight);
}

Wuyuqiu committed
201 202 203 204
/* .el-form-item__content{
   margin-left: 0px !important;
} */

Wuyuqiu committed
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 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 307 308 309 310 311 312 313 314 315
.el-select .el-input .el-select__caret {
  font-size: var(--normalfont);
}

.el-input--small .el-input__icon {
  line-height: var(--lineheight);
}

.el-input-number--small {
  line-height: var(--lineheight);
}

.el-textarea__inner {
  font-size: 12px;
}

.el-button--small,
.el-button--small.is-round {
  padding: 0px 15px;
  font-size: 12px;
  line-height: 22px;
}

.el-button--small.el-button--text {
  padding-left: 0;
  padding-right: 0;
}

.el-button--primary {
  color: #FFF;
  background-color: #1561E0;
  border-color: #1561E0;
}

.el-card {
  margin-bottom: 8px;
}

.m-inputbtn {
  position: relative;
}

.m-inputbtn-input {
  padding-right: 64px;
  display: inline-block;
}

.m-inputbtn-btn {
  position: absolute;
  right: 0;
}

.m-inputbtn-double {
  position: relative;
}

.m-inputbtn-input-double {
  padding-right: 90px;
  display: inline-block;
}

.m-inputbtn-btn-double {
  position: absolute;
  right: 0;
  top: 0;
}

.m-inputbtn-btn-double .el-button {
  padding: 0 8px;
}

.m-inputbtn-double .el-button+.el-button {
  margin-left: 0;
}

.el-radio__label {
  font-size: 12px;
}

.el-checkbox__label {
  font-size: 12px;
}

.el-checkbox__input.is-checked+.el-checkbox__label {
  color: #1561E0;
}

.el-checkbox__input.is-checked .el-checkbox__inner {
  background-color: #1561E0;
  border-color: #1561E0;
}

.el-checkbox__input.is-indeterminate .el-checkbox__inner {
  background-color: #1561E0;
  border-color: #1561E0;
}

.c-title {
  /* color: rgba(0, 0, 0, 0.65); */
  /* font-weight: 600; */
  /* font-size: 12px; */
  color: rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 10px;
}

.el-dialog__body {
  padding: 10px 20px 20px;
}

Wuyuqiu committed
316
.el-dialog__body
Wuyuqiu committed
317
/* form 必填项的内容区域颜色突出显示 *
318
  暂时封掉
319 320 321 322 323 324
  .el-form-item.is-required .el-form-item__content .el-input__inner, 
  .el-form-item.is-required .el-form-item__content .el-textarea__inner,
  .el-form-item.is-required .el-form-item__content .el-checkbox__inner,
  .el-form-item.is-required .el-form-item__content .el-radio__inner,
  .el-form-item.is-required .el-form-item__content .el-input__count {
    background-color: #f3f3bf87;
325 326
  }*/

Wuyuqiu committed
327 328 329 330 331 332 333 334 335 336
/* form 必填项红星星靠右 */
.el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label-wrap>.el-form-item__label:before,
.el-form-item.is-required:not(.is-no-asterisk)>.el-form-item__label:before {
  content: none;
}

.el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label-wrap>.el-form-item__label:after,
.el-form-item.is-required:not(.is-no-asterisk)>.el-form-item__label:after {
  content: '*';
  color: #F56C6C;
337 338
  margin-right: -7px;
  margin-left: 2px;
Wuyuqiu committed
339 340
}

Wuyuqiu committed
341 342 343 344 345
/* 清除contentmargin-left值 */
/* .el-form-item .el-form-item__content{
  margin-left: 0px;
} */

Wuyuqiu committed
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
.el-tree-node__label {
  font-size: 12px;
}

.c-w-100 {
  width: 100%;
}

.m-ureport-actions {
  width: 100%;
  text-align: center;
}

.m-ureport-actions .el-button--small {
  padding: 0px 15px;
  font-size: 12px;
  line-height: 22px;
}

.el-table th {
  user-select: initial;
}

Wuyuqiu committed
369
/* 表格中去除下边距 */
Wuyuqiu committed
370 371
.el-table__row .cell .el-form-item--mini.el-form-item,
.el-table__row .cell .el-form-item--small.el-form-item {
Wuyuqiu committed
372 373
  margin-bottom: 0px;
}
Wuyuqiu committed
374

Wuyuqiu committed
375
/* 表格按钮居中 */
Wuyuqiu committed
376
.cell {
Wuyuqiu committed
377 378
  text-align: center;
}
Wuyuqiu committed
379

Wuyuqiu committed
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
.el-tooltip__popper.is-dark {
  max-width: 600px;
}

.el-date-editor.el-range-editor--small.el-input__inner {
  height: 24px;
  font-size: 13px;
}

.el-date-editor.el-range-editor--small .el-range__close-icon,
.el-range-editor--small .el-range__icon {
  line-height: 16px;
  font-size: 12px;
}

.el-date-editor.el-range-editor--small .el-range-separator {
  line-height: 16px;
  font-size: 12px;
}

.el-table__fixed,
.el-table__fixed-right {
Wuyuqiu committed
402
  /* height: 100% !important; */
Wuyuqiu committed
403
  bottom: 17px;
Wuyuqiu committed
404
}
405 406

/* medium_button_change_small */
Wuyuqiu committed
407
.medium_bcs {
408 409 410 411 412
  padding: 8px 15px;
  margin-top: 5px;
  margin-left: 7px;
}

Wuyuqiu committed
413 414 415 416 417 418
.busnavbar-items {
  /*TODO完善按钮间隔等样式 */
  margin-left: 7px;
  padding-left: 3px;
}

419 420 421 422 423
.el-collapse {
  border-top: 0px solid #fff;
  border-bottom: 0px solid #fff;
}

Wuyuqiu committed
424 425
.el-collapse .el-collapse-item__wrap {
  /* background-color: var(--bgcolor); */
Wuyuqiu committed
426
  border-bottom: 0px solid #fff;
Wuyuqiu committed
427 428
}

Wuyuqiu committed
429
.el-collapse-item__header {
潘际乾 committed
430
  /* background-color: var(--bgcolor); */
Wuyuqiu committed
431 432
  font-size: 15px;
  font-weight: bold;
Wuyuqiu committed
433
  border-bottom: 0px solid #fff;
Wuyuqiu committed
434 435
}

Wuyuqiu committed
436
.el-collapse-item__header.is-active {
Wuyuqiu committed
437 438
  font-size: 15px;
  font-weight: bold;
Wuyuqiu committed
439
  color: #1561E0;
潘际乾 committed
440 441
}

Wuyuqiu committed
442
.el-collapse-item__arrow.is-active {
Wuyuqiu committed
443
  transform: rotate(0deg);
Wuyuqiu committed
444 445
}

潘际乾 committed
446 447 448 449 450 451
.col-left {
  padding-right: 20px;
}

.col-right {
  padding-left: 20px;
Wuyuqiu committed
452 453
}

Wuyuqiu committed
454
.el-button {
Wuyuqiu committed
455
  height: 32px;
Wuyuqiu committed
456
  padding: 0px 15px !important;
Wuyuqiu committed
457 458 459 460 461
}


.clearfix:before,
.clearfix:after {
Wuyuqiu committed
462 463
  display: table;
  content: "";
Wuyuqiu committed
464 465 466
}

.clearfix:after {
Wuyuqiu committed
467
  clear: both
Wuyuqiu committed
468 469 470
}

/* 表格内+、-调整 */
Wuyuqiu committed
471
.el-table__fixed-header-wrapper .cell .el-button {
Wuyuqiu committed
472
  width: 32px;
Wuyuqiu committed
473
  padding: 0px !important;
Wuyuqiu committed
474 475 476
}

/* 去除按钮默认圆角 */
Wuyuqiu committed
477 478
.el-button {
  border-radius: 0px;
Wuyuqiu committed
479 480 481
}

/* 去除input框默认圆角 */
Wuyuqiu committed
482 483
.el-input__inner {
  border-radius: 0px;
Wuyuqiu committed
484 485 486
}

/* 去除勾选框默认圆角 */
Wuyuqiu committed
487 488
.el-checkbox__inner {
  border-radius: 0px;
Wuyuqiu committed
489 490 491
}

/* 去除文本框默认圆角 */
Wuyuqiu committed
492 493
.el-textarea__inner {
  border-radius: 0px;
Wuyuqiu committed
494 495 496
}

/* 去除tabs标签默认圆角 */
Wuyuqiu committed
497 498
.el-tabs--card>.el-tabs__header .el-tabs__nav {
  border-radius: 0px;
499
  margin-bottom: -1px;
Wuyuqiu committed
500 501 502
}

/* 去除表格左右滑动默认圆角 */
Wuyuqiu committed
503 504 505 506
.el-pagination.is-background .btn-next,
.el-pagination.is-background .btn-prev,
.el-pagination.is-background .el-pager li {
  border-radius: 0px;
jianglong committed
507 508 509 510
}


@media screen and (min-width: 2561px) {
Wuyuqiu committed
511 512

  #business_container .eibs-tab {
513
    padding: 25px 28px;
jianglong committed
514 515 516
  }
}

jianglong committed
517
@media screen and (min-width: 1921px) and (max-width: 2560px) {
Wuyuqiu committed
518 519

  #business_container .eibs-tab {
520
    padding: 20px 23px;
jianglong committed
521 522 523 524
  }
}

@media screen and (min-width: 1441px) and (max-width: 1920px) {
Wuyuqiu committed
525 526

  #business_container .eibs-tab {
527
    padding: 20px 18px;
jianglong committed
528 529 530 531
  }
}

@media screen and (min-width: 1200px) and (max-width: 1440px) {
Wuyuqiu committed
532 533

  #business_container .eibs-tab {
534
    padding: 20px 15px;
jianglong committed
535 536 537 538
  }
}

@media screen and (max-width: 1199px) {
Wuyuqiu committed
539 540

  #business_container .eibs-tab {
jianglong committed
541
    padding: 20px 10px;
jianglong committed
542 543 544
  }
}

Wuyuqiu committed
545
/* checkbox右对齐 */
Wuyuqiu committed
546
.el-checkbox {
jianglong committed
547 548
  float: right;
  text-align: center;
Wuyuqiu committed
549 550
  height: 32px;
  line-height: 32px;
jianglong committed
551 552
}

Wuyuqiu committed
553
/* checkbox左对齐 */
Wuyuqiu committed
554
.checkbox-left {
Wuyuqiu committed
555 556 557
  float: left;
  text-align: center;
}
Wuyuqiu committed
558

559 560 561
/* .el-checkbox:last-of-type{
  margin-right:30px;
} */
562
/*
jianglong committed
563 564 565 566
.checkbox-left {
float: left;
margin-left: 120px;
}
Wuyuqiu committed
567 568

/* 去除工具条默认圆角 */
Wuyuqiu committed
569 570
.toolbar-core {
  border-radius: 0px;
Wuyuqiu committed
571 572 573
}

/* 改变折叠面板箭头样式 */
Wuyuqiu committed
574
.el-icon-arrow-right:before {
575 576 577
  content: "";
  display: inline-block;
  color: #ecf5ff;
Wuyuqiu committed
578 579
  /* width: 97%;
  height: 5px; */
580 581
  border-top: 2px solid;
  margin-right: 10px;
Wuyuqiu committed
582
  flex: 1;
583 584
}

Wuyuqiu committed
585
.el-icon-arrow-right:after {
Wuyuqiu committed
586 587 588
  content: "\e791";
}

Wuyuqiu committed
589 590 591 592
.el-collapse-item__header .is-active:after {
  content: "\e790";
}

593
/* 左箭头 */
Wuyuqiu committed
594
.el-icon-arrow-left:before {
595 596 597
  content: "\e792";
}

Wuyuqiu committed
598
.el-collapse-item__arrow {
599
  border-bottom: 0px solid #fff;
Wuyuqiu committed
600
  color: var(--themecolor);
601 602 603 604 605
  margin: 0 10px 0 10px;
  transition: transform .3s;
  font-weight: 300;
  content: '';
  flex: 1;
Wuyuqiu committed
606 607
  display: flex;
  align-items: center;
Wuyuqiu committed
608 609
}

Wuyuqiu committed
610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
/* .el-input__inner {
  &::placeholder {
    color: red;
}
} */

/* ::-ms-input-placeholder{
  color: red;
} */
/* /deep/.el-input__inner {
  &::placeholder {
    color: red;
    font-size: 16px;
  }
} */

Wuyuqiu committed
626 627
/* 更改文本框的placeholder的颜色 */
/* input[type=text]::placeholder {
Wuyuqiu committed
628 629 630
  color: blue;
 } */

Wuyuqiu committed
631
/* .el-input__inner::placeholder {
Wuyuqiu committed
632
  color: blue;
633 634 635 636
 } */

 .el-table__row .el-form-item__content .el-form-item__error {
  position: unset !important;
637 638 639 640 641 642
 }
 .el-input--small .el-input__inner{
  padding-left: 10px;
 }
 .el-input--prefix .el-input__inner{
  padding-left: 30px;
643 644 645 646 647 648 649 650 651 652 653 654 655
 }

 /* 分页pagination样式调整 */
 .el-pagination {
  margin-top: 5px;
  display: flex;
  justify-content: flex-end;
 }
 .el-pagination .el-icon-arrow-right:before {
  display: none;
 }
 .el-pagination .el-input--small .el-input__inner {
  padding-left: 0;
656
 }