chapter.wxss 782 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. @charset "UTF-8";
  2. .plv-mp-chapter-wrap {
  3. height: 100%;
  4. overflow: hidden;
  5. }
  6. .plv-mp-chapter-list {
  7. height: 100%;
  8. }
  9. .plv-mp-chapter-item {
  10. display: flex;
  11. align-items: center;
  12. color: #fff;
  13. font-size: 28rpx;
  14. padding-left: 30rpx;
  15. }
  16. .plv-mp-chapter-item-selected {
  17. color: #42a5f5;
  18. }
  19. .plv-mp-chapter-item__icon {
  20. width: 30rpx;
  21. height: 30rpx;
  22. margin-right: 30rpx;
  23. }
  24. .plv-mp-chapter-item__content {
  25. padding: 30rpx 40rpx 30rpx 0;
  26. flex: 1;
  27. display: flex;
  28. justify-content: space-between;
  29. align-items: center;
  30. border-bottom: 1px solid #4e4c5b;
  31. }
  32. /**
  33. 白天皮肤
  34. */
  35. .plv-mp-skin__white {
  36. background: #f5f9fa;
  37. }
  38. .plv-mp-skin__white .plv-mp-chapter-item {
  39. color: #212121;
  40. }
  41. .plv-mp-skin__white .plv-mp-chapter-item__content {
  42. border-bottom: 0;
  43. }