保誠-保戶業務員媒合平台
tomasysh
2025-01-02 4efb98f2b554b76270b12837db7a7f724e2ede89
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
56
57
58
59
60
61
62
63
64
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
97
98
99
100
101
@import "../common/var";
 
@include b(date-range-picker) {
  width: 646px;
 
  &.has-sidebar {
    width: 756px;
  }
 
  table {
    table-layout: fixed;
    width: 100%;
  }
 
  .el-picker-panel__body {
    min-width: 513px;
  }
 
  .el-picker-panel__content {
    margin: 0;
  }
 
  @include e(header) {
    position: relative;
    text-align: center;
    height: 28px;
 
    [class*=arrow-left] {
      float: left;
    }
 
    [class*=arrow-right] {
      float: right;
    }
 
    div {
      font-size: 16px;
      font-weight: 500;
      margin-right: 50px;
    }
  }
 
  @include e(content) {
    float: left;
    width: 50%;
    box-sizing: border-box;
    margin: 0;
    padding: 16px;
 
    @include when(left) {
      border-right: 1px solid $--datepicker-inner-border-color;
    }
    .el-date-range-picker__header {
 
      div {
        margin-left: 50px;
        margin-right: 50px;
      }
    }
  }
 
  @include e(editors-wrap) {
    box-sizing: border-box;
    display: table-cell;
 
    @include when(right) {
      text-align: right;
    }
  }
 
  @include e(time-header) {
    position: relative;
    border-bottom: 1px solid $--datepicker-inner-border-color;
    font-size: 12px;
    padding: 8px 5px 5px 5px;
    display: table;
    width: 100%;
    box-sizing: border-box;
 
    > .el-icon-arrow-right {
      font-size: 20px;
      vertical-align: middle;
      display: table-cell;
      color: $--datepicker-icon-color;
    }
  }
 
  @include e(time-picker-wrap) {
    position: relative;
    display: table-cell;
    padding: 0 5px;
 
    .el-picker-panel {
      position: absolute;
      top: 13px;
      right: 0;
      z-index: 1;
      background: $--color-white;
    }
  }
}