| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- * {
- box-sizing: border-box;
- }
- html, body, p {
- margin: 0;
- padding: 0;
- }
- body {
- font-size: 14px;
- }
- .plv-config {
- position: fixed;
- width: 300px;
- height: 430px;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- padding: 20px;
- margin: auto;
- text-align: center;
- background: #fff;
- border-radius: 2px;
- }
- .plv-config__title {
- font-size: 18px;
- font-weight: 400;
- margin-top: 20px
- }
- .plv-config__content {
- margin-top: 40px;
- }
- .plv-config__input {
- position: relative;
- margin: 0 auto;
- margin-bottom: 20px;
- padding: 0 5px;
- width: 220px;
- height: 38px;
- line-height: 38px;
- border: 1px solid #bfbfbf;
- border-radius: 3px;
- }
- .plv-config__checkbox {
- text-align: left;
- font-size: 13px;
- }
- .plv-config__checkbox__input {
- margin-left: 20px;
- vertical-align: top;
- }
- .plv-config__button {
- margin-top: 7px;
- width: 220px;
- line-height: 38px;
- background: #222791;
- color: #fff;
- border-radius: 3px;
- outline: none;
- border: none;
- }
- /* 点赞 */
- .plv-watch__likes {
- position: absolute;
- text-align: center;
- }
- .plv-watch-pc .plv-watch__likes {
- /* pc端位置 */
- right: 30px;
- top: 20%;
- bottom: auto;
- }
- #tab-chat .plv-watch__likes {
- /* 移动端位置 */
- right: 16px;
- bottom: 120px;
- }
- .plv-watch__likes-icon {
- display: inline-block;
- width: 40px;
- height: 40px;
- background: url('../img/btn-like.png');
- background-size: cover;
- cursor: pointer;
- }
- .plv-watch__likes-num {
- color: #adadc0;
- font-size: 14px;
- opacity: 0.8;
- }
- /* 直播状态 */
- .plv-watch-mobile #plv-watch__status {
- position: absolute;
- top: 0;
- right: 0;
- }
- .plv-watch-mobile #plv-watch__status::after {
- border-radius: 2px;
- font-size: 12px;
- padding: 4px;
- border: 1px solid;
- line-height: 1;
- }
- .plv-watch-pc #plv-watch__status {
- display: inline-block;
- margin-left: 10px;
- }
- .plv-watch-pc #plv-watch__status::after {
- border-radius: 2px;
- font-size: 12px;
- padding: 0 4px;
- border: 1px solid;
- line-height: 1;
- }
- .plv-watch__status--end::after {
- border-color: hsla(0,0%,100%,.6);
- color: hsla(0,0%,100%,.6);
- content: '暂无直播'
- }
- .plv-watch__status--playback::after {
- color: #78a7ed;
- border-color: #78a7ed;
- content: '回放中'
- }
- .plv-watch__status--live::after {
- color: #f06e6e;
- border-color: #f06e6e;
- content: '进行中'
- }
|