.main {
    width: 1300px;
    height: auto;
    margin: 30px auto 100px;
}
.main .jump {
    width: 220px;
    height: 51px;
    line-height: 51px;
    text-align: center;
    background-color: #CC8A5E;
    border-radius: 4px;
    border: none;
    color: #fff;
    font-size: 18px;
}

.chat-box {
    width: 1305px;
    height: 862px;
    margin-top: 20px;
    background-color: #E5C7B5;
    border-radius: 6px 6px 6px 6px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
}
.chat-box .left {
    width: 313px;
    height: 839px;
    background-color: #fff;
    padding: 6px;
    padding-bottom: 0;
    border-radius: 6px 6px 6px 6px;
}
.left li {
    display: flex;
    padding: 8px;
}
.left li a {
    position: relative;
}
.left li:hover {
    background-color: #E3EDFC;
}
.left li.on {
    background-color: #E3EDFC;
}
.left li img {
    width: 67px;
    height: 67px;
    border-radius:50%;
}
.left li .user-info {
    width: 206px;
    padding: 10px 0 0 14px;
    color: #7E5E59;
}
.user-info .nick-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.user-info .nick-name span:nth-child(2n+1)  {
    font-size: 18px;
}
.user-info .nick-name span:nth-child(2n) {
    font-size: 14px;
}
.user-info .nick-name .blue {
    color: #4FA3FC;
}
.user-info .nick-name .pink {
    color: #F08D8D;
}
.user-info .intro {
    margin-top: 6px;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.left li a .mark {
    position: absolute;
    background: url(../img/chat/mark.png) no-repeat;
    width: 20px;
    height: 20px;
    right: -4px;
    top: 2px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 16px;

}

.chat-box .right {
    width: 965px;
    height: 839px;
    background-color: #F6F4F4;
    margin-left: 10px;
    border-radius: 6px 6px 6px 6px;
    position: relative;
}
.right .title {
    height: 60px;
    width: 100%;
    background-color: #EAEAEA;
    border-radius: 6px 6px 6px 6px;
    position: relative;
}
.right .title .nick-name {
    font-size: 24px;
    color: #EE7777;
    position: absolute;
    left: 50px;
    top: 15px;
}
.right .title span.nickname-blue {
    color: #4FA3FC;
}
.right .title i {
    font-size: 18px;
    color: grey;
    margin-left: 10px;
}
.right .title span.tips {
    width: 420px;
    font-size: 16px;
    color: #000;
    position: absolute;
    right: 50px;
    top: 20px;
}


.right .title button {
    font-size: 16px;
    color: #fff;
    padding: 6px 10px;
    background-color: #CC8A5E;
    border-radius: 4px;
    border: none;
}
.right .title .btn-1 {
    position: absolute;
    right: 112px;
    top: 14px;
}
.right .title .btn-2 {
    position: absolute;
    right: 18px;
    top: 14px;
}

.right .msg-box {
    position: relative;
}

.msg-box ul {
    padding: 24px 112px;
    overflow-y: auto;
    height: 670px;
}
.msg-box ul li {
    padding: 5px;
    margin-bottom: 30px;
    position: relative;
    width: 100%;
}
.msg-box .time {
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    color: #999;
}
.msg-box li span {
    display: block;
    border-radius: 7px;
    background: #a6e860;
    padding: 6px 10px 6px 10px;
    width: auto;
    overflow-wrap: normal;
    word-break: break-all; /*！！！！！！！！！中文换行，数字和英文不换行的处理*/
}
.msg-box li.text-left span {
    background-color: white;
}
/* .msg-box li.text-left::before {
    content: '';
    width: 67px;
    height: 67px;
    border-radius: 3px;
    display: block;
    background: url(../img/chat/profile-pic.png) no-repeat;
    background-color: 100%;
    position: absolute;
    left: -70px;
    top: -10px
} */
.msg-box li.text-left span::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-right: 4px solid white;
    position: absolute;
    top: 20px;
    left: -2px
}

