/* /components/component.css */
#content {
  width: 280px;
  height: 200px;
  overflow-y: scroll;
  /* 垂直滚动条 */
  background: #fff;
}

#loader {
  display: none;
  text-align: center;
}

/*生僻字样式*/
.rare-style {
  display: flex;
  align-items: center;
}

/*生僻字样式*/
.rare-text {
  flex: none;
  color: #4C7AFE;
  padding-left: 10px;
}

#searchPopup {
  width: 280px;
  display: none;
  position: absolute;
  background: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 5px;
  z-index: 999;
}

.searchPopup-input {
  padding: 10px 12px;
  display: flex;
  position: relative;
}

#searchInput {
  flex: 1;
  height: 30px;
  padding: 0 10px;
}

#results {
  background: #fff;
}

.li-item {
  height: 48px;
  line-height: 48px;
  padding: 0 12px;
  display: flex;
  justify-content: space-between;
}

#search-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -10px;
  width: 20px;
}

#search-btn img {
  width: 100%;
}

.copy-btn {
  cursor: pointer;
  color: #1F68CE;
}

#content::-webkit-scrollbar {
  width: 8px;
}

#content::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 5px;
}

#content::-webkit-scrollbar-track {
  background: #fff;
}

#content::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/*复制成功的样式*/
.alert-common{
  position: fixed;
  top: 50%;
  left: 50%;
  color: #FFF;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.64);
  border-radius: 4px 4px 4px 4px;
  padding: 10px 16px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  z-index: 999;
}
