@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: block;
}
:host #svgContainer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}
:host #svgContainer > svg {
  position: absolute;
}
:host circle {
  -webkit-transition: stroke-dasharray 0.25s;
  transition: stroke-dasharray 0.25s;
}