123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- @charset "UTF-8";
- .plv-mp-chapter-wrap {
- height: 100%;
- overflow: hidden;
- }
- .plv-mp-chapter-list {
- height: 100%;
- }
- .plv-mp-chapter-item {
- display: flex;
- align-items: center;
- color: #fff;
- font-size: 28rpx;
- padding-left: 30rpx;
- }
- .plv-mp-chapter-item-selected {
- color: #42a5f5;
- }
- .plv-mp-chapter-item__icon {
- width: 30rpx;
- height: 30rpx;
- margin-right: 30rpx;
- }
- .plv-mp-chapter-item__content {
- padding: 30rpx 40rpx 30rpx 0;
- flex: 1;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1px solid #4e4c5b;
- }
- /**
- 白天皮肤
- */
- .plv-mp-skin__white {
- background: #f5f9fa;
- }
- .plv-mp-skin__white .plv-mp-chapter-item {
- color: #212121;
- }
- .plv-mp-skin__white .plv-mp-chapter-item__content {
- border-bottom: 0;
- }
|