qiyunfeng-create
3 天以前 75f3e860ce0726bb655e0cb81764e2cf25d83716
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
@import './base.css';
 
/* 居中布局 */
.contentBox {
  width: 1200px;
  margin: 0 auto;
}
 
/* 自适应图片 */
.autoImg {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
 
.bannerImg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
 
/* 免费 */
.freePrice {
  color: #0bc266 !important;
}
 
.titleBox {
  height: 60px;
  background: #d8f7e6;
  line-height: 60px;
  padding: 0 40px;
  font-weight: 700;
  color: #00873c;
  font-size: 18px;
}
 
/* 富文本容器,保留富文本默认样式,所见即所得 */
.richTextBox {
  line-height: 1.4;
}
 
.richTextBox p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
 
.richTextBox table[border]:not([border='0']):not([style*='border-style']) td,
.richTextBox table[border]:not([border='0']):not([style*='border-style']) th {
  border-style: solid;
}
 
.richTextBox table[border]:not([border='0']):not([style*='border-width']) td,
.richTextBox table[border]:not([border='0']):not([style*='border-width']) th {
  border-width: 1px;
}
.richTextBox table:not([cellpadding]) td,
.richTextBox table:not([cellpadding]) th {
  padding: 0.4rem;
}
 
/* 单行省略 */
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
 
/* flex布局 */
.flex {
  display: flex;
}
 
.flex1 {
  flex: 1;
  overflow: hidden;
}
 
/* 上传图片 */
.avatar-uploader .el-upload {
  width: 190px;
  height: 140px;
  border: 1px dashed #d9d9d9;
  position: relative;
}
 
.avatar-uploader .el-upload:hover {
  border-color: #409eff;
}
 
.avatarCover {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
 
/* 内置状态字体颜色 */
.primaryTxt {
  color: #00873c !important;
}
.successTxt {
  color: #67c23a !important;
}
.warningTxt {
  color: #e6a23c !important;
}
.errorTxt {
  color: #f56c6c !important;
}
.infoTxt {
  color: #999 !important;
}
/* 内置状态背景颜色 */
.primaryBack {
  color: #fff !important;
  background: #00873c !important;
}
.successBack {
  color: #fff !important;
  background: #67c23a !important;
}
.warningBack {
  color: #fff !important;
  background: #e6a23c !important;
}
.errorBack {
  color: #fff !important;
  background: #f56c6c !important;
}
 
/* 主题色修改,根据UI框架决定是否需要 */
/* .el-button--primary {
  background-color: #00873C !important;
  border-color: #00873C !important;
}
 
.el-button--primary:focus,
.el-button--primary:hover {
  background: #086833 !important;
  border-color: #086833 !important;
  color: #fff !important;
}
 
.el-tabs__item.is-active {
  color: #00873C !important;
} */
 
.el-input-group__append,
.el-input-group__prepend {
  vertical-align: initial !important;
}
.el-checkbox__inner {
  border: 1px solid #000 !important;
  width: 20px !important;
  height: 20px !important;
}
 
.el-checkbox__inner::after {
  left: 7px !important;
  top: 4px !important;
}
 
/* 个人中心页面公共样式 */
.personalPage-title {
  font-family:
    Microsoft YaHei UI,
    Microsoft YaHei UI;
  font-weight: 600;
  font-size: 14px;
  color: #000000;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  background: #f8f8f8;
  border-radius: 4px 4px 0px 0px;
}
.personalPage-content {
  padding: 20px 40px;
}
 
/* 两边对齐 */
.jc-sb {
  justify-content: space-between;
}
 
.hover {
  cursor: pointer;
  transition: all 0.2s;
}