/*聊天窗口 -始*/
._chat-window {
    position: absolute;
    width: 660px;
    border: 1px solid #e4e4e4;
    background: #FFFFFF;
    box-sizing: border-box;
    z-index: 100;
}
._chat-window ._chat-body {width: 100%;}
._chat-window a {color: #333;}
._chat-window .cur-move {cursor: move;}
._chat-body ._chat-body-top {
    position: relative;
    height: 70px;
    display: flex;
    align-items: center;
    background: #fff;
}
._chat-body-top ._chat-user {
    width: 100%;
    line-height: 1;
    padding: 0 60px 0 30px;
    box-sizing: border-box;
}
._chat-body-top .username {
    font-size: 16px;
}
._chat-body-top .tip {
    font-size: 0;
    margin-top: 8px;
}
._chat-body-top .tip span {
    font-size: 14px;
    vertical-align: middle;
}
._chat-body-top .ico-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 22px;
    height: 22px;
    background: url('../images/close.png') no-repeat center;
    background-size: 12px auto;
    cursor: pointer;
}
/*消息区*/
._chat-body ._chat-body-msg {
    height: 350px;
    border-top: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
    overflow-y: auto;
    padding: 15px 0;
    background-color: #f9f9f9;
    box-sizing: border-box;
}
._chat-body-msg ._gray {color: #999;}
._chat-body-msg ._gray2 {color: #ccc;}
._chat-body-msg .fit-cover {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}
._chat-body-msg .fit-cover img {
    width: 100%;
    height: 100%;
}
._chat-body-msg .show-more,
._chat-body-msg .time {
    text-align: center;
    font-size: 13px;
    padding: 10px 0;
}
._chat-body-msg .withdraw {
    font-size: 13px;
    text-align: center;
    color: #9f9f9f;
    padding: 10px 0;
}
._chat-body-msg ._chat-template {
    display: flex;
    padding: 10px 30px;
}
._chat-body-msg .chat-head {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
}
._chat-body-msg ._their-own {
    flex-direction: row-reverse;
}
._chat-body-msg .chat-msg-content {
    display: flex;
    flex: 1;
    font-size: 14px;
}
._other-party .chat-msg-content {
    padding: 0 80px 0 15px;
}
._their-own .chat-msg-content {
    flex-direction: row-reverse;
    padding: 0 15px 0 80px;
}
._chat-body-msg .msg-text-wrap {
    display: inline-block;
    max-width: 100%;
    word-break: break-all;
    border: 1px solid #f1f1f1;
    overflow: hidden;
}
._chat-body-msg ._other-party .msg-text-wrap {
    background-color: #fff;
    border-radius: 0 12px 12px;
}
._chat-body-msg ._their-own .msg-text-wrap {
    background-color: #e4f4f1;
    border-radius: 12px 0 12px 12px;
}
._chat-body-msg .msg-text-wrap .msg-text {
    padding: 15px 20px;
}
._chat-body-msg .msg-text-wrap .msg-text i {
    max-width: 20px;
    max-height: 20px;
    vertical-align: bottom;
}
.msg-text-wrap .confirm-btn-box {
    display: flex;
    align-items: center;
    border-top: 1px solid #f1f1f1;
}
.msg-text-wrap .confirm-btn-box .c-btn {
    flex: 1;
    text-align: center;
    line-height: 39px;
    box-sizing: border-box;
    border-left: 1px solid #f1f1f1;
}
.msg-text-wrap .confirm-btn-box .c-btn:first-of-type {
    border-left: 0;
}
._chat-body-msg .msg-img-wrap {
    display: inline-block;
    max-width: 50%;
    overflow: hidden;
}
._chat-body-msg .msg-img-wrap img {
    max-width: 180px;
    max-height: 150px;
    vertical-align: middle;
}
._chat-body-msg ._other-party .msg-img-wrap {
    border-radius: 0 12px 12px;
}
._chat-body-msg ._their-own .msg-img-wrap {
    border-radius: 12px 0 12px 12px;
}
._chat-body-msg ._chat-alone-row {
    padding: 10px 0;
}
._chat-body-msg ._chat-alone {
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    margin: 0 95px;
    box-sizing: border-box;
    overflow: hidden;
}
._chat-body-msg ._chat-alone .btm-btn {
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #f1f1f1;
    cursor: pointer;
    box-sizing: border-box;
}
._chat-body-msg .msg-online-resume {
    height: 70px;
    line-height: 70px;
    font-size: 16px;
    font-weight: bold;
    padding: 0 20px 0 80px;
    background: url("../images/fileType/resume.png") no-repeat 20px center #fff;
    background-size: 45px auto;
    cursor: pointer;
}
/*文件*/
._chat-body-msg ._other-party .msg-file-wrap {
    border-radius: 0 12px 12px;
}
._chat-body-msg ._their-own .msg-file-wrap {
    border-radius: 12px 0 12px 12px;
}
._chat-body-msg .msg-file-wrap {
    width: 240px;
    min-height: 86px;
    background-color: #fff;
    border: 1px solid #f1f1f1;
    box-sizing: border-box;
    cursor: pointer;
}
._chat-body-msg .msg-file-wrap .file-wrap {
    display: flex;
    padding: 15px 20px;
}
.msg-file-wrap .file-info-box {
    flex: 1;
    overflow: hidden;
}
.msg-file-wrap .file-type {
    width: 45px;
    height: 45px;
    margin-left: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.msg-file-wrap ._pdf {background-image: url("../images/fileType/pdf.png");}
.msg-file-wrap ._doc {background-image: url("../images/fileType/doc.png");}
.msg-file-wrap ._wps {background-image: url("../images/fileType/wps.png");}
.msg-file-wrap ._txt {background-image: url("../images/fileType/txt.png");}
.msg-file-wrap ._ppt {background-image: url("../images/fileType/pptx.png");}
.msg-file-wrap ._exl {background-image: url("../images/fileType/exl.png");}
.msg-file-wrap ._resume {background-image: url("../images/fileType/resume.png");}
.msg-file-wrap .file-desc {
    font-size: 12px;
    color: #CCCCCC;
    padding-top: 8px;
}
.msg-file-wrap .file-name {
    font-size: 14px;
    text-align: justify;
    color: #333;
}
.msg-file-wrap .view-btn {
    text-align: center;
    line-height: 39px;
    border-top: 1px solid #f1f1f1;
}
/*职位信息*/
._chat-position-info .pos-info-wrap {
    padding: 12px 20px;
    line-height: 1.5;
    font-size: 12px;
}
._chat-position-info .pd {
    padding: 3px 0;
}
._chat-position-info .pos-top {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
}
._chat-position-info .pos-top .name {
    flex: 1;
}
._chat-position-info .pos-top .salary {
    color: #00B48B;
    margin-left: 20px;
}
._chat-position-info .pos-requirement,
._chat-position-info .pos-desc {
    color: #666;
}
._chat-position-info .require-box {
    display: flex;
    align-items: center;
    line-height: 1;
}
._chat-position-info .require-box .r-item {
    padding: 0 10px;
    border-left: 1px solid #666;
}
._chat-position-info .require-box .r-item:first-of-type {
    border-left: 0;
    padding-left: 0;
}
._chat-position-info .require-box .r-item:last-of-type {
    padding-right: 0;
}
._chat-position-info .pos-tags {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
}
._chat-position-info .pos-tags .tag {
    border: 1px solid #00B48B;
    color: #00B48B;
    line-height: 18px;
    margin: 4px 0 0 10px;
    padding: 0 5px;
    border-radius: 5px;
}
/*简历信息*/
._chat-body-msg ._chat-resume-info {
    padding: 0 20px;
    font-size: 12px;
}
._chat-resume-info .user-info-box {
    display: flex;
    padding: 15px 0;
}
._chat-resume-info .user-photo {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}
._chat-resume-info .user-photo .gender {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #fff;
    border-radius: 50%;
    box-sizing: border-box;
}
._chat-resume-info .user-photo .ico-boy {
    background: url('https://res.2016elite.com/pcweb/v2/images/offer/ico_boy_white.png') no-repeat center #0fb892;
    background-size: 10px auto;
}
._chat-resume-info .user-photo .ico-girl {
    background: url('https://res.2016elite.com/pcweb/v2/images/offer/ico_girl_white.png') no-repeat center #F16B74;
    background-size: 10px auto;
}
._chat-resume-info .user-info,
._chat-resume-info .ui-top .username {
    flex: 1;
    color: #333;
}
._chat-resume-info .user-info .ui-top {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 6px;
}
._chat-resume-info .ui-top .salary {
    color: #00B48B;
    margin-left: 20px;
}
._chat-resume-info .ui-tags {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #666;
}
._chat-resume-info .ui-tags .ui-tag {
    padding: 0 10px;
    line-height: 1;
    margin: 3px 0;
    border-left: 1px solid #666;
}
._chat-resume-info .ui-tags .ui-tag:first-of-type {
    border-left: 0;
    padding-left: 0;
}
._chat-resume-info .ui-tags .ui-tag:last-of-type {
    padding-right: 0;
}
._chat-resume-info .advantage {
    margin-bottom: 15px;
    color: #999;
}
._chat-resume-info .linkup-pos {
    color: #999;
    font-size: 13px;
    line-height: 34px;
    padding-bottom: 5px;
    border-top: 1px solid #efefef;
}
._chat-resume-info .experience-info {
    padding: 0 10px 5px 10px;
}
._chat-resume-info .experience-info .exp-item {
    margin-bottom: 10px;
}
._chat-resume-info .experience-info .exp-top {
    display: flex;
    align-items: center;
}
._chat-resume-info .exp-top .exp-name {
    position: relative;
    flex: 1;
    font-size: 14px;
    padding-left: 15px;
}
._chat-resume-info .exp-top .exp-name:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: #00B48B;
}
._chat-resume-info .exp-top .exp-time {
    font-size: 12px;
    color: #999;
    margin-left: 20px;
}
._chat-resume-info .experience-info .exp-p {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
    padding-left: 15px;
}
/*面试邀请*/
._chat-interview-invite .inte-invite-wrap {
    padding: 12px 20px;
    font-size: 12px;
}
._chat-interview-invite .i-title {
    background: url("https://res.2016elite.com/pcweb/v2/images/personal/index/ico_resume.png") no-repeat left center;
    background-size: contain;
    line-height: 22px;
    font-size: 16px;
    padding-left: 32px;
}
._chat-interview-invite .position-info-box {
    display: flex;
    background-color: #f9fafc;
    margin: 10px 0;
    padding: 10px 20px;
    border-radius: 2px;
}
._chat-interview-invite .position-info-box .logo {
    width: 56px;
    height: 56px;
    border-radius: 5px;
    margin-right: 15px;
    background-color: #fff;
    overflow: hidden;
}
._chat-interview-invite .info-box {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}
._chat-interview-invite .info-top {
    display: flex;
    align-items: center;
    line-height: 1;
    font-size: 14px;
}
._chat-interview-invite .info-top .name {
    flex: 1;
}
._chat-interview-invite .info-top .salary {
    color: #00B48B;
    margin-left: 20px;
}
._chat-interview-invite .company-name {
    color: #666;
    margin: 8px 0 5px 0;
}
._chat-interview-invite .require-box {
    display: flex;
    align-items: center;
    line-height: 1;
    color: #666;
}
._chat-interview-invite .require-box .r-item {
    padding: 0 10px;
    border-left: 1px solid #666;
}
._chat-interview-invite .require-box .r-item:first-of-type {
    border-left: 0;
    padding-left: 0;
}
._chat-interview-invite .require-box .r-item:last-of-type {
    padding-right: 0;
}
._chat-interview-invite .contact-info-box .ci-item {
    display: flex;
    line-height: 1.5;
}
._chat-interview-invite .ci-item .ci-title {
    color: #666;
}
._chat-interview-invite .ci-item .ci-content {
    flex: 1;
}
/*发送区*/
._chat-body ._chat-body-send {
    display: flex;
    flex-direction: column;
    height: 150px;
}
._chat-body-send .opts-bar {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 30px 5px 30px;
}
._chat-body-send .opts-bar .ico {
    width: 22px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 20px;
    cursor: pointer;
}
._chat-body-send .opts-bar .ico-emoji {
    background-image: url("https://res.2016elite.com/pcweb/images/biaoqing1.png");
}
._chat-body-send .opts-bar .ico-image {
    background-image: url("https://res.2016elite.com/pcweb/images/image.png");
}
._chat-body-send .opts-bar .ico-file {
    background-image: url("https://res.2016elite.com/pcweb/images/tb_10.png");
}
._chat-body-send .expression-package {
    position: absolute;
    top: -185px;
    left: 0;
    background: #FFFFFF;
    width: 375px;
    height: 140px;
    padding: 20px 10px 30px 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    z-index: 1000;
}
._chat-body-send .fast-btn {
    display: inline-flex;
    line-height: 18px;
    padding: 0 6px;
    border-radius: 10px;
    border: 1px solid #00B48B;
    font-size: 12px;
    color: #00B48B;
    margin-right: 10px;
    cursor: pointer;
}
._chat-body-send .chat-ipt-box {
    flex: 1;
    width: 100%;
    overflow: hidden;
}
._chat-body-send .chat-ipt {
    height: 100%;
    outline: none;
    overflow-y: auto;
    padding: 0 15px;
    font-size: 14px;
    color: #333;
    word-break: break-all;
    box-sizing: border-box;
}
._chat-body-send .chat-ipt img {
    max-width: 20px;
    max-height: 20px;
    vertical-align: bottom;
}
._chat-body-send .btm-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 5px 15px 10px 15px;
}
._chat-body-send .btn-box {
    position: relative;
    display: inline-block;
}
._chat-body-send .btn-send {
    display: flex;
    align-items: center;
    height: 32px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    overflow: hidden;
    cursor: pointer;
}
._chat-body-send .btn-send .send {
    width: 85px;
    line-height: 32px;
    text-align: center;
    background-color: #00B48B;
}
._chat-body-send .btn-send .ico-down {
    position: relative;
    width: 32px;
    height: 32px;
    background: url('https://res.2016elite.com/pcweb/images/u992.png') no-repeat center #00B48B;
    background-size: 7px auto;
}
._chat-body-send .btn-send .ico-down:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background-color: #ADE6D9;
}
._chat-body-send .btn-send .send:hover,
._chat-body-send .btn-send .ico-down:hover {
    opacity: 0.7;
}
._chat-body-send .btn-send-opts {
    position: absolute;
    right: -140px;
    top: 38px;
    width: 180px;
    background-color: #fff;
    border: 1px solid #fff;
    z-index: 999;
    box-shadow: 0 0 10px rgba(0,0,0,.5);
}
._chat-body-send .btn-send-opts li {
    position: relative;
    width: 100%;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
    cursor: pointer;
    padding-left: 35px;
    box-sizing: border-box;
}
._chat-body-send .btn-send-opts li:hover,
._chat-body-send .btn-send-opts li:hover i,
._chat-body-send .btn-send-opts .active:hover i {
    background-color: #00B48B;
    opacity: 0.8;
    color: #fff;
}
._chat-body-send .btn-send-opts i {
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 100%;
    background-color: #E4E4E4;
}
._chat-body-send .btn-send-opts .active i {
    background: url('https://res.2016elite.com/pcweb/images/tick1.png') no-repeat center #E4E4E4;
    background-size: 15px auto;
}
/*聊天窗口 -结*/

