.live-page-content-left {
    background: white;
    flex: 1;
    box-sizing: border-box;
    height: 100%;
    max-height: 100%;
    border-radius: 5px 5px 0 0;
    margin: 0 5px;
}

.live-page-channel-header {
    height: 60px;
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.live-page-channel-title {
    flex: 1;
    text-align: left;
    font-size: 24px;
    font-weight: 400;
    color: #3a3a3a;
}

#dplayer {
    width: 100%;
    max-width: 100%;
    height: calc(100% - 60px);
    max-height: calc(100% - 60px);
}

.live-page-content-right {
    background: white;
    box-sizing: border-box;
    width: 340px;
    max-width: 340px;
    max-height: 100%;
    border: 1px solid #eee;
    border-radius: 5px;
}

.live-page-welcome-container {
    box-sizing: border-box;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    padding-left: 8px;
    font-size: 14px;
    line-height: 40px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

#live-page-chat-container {
    width: 100%;
    max-width: 100%;
    height: calc(100% - 80px);
    max-height: calc(100% - 80px);
    margin: 0 5px;
    overflow: hidden auto;
    font-size: 14px;
    text-align: left;
}

.live-page-send-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: 40px;
    max-height: 40px;
    display: flex;
    border-radius: 5px;
    border: 1px solid #e6e6e6;
}

#live-page-msg-input {
    border: none;
    flex: 1;
}

#live-page-msg-input:focus, #live-page-msg-input:focus-visible {
    outline: 1px solid #ffab48;
    border: none;
}

.live-page-send-btn {
    font-size: 14px;
    height: 40px;
    padding: 6px 15px;
    background: #ff8a00;
    border: none;
    color: white;
    outline: 1px solid #ff8a00;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.live-page-send-btn:hover {
    opacity: 0.9;
}