/* hp_bar.css */
/* ============================
   灵骸值进度条
   依赖：无
   ============================ */
.hp-bar-container {
  width: 100%;
  background: #1a1410;
  border: 1px solid #3a2a1a;
  height: 20px;
  margin: 5px 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.hp-bar-fill {
  height: 100%;
  transition: width 0.3s;
}
.hp-bar-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 20px;
  font-size: 0.8rem;
  color: #fff;
}