
#app .line-1 {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
#app .t-tab {
  color: #666666;
  font-size: 1.125rem;
  cursor: pointer;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
#app .t-tab:hover {
  opacity: 0.8;
}
#app .t-tab.is-active {
  font-size: 1.375rem;
  font-weight: 500;
  color: #161616;
}
#app .s-tab {
  border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
  padding: 0 0.5rem;
  background-color: #ffffff;
  color: #666666;
  cursor: pointer;
  line-height: 2rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
#app .s-tab:hover {
  opacity: 0.8;
}
#app .s-tab.is-active {
  font-weight: 600;
  background-color: #161616;
  color: #fff;
}