index.wxss 911 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .zan-cell {
  2. position: relative;
  3. padding: 12px 15px;
  4. display: flex;
  5. align-items: center;
  6. line-height: 1.4;
  7. font-size: 14px;
  8. }
  9. .zan-cell::after {
  10. position: absolute;
  11. left: 15px;
  12. right: 0;
  13. bottom: 0;
  14. border-top: 1rpx solid #e5e5e5;
  15. background: #e5e5e5;
  16. content: ' ';
  17. }
  18. .zan-cell__bd {
  19. flex: 1;
  20. }
  21. .zan-cell__ft {
  22. position: relative;
  23. text-align: right;
  24. color: #666;
  25. }
  26. .zan-cell--last-child::after,
  27. .zan-cell:last-child::after {
  28. display: none;
  29. }
  30. .zan-cell--access .zan-cell__ft {
  31. padding-right: 13px;
  32. }
  33. .zan-cell--access .zan-cell__ft::after {
  34. position: absolute;
  35. top: 50%;
  36. right: 2px;
  37. content: " ";
  38. display: inline-block;
  39. height: 6px;
  40. width: 6px;
  41. border-width: 2px 2px 0 0;
  42. border-color: #c8c8c8;
  43. border-style: solid;
  44. transform: translateY(-50%) matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  45. }
  46. .zan-cell--switch {
  47. padding-top: 6px;
  48. padding-bottom: 6px;
  49. }