list-view.wxss 776 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .tui-list-title{
  2. width: 100%;
  3. padding: 30rpx;
  4. box-sizing: border-box;
  5. font-size: 30rpx;
  6. line-height: 30rpx;
  7. color: #666;
  8. }
  9. .tui-list-content{
  10. width: 100%;
  11. position: relative;
  12. }
  13. .tui-list-content::before {
  14. content: " ";
  15. position: absolute;
  16. top: -1rpx;
  17. right: 0;
  18. left: 0;
  19. border-top: 1rpx solid #eaeef1;
  20. -webkit-transform: scaleY(0.5);
  21. transform: scaleY(0.5);
  22. }
  23. .tui-list-content::after {
  24. content: '';
  25. position: absolute;
  26. border-bottom: 1rpx solid #eaeef1;
  27. -webkit-transform: scaleY(0.5);
  28. transform: scaleY(0.5);
  29. bottom: 0;
  30. right: 0;
  31. left: 0;
  32. }
  33. .tui-border-top::before {
  34. border-top: 0;
  35. }
  36. .tui-border-bottom::after {
  37. border-bottom:0;
  38. }
  39. .tui-border-all::after {
  40. border-bottom:0;
  41. }
  42. .tui-border-all::before {
  43. border-top:0;
  44. }