[v-cloak] {
  display: none;
}

@font-face {
  font-family: "Poppins";
  /* 定义字体的名称，之后在其他样式中会通过这个名称来引用该字体 */
  src: url("../font/Poppins-Regular.ttf") format("woff2");
  /* 指定字体文件的路径和格式，这里路径要根据实际字体文件放置位置调整 */
  /* 以下是可选属性，用于更精细地控制字体相关特性 */
  font-weight: normal;
  /* 定义字体的常规粗细程度，可以设置具体数值，如 400 等，也可以用关键字如 bold 等改变粗细 */
  font-style: normal;
  /* 定义字体的样式，如 normal（常规）、italic（斜体）等 */
}
html {
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif !important;
}

body {
  color: #333;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef2f7 40%, #e9eef5 100%);
  height: 100%;
}

.wr-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: transparent;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
  /* 加一点内边距，避免贴边 */
}

.logo-wrap {
  /* flex: 1; */
  line-height: 0;
}

.logo-wrap img {
  height: 56px;
}

.pageTitle {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #1f2d3d;
}

.section {
  padding: 10px;
  border-radius: 16px;
  padding: 6px 15px;
}
.section1 {
  padding: 8px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 0;
}

.search-wrap {
  background-color: #ffffff;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 6px 20px rgba(24, 39, 75, 0.06);
  border: 1px solid rgba(24, 39, 75, 0.06);
}

.search-wrap input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border-radius: 14px;
  font-size: 16px;
  border: none;
  outline: none;
  padding: 0 110px 0 40px;
  background-color: transparent;
}

.searchIcon {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 0;
}

.searchBtn {
  background: linear-gradient(135deg, #5a7bff 0%, #6a9bff 100%);
  height: 40px;
  line-height: C;
  position: absolute;
  color: #fff;
  display: inline-block;
  right: 8px;
  width: 96px;
  text-align: center;
  border-radius: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all ease-in-out 0.25s;
  box-shadow: 0 8px 20px rgba(90, 123, 255, 0.25);
  border: none;
}

.searchBtn:hover {
  transform: translateY(-50%) translateZ(0) scale(1.03);
  box-shadow: 0 10px 24px rgba(90, 123, 255, 0.3);
  color: #fff;
}

.quickWrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 10px;
}

.quick-item {
  background-color: #ffffff;
  padding: 2px 12px;
  border-radius: 999px;
  font-size: 10px;
  cursor: pointer;
  border: 1px solid rgba(24, 39, 75, 0.08);
  box-shadow: 0 4px 12px rgba(24, 39, 75, 0.05);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.quick-item:hover {
  background-color: #f3f6ff;
  box-shadow: 0 6px 16px rgba(24, 39, 75, 0.08);
  transform: translateY(-1px);
}

.el-carousel {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(24, 39, 75, 0.08);
}

.bannerItem {
  border-radius: 16px;
  overflow: hidden;
}

.bannerImg {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.section4 {
  flex: 1;
  /* height: 100%; */
  /* overflow: scroll; */
}

.section4::-webkit-scrollbar {
  display: none;
}

/* 隐藏IE和Edge的滚动条 */
.section4 {
  -ms-overflow-style: none;
}

/* 隐藏Firefox的滚动条 */
.section4 {
  scrollbar-width: none;
}

.appListWrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0px 0px 80px;
}

.app-icon {
  max-width: 48px;
  max-height: 48px;
}

.app-icon img {
  width: 100%;
  height: 100%;
}

.appItem-wrap {
  display: flex;
  gap: 14px;
  padding: 14px;
  background-color: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(24, 39, 75, 0.06);
  box-shadow: 0 6px 18px rgba(24, 39, 75, 0.06);
  align-items: center;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}

.appItem-wrap:hover {
  box-shadow: 0 12px 28px rgba(24, 39, 75, 0.12);
  transform: translateY(-1px);
}

.app-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* gap: 6px; */
}

.app-name {
  font-size: 16px;
  font-weight: 600;
  color: #1f2d3d;
}

.app-title {
  font-size: 13px;
  font-weight: 500;
  color: #4b5563;
  margin-bottom: 5px;
}

.app-desc {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  display: flex;
  gap: 8px;
}

.downBtn-wrap {
  display: flex;
  align-items: center;
}

.downBtn-wrap .el-button {
  background: linear-gradient(135deg, #626aef 0%, #7c86ff 100%);
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 8px 18px rgba(98, 106, 239, 0.3);
}

.downBtn-wrap .el-button:hover {
  filter: brightness(1.03);
  box-shadow: 0 10px 22px rgba(98, 106, 239, 0.38);
}

.appDialog {
  height: 80%;
  max-width: 600px;
}

.app-icon-img {
  max-width: 48px;
  max-height: 48px;
}

.appDialog-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  position: relative;
}

.el-dialog__body {
  height: calc(100% - 40px);
  overflow: scroll;
}

.el-dialog__body::-webkit-scrollbar {
  display: none;
}

/* 隐藏IE和Edge的滚动条 */
.el-dialog__body {
  -ms-overflow-style: none;
}

/* 隐藏Firefox的滚动条 */
.el-dialog__body {
  scrollbar-width: none;
}

.appDialog-desc {
  flex: 1;
}

.appDialog-desc-text {
  height: 100%;
}

.downloadBtn-wrap {
  background-color: #fff;
  position: sticky;
  bottom: 0px;
  border: none;
  padding-top: 10px;
}

.appDialog-box .downloadBtn {
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  background-color: #409eff;
  border-radius: 20px;
  width: 100%;
  border: none;
}

.el-overlay {
  height: 100vh;
}

.appDialog-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.appDialog-info-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.appDialog-name {
  font-size: 18px;
  font-weight: 600;
}

.appDialog-title {
  font-size: 16px;
  font-weight: 400;
}

.appDialog-type {
  display: flex;
  gap: 15px;
}

.appDialog-sec-Title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  border-left: 4px solid #409eff;
  padding-left: 15px;
}

.appDialog-desc-text {
  height: 100%;
  overflow: hidden;
}

.detailImgWrap {
  gap: 15px;
  overflow-x: scroll;
  display: flex;
}

.detailImg-box {
  border-radius: 20px;
  overflow: hidden;
  width: 160px;
  height: 200px;
  flex: 0 0 auto;
}

@media (max-width: 768px) {
}
