.items {
|
position: relative;
|
padding: 0 10px;
|
background-color: white;
|
}
|
|
.hr-view {
|
height: 2rpx;
|
margin: 0 0rpx;
|
background-color: #f1f1f1;
|
}
|
|
.item-title {
|
white-space: nowrap;
|
display: inline-block;
|
font-size: 1rem;
|
width: 32vw;
|
margin-top: 8px;
|
}
|
|
.required {
|
color: red;
|
text-align: center;
|
vertical-align: middle;
|
}
|
|
.not-required {
|
color: transparent;
|
}
|
|
.top-card {
|
/* width: 100vw; */
|
position: relative;
|
display: flex;
|
flex-direction: row;
|
/* justify-content: space-between; */
|
background-color: white;
|
padding: 8px 0px;
|
/* margin: 0 8px; */
|
font-size: 30rpx;
|
flex-wrap: nowrap;
|
}
|
|
.top-card .tag {
|
flex-shrink: 0;
|
width: 32vw;
|
white-space: nowrap;
|
/* background-color: seagreen; */
|
}
|
|
.top-card .value {
|
flex-grow: 1;
|
}
|
|
.top-card .value view {
|
/* white-space: nowrap; */
|
display: -webkit-box;
|
-webkit-line-clamp: 1;
|
-webkit-box-orient: vertical;
|
overflow-x: hidden;
|
text-overflow: ellipsis;
|
/* background-color: bisque; */
|
}
|
|
.picker-text {
|
/* color: var(--fyui-primary-color); */
|
color: var(--fyui-text-color_1);
|
}
|
|
.title-1 {
|
position: relative;
|
display: flex;
|
justify-content: space-between;
|
padding: 12rpx 8px;
|
color: var(--fyui-text-color_2);
|
background-color: white;
|
}
|