ZZJ
2021-11-19 ddb4dda6ed6069253afb8b1e05fe52b56c681f35
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
123
124
125
126
127
128
129
130
131
132
.form-item {
  margin: 0 auto;
  width: 456px;
  height: 48px;
  margin-bottom: 4px;
  background-color: #f2f2f7;
  border-radius: 8px;
 
  ::v-deep .el-form-item__content {
    display: flex;
    justify-content: space-between;
    padding-right: 20px;
  }
 
  .switch-bar {
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    align-items: center;
    width: 100%;
 
    ::v-deep .name {
      font-size: 14px;
    }
  }
 
  .item-title {
    font-size: 14px;
    color: #4f4f4f;
    font-weight: 700;
  }
 
  .inputContain,
  .el-slider {
    flex: 1;
    margin-left: 32px;
  }
 
  .inputContain {
    display: flex;
    justify-content: end;
  }
 
  .el-input,
  .ip-input-container {
    width: 305px;
  }
 
  .el-select {
    max-width: 305px;
  }
 
  .el-radio-group {
    flex: 1;
    margin-left: 60px;
    text-align: left;
  }
 
  .el-radio-group ::v-deep .el-radio__label {
    font-size: 12px;
    font-weight: 700;
    color: #4f4f4f;
  }
 
  .ip-input-container {
    border-radius: 20px;
  }
 
  ::v-deep .el-slider__button {
    margin-top: -25px !important;
    border: none !important;
    &::after {
      display: block;
      position: relative;
      content: "\e75d";
      color: var(--colorCard);
      font-family: "iconfont" !important;
      font-size: 16px;
      font-style: normal;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
  }
 
  .slider-info {
    margin-left: 5px;
    font-size: 12px;
    color: #4f4f4f;
    font-weight: 700;
  }
 
  ::v-deep .el-slider__bar {
    z-index: 1;
    background-color: var(--colorCard) !important;
  }
}
 
.title {
  color: #4f4f4f;
  font-size: 16px;
  text-align: center;
}
 
.form-data {
  margin-top: 16px;
  width: 456px;
  margin: 0 auto;
}
 
.ok {
  margin: 0 auto;
  margin-top: 36px;
  width: 188px;
  height: 40px;
  cursor: pointer;
  border-radius: 25px;
  background-color: var(--colorCard);
  color: #fff;
  line-height: 40px;
  font-weight: bold;
  font-size: 16px;
}
 
.channel {
  margin-left: 34px;
  font-size: 12px;
  font-weight: 700;
  .channelCount {
    color: rgb(78, 148, 255);
  }
}