zjf
2023-03-03 bafa9dff4d9880c562f4d3a7b83bd4c1129240c5
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// 跟进记录效果
.f-container {
  padding: 0 80px;
}
 
/** 发布行css  */
.se-section {
  position: relative;
  margin: 12px;
  height: 32px;
  line-height: 32px;
 
  .se-name {
    font-size: 12px;
    color: #333333;
    margin-right: 5px;
  }
 
  .se-select {
    // width: 118px;
    height: 32px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #D9D9D9;
    font-size: 12px;
    color: #333;
    padding: 0 15px;
    font-weight: 500;
 
    .se-select-name {
      margin-right: 20px;
    }
  }
 
  .se-datepicker {
    font-size: 12px;
    width: 200px;
    margin-right: 20px;
  }
 
  .se-send {
    position: absolute;
    right: 0;
    padding: 5px 15px;
  }
}
.se-collect {
  position: absolute;
  right: 85px;
  padding: 5px 15px;
  width: 58px;
  height: 28px;
  border-radius: 3px;
  border: 1px solid #D9D9D9;
  color: #666;
  font-size: 12px;
  &:hover{
    border-color: #4D88FF;
    color: #4D88FF;
    background-color: #fff;
  }
  &:focus{
    background-color: #fff;
  }
  &:active{
    border-color: #4D88FF;
    color: #4D88FF;
    background-color: #fff;
  }
}
.se-send {
  position: absolute;
  right: 12px;
  padding: 5px 15px;
  width: 58px;
  height: 28px;
  background: #4D88FF;
  color: #fff;
  font-size: 12px;
  border-radius: 3px;
}
.el-date-editor /deep/ .el-input__inner {
  height: 32px;
  line-height: 32px;
}
 
.el-date-editor /deep/ .el-input__icon {
  height: 25px;
  line-height: 25px;
}
 
.el-checkbox /deep/ .el-checkbox__label {
  font-size: 12px;
  color: #333333;
}
 
.log-cont {
  margin: 30px 0;
  // border: 1px solid #e6e6e6;
  // border-radius: 2px;
 
  .log-tabs-item {
    font-size: 13px;
    padding: 8px 15px;
    cursor: pointer;
  }
 
  .log-tabs-item:hover {
    color: #F18C70 !important;
  }
 
  .log-tabs-line {
    height: 10px;
    background-color: #e6e6e6;
    width: 2px;
  }
}
 
.log-items {
  min-height: 400px;
  position: relative;
}