.tools-container[data-v-6b2ca81e] {
  width: 100%;
  height: 100%;
  padding: 30px 94px;
}
.tools-container .title[data-v-6b2ca81e] {
  display: flex;
  align-items: center;
}
.tools-container .title .title-text[data-v-6b2ca81e] {
  margin-right: 30px;
  font-weight: 500;
  font-size: 24px;
  color: #eef7ff;
  user-select: none;
}
.tools-container .title .search-btn[data-v-6b2ca81e] {
  display: flex;
  align-items: center;
  gap: 4px;
  user-select: none;
}
.tools-container .title[data-v-6b2ca81e] .el-input {
  width: 400px;
  height: 40px;
}
.tools-container .title[data-v-6b2ca81e] .el-input .el-input__wrapper {
  width: 400px;
  height: 40px;
  background: linear-gradient(270deg, #14171e 0%, #1f232d 100%);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  padding: 0 20px;
}
.tools-container .title[data-v-6b2ca81e] .el-input .el-input__inner {
  color: #ffffff;
}
.tools-container .title[data-v-6b2ca81e] .el-input .el-input__inner::placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #eef7ff;
  opacity: 0.5;
  line-height: 16px;
}
.tools-container .app-container[data-v-6b2ca81e] {
  margin-top: 28px;
  height: calc(100% - 70px);
  overflow: auto;
}
.tools-container .app-container .app-list[data-v-6b2ca81e] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 20px;
}
.tools-container .app-container .app-list .app-item[data-v-6b2ca81e] {
  aspect-ratio: 1/1;
  cursor: pointer;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tools-container .app-container .app-list .app-item a[data-v-6b2ca81e] {
  width: 100%;
  height: 100%;
  transition: 0.3s;
  position: relative;
}
.tools-container .app-container .app-list .app-item .cover[data-v-6b2ca81e] {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.tools-container .app-container .app-list .app-item .name[data-v-6b2ca81e] {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  height: 54px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  border-radius: 0 0 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tools-container .app-container .app-list .app-item:hover a[data-v-6b2ca81e] {
  transform: scale(1.02);
}