.js_highlight_container {
  position: relative;
  
}
.js_highlight_container.on .highlight-footer {
  display: none;
}
.js_highlight_container.on .hide-btn {
  display: flex;
}
.js_highlight_container.on .highlight-wrap {
  max-height: none;
}
.js_highlight_container .highlight-wrap {
  overflow: hidden;
  max-height: 200px;
  border-radius: 15px; /* 圆角的半径 */
  color: rgba(0,0,0,0.5);
}
.js_highlight_container .highlight-footer {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 60px;
  background-image: linear-gradient(-180deg, rgba(255,255,255,0) 0%, highlight-background 65%);
  text-align: center;
}
.js_highlight_container .show-btn {
  font-size: 12px;
  color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  line-height: 2em;
  text-decoration: none;
  padding: 0 0.8em;
  text-align: center;
  border-radius: 4px 4px 0;
}
.js_highlight_container .show-btn:hover {
  text-decoration: none;
}
.js_highlight_container .hide-btn {
  color: #fff;
  font-size: 12px;
  width: 22px;
  position: absolute;
  left: -21px;
  top: 0;
  line-height: 1em;
  text-decoration: none;
  text-align: center;
  display: none;
  flex-direction: column;
  background-color: highlight-background;
  border-radius: 4px 0 0 4px;
  padding: 0.1em 0 0.6em;
  transition: top ease 0.35s;
}
.js_highlight_container .fa-angle-up,
.js_highlight_container .fa-angle-down {
  font-style: normal;
  color: #fff;
}
.js_highlight_container .fa-angle-up:before {
  content: "\f106";
}
.js_highlight_container .fa-angle-down:before {
  content: "\f107";
  margin-left: 0.5em;
}
.js_highlight_container .js_unfold_code_btn,
.js_highlight_container .js_retract_code_btn {
  background: rgba(0,0,0,0.5);
  border-bottom: none !important;
}
.js_highlight_container .js_unfold_code_btn:hover,
.js_highlight_container .js_retract_code_btn:hover {
  border-bottom-color: none !important;
}
