@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: inline-block;
}
:host .app-serves-icon {
  width: 22px;
  height: 22px;
}
:host .content {
  width: 450px;
}
:host .content .a-title {
  font-size: 16px;
  color: #595959;
  line-height: 36px;
  text-align: left;
  padding: 12px 24px 0;
}
:host ul {
  margin: 0px;
  list-style-type: none;
  max-height: 344px;
  overflow-y: auto;
}
:host ul li {
  line-height: 70px;
  padding: 0 24px;
  width: 100%;
  list-style: none;
  text-align: left;
  display: inline-block;
}
:host ul li .a-name {
  color: #333333;
  font-size: 14px;
  margin-left: 10px;
}
:host ul li .a-num {
  float: right;
  color: #333333;
  font-size: 14px;
}
:host ul li .a-num dd {
  font-size: 20px;
  display: inline-flex;
  padding: 4px;
}
:host ul li .list-icon {
  width: 26px;
  height: 26px;
  background: #5179fa;
  border-radius: 2px;
  padding: 4px;
  vertical-align: middle;
}
:host ul li:hover {
  background: #f4f4f4;
}
:host ul li:hover .a-name {
  color: #595959;
}
:host ul li.li-link:hover {
  background: #f0f4ff;
}
:host ul li.li-link:hover .a-name {
  color: #3E7AFA;
  cursor: pointer;
}
:host .a-nodata {
  text-align: center;
}
:host .a-nodata p {
  font-size: 14px;
  color: #999;
  padding: 6px;
}