123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- @charset "UTF-8";
- .plv-mp-chat-edit-wrap {
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- background: #44434f;
- }
- .plv-mp-chat-edit-input {
- height: 100rpx;
- box-sizing: border-box;
- display: flex;
- padding: 0 20rpx;
- }
- .plv-mp-chat-edit-input-left {
- height: 100%;
- display: flex;
- align-items: center;
- }
- .plv-mp-chat-edit-ipt {
- flex: 1;
- font-size: 26rpx;
- border-radius: 8rpx;
- border: none;
- background: #212121;
- color: #fff;
- padding-left: 10rpx;
- height: 60rpx;
- margin: 20rpx 0;
- text-align: left;
- }
- .plv-mp-chat-edit-input-right {
- height: 100%;
- display: flex;
- align-items: center;
- margin-left: 10rpx;
- }
- .plv-mp-send-btn {
- color: #fff;
- font-size: 28rpx;
- line-height: 40rpx;
- }
- .plv-mp-chat-edit-input__icon {
- width: 40rpx;
- height: 40rpx;
- margin-right: 20rpx;
- }
- .plv-mp-chat-edit-input__add {
- margin-right: 0;
- }
- .plv-mp-emotion-list {
- height: 200rpx;
- padding: 20rpx 40rpx;
- display: flex;
- flex-wrap: wrap;
- overflow-y: scroll;
- -webkit-overflow-scrolling: touch;
- box-sizing: border-box;
- }
- .plv-mp-emotion-item {
- width: 12%;
- text-align: center;
- font-size: 0;
- overflow: hidden;
- }
- .plv-mp-emotion-item__icon {
- display: inline-block;
- margin: -10rpx 0 0 -10rpx;
- width: 48px;
- height: 48px;
- transform: scale(0.64);
- background: url(//livestatic.polyv.net/assets/images/em/default.png) no-repeat;
- }
- .plv-mp-chat-edit-plus {
- height: 200rpx;
- padding: 20rpx 40rpx;
- overflow-y: scroll;
- -webkit-overflow-scrolling: touch;
- box-sizing: border-box;
- }
- .plv-mp-chat-edit-plus-item {
- width: 25%;
- display: inline-flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- margin-bottom: 20rpx;
- }
- .plv-mp-chat-edit-host-icon {
- width: 90rpx;
- height: 90rpx;
- margin-bottom: 20rpx;
- }
- .plv-mp-chat-edit-host-title {
- color: #fff;
- font-size: 24rpx;
- }
- /**
- 白天皮肤
- */
- .plv-mp-skin__white {
- background: #fff;
- }
- .plv-mp-skin__white .plv-mp-chat-edit-ipt {
- background: #fafafa;
- color: #000;
- }
- .plv-mp-skin__white .plv-mp-send-btn, .plv-mp-skin__white .plv-mp-chat-edit-host-title {
- color: #757575;
- }
|