.qucnews {
  width: 95%;
  margin: 5px auto;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
  transition: var(--transition-normal);
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.qucnews:hover {
  background: var(--color-accent-5);
}
.qucnewleft {
  flex: 0 0 65px;
  height: 65px;
  margin-right: 0.5rem;
  border-right: 2px solid var(--color-accent-2);
}
.qucimg {
  height: 100%;
  width: 65px;
  object-fit: cover;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.qucnewright {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  text-align: left;
}
.qucnewtitl {
  font-size: var(--font-size-xs);
  font-weight: bold;
  color: var(--color-primary);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.qucdate {
  font-size: 0.625rem;
  font-weight: bold;
  color: var(--color-primary);
}
.qucbtn {
  position: absolute;
  right: 5px;
  bottom: 5px;
  text-align: right;
  width: calc(100% - 80px);
  z-index: 2;
}
.qucsub {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--color-white);
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  z-index: 3;
  width: 100%;
}
.qucbtn:hover .qucsub,
.qucsub:hover {
  max-height: 100px;
  opacity: 1;
  pointer-events: auto;
  background: var(--color-accent-5);
}
.qucitem {
  width: 30px;
  height: 30px;
  background-color: #f9f9f9;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-normal);
  border: 1px solid transparent;
  margin: 0.08rem;
}
.qucitem:hover {
  background-color: #eaeaea;
  border-color: var(--color-danger);
}
.qucitem:focus-within {
  border-color: var(--color-warning);
}
.qucsubbtn {
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.qucicon {
  width: 100%;
  height: auto;
  display: block;
}