.msg-box li.text-right {
    display: flex;
    justify-content: flex-end;
    text-align: left;
}
.msg-box .text-left .box {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.msg-box .text-right .box {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.msg-box li.text-left .profile-pic img {
    width: 67px;
    height: 67px;
    border-radius: 3px;
    display: block;
    position: absolute;
    left: -70px;
    top: -10px;
    border-radius:50%;
}
.msg-box li.text-right .profile-pic img {
    width: 67px;
    height: 67px;
    border-radius: 3px;
    display: block;
    position: absolute;
    right: -70px;
    top: -10px;
    border-radius:50%;
}
/* .msg-box li.text-right::after {
    content: '';
    width: 67px;
    height: 67px;
    border-radius: 3px;
    display: block;
    background: url(../img/chat/profile-pic.png) no-repeat center center;
    background-color: 100%;
    position: absolute;
    right: -70px;
    top: -10px
} */
.msg-box li.text-right span::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-left: 4px solid #a6e860;
    position: absolute;
    top: 20px;
    right: -2px
}


.right .content .link {
    position: absolute;
    bottom: 63px;
    left: 1%;
    width: 98%;
    height: 36px;
    background-color: #fff;
    display: flex;
    justify-content: start;
    align-items: center;
    padding-left: 20px;
}
.right .content .link i {
    color: #5A5F6C;
    font-size: 14px;
    margin-right: 20px;
}

/* .right .content .link a:link,
.right .content .link a:visited {
    font-size: 14px;
    margin-left: 20px;
    color:#5A9CFF;
    text-decoration:underline;
} */
/* .right .content .link a:hover,
.right .content .link a:active {
    color:#000000;
    text-decoration:none;
} */
.right .content a:link,
.right .content a:visited {
    font-size: 14px;
    color:#5A9CFF;
    text-decoration:underline;
}


.right .content .send {
    position: absolute;
    bottom: 10px;
    left: 1%;
    width: 98%;
    height: 50px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.content .send span {
    font-size: 20px;
    color: #5A5F6C;
}

.send .send-who input {
    margin-left: 20px;
    width: 710px;
    font-size: 18px;
    border: none;
    color: #000;
}
.send .send-btn {
    display: flex;
    align-items: center;
}
.send .send-btn button {
    height: 30px;
    font-size: 14px;
    color: white;
    border-radius: 4px;
    border: none;
}
.send-btn img {
    width: 18px;
    height: 18px;
}
.send-btn .btn-1 {
    background-color: #E5C7B5;
    padding: 4px 10px;
    margin:0 4px 0 10px;
}
.send-btn .btn-2 {
    background-color: #5A9CFF;
    padding: 4px 10px;
    margin-right: 20px;
}

/* 放大的输入层 */
.scale-layer-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(153, 151, 151, 0.8);
}
.scale-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background-color: #fff;
}
.scale-layer .send-who {
    position: absolute;
    left: 30px;
    top: 30px;
    display: flex;
    align-items: center;
}
.scale-layer .nick-name {
    margin-left: 20px;
    width: 150px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.scale-layer textarea {
    position: absolute;
    left: 0px;
    top: 30px;
    margin-left: 20px;
    width: 870px;
    height: 500px;
    font-size: 18px;
    border: none;
    color: #000;
    resize: none;

}
.scale-layer .send-btn {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.scale-layer .send-btn button {
    height: 30px;
    font-size: 14px;
    color: white;
    border-radius: 4px;
    border: none;
}
.scale-layer img {
    position: absolute;
    right: 20px;
    top: 30px;
    width: 18px;
    height: 18px;
}
.scale-layer .send-btn .btn-1 {
    background-color: #E5C7B5;
    padding: 4px 10px;
    margin:0 4px 0 10px;
}
.scale-layer .send-btn .btn-2 {
    background-color: #5A9CFF;
    padding: 4px 10px;
    margin-right: 0;
}