.t_b {
  font-size: 1.8rem;
  font-weight: 600;
}
.limit_ {
  max-height: 32px;
}
.limit_ p {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
@-webkit-keyframes typing {
  0% {
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 12px 0 0 0 rgba(0, 0, 0, 0.2), 24px 0 0 0 rgba(0, 0, 0, 0.2);
  }
  25% {
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 12px 0 0 0 rgba(0, 0, 0, 0.8), 24px 0 0 0 rgba(0, 0, 0, 0.2);
  }
  75% {
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 12px 0 0 0 rgba(0, 0, 0, 0.2), 24px 0 0 0 rgba(0, 0, 0, 0.8);
  }
}
@keyframes typing {
  0% {
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 12px 0 0 0 rgba(0, 0, 0, 0.2), 24px 0 0 0 rgba(0, 0, 0, 0.2);
  }
  25% {
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 12px 0 0 0 rgba(0, 0, 0, 0.8), 24px 0 0 0 rgba(0, 0, 0, 0.2);
  }
  75% {
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 12px 0 0 0 rgba(0, 0, 0, 0.2), 24px 0 0 0 rgba(0, 0, 0, 0.8);
  }
}
/*layout*/
.list {
  display: block;
  width: 100%;
  padding-left: 3vw;
  padding-right: 3vw;
  padding-top:1vw;
  height: 26.8vw;
  border-bottom: 1px solid #f1f1f1;
  position: relative;
  max-height: 160px;
}
.list .title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333333;
}
.list .content {
  font-size: 1.3rem;
  color: #666666;
  min-height: 35px;
  height:6vw;
  margin-top: 2vw;

}
.list .note {
  font-size: 1.2rem;
  position: absolute;
  bottom: 1vw;
  width: 94vw;
}
.list .note .ing {
  color: #259b24;
}
.list .note .over {
  color: #e82a2a;
}
.list .note .time {
  color: #999999;
}
.tip {
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #c1c1c1;
}
/*加载动画*/
.loading {
  width: 100%;
  height: 40px;
}
.typing_loader {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  -webkit-animation: typing 1s linear infinite alternate;
  -moz-animation: Typing 1s linear infinite alternate;
  animation: typing 1s linear infinite alternate;
  position: relative;
  top: 17px;
  left: calc( 50vw - 20px );
}

/*tab*/
.tabs {
  width: 100vw;
  height: 44px;
  padding: 8px 0;
  background: #f1f1f1;
}
.tabs .tab {
  display: inline-block;
  width: 49vw;
  height: 100%;
  color: #333333;
  font-size: 1.5rem;
  line-height: 28px;
  text-align: center;
}
.tabs .tab:first-child {
  border-right: 1px solid #e5e5e5;
}
.tabs .active {
  color: #fd6743;
}