/*邀请投递弹窗 -始*/
._chat-invite-delivery {
    position: absolute;
    min-width: 346px;
    background-color: #fff;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
    z-index: 99;
}
._chat-invite-delivery .ico-close {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 20px;
    height: 20px;
    background: url('../images/close.png') no-repeat center;
    background-size: 12px auto;
    cursor: pointer;
}
._chat-invite-delivery .h3 {
    line-height: 25px;
    font-size: 17px;
    font-weight: bold;
    color: #0fb892;
}
._chat-invite-delivery .p {
    font-size: 12px;
    line-height: 38px;
}
._chat-invite-delivery .btm-btn-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
._chat-invite-delivery .position-info {
    display: flex;
    height: 32px;
    line-height: 32px;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 30px 0;
    background-color: #f6f6f6;
    padding: 0 10px;
    color: #666;
    border-radius: 2px;
    font-size: 12px;
}
._chat-invite-delivery .position-info .tag {
    padding-left: 20px;
    margin-left: 10px;
    max-width: 150px;
    box-sizing: border-box;
}
._chat-invite-delivery .position-info .tag:first-of-type {
    margin-left: 0;
}
._chat-invite-delivery .position-info .ico-position {
    background: url("../images/offer/ico_package.png") no-repeat left center;
    background-size: auto 17px;
}
._chat-invite-delivery .position-info .ico-city {
    background: url("../images/offer/ico_location.png") no-repeat left center;
    background-size: auto 15px;
}
._chat-invite-delivery .position-info .ico-salary {
    background: url("../images/offer/ico_money.png") no-repeat left center;
    background-size: auto 17px;
}
._chat-invite-delivery .btm-btn-box .b-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    width: 146px;
    height: 40px;
    border-radius: 5px;
    box-sizing: border-box;
    cursor: pointer;
}
._chat-invite-delivery .btm-btn-box .btn-border {
    border: 1px solid #0fb892;
    color: #0fb892;
}
._chat-invite-delivery .btm-btn-box .btn-solid {
    background-color: #0fb892;
    color: #fff;
}
._chat-invite-delivery .choose-pos-list {
    position: absolute;
    top: 42px;
    left: 0;
    min-width: 146px;
    max-height: 214px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #efefef;
    box-shadow: 1px 0 10px rgba(0, 0, 0, .1);
    padding: 6px 0;
    box-sizing: border-box;
}
._chat-invite-delivery .choose-pos-list .pos-item {
    color: #666;
    line-height: 18px;
    padding: 11px 10px;
    font-size: 12px;
    text-align: left;
    white-space: nowrap;
    cursor: pointer;
}
._chat-invite-delivery .choose-pos-list .pos-item:hover {
    background-color: #f2f2f2;
}
._chat-invite-delivery .choose-pos-list .pos-item.active {
    color: #0fb892;
}
/*邀请投递弹窗 -结*/