.Page {
    min-height: 100vh;
    min-width: 1200px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.message-main{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed; 
    background: rgba(0, 0, 0, 0.65);
    z-index: 2000;
    overflow: hidden;
}

.centerit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6666;
    overflow: hidden;
}

.chat-container {
    background-color: white;
    width: 830px;
    height: 520px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    border: 1px solid #ccc;
}
.chat-container aside {
    width: 330px;
    height: 100%;
    background-color:white;
    display: flex;
    flex-direction: column;
}

.chat-container aside .top-bar {
    background-color: #E8E9EB;
    display: flex;
    align-items: center;
    height: 48px;
    justify-content: space-between;
}

.chat-container aside .top-bar .close{
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.complaintClose{
    width: 24px;
    height: 24px;
    cursor: pointer;
}


.chat-container aside .new-conversation {
    color: #131212;
    font-weight: bold;
    font-size: 14px;
    padding-left: 8px;
}

.chat-container aside .conversations {
    height: calc(100% - 48px);
    width: 100%;
    border-left: 1px solid #ccc;
    overflow-y: hidden;
}


.chat-container aside .conversations .thread .details {
    display: flex;
    justify-content:flex-start;
    align-items: center;
    margin: 16px;
    max-width: 100%;
    flex-grow: 2;
}

.chat-container aside .conversations .thread .details .user-head {
    grid-area: user-image;
    margin-right: 8px;
    flex-shrink: 1;
    position: relative;
    padding-bottom:34px
}

.chat-container .user-head img {
    border-radius: 50%;
    width: 28px;
    height: 28px;
}

.chat-container .user-head .img2{
    border-radius: 50%;
    width: 36px;
    height: 36px;
}

/* .chat-container .user-head.online:after {
    background-color: #01e777;
} */

.chat-container aside .conversations .thread .details .user-name {
    grid-area: user-name;
    color: #131212;
    font-weight: bold;
    font-size: 14px;
    white-space:nowrap;    
    overflow: hidden;
    text-overflow: ellipsis;
    width: 200px;
}

.chat-container aside .conversations .thread .details .last-message {
    padding-top: 8px;
    max-width: 250px;
}
.chat-container aside .conversations .thread .details .last-messageTop {
    padding-top: 4px;
}

.chat-container aside .conversations .thread .details .last-message {
    grid-area: last-message;
    color: #5E5E66;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.chat-container aside .conversations .thread .details .last-messageTop {
    grid-area: last-message;
    color: #8D8E99;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.chat-container aside .conversations .thread .last {
    background-color: #303841;
    height: 22px;
    width: 50px;
    color: #ffffff;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
    border-radius: 11px;
    position: relative;
    top: 21px;
    right: 17px;
}

.chat-container aside .conversations .thread .last.new:after {
    content: 'NEW';
    display: block;
    background-color: #0091e9;
    height: 22px;
    width: 50px;
    position: relative;
    left: 0;
    top: -22px;
    border-radius: 11px;
}

.chat-container aside .conversations .thread.active {
    background-color: #F4F5F7;
}

.chat-container aside .conversations .thread {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    cursor: pointer;
}


.chat-container main {
    width: calc(100% - 330px);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
}

.chat-container main .top-bar {
    background-color: #E8E9EB;
    /* border-bottom: solid 1px #d6d6d6; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6px 0 12px;
    position: relative;
}

.chat-container .top-bar {
    height: 48px;
    display: flex;
    border-left: solid 1px #d6d6d6;
}


.flexStart{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.chat-container main .top-bar .user-info{
    width: 100%;
}

.chat-container main .top-bar .user-info .name {
    grid-area: user-name;
    font-size: 12px;
    font-weight: bold;
    color: #131212;
}

.chat-container main .messages {
    height: calc(100% - 168px);
    display: flex;
    flex-direction: column;
}

.chat-container main .messages .mescroll{
    width: calc(100% - 330px);
    height: calc(100% - 168px);
    position: fixed;
    top: 50px;
    overflow-y: auto;
}

.chat-container main .messages .date-split {
    text-align: center;
    color: #afafaf;
    display: flex;
    justify-content: center;
    align-items: center;
}
.chat-container main .messages .date-split:before {
    margin-right: 20px;
}

.chat-container main .messages .date-split:before, .chat-container main .messages .date-split:after {
    content: '';
    display: block;
    height: 1px;
    width: 100px;
    background-color: #c4c3c3;
}

.chat-container main .messages .message .content {
    max-width: 256px;
    /* width: fit-content; */
    height: fit-content;
    background-color: #F4F5F7;
    padding: 15px;
    border-radius: 10px 10px 10px 10px;
    margin-left: 8px;
    margin-top: 8px;
    color: #131212;
    font-size: 12px;
}

.contentImg{
    max-width: 256px;
    /* width: fit-content; */
    height: fit-content;
    background-color: #F4F5F7;
    border-radius: 10px 10px 10px 10px;
    margin-left: 8px;
    margin-top: 8px;
    color: #131212;
    font-size: 12px;
}

/* .chat-container main .messages .message:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 15px 0;
    border-color: transparent #F4F5F7 transparent transparent;
    position: absolute;
    left: 29px;
    top:50px;
} */

.chat-container main .messages .message.fromme {
    flex-direction: row-reverse;
}

.chat-container main .messages .message {
    display: flex;
    margin: 20px;
    position: relative;
}

.chat-container main .messages .message.fromme .content {
    border-radius: 10px 10px 10px 10px;
    margin-left: unset;
    margin-right: 8px;
    background-color: #F4F5F7;
    color: #131212;
    font-size: 12px;
}

.contentCard{
    width: 200px;
    height: fit-content;
    background-color: #F4F5F7;
    padding: 15px;
    border-radius: 10px 10px 10px 10px;
    margin-left: 8px;
    margin-top: 8px;
    color: #131212;
    font-size: 12px;
}

.contentCardFromme{
    width: 200px;
    height: fit-content;
    background-color: #01e777;
    padding: 15px;
    border-radius: 10px 10px 10px 10px;
    margin-left: 8px;
    margin-top: 8px;
    color: #131212;
    font-size: 12px;
}


/* .chat-container main .messages .message.fromme:after {
    border-width: 15px 20px 0 0;
    border-color: #01e777 transparent transparent transparent;
    right: 28px;
    left: unset;
} */

.chat-container main .bottom-bar {
    background-color: #ffffff;
    height: 120px;
    width: 100%;
    border-top: 1px solid #ccc;
    position: relative;
    /* justify-content: space-between;
    align-items: center; */
}
.chat-container main .bottom-bar .msg-input {
    width: 100%;
    border-style: none;
    height: 84px;
    background-color:white;
    padding: 10px 15px 0 15px;
    box-sizing:border-box;
	-moz-box-sizing:border-box; /*Firefox*/
	-webkit-box-sizing:border-box;
    color:#131212;
    font-size: 14px;
    outline:none;
    resize: none;
}

.chat-container main .bottom-bar .send-button {
    background: #264AFF;
    cursor: pointer;
    box-sizing: border-box;
    padding: 0 12px;
    height: 24px;
    line-height: 24px;
    border-radius: 3px;
    margin-left:12px;
    font-size: 12px;
    color: white;
}

.paddingLeft20{
    padding-left: 20px;
}

.paddingLeft10{
    padding-left: 10px;
}

.flexStartColumn{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
}

.flexStartColumnList{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    flex-grow: 2;
}

.userName{
    font-size: 12px;
    color: #131212;
    font-weight: bold;
    margin-left: 8px;
}
.flexStart .time{
    font-size: 12px;
    color: #5E5E66;
    padding-left: 12px;
}

.userNameRight{
    font-size: 12px;
    color: #131212;
    font-weight: bold;
    padding-left: 10px;
}

.timeRight{
    font-size: 12px;
    color: #5E5E66;
    margin-right: 8px;
    padding-left: 12px;
}


.flexStartColumnEnd{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-end;
}

.messageBg{
    padding: 16px;
    border-radius: 3px;
    background: #FFFFFF;
    box-sizing: border-box;
    border: 1px solid #D3D4D6;
    position: absolute;
    right: 16px;
    bottom: 240px;
    width: 360px;
    z-index: 9999;
}

.messagePrompt{
    font-size: 14px;
    color: #5E5E66;
    padding-left: 16px;
}

.flexSpaceBetween{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.messageSecondBg{
    padding: 0 12px;
    border-radius: 3px;
    background: #FFFFFF;
    box-sizing: border-box;
    border: 1px solid #D3D4D6;
    position: absolute;
    right: 16px;
    bottom: 190px;
    width: 240px;
    height:40px;
    z-index: 9999;
}
.messageSecondPrompt{
    font-size: 16px;
    color: #5E5E66;
    padding-left: 8px;
    padding-right: 4px;
}
.messageNum{
    font-size: 12px;
    color: #FFFFFF;
    background: #F01D24;
    line-height: 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
}
.flexEnd{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.flexEndBtn{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.messageset{
    padding-left: 8px;
    color: #5E5E66;
    font-size: 14px;
}

.paddingSpace{
    padding-left: 16px;
    padding-right: 16px;
}

.flexStartStart{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.flexEndStart{
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.marginLeft4px{
    margin-left: 4px;
}

.marginRight4px{
    margin-right: 4px;
}

.flexSpaceBetween .date{
    font-size: 12px;
    color: #5E5E66;
    text-align: right;
    white-space: nowrap;
}
.sendStyle{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position:absolute;
    bottom: 12px;
    right: 16px;
}

.defaultImg{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-bottom: 40px;
}

.defaultText{
    font-size: 12px;
    color: #5E5E66;
    text-align: center;
    padding-top: 16px;
}

.send-Img{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    box-sizing: border-box;
    border: 1px solid #D3D4D6;
    padding: 0 12px;
    height: 24px;
    line-height: 24px;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}
.send-ImgTitle{
    font-size: 12px;
    color:#131212;
    padding-left: 8px;
}
.translateImg{
    width: 30px;
    height: 20px;
    object-fit: cover;
    cursor: pointer;
    margin-top: 8px;
}

.translatedImg{
    width: 30px;
    height: 20px;
    object-fit: cover;
    cursor: pointer;
}

.useSet{
    cursor: pointer;
    flex-wrap: nowrap;
    flex-shrink: 0;
    height: 100%;
}

.messagePro{
    position: relative;
}

.message_greendot{
    position: absolute;
    background-color: #06BF7F;
    left: 12px;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.purchaseTitle{
    color: #131212;
    font-size: 12px;
    font-weight: bold;
}

.purchaseTitleNoBold{
    color: #131212;
    font-size: 12px;
}

.subContent{
    color: #5E5E66;
    font-size: 12px;
    padding-top: 4px;
}
.paddingTop12px{
    padding-top: 12px;
}
.currency{
    color: #5E5E66;
    font-size: 12px;
    font-weight: bold;
}

.showPrice{
    color: #131212;
    font-size: 12px;
}
.paddingTop4px{
    padding-top: 4px;
}

.userSetAlert{
    position:absolute;
    right: 13px;
    top:42px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-radius: 3px;
    background: #FFFFFF;
    overflow-y: hidden;
    min-width: 128px;
    min-height: 128px;
    z-index: 7777;
    padding: 4px 8px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.08),0 4px 16px 0 rgba(0, 0, 0, 0.16);
}
.userSetAlertlist{
    width: 100%;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    color: #131212;
    text-align: center;
    margin-bottom: 4px;
    cursor: pointer;
}

.userSetAlertlist.active {
    background-color: #DEE8FA;
    border-radius: 3px;
}

.complain{
    width: 480px;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 24px 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    z-index: 9999;
}

.complainStr{
    color: #131212;
    font-size: 16px;
    font-weight: bold;
}
.complainTitle{
    font-size: 14px;
    color: #5E5E66;
    text-align: left;
    padding-top: 16px;
    padding-bottom: 16px;
}
.complainTitle .star{
    color: #F1343A;
}

.paddingTop16px{
    padding-top: 16px;
}
.paddingTop32px{
    padding-top: 32px;
}

.cancelButton{
    font-size: 14px;
    color: #131212;
    text-align: center;
    padding: 5px 18px;
    border-radius: 3px;
    background: #E8E9EB;
    cursor: pointer;
}

.confirmButton{
    font-size: 14px;
    color:white;
    text-align: center;
    padding: 5px 18px;
    border-radius: 3px;
    background: #264AFF;
    margin-left: 8px;
    cursor: pointer;
}

.compalinContent{
    color: #131212;
    font-size: 14px;
    text-align:center;
    cursor: pointer;
}

.complainBtn{
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.complainBg{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed; 
    background: rgba(0, 0, 0, 0.65);
    z-index: 9900;
}

.inputSendImg{
    width: 100%;
    height: 100%;
    opacity: 0;
    position:absolute;
    top:0;
    left: 0;
}


.inputView {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

.inputView .inputRemark {
    border: 1px solid #D3D4D6;
    border-radius: 4px;
    height: 60px;
    padding: 12px 12px;
    width: 100%;
}

/* 无更多消息 */
.msg-end{
    display: none;
    padding: 20px 0;
    font-size: 12px;
    text-align: center;
    color: #131212;
}

.noDataImage{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    width: 100%;
}

.noDataText{
    padding-top: 20px;
    color: #5E5E66;
    font-size: 12px;
    text-align: center;
}

.complain .listItem {
    margin: 0px 0px 16px 0px;
    padding: 4px 4px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 100%;
}


.complain .listItem .checkItem {
    width: 18px;
    height: 18px;
}


.complain .listItem .checkItem .selectIcon{
    width: 16px; height: 16px;
    border-radius: 8px;
    margin-right: 8px;
    box-sizing: border-box;
    /* 小手 */
    cursor: pointer;
}
.complain .listItem .checkItem .selected{
    border: 5px solid #264AFF;
}
.complain .listItem .checkItem .unselect{
    border: 1px solid #D3D4D6;
}
.complain .listItem span {
    margin-left: 8px;
    /* 常规/正文 大 body_md_regular */
    font-family: PingFangSC-Regular;
    font-size: 14px;
    font-weight: normal;
    line-height: 22px;
    text-align: center;
    letter-spacing: 0px;

    /* 中性色/标题 color_text_title */
    color: #131212;
}
.am-message-list {list-style-type:none;}
.am-message-list li{position:relative;margin-top: 10px;min-height:20px;padding:8px 40px;border-radius:20px;background-color:#F4F5F7;color:#131212;line-height:22px;cursor: pointer;}
.am-message-list li .icon-voiceLeft{display: inline-block;margin-top: 0;margin-right: 4px;width: 18px;height: 18px;background: url(../img/icon_IM_voice_left.gif) 0 0 no-repeat;background-size: contain;vertical-align: -4px;}
.am-message-list li.pause .icon-voiceLeft{background-image:url(../img/icon_IM_voice_left.png);}

.am-message-list li .icon-voiceRight{display: inline-block;margin-top: 0;margin-right: 4px;width: 18px;height: 18px;background:url(../img/icon_IM_voice_right.gif) 0 0 no-repeat;background-size: contain;vertical-align: -4px;}
.am-message-list li.pause .icon-voiceRight{background-image:url(../img/icon_IM_voice_right.png);}


.am-message-list li .voice-time{font-size: 12px;}
.am-message-list li.newRight .info:after{content: '';display: block;position: absolute;top: 0;left: -6px;width: 8px;height: 8px;background-color: #f00;border-radius: 100%;}
.am-message-list li.newLeft .info:after{content: '';display: block;position: absolute;top: 0;right: -6px;width: 8px;height: 8px;background-color: #f00;border-radius: 100%;}
.am-voice-info .info{padding-left: 15px;padding-right: 15px;cursor: pointer;}

/*override mescroll-empty*/
.mescroll-empty .empty-icon {
    width: 120px;
    height: 120px;
}
.mescroll-empty .empty-tip {
    font-size: 12px;
    text-align: center;
    color: #131212;
}

.translateText {
    word-break: break-word;
}

.chat-container aside .conversations .thread .details .user-head .reddot{
    content: '';
    display: block;
    position: absolute;
    bottom: 34px;
    right: 2px;
    width: 8px;
    height: 8px;
    background-color: #f00;
    border-radius: 100%;
}

.nameSub{
    color:#5E5E66;
    font-size: 10px;
    padding-top: 3px;
}