@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap");

:root {
  --bg: #eef2fb;
  --panel: #ffffff;
  --text: #2e3148;
  --muted: #9aa3bb;
  --line: #edf0f7;
  --hot: #ff6ec7;
  --hot-strong: #f55fd0;
  --hot-soft: #ffd9f2;
  --blue: #85bfff;
  --topbar: #cc43be;
  --shadow: 0 12px 28px rgba(149, 126, 188, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body.theme-lc-mobile {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18px 18px, rgba(255, 128, 180, 0.16) 2px, transparent 2.4px),
    radial-gradient(circle at 42px 40px, rgba(133, 191, 255, 0.14) 1.8px, transparent 2.2px),
    linear-gradient(180deg, #f9fbff 0%, #edf1fb 100%);
  background-size: 56px 56px, 56px 56px, auto;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.lc-topbar {
  height: 44px;
  background: linear-gradient(180deg, #d74bc6 0%, #c63eb7 100%);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(190, 66, 173, 0.18);
  position: sticky;
  top: 0;
  z-index: 5;
}

.lc-shell {
  width: 100%;
  padding: 14px 12px 30px;
}

.lc-phone {
  width: 100%;
  max-width: 372px;
  margin: 0 auto;
  background: var(--panel);
  border-radius: 0 0 18px 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lc-tabs {
  display: flex;
  justify-content: center;
  gap: 76px;
  padding: 14px 16px 6px;
  font-size: 12px;
  color: #aab2c5;
  background: #fff;
}

.lc-tabs a {
  position: relative;
  padding-bottom: 10px;
  transition: color 0.2s ease;
}

.lc-tabs a.active {
  color: #8cb3e5;
}

.lc-tabs a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: #8cb3e5;
  transform: translateX(-50%);
}

.lc-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 12px;
  padding: 16px 16px 10px;
  background: #fff;
}

.lc-mini-card {
  text-align: center;
}

.lc-mini-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 8px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(119, 124, 167, 0.12);
}

.lc-mini-name {
  font-size: 11px;
  line-height: 1.2;
  font-weight: 500;
  color: #76819d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lc-mini-sub {
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.2;
  color: #95a1b9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lc-mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 18px;
  margin-top: 8px;
  padding: 0 10px;
  border: 1px solid #d9dfef;
  border-radius: 999px;
  background: #fdfefe;
  color: #a2abc0;
  font-size: 10px;
  line-height: 1;
}

.lc-banner-strip {
  padding: 8px 16px 12px;
  background: #fff;
}

.lc-banner-strip a,
.lc-banner-empty {
  display: block;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #f4f6fb;
  box-shadow: 0 10px 22px rgba(116, 124, 156, 0.08);
}

.lc-banner-strip img {
  width: 100%;
  height: 124px;
  object-fit: cover;
}

.lc-banner-empty {
  height: 124px;
  color: #a8b0c6;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lc-list-wrap {
  padding: 6px 12px 16px;
  background: #f7f8fc;
}

.lc-section-title {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 4px 10px;
  font-size: 13px;
  font-weight: 700;
  color: #4a5068;
}

.lc-section-title .dot {
  width: 8px;
  height: 8px;
  border: 2px solid #ff6767;
  border-radius: 50%;
}

.lc-notice {
  display: none;
}

.lc-list {
  display: grid;
  gap: 10px;
}

.lc-list-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 10px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(122, 129, 157, 0.07);
}

.lc-list-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
}

.lc-list-body {
  min-width: 0;
}

.lc-list-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.lc-list-head strong {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  color: #40455d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lc-badge {
  flex: none;
  padding: 1px 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fc73da 0%, #f689f5 100%);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.5;
}

.lc-count {
  margin-bottom: 5px;
  color: #b0b8cb;
  font-size: 10px;
  line-height: 1.2;
}

.lc-list-body p {
  margin: 0;
  color: #8d96ad;
  font-size: 11px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lc-download {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8cd8 0%, #f66be1 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(247, 111, 218, 0.26);
}

.empty {
  padding: 26px 14px;
  border-radius: 14px;
  background: #fff;
  color: #a4acc1;
  text-align: center;
  font-size: 12px;
}

@media (max-width: 420px) {
  .lc-shell {
    padding: 0 0 22px;
  }

  .lc-phone {
    max-width: none;
    border-radius: 0;
    box-shadow: none;
  }

  .lc-tabs {
    gap: 58px;
  }

  .lc-featured-grid {
    padding: 16px 12px 10px;
    gap: 14px 8px;
  }

  .lc-mini-icon {
    width: 54px;
    height: 54px;
  }

  .lc-banner-strip {
    padding: 8px 12px 12px;
  }

  .lc-banner-strip img,
  .lc-banner-empty {
    height: 112px;
  }

  .lc-list-wrap {
    padding: 6px 8px 16px;
  }

  .lc-list-item {
    grid-template-columns: 52px 1fr auto;
    gap: 8px;
    padding: 11px 8px;
  }

  .lc-list-icon {
    width: 48px;
    height: 48px;
  }

  .lc-download {
    min-width: 60px;
    height: 26px;
    padding: 0 12px;
    font-size: 11px;
  }
}
