42 lines
675 B
Plaintext
42 lines
675 B
Plaintext
/* pages/member/presentationDetails/presentationDetails.wxss */
|
|
.details .tbs {
|
|
background: #fff;
|
|
flex-flow: row wrap;
|
|
padding: 20rpx 28rpx;
|
|
line-height: 48rpx;
|
|
margin-bottom: 20rpx;
|
|
font-size: 24rpx;
|
|
}
|
|
|
|
.details .tbs .number {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
line-height: 60rpx;
|
|
}
|
|
|
|
.details .tbs .number .span:first-child {
|
|
color: rgb(140, 140, 140);
|
|
}
|
|
|
|
.details .tbs .content {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.details .tbs .left {
|
|
text-align: left;
|
|
flex: 65%;
|
|
color: #8c8c8c;
|
|
line-height: 60rpx;
|
|
}
|
|
|
|
.details .tbs .right {
|
|
text-align: right;
|
|
flex: 35%;
|
|
line-height: 60rpx;
|
|
}
|
|
|
|
.details .tbs .red {
|
|
color: red;
|
|
}
|