45 lines
712 B
Plaintext
45 lines
712 B
Plaintext
@import '@/styles/common.less';
|
|
@import '@/styles/variables.less';
|
|
|
|
.bl-form-item {
|
|
width: 100%;
|
|
margin-bottom: 40px;
|
|
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
&__header {
|
|
.flex-row();
|
|
|
|
&__title {
|
|
font-size: 28px;
|
|
line-height: 32px;
|
|
font-weight: 400;
|
|
color: @blColor;
|
|
}
|
|
|
|
&__type {
|
|
font-size: 24px;
|
|
line-height: 32px;
|
|
font-weight: 400;
|
|
color: @blColorG1;
|
|
margin-left: 4px;
|
|
}
|
|
}
|
|
|
|
&__content {
|
|
width: 100%;
|
|
height: 100px;
|
|
background: #FFFFFF;
|
|
border-radius: 16px;
|
|
.flex-row();
|
|
margin-top: 24px;
|
|
padding: 0 32px;
|
|
box-sizing: border-box;
|
|
|
|
&.dynamicHeight {
|
|
height: fit-content;
|
|
}
|
|
}
|
|
} |