/* 首页消息 */

ul,
ol,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clearfix:after {
  content: "";
  /*设置内容为空*/
  height: 0;
  /*高度为0*/
  line-height: 0;
  /*行高为0*/
  display: block;
  /*将文本转为块级元素*/
  visibility: hidden;
  /*将元素隐藏*/
  clear: both;
  /*清除浮动*/
}

.clearfix {
  zoom: 1;
  /*为了兼容IE*/
}

.fr {
  float: right;
}

.message_drawer {
  width: 0px;
  height: 100%;
  position: fixed;
  right: 0px;
  top: 0;
  background-color: #fff;
  z-index: 1051;
  font-size: 0;
  transition: width 1s;
  -moz-transition: width 1s;
  /* Firefox 4 */
  -webkit-transition: width 1s;
  /* Safari and Chrome */
  -o-transition: width 1s;
  /* Opera */
  display: none;
}

.message_list_wrap,
.message_detail_wrap {
  display: inline-block;
  width: 259px;
}

.message_list_wrap {
  width: 259px;
  height: 100%;
  background-color: #fff;
  border-right: 1px solid #f0f0f0;
  vertical-align: top;
}

.message_detail_wrap {
  width: 300px;
  height: 100%;
  background-color: #f9f9f9;
  vertical-align: top;
}

.message_list {
  height: calc(100% - 100px);
  overflow-y: auto;
  overflow-x: hidden;
}

.message_list_wrap .mes_tit,
.message_detail_wrap .mes_tit {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  border-bottom: 1px solid #f0f0f0;
}

.message_list .message_one {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 20px;
  background-color: #fff;
  cursor: pointer;
}

.message_list .message_one.active {
  background-color: #f9f9f9;
}

.message_list .status_circle {
  width: 6px;
  height: 6px;
  background: #e34d59;
  display: inline-block;
  border-radius: 50%;
  margin-right: 6px;
}

.message_list .message_level {
  display: inline-block;
  width: 28px;
  height: 16px;
  vertical-align: middle;
  margin-right: 5px;
  background: url("/static/Public/lawFirm/img/messageModal_04.png");
  background-size: 100% 100%;
}

.message_list .message_level[data-i="1"] {
  background: url("/static/Public/lawFirm/img/messageModal_01.png");
  background-size: 100% 100%;
}

.message_list .message_level[data-i="2"] {
  background: url("/static/Public/lawFirm/img/messageModal_02.png");
  background-size: 100% 100%;
}

.message_list .message_level[data-i="3"] {
  background: url("/static/Public/lawFirm/img/messageModal_03.png");
  background-size: 100% 100%;
}

.message_list .mes_one_btn {
  text-align: right;
  font-size: 14px;
  color: #999999;
  cursor: pointer;
}

.message_list .mes_one_btn span {
  cursor: pointer;
  margin-top: 8px;
  display: inline-block;
}

.message_detail_wrap .message_detail {
  height: calc(100% - 100px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 16px;
}

.cancel_mes_Drawer_btn {
  cursor: pointer;
}

.message_detail_wrap .mess_one_tit {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
}

.message_detail_wrap .message_detail_cont {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  margin-top: 10px;
}

.message_detail_wrap .message_detail_cont .fw6 {
  font-weight: 600;
}

.message_detail_wrap .message_detail_cont .mes_info_tit {
  width: 64px;
  display: inline-block;
  text-align-last: justify;
}

.message_detail_wrap .message_detail_cont img {
  width: 80px;
  height: 80px;
  display: block;
  margin-top: 4px;
  vertical-align: top;
}

.message_detail_wrap .join_project_btn {
  width: 100%;
  background: #0052d9;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  display: block;
  text-align: center;
  padding: 6px;
  margin-top: 10px;
}

.message_detail_wrap .reject_project_btn {
  display: block;
  background-color: #f9f9f9;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  cursor: pointer;
  text-align: center;
  margin-top: 10px;
  padding: 6px;
}

.message_detail_wrap .message_btn {
  text-align: right;
  font-size: 14px;
  color: #999999;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: #0052d9;
}

.message_detail_wrap .message_btn span {
  cursor: pointer;
}

/* 背景 */
.message_modal_bg {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1050;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
}