1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- .main {
- float: left;
- width: 92%;
- margin: 30rpx 30rpx 0 30rpx;
- }
- .main view {
- float: left;
- width: 100%;
- /* height: 88rpx; */
- line-height: 88rpx;
- border-bottom: 1rpx solid #ccc;
- }
- .remarks{
- float: right;
- width: 80%;
- word-wrap: break-word;
- word-break: break-all;
- white-space: pre-line;
- }
- .info{
- border-bottom: 0rpx solid #ccc!important;
- background-color: #f5f6fa;
- border-radius: 20rpx;
- margin-top: 30rpx;
- }
- .red {
- display: inline-block;
- width: 4px;
- height: 20px;
- background: rgba(233, 2, 29, 1);
- vertical-align: text-bottom;
- }
- .main view text:first-child {
- float: left;
- /* width: 50%; */
- text-align: left;
- font-size: 30rpx;
- font-family: Source Han Sans SC;
- font-weight: 400;
- color: rgba(136, 136, 136, 1);
- }
- .main view text:last-child {
- float: right;
- /* width: 50%; */
- font-size: 30rpx;
- font-family: Source Han Sans SC;
- font-weight: 400;
- color: rgba(40, 40, 40, 1);
- text-align: right;
- }
|