1234567891011121314151617181920212223242526272829303132333435 |
- /* pages/meeting-inspection-history-detail/meeting-inspection-history-detail.wxss */
- page {
- background-color: #F0F4F7;
- }
- .list {
- width: 100%;
- height: 100%;
- }
- .item {
- box-sizing: border-box;
- background-color: #FFFFFF;
- border-radius: 20rpx;
- margin: 15rpx 30rpx;
- padding: 30rpx;
- }
- .name {
- width: 100%;
- line-height: 70rpx;
- border-bottom: solid 1rpx #EBE8E3;
- }
- .result {
- width: 100%;
- line-height: 80rpx;
- display: inline-flex;
- justify-content: space-between;
- }
- .result-text {
- color: #999999;
- font-size: 24rpx;
- }
|