@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 .yc-app-door .j-title {
  font-size: 16px;
  color: #3E7AFA;
  height: 30px;
  line-height: 30px;
  display: inline-flex;
  cursor: pointer;
  margin: 10px 10px 0;
}
:host .app-door-icon {
  width: 30px;
  height: 30px;
  padding: 5px;
  cursor: pointer;
}
:host .yc-app-door ul {
  padding: 0px 0px 20px;
  margin: 0px;
  list-style-type: none;
  display: table;
}
:host .yc-app-door li {
  height: 130px;
  width: 136px;
  list-style: none;
  float: left;
  margin: 20px 10px;
  text-align: center;
  border: 1px solid rgba(100, 123, 252, 0);
}
:host .yc-app-door li:hover {
  box-shadow: 0px 2px 9px 0px #d6dcff;
  border-radius: 4px;
  border: 1px solid rgba(100, 123, 252, 0.27);
}
:host .yc-app-door li.li-active:hover {
  border: 1px solid rgba(100, 123, 252, 0);
  box-shadow: none;
}
:host .yc-app-door img {
  width: 70px;
  height: 70px;
  margin: 10px;
  cursor: pointer;
}
:host .j-title img {
  width: 20px;
  height: 20px;
  margin: 4px;
}
:host .yc-app-door .a-name {
  cursor: pointer;
  color: #666666;
  font-size: 16px;
}
:host .yc-app-door {
  width: 500px;
  text-align: left;
}
:host .yc-app-door li:hover .a-name {
  color: #3E7AFA;
}
:host .yc-app-door .a-active {
  color: #333333;
}
:host .yc-app-door .a-curent {
  width: 90px;
  height: 24px;
  font-size: 16px;
  line-height: 24px;
  margin: 10px auto;
  color: #666666;
  background: whitesmoke;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
}
:host .yc-app-door i {
  font-size: 50px;
  margin: 20px;
}
:host .j-close {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin: 0;
  height: 2.4rem;
}
:host .j-close:not(:first-child) {
  position: relative;
  color: #262626;
}
:host .j-close:not(:first-child)::after {
  content: "";
  box-sizing: border-box;
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 200%;
  background: #e6e6e6;
  transform: scale(0.5);
  transform-origin: 0 0;
}
:host .j-close:last-child {
  color: #2170D9;
}