41 lines
602 B
CSS
41 lines
602 B
CSS
.topLine {
|
|
width: 100%;
|
|
height: 10px;
|
|
background: #F3F3F3;
|
|
}
|
|
|
|
.editFormBox {
|
|
/* padding: 10px;
|
|
box-sizing: border-box; */
|
|
}
|
|
|
|
.editFormTitle {
|
|
font-size: 18px;
|
|
margin-bottom: 20px;
|
|
/* height: 46px; */
|
|
/* background: pink; */
|
|
}
|
|
|
|
.editFormItem {
|
|
display: flex;
|
|
/* align-items: center; */
|
|
height: 46px;
|
|
/* background-color: pink; */
|
|
line-height: 46px;
|
|
/* width: 200px; */
|
|
}
|
|
|
|
.firstItem {
|
|
/* background: skyblue; */
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.editFormItemTitle {
|
|
font-size: 16px;
|
|
/* width: 120px; */
|
|
}
|
|
|
|
.redTitle {
|
|
color: red;
|
|
} |