.xxtz {
  background: #f9f9f9;
  padding-bottom: 2.125rem;
}
.msg_list {
  background-color: #ffffff;
  border-radius: 0.125rem;
  padding: 0 0.25rem;
  margin-top: 1.2rem;
  
}
.msg_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 1.225rem;
  border-bottom: 1px dashed #f1f1f1;
}
.m_item_left {
  width: 60%;
  padding-left: 0.125rem;
}
.m_item_title {
  font-size: 0.2rem;
  color: #333333;
  position: relative;
  display: inline;
}
.m_item_title.active::before {
  content: "";
  width: 0.075rem;
  height: 0.075rem;
  border-radius: 50%;
  position: absolute;
  left: -0.125rem;
  background: #f08519;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
}
.m_item_time {
  font-size: 0.175rem;
  color: #7c7c7c;
  font-weight: bold;
  padding-top: 0.1rem;
}
.m_item_btn {
  width: 1.5rem;
  height: 0.4625rem;
  border: 1px solid #f08519;
  text-align: center;
  line-height: 0.4625rem;
  color: #f08519;
  font-size: 0.2rem;
  cursor: pointer;
}
.msg_detail {
  background-color: #ffffff;
  border-radius: 0.125rem;
  padding: 0.5rem 0.25rem 0.75rem;
  margin-top: 1.2rem;
}
.m_detail_title {
  font-size: 0.225rem;
  color: #333333;
  text-align: center;
}
.m_detail_sub {
  font-size: 0.175rem;
  color: #7c7c7c;
  padding: 0.5rem 5.75rem 0.125rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eeeeee;
}
.m_detail_con {
  padding-top: 0.25rem;
  font-size: .2rem;
  color: #333333;
  line-height: .325rem;
}


@media screen and (max-width:768px) {
  .msg_item{
    height: auto;
    padding: 10px 5px;
  }
  .m_item_left{
    width: 80%;
  }
  .m_item_title{
    font-size: 14px;
  }
  .m_item_time{
    font-size: 12px;
  }
  .m_item_btn{
    font-size: 10px;
      width: 60px;
      height: 20px;
      line-height: 20px;
  }
  .m_detail_title{
    font-size: 16px;
  }
  .m_detail_sub{
    font-size: 12px;
    padding: 5px 20px 10px;
  }
  .m_detail_con{
    padding: 10px 5px;
    font-size: 12px;
    line-height: 18px;
  }
  .m_item_title{
    display: block;
  }
}