123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- .plv-mp-rtc {
- display: inline-block;
- width: 54px;
- height: 60px;
- position: absolute;
- box-sizing: border-box;
- z-index: 10;
- right: 0;
- bottom: 18%;
- }
- .plv-mp-rtc-icon {
- width: 100%;
- height: 100%;
- }
- .plv-mp-rtc-modal {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.8);
- display: flex;
- justify-content: center;
- align-items: center;
- z-index: 9999;
- }
- .plv-mp-rtc-modal__window {
- position: absolute;
- width: 275px;
- height: 250px;
- border-radius: 12px;
- color: white;
- }
- .plv-mp-rtc-modal__window > image {
- width: 100%;
- height: 100%;
- }
- .plv-mp-rtc-modal__text {
- display: inline-block;
- position: absolute;
- width: 100%;
- text-align: center;
- color: #18252C;
- letter-spacing: 0;
- box-sizing: border-box;
- padding: 0 16px;
- }
- .plv-mp-rtc-modal__title {
- top: 36px;
- left: 0;
- font-size: 22px;
- }
- .plv-mp-rtc-modal__content {
- top: 82px;
- left: 0;
- font-size: 16px;
- }
- .plv-mp-rtc-button {
- color: white;
- height: 44px;
- line-height: 44px;
- border-radius: 8px;
- font-size: 16px;
- }
- .plv-mp-rtc-modal__btns {
- display: flex;
- position: absolute;
- top: 170px;
- width: 100%;
- }
- .plv-mp-rtc-modal__btns--confirm {
- margin-right: 16px;
- width: 96px;
- background-image: linear-gradient(56deg, #FF5C20 0%, #FFAC1A 100%);
- }
- .plv-mp-rtc-modal__btns--cancel {
- width: 135px;
- background-image: linear-gradient(90deg, #FF102B 0%, #FF3183 100%);
- }
|