@font-face {
  font-family: "ZhuZiAYuanJWD";
  src: url(/ZhuZiAWan.woff2);
  font-display: swap;
  font-weight: lighter;
}
h1,
h2,
h3,
h4,
h5,
h6,
span {
  color: var(--text-color);
}
* {
  font-family: "ZhuZiAYuanJWD";
  box-sizing: border-box;
  user-select: none;
  transition: all 0.2s ease-in-out;
}
:root {
  --bg: #f8fafc;
  --card-bg: #ffffff;
  --card-radius: 12px;
  --card-border: #e5e7eb 1px solid;
  --card-highlight-border: #e5e7eb 1px solid;
  --text-color: #4c4948;
  --text-color-light: #64748b;
  --scrollbar-thumb: #49b1f5;
}
body {
  background-color: #f8fafc;
  margin: 0;
}
.title-bar {
  z-index: 999;
  margin: 10px;
  color: var(--text-color);
  display: flex;
  background-color: var(--card-bg);
  justify-content: space-between;
  align-items: center;
  height: 45px;
  border: var(--card-border);
  border-radius: var(--card-radius);
}
.title {
  font-size: 18px;
  line-height: 1;
  margin-top: -3px;
  margin-left: 20px;
}
.search-input {
  flex: 1;
  margin-right: 8px;
  margin-left: 15px;
  max-width: 250px;
  padding: 5px 10px;
  border: none;
  border-radius: 6px;
  background-color: #f1f5f9;
  color: var(--text-color);
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease-in-out;
}
.search-input::placeholder {
  color: var(--text-color-light);
}
.search-input:focus {
  background-color: #e5e7eb;
  box-shadow: 0 0 0 1px #49b1f5;
}
.container {
  max-height: calc(100vh - 55px);
  overflow-y: auto;
  margin: 0 10px;
  overflow-x: hidden;
}
.group-title {
  margin: 15px 10px 8px 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  padding-left: 3px;
}
.app {
  display: flex;
  margin: 10px;
  cursor: pointer;
  color: var(--text-color);
  background-color: var(--card-bg);
  padding: 10px 13px;
  border: var(--card-border);
  border-radius: var(--card-radius);
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
.app-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  align-items: flex-start;
}
.app-title {
  margin: 0;
}
.app-desc {
  margin: 0;
  font-size: 13px;
  color: var(--text-color-light);
}
.app:hover {
  background-color: #e5e7eb;
  border: var(--card-highlight-border);
}
.app-to-icon {
  width: 20px;
  fill: var(--text-color-light);
  height: 20px;
  margin-right: 7px;
}
.app-to-icon {
  opacity: 0;
}
.app:hover .app-to-icon {
  opacity: 1;
}
