@import './common.css';
@import './header.css';
@import './detail.css';
@import './chat.css';

body{
    min-width: 1180px;
}

/* 头部 */
.main-header{
    min-width: 988px;
}

/* 主体 */
#mainBody{
    width: 100%;
    box-sizing: border-box;
    padding: 10px 65px;
}
.main-content {
    position: relative;
    margin: 0 auto;
    max-width: 1380px;
}

/*
    直播、聊天室
*/
.live-container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
}

/* 左侧 */
.live-container .live-l {
    background: #feffff;
    border: 1px solid #fff;
    border-radius: 16px;
}

.live-l-notice {
    width: 100%;
    line-height: 40px;
    padding: 0 20px;
    box-sizing: border-box;
    border-top: 1px solid #ddd;
}
.live-l-notice-l{
    width: 100%;
}
.live-l-notice-l .live-l-notice-title {
    font-size: 21px;
    font-family: PingFang SC;
    font-weight: 600;
    color: #0E0E0E;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
    width: 90%;
}

.live-l-notice-description {
    color: #636363;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.live-l-opt{
    text-align: right;
}
.live-l-notice-l .share-weixin{
    display: inline-block;
    position: relative;
    margin-right: 5px;
}
.live-l-notice-l .share-weixin .weixin-popover{
    position: absolute;
    bottom: 40px;
    right: 0;
    z-index: 999;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 20px 10px;
    text-align: center;
    display: none;
}

.live-l-notice-l .share-weixin .qrcode{
    margin: 0 20px 10px;
}
.live-l-notice-l .share-weixin:hover .weixin-popover{
    display: block;
}


.live-l-notice-l .share-soulagent{
    display: inline-block;
    position: relative;
    margin-right: 5px;
}
.live-l-notice-l .share-soulagent .soulagent-popover{
    position: absolute;
    bottom: 40px;
    right: 0;
    z-index: 999;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 20px 10px;
    text-align: center;
    display: none;
}

.live-l-notice-l .share-soulagent .qrcode{
    margin: 0 20px 10px;
}

.live-l-notice-l .share-soulagent:hover .soulagent-popover{
    display: block;
}
/* 右侧 聊天室 */
.live-container .live-r {
    display: none;
    margin-left: 20px;
    position: relative;
    width: 380px;
}

.chat-header {
    color: rgb(72, 72, 72);
}

.chat-header-interaction {
    width: 100%;
}

.chat-body {
    height: calc(100% - 40px - 68px);
    position: relative;
}

.more-message {
    bottom: 68px;
}

.chat-footer-content .icon-WordsTips {
    margin: 10px 20px 0 0;
}

.chat-footer-content #btn-emoji {
    margin: 7px 20px 0 0;
}

/* emoji */
.emoji-wrapper {
    width: 270px;
}
.emoji-item {
    width: 36px;
    height: 36px;
}
.emoji-item span {
    font-size: 24px;
}
