.submit-button {
|
padding: 32rpx;
|
}
|
|
.pre {
|
white-space: pre-wrap;
|
word-wrap: break-word;
|
color: var(--text-color);
|
font-family: var(--base-font-family);
|
font-size: 28rpx;
|
line-height: 1.5;
|
}
|
|
/* 输入框单元格样式 */
|
.card-cell {
|
display: flex;
|
padding: 0 32rpx 16rpx;
|
}
|
|
.card-cell-border {
|
padding-top: 20rpx;
|
border-top: 2rpx solid var(--border-color);
|
padding-left: 0;
|
padding-right: 0;
|
margin: 0 32rpx;
|
}
|
|
.card-cell-title {
|
color: var(--field-label-color);
|
}
|
|
.card-cell-value {
|
overflow: hidden;
|
text-align: left;
|
vertical-align: middle;
|
flex: 1;
|
color: var(--text-color);
|
word-break: break-word;
|
}
|
|
/* 预约信息card样式 */
|
.order {
|
background: rgba(82, 196, 26, 0.1);
|
border-radius: var(--border-radius-card-sm);
|
display: flex;
|
align-items: center;
|
padding: 16rpx;
|
margin: 0 32rpx ;
|
font-size: 24rpx;
|
line-height: 40rpx;
|
}
|
|
.order-date {
|
padding: 16rpx;
|
color: #ffffff;
|
background: #52c41a;
|
border-radius: var(--border-radius-card-sm);
|
text-align: center;
|
margin-right: 16rpx;
|
}
|
|
.order-date-day {
|
font-size: 32rpx;
|
line-height: 32rpx;
|
margin-bottom: 8rpx;
|
}
|
|
.order-date-month {
|
font-size: 24rpx;
|
line-height: 24rpx;
|
}
|
|
.order-date-time {
|
display: flex;
|
align-items: center;
|
}
|
|
.order-date-type {
|
color: #52c41a;
|
border: 1rpx solid #73d13d;
|
border-radius: 4rpx;
|
padding: 6rpx;
|
font-size: 22rpx;
|
line-height: 22rpx;
|
margin-left: 8rpx;
|
}
|
|
/* 展示的单元格样式 */
|
.cell {
|
display: flex;
|
align-items: center;
|
padding: 24rpx 0;
|
}
|
|
.cell2 {
|
padding: 24rpx 0;
|
}
|
|
.cell3 {
|
margin-bottom: 16rpx;
|
}
|
|
.cell-noPadding {
|
margin-top: -24rpx;
|
}
|
|
.cell-title,
|
.cell-title-line {
|
font-size: 30rpx;
|
line-height: 46rpx;
|
font-weight: 600;
|
}
|
|
.cell-title-line {
|
margin-bottom: 4px;
|
}
|
|
.cell-title-placeholder {
|
font-size: 28rpx;
|
line-height: 44rpx;
|
color: rgba(0, 0, 0, 0.5);
|
}
|
|
.cell-required {
|
font-size: 24rpx;
|
line-height: 40rpx;
|
color: rgba(0, 0, 0, 0.5);
|
font-weight: 500;
|
}
|
|
.cell-placeholder {
|
flex: 1;
|
font-size: 30rpx;
|
line-height: 46rpx;
|
color: rgba(0, 0, 0, 0.5);
|
}
|
|
.cell-select {
|
flex: 1;
|
text-align: right;
|
overflow: hidden;
|
text-overflow: ellipsis;
|
white-space: nowrap;
|
}
|
|
.cell-arrow {
|
font-size: 32rpx;
|
color: rgba(0, 0, 0, 0.5);
|
padding-left: 16rpx;
|
}
|
|
/* 当事人card样式 */
|
.party {
|
display: flex;
|
align-items: center;
|
padding: 16rpx 0;
|
}
|
|
.party-img {
|
width: 64rpx;
|
height: 64rpx;
|
border-radius: 10rpx;
|
line-height: 64rpx;
|
text-align: center;
|
color: #ffffff;
|
font-size: 24rpx;
|
}
|
|
.party-img-shen {
|
background: #05aeae;
|
}
|
|
.party-img-bei {
|
background: #ff5500;
|
}
|
|
.party-content {
|
flex: 1;
|
padding-left: 32rpx;
|
overflow: hidden;
|
}
|
|
.party-content-title {
|
display: flex;
|
align-items: center;
|
width: 100%;
|
}
|
|
.party-content-title-name {
|
padding-right: 16rpx;
|
overflow: hidden;
|
}
|
|
.party-content-subTitle {
|
font-size: 24rpx;
|
line-height: 40rpx;
|
color: var(--second-text-color);
|
}
|
|
/* 文件card样式 */
|
.action-file {
|
padding: 16rpx;
|
border-radius: var(--border-radius-card-sm);
|
display: flex;
|
align-items: center;
|
margin-bottom: 24rpx;
|
}
|
|
.action-file-color1 {
|
background-color: rgba(5, 174, 174, 0.1);
|
}
|
|
.action-file-color2 {
|
background-color: rgba(236, 207, 165, 0.4);
|
}
|
|
.action-file-name {
|
border-radius: 5px;
|
font-size: 32rpx;
|
line-height: 40rpx;
|
text-align: center;
|
color: #ffffff;
|
padding: 8rpx 20rpx;
|
margin-right: 16rpx;
|
}
|
|
.action-file-name-color1 {
|
background-color: #05aeae;
|
}
|
|
.action-file-name-color2 {
|
background-color: #552719;
|
}
|
|
.action-file-content {
|
font-size: 24rpx;
|
line-height: 24rpx;
|
}
|
|
.action-file-content-name {
|
margin-bottom: 24rpx;
|
font-weight: 600;
|
}
|
|
.action-file-content-btn {
|
border-radius: 4rpx;
|
padding: 6rpx;
|
font-size: 22rpx;
|
line-height: 22rpx;
|
display: inline-block;
|
}
|
|
.action-file-content-btn-color1 {
|
border: 2rpx solid #05aeae;
|
color: #05aeae;
|
}
|
|
.action-file-content-btn-color2 {
|
border: 2rpx solid #552719;
|
color: #552719;
|
}
|
|
/* 我的调解 、 我的司法确认 底部弹窗样式 */
|
.popup-roomNo {
|
display: flex;
|
align-items: center;
|
padding: 32rpx;
|
}
|
|
.popup-roomNo-copy {
|
display: flex;
|
align-items: center;
|
padding-left: 16rpx;
|
margin-left: 16rpx;
|
color: var(--main-color);
|
position: relative;
|
}
|
|
.popup-roomNo-copy::before {
|
content: '';
|
position: absolute;
|
left: 0;
|
height: 24rpx;
|
width: 2rpx;
|
background-color: var(--text-color);
|
}
|
|
/* tag标签样式 */
|
.tag {
|
padding: 0 8rpx;
|
border-radius: 4rpx;
|
font-size: 24rpx;
|
line-height: 40rpx;
|
display: inline-block;
|
}
|
|
.tag-cyan {
|
color: #05aeae;
|
background-color: #d5ede9;
|
}
|
|
.tag-orange {
|
color: #ff5500;
|
background-color: #fff2e6;
|
}
|
|
.tag-green-border {
|
font-size: 22rpx;
|
line-height: 38rpx;
|
color: #73d13d;
|
background-color: #ffffff;
|
border: 1rpx solid #73d13d;
|
}
|