index.wxss 679 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .express{
  2. width: 100%;
  3. background: white;
  4. }
  5. .box{
  6. margin: 0 20rpx;
  7. padding: 20rpx 0;
  8. display: flex;
  9. align-items: center;
  10. justify-content: space-between;
  11. border-bottom: 1rpx solid #d6d6d6;
  12. }
  13. .box::after{
  14. background: #d6d6d6;
  15. }
  16. .box .box_conten{
  17. display: flex;
  18. flex: 1;
  19. margin: 0 10rpx;
  20. flex-direction: column;
  21. justify-content: center;
  22. }
  23. .box .box_conten .text{
  24. font-size: 30rpx;
  25. color: #21b314;
  26. font-weight: bold;
  27. text-overflow: -o-ellipsis-lastline;
  28. overflow: hidden;
  29. text-overflow: ellipsis;
  30. display: -webkit-box;
  31. -webkit-line-clamp: 1;
  32. line-clamp: 1;
  33. -webkit-box-orient: vertical;
  34. }
  35. .date{
  36. font-size: 30rpx;
  37. color: #999999;
  38. }