@charset "UTF-8";
html {
  font-size: 125%;
}

img {
  vertical-align: middle;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #11111100;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.2);
}

:host {
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
  padding: 1rem;
  margin-top: 0.5rem;
}
:host .head {
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}
:host .head::after {
  content: "";
  box-sizing: border-box;
  border-radius: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 1px;
  background: #e6e6e6;
  transform-origin: 0 100%;
  transform: scale(0.5);
  transform-origin: 0 0;
}
:host .head .title {
  font-size: 0.8rem;
  font-weight: bold;
}
:host .head .desc {
  font-size: 0.7rem;
  color: #8c8c8c;
  margin: 0.3rem 0 0 0;
  text-align: justify;
}
:host .head .btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  font-size: 0.7rem;
  color: #e90000;
  margin-left: 1rem;
  -webkit-tap-highlight-color: transparent;
}
:host .head .btn:first-child {
  margin-left: 0;
}