12345678910111213141516171819202122232425 |
- .list-item {
- display: flex;
- padding: 36rpx 0;
- border-bottom: 2rpx solid #E5E5E5;
- }
- .list-item:last-child {
- border-bottom: 0;
- }
- .list-item image {
- width: 210rpx;
- height: 158rpx;
- border-radius: 4rpx;
- margin-right: 30rpx;
- }
- .item-title {
- font-size: 30rpx;
- color: #131D34;
- font-weight: bold;
- }
- .item-desc {
- color: #909090;
- font-size: 22rpx;
- }
|