/**
 * 详情页醒目提示条（教程/软件）
 */
.xu5-tnotices {
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.xu5-tnotice {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border: 1px solid;
  border-radius: 8px;
  padding: 10px 34px 10px 13px;
  font-size: 13.5px;
  line-height: 1.6;
  font-weight: 500;
}
.xu5-tnotice.xu5-tnotice-hide {
  display: none;
}
.xu5-tnotice .xu5-tnotice-ico {
  flex-shrink: 0;
  font-size: 15px;
  line-height: 1.5;
}
.xu5-tnotice .xu5-tnotice-txt {
  flex: 1;
  min-width: 0;
}
.xu5-tnotice a {
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
}
.xu5-tnotice a:hover {
  opacity: 0.8;
}
.xu5-tnotice-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: inherit;
  opacity: 0.5;
  padding: 2px 4px;
}
.xu5-tnotice-close:hover {
  opacity: 1;
}
.xu5-tnotice--red {
  background: #fff1f0;
  border-color: #ffa39e;
  color: #cf1322;
}
.xu5-tnotice--orange {
  background: #fff7e6;
  border-color: #ffd591;
  color: #d46b08;
}
.xu5-tnotice--blue {
  background: #e6f4ff;
  border-color: #91caff;
  color: #0958d9;
}
.xu5-tnotice--green {
  background: #f6ffed;
  border-color: #95de64;
  color: #389e0d;
}
@media (max-width: 600px) {
  .xu5-tnotice {
    font-size: 13px;
    padding: 9px 30px 9px 11px;
  }
}
