list-item.wxss 366 B

12345678910111213141516171819202122232425
  1. .list-item {
  2. display: flex;
  3. padding: 36rpx 0;
  4. border-bottom: 2rpx solid #E5E5E5;
  5. }
  6. .list-item:last-child {
  7. border-bottom: 0;
  8. }
  9. .list-item image {
  10. width: 210rpx;
  11. height: 158rpx;
  12. border-radius: 4rpx;
  13. margin-right: 30rpx;
  14. }
  15. .item-title {
  16. font-size: 30rpx;
  17. color: #131D34;
  18. font-weight: bold;
  19. }
  20. .item-desc {
  21. color: #909090;
  22. font-size: 22rpx;
  23. }