
/* study999-current-sentence-highlight-v1 */

/* 当前朗读句：整句背景、文字与拼音一起突出显示。 */
#app .sentence.study999-reading-now {
  background: #ecfdf5;
  box-shadow:
    inset 5px 0 0 #059669,
    0 0 0 1px #a7f3d0;
  border-radius: 12px;
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease;
  scroll-margin-top: 120px;
  scroll-margin-bottom: 85px;
}

#app .sentence.study999-reading-now .hanzi,
#app .sentence.study999-reading-now .hanzi .char {
  color: #065f46;
}

#app .sentence.study999-reading-now .pinyin {
  color: #047857;
}

@media (prefers-reduced-motion: reduce) {
  #app .sentence.study999-reading-now {
    transition: none;
  }
}
