<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.app {
    position: fixed;
    right: 20px;
    width: 350px;
    background-color: white;
    color: white;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #ff5722;
    /*bottom: 0px;*/
    top: 300px;
}

.app .head {
    /*width: 100%;*/
    padding: 10px;
    background: #ff5722;
    user-select: none;
    cursor: move;
}

.app .head .left {
    float: left;
}

.app .head .left img {
    float: left;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    user-select: none;
}

.app .head .left .info {
    float: left;
    padding-left: 8px;
}

.app .head .left .info h2 {
    font-size: 16px;
}

.app .head .left .info p {
    font-size: 14px;
}

.app .head .right {
    float: right;
    width: 30px;
    height: 30px;
    margin-top: 10px;
    margin-right: 5px;
    cursor: pointer;
}

.app .talk {
    color: #333;
}

.app .talk .msg-box {
    height: 350px;
    overflow-y: auto;
}

.app .talk .msg-box .list-state {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 12px !important;
    color: #C0C4CC;
}

.app .talk .msg-box .onTalkRecord {
    cursor: pointer;
}

.app .talk .msg-box .time-item {
    width: 30%;
    border-radius: 4px;
    background-color: #eee;
    font-size: 10px;
    text-align: center;
    display: flex;
    color: #909399;
    justify-content: center;
}

.app .talk .msg-box .msg-item .logo {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 4px;
    border-radius: 4px;
    overflow: hidden;
}

.app .talk .msg-box .msg-item .text {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    vertical-align: text-top;
    max-width: 60%;
    margin-top: -20px;
    background: #DCDFE6;
    border-radius: 3px;
}

.app .talk .msg-box .msgfont {
    text-decoration: none;
}

.app .talk .msg-box .qyb {
    text-align: left;
    margin-top: 10px;
    margin-bottom: 15px;
}

.app .talk .msg-box .customer {
    text-align: right;
    margin-top: 10px;
    margin-bottom: 15px;
}

.app .footer .input {
    height: 60px;
    padding-left: 4px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.app .footer .input textarea {
    width: 100%;
    height: 100%;
    border: 0;
    resize: none;
}

.app .footer .send {
    /*margin: 0 6px 6px 0;*/
}

.app .footer .send button {
    float: right;
    width: 80px;
    padding: 6px 10px;
    border: none;
    background-color: #ff5722;
    color: white;
}
</pre></body></html>