:root {
  --blue: #526bff;
  --deep-blue: #075ce8;
  --violet: #9657ff;
  --cyan: #55dcff;
  --ink: #202330;
  --muted: #717789;
  --line: rgba(81, 111, 255, .16);
  --surface: #ffffff;
  --soft: #eef8ff;
  --shadow: 0 24px 60px rgba(56, 99, 184, .16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #f5fbff;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 190px minmax(520px, 1fr) 250px 190px;
  align-items: center;
  gap: 22px;
  width: min(1600px, calc(100% - 96px));
  height: 104px;
  margin: 0 auto;
  transition: height .25s ease, background .25s ease, box-shadow .25s ease, border-radius .25s ease, transform .25s ease;
}

.site-header.is-scrolled {
  top: 14px;
  height: 74px;
  padding: 0 24px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(49, 102, 185, .16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 156px;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(20px, 2.5vw, 54px);
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 8px 0 18px;
  font-size: 16px;
  color: #1f2837;
  transition: color .2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue);
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 36px;
  height: 4px;
  background: var(--blue);
  border-radius: 999px;
  transform: translateX(-50%);
}

.search-box {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 4px;
  background: rgba(255, 255, 255, .96);
  border: 2px solid rgba(113, 136, 255, .45);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .85), 0 8px 22px rgba(58, 92, 196, .12);
}

.search-box input {
  min-width: 0;
  width: 100%;
  height: 100%;
  padding: 0 16px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: none;
}

.search-box button {
  height: 38px;
  min-width: 70px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, #7a5cff, #526bff);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.member-entry {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #17243b;
  white-space: nowrap;
  font-size: 16px;
}

.member-entry--signed-in {
  gap: 9px;
  justify-content: flex-start;
  min-width: 0;
  max-width: 178px;
  font-weight: 700;
}

.member-entry-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.member-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--blue);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(56, 96, 210, .14);
}

.member-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.member-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 42px;
  height: 42px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #6bd7ff, #526bff);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(56, 96, 210, .15);
  font-weight: 800;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.member-entry-profile {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.member-entry-name {
  min-width: 0;
  overflow: hidden;
  color: #202a3c;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 800;
  text-overflow: ellipsis;
}

.member-entry-vip-badge {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
}

.member-entry-vip-badge img {
  position: relative;
  z-index: 1;
  top: -1px;
  width: 25px;
  height: 21px;
  display: block;
  object-fit: contain;
}

.member-entry-vip-badge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 18px;
  margin-left: -2px;
  padding-left: 4px;
  overflow: hidden;
  color: #2f3543;
  background: url("./images/unvip_bg.png") center / 100% 100% no-repeat;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-entry-vip-badge.is-active span {
  color: #8a5300;
  background-image: url("./images/vip_bg.png");
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  padding: 8px;
  background: #fff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(56, 96, 210, .14);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--blue);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 1180px;
  overflow: hidden;
  background: #d9f5ff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .7s ease, transform 4s ease;
}

.hero-bg-current {
  opacity: 1;
  transform: scale(1);
}

.hero-bg-next.is-visible {
  opacity: 1;
  transform: scale(1);
}

.hero-fade {
  position: absolute;
  inset: auto 0 0;
  height: 240px;
  background: linear-gradient(180deg, rgba(235, 247, 255, 0), #edf8ff 68%, #edf8ff);
  pointer-events: none;
}

.category-dock {
  position: absolute;
  left: 50%;
  bottom: 82px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  align-items: center;
  gap: 34px;
  width: min(1600px, calc(100% - 96px));
  min-height: 150px;
  padding: 20px 70px;
  background: rgba(255, 255, 255, .95);
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(52, 106, 195, .16);
  transform: translateX(-50%);
}

.category-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 124px;
  padding: 22px 28px;
  color: #2b3040;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.category-tab:hover,
.category-tab.active {
  color: #fff;
  background: url("./images/category_selected.png") center / 100% 120% no-repeat;
  box-shadow: none;
  transform: translateY(-2px);
}

.category-tab-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  color: currentColor;
}

.category-tab-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.category-tab-icon-text {
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.category-tab-title {
  font-size: 18px;
  line-height: 1.3;
}

.section {
  position: relative;
  padding: 96px 0 118px;
}

.section-soft {
  background: #edf8ff url("./images/recommend_bg.png") center top / cover no-repeat;
}

.section-values {
  background: #f6fbff url("./images/core_value_bg.png") center top / cover no-repeat;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1600px, calc(100% - 96px));
  margin: 0 auto 70px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 34px;
}

.section-title-link {
  transition: transform .2s ease;
}

.section-title-link:hover {
  transform: translateY(-2px);
}

.spark {
  width: 93px;
  height: 106px;
  flex: none;
  background: url("./images/star.png") center / contain no-repeat;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0;
}

.section-title p {
  margin: 14px 0 0;
  color: #657bff;
}

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #202330;
  font-weight: 800;
  letter-spacing: 0;
}

.more-link span {
  width: 61px;
  height: 15px;
  background: url("./images/more.png") center / contain no-repeat;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 74px 84px;
  width: min(1600px, calc(100% - 96px));
  margin: 0 auto;
}

.project-card {
  overflow: hidden;
  background: rgba(255, 255, 255, .9);
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(71, 105, 172, .08);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .55s ease, transform .55s ease, border-color .25s ease, box-shadow .25s ease;
}

.project-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover {
  border-color: rgba(82, 107, 255, .55);
  box-shadow: 0 28px 72px rgba(68, 99, 199, .18);
  transform: translateY(-8px);
}

.project-cover {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #e7f1ff;
}

.project-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}

.project-card:hover .project-cover img {
  transform: scale(1.045);
}

.project-badges {
  position: absolute;
  top: 20px;
  left: 28px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  color: #4d63ff;
  background: rgba(255, 255, 255, .95);
  border-radius: 8px;
  font-size: 15px;
  line-height: 1;
}

.badge.primary {
  color: #fff;
  background: linear-gradient(135deg, #8f49ff, #526bff);
}

.badge.mode {
  color: #fff;
  background: linear-gradient(135deg, #6f5cff, #456cff);
}

.project-body {
  padding: 24px 28px 24px;
}

.project-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.project-title-row h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 800;
}

.project-price {
  flex: none;
  color: #ff6b2a;
  font-size: 18px;
  font-weight: 800;
}

.project-info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: -4px 0 18px;
}

.project-info-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 167px;
  height: 38px;
  padding: 0 16px;
  color: #526bff;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.project-info-tag.difficulty {
  background-image: url("./images/difficulty-bg.png");
}

.project-info-tag.cycle {
  color: #ff9b28;
  background-image: url("./images/cycle-bg.png");
}

.project-summary {
  min-height: 58px;
  margin: 0 0 28px;
  color: #313746;
  font-size: 16px;
  line-height: 1.75;
}

.project-owner-row {
  display: grid;
  grid-template-columns: 72px 1fr 128px;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.owner-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: #edf3ff;
}

.owner-name {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 800;
}

.owner-name span {
  color: #a7b2d3;
  font-weight: 400;
}

.detail-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  color: #fff;
  background: linear-gradient(135deg, #6580ff, #4d63f2);
  border-radius: 999px;
  box-shadow: 0 16px 28px rgba(82, 107, 255, .22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.project-card:hover .detail-button {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(82, 107, 255, .32);
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 42px;
  color: #8a909b;
  font-size: 15px;
}

.project-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.project-meta img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(380px, .92fr);
  gap: 40px;
  width: min(1600px, calc(100% - 96px));
  margin: 0 auto;
}

.platform-card,
.tool-panel {
  background: rgba(255, 255, 255, .56);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.platform-card {
  padding: 54px 42px 48px;
  background: url("./images/platform_bg.png") center / 100% 100% no-repeat;
  border: 0;
  border-radius: 4px;
}

.platform-card .panel-title h3 {
  color: #fff;
}

.panel-title,
.tool-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.panel-title h3,
.tool-head h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
}

.panel-icon,
.tool-badge {
  display: inline-grid;
  place-items: center;
  flex: none;
  background: none;
  border-radius: 0;
}

.panel-icon {
  width: 93px;
  height: 75px;
}

.tool-badge {
  width: 96px;
  height: 85px;
}

.panel-icon img,
.tool-badge img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
}

.advantage-card {
  min-height: 500px;
  padding: 42px 36px 0;
  overflow: hidden;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /* border-radius: 4px; */
}

.advantage-card:nth-child(1) {
  background-image: url("./images/platform_bg_1.png");
}

.advantage-card:nth-child(2) {
  background-image: url("./images/platform_bg_2.png");
}

.advantage-card:nth-child(3) {
  background-image: url("./images/platform_bg_3.png");
}

.advantage-card h4 {
  margin: 0 0 18px;
  color: #526bff;
  font-size: 24px;
  line-height: 1.35;
}

.advantage-card p {
  margin: 0;
  color: #30384a;
  font-size: 16px;
  line-height: 1.75;
}

.advantage-card img {
  display: none;
}

.tool-panel {
  padding: 54px 42px;
}

.tool-head {
  margin-bottom: 38px;
}

.tool-head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 42px;
  height: 28px;
}

.tool-head a img {
  width: 32px;
  height: 11px;
  display: block;
  object-fit: contain;
}

.tool-list {
  display: grid;
  gap: 12px;
}

.tool-item {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  height: 110px;
  min-height: 0;
  padding: 20px clamp(128px, 32%, 170px) 20px 46px;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border: 0;
  border-radius: 8px;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform .2s ease;
}

.tool-item:nth-child(1) {
  background-image: url("./images/ai_tool_1.png");
}

.tool-item:nth-child(2) {
  background-image: url("./images/ai_tool_2.png");
}

.tool-item:nth-child(3) {
  background-image: url("./images/ai_tool_3.png");
}

.tool-item:nth-child(4) {
  background-image: url("./images/ai_tool_4.png");
}

.tool-item:hover {
  transform: translateY(-4px);
}

.tool-item:focus,
.tool-item:focus-visible,
.tool-item:active,
.tool-item:visited {
  background-color: transparent;
  border: 0;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.tool-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.tool-item span {
  color: #5e6a7d;
  line-height: 1.55;
}

.tool-visual {
  display: none;
  place-items: center;
  width: 88px;
  height: 70px;
  color: #fff;
  background: linear-gradient(135deg, #9bd8ff, #5873ff);
  border-radius: 8px;
  font-size: 32px;
  justify-self: end;
}

.site-footer {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: url("./images/message_bg.png") center / 100% 100% no-repeat;
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(1600px, calc(100% - 96px));
  margin: 0 auto;
  padding: 46px 0 28px;
}

.footer-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 30px;
}

.footer-logo {
  width: 292px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
}

.footer-nav a {
  position: relative;
  padding: 0 16px;
  line-height: 1;
}

.footer-nav a:first-child {
  padding-left: 0;
}

.footer-nav a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, .48);
  transform: translateY(-50%);
}

.service-line {
  display: none;
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.qrcode-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 142px;
  padding: 12px 12px 10px;
  color: #263248;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(4, 17, 50, .18);
}

.qrcode {
  width: 112px;
  height: 112px;
  object-fit: cover;
}

.qrcode-card span {
  color: #52607a;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.copyright {
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .86);
  text-align: right;
}

.simple-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #eef8ff, #fff);
}

.simple-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 26px 0;
}

.back-link {
  color: var(--blue);
  font-weight: 800;
}

.placeholder-page {
  width: min(960px, calc(100% - 48px));
  margin: 80px auto;
  padding: 54px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.placeholder-page h1 {
  margin: 0 0 18px;
  font-size: 42px;
}

.placeholder-page p {
  color: var(--muted);
  line-height: 1.8;
}

.member-center-main {
  width: min(1200px, calc(100% - 48px));
  margin: 34px auto 90px;
}

.member-center-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.member-center-head p {
  margin: 0 0 8px;
  color: #526bff;
  font-size: 14px;
  font-weight: 900;
}

.member-center-head h1 {
  margin: 0;
  color: #1f2837;
  font-size: 34px;
  line-height: 1.2;
}

.member-center-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 40px;
  color: #fff;
  background: linear-gradient(135deg, #657dff, #4967f1);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(82, 107, 255, .22);
}

.member-bean-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.member-bean-summary div,
.member-flow-panel {
  background: #fff;
  border: 1px solid rgba(82, 107, 255, .1);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(68, 105, 184, .08);
}

.member-bean-summary div {
  display: grid;
  gap: 12px;
  min-height: 120px;
  padding: 24px;
}

.member-bean-summary span {
  color: #303849;
  font-size: 14px;
  font-weight: 900;
}

.member-bean-summary strong {
  color: #526bff;
  font-size: 32px;
  line-height: 1;
}

.member-risk-message {
  min-height: 22px;
  margin: 0 0 18px;
  color: #657bff;
  font-size: 14px;
}

.member-flow-panel {
  padding: 26px;
}

.member-flow-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.member-flow-head h2 {
  margin: 0;
  color: #1f2837;
  font-size: 20px;
}

.member-flow-head button {
  width: 82px;
  height: 34px;
  color: #526bff;
  background: #f4f7ff;
  border: 1px solid rgba(82, 107, 255, .24);
  border-radius: 4px;
  font-weight: 900;
  cursor: pointer;
}

.member-flow-table-wrap {
  overflow-x: auto;
}

.member-flow-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.member-flow-table th,
.member-flow-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #edf1f7;
  color: #303849;
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}

.member-flow-table th {
  color: #6b7484;
  background: #f8faff;
  font-weight: 900;
}

.member-flow-table td strong,
.member-flow-table td span {
  display: block;
}

.member-flow-table td span {
  margin-top: 4px;
  color: #8b95a7;
  font-size: 12px;
}

.member-flow-table .income {
  color: #22a06b;
  font-weight: 900;
}

.member-flow-table .frozen {
  color: #d98b12;
  font-weight: 900;
}

.member-flow-pagination {
  width: 100%;
  margin-top: 24px;
}

.member-flow-pagination .pager-text {
  display: inline-flex;
  align-items: center;
  height: 32px;
  color: #6b7484;
  font-size: 14px;
}

.member-center-page {
  background: #eef8ff;
}

.member-profile-hero {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: #dff1ff url("./images/my_head_bg.png") center / cover no-repeat;
}

.member-profile-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(238, 248, 255, 0), #eef8ff);
  pointer-events: none;
}

.member-profile-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 30px;
  width: min(1360px, calc(100% - 96px));
  margin: 0 auto;
  padding: 36px 0 92px;
}

.member-profile-avatar {
  width: 108px;
  height: 108px;
  flex: 0 0 auto;
  object-fit: cover;
  background: #eef5ff;
  border: 4px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
  box-shadow: 0 20px 44px rgba(31, 89, 181, .22);
}

.member-profile-copy {
  min-width: 0;
  color: #fff;
}

.member-profile-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.member-profile-row h1 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.member-vip-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  min-height: 30px;
}

.member-vip-badge[hidden] {
  display: none;
}

.member-vip-badge img {
  position: relative;
  z-index: 1;
  top: -2px;
  width: 34px;
  height: 30px;
  display: block;
  object-fit: contain;
}

.member-vip-badge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 24px;
  margin-left: -2px;
  padding-left: 5px;
  color: #2f3543;
  background: url("./images/unvip_bg.png") center / 100% 100% no-repeat;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.member-vip-badge.is-active span {
  color: #8a5300;
  background-image: url("./images/vip_bg.png");
}

.member-xingdou-shell {
  position: relative;
  z-index: 3;
  width: min(1360px, calc(100% - 96px));
  margin: -58px auto 92px;
}

.member-balance-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 158px;
  padding: 26px 180px 28px;
  background: #fff url("./images/money_bg.png") center / 100% 100% no-repeat;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 10px;
  box-shadow: 0 24px 62px rgba(62, 103, 190, .12);
}

.member-balance-back {
  position: absolute;
  top: 34px;
  left: 32px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
}

.member-balance-back img {
  width: 8px;
  height: 14px;
  display: block;
  object-fit: contain;
}

.member-balance-card strong {
  margin-top: 4px;
  color: #526bff;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.member-balance-card span {
  margin-top: 8px;
  color: #5a6375;
  font-size: 13px;
  font-weight: 800;
}

.member-balance-actions {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 22px;
}

.member-balance-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 32px;
  color: #fff;
  background: linear-gradient(135deg, #667dff, #4567f2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(82, 107, 255, .2);
}

.member-balance-actions a + a {
  background: linear-gradient(135deg, #7e6cff, #d153ef);
  box-shadow: 0 12px 26px rgba(197, 86, 233, .18);
}

.member-center-page .member-risk-message {
  min-height: 22px;
  margin: 12px 0 18px;
  color: #657bff;
  font-size: 14px;
  text-align: center;
}

.member-center-page .member-flow-panel {
  padding: 28px 0 34px;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 10px;
  box-shadow: 0 24px 62px rgba(62, 103, 190, .1);
}

.member-flow-filter {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  width: min(900px, calc(100% - 96px));
  margin: 0 auto 30px;
}

.member-flow-filter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 70px;
  padding: 0 20px;
  color: #202330;
  background: #f3faff;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.member-flow-filter button.active {
  color: #fff;
  background: #526bff;
  box-shadow: 0 16px 34px rgba(82, 107, 255, .22);
}

.member-flow-filter button:hover {
  transform: translateY(-1px);
}

.member-flow-filter img {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
}

.member-flow-list {
  display: grid;
  gap: 28px;
  width: min(900px, calc(100% - 96px));
  margin: 0 auto;
}

.member-flow-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 0 34px;
  background: #f3faff;
  border-radius: 8px;
}

.member-flow-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.member-flow-copy strong {
  color: #202330;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
}

.member-flow-copy span {
  color: #4f596b;
  font-size: 12px;
  line-height: 1.3;
}

.member-flow-amount {
  flex: 0 0 auto;
  color: #202330;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.member-flow-amount.expense {
  color: #ff7d2a;
}

.member-flow-amount.refund {
  color: #526bff;
}

.member-center-page .member-flow-pagination {
  width: min(900px, calc(100% - 96px));
  margin: 26px auto 0;
}

.member-open-page {
  background: #eef8ff;
}

.member-open-shell {
  position: relative;
  z-index: 3;
  width: min(1280px, calc(100% - 96px));
  margin: -56px auto 72px;
}

.member-open-card {
  overflow: hidden;
  background: url("./images/open_vip_bg.png") center / 100% 100% no-repeat;
  border: 0;
  box-shadow: none;
}

.member-open-head {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 158px;
  padding: 34px 120px 46px;
  overflow: hidden;
  background: transparent;
}

.member-open-back {
  position: absolute;
  top: 32px;
  left: 30px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
}

.member-open-back img {
  width: 8px;
  height: 14px;
  display: block;
  object-fit: contain;
}

.member-open-head-copy {
  position: relative;
  z-index: 1;
  text-align: center;
}

.member-open-head h2 {
  margin: 0;
  color: #1e2637;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
}

.member-open-head p {
  margin: 14px 0 0;
  color: #3c526d;
  font-size: 13px;
  font-weight: 800;
}

.member-open-body {
  position: relative;
  z-index: 2;
  margin-top: -22px;
  padding: 52px 56px 28px;
  background: transparent;
  border-radius: 0;
}

.member-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.member-plan-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 254px;
  padding: 44px 42px 36px;
  color: #1f2635;
  text-align: left;
  background: #f3faff;
  border: 1px solid rgba(82, 107, 255, 0);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(60, 103, 180, .06);
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}

.member-plan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(60, 103, 180, .1);
}

.member-plan-card.active {
  background: #fff;
  border-color: #5d7cff;
  box-shadow: 0 20px 52px rgba(82, 107, 255, .12);
}

.member-plan-name {
  color: #303849;
  font-size: 15px;
  font-weight: 800;
}

.member-plan-card strong {
  margin-top: 12px;
  color: #1f2635;
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
}

.member-plan-card small {
  margin-left: 2px;
  font-size: 13px;
  font-weight: 900;
}

.member-plan-save,
.member-plan-subsave {
  position: absolute;
  right: 28px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.member-plan-save {
  top: 24px;
  padding: 5px 10px;
  background: linear-gradient(135deg, #6f8aff, #4c68f2);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(82, 107, 255, .18);
}

.member-plan-subsave {
  top: 54px;
  color: #34415d;
}

.member-plan-deduct {
  display: grid;
  gap: 10px;
  margin-top: 32px;
  padding: 16px 18px;
  background: #eef4ff;
  border-radius: 6px;
}

.member-plan-deduct b {
  color: #3b4559;
  font-size: 13px;
  font-weight: 900;
}

.member-plan-deduct em {
  color: #ff63a5;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.member-plan-note {
  margin-top: 18px;
  color: #5d7cff;
  font-size: 12px;
  font-weight: 800;
}

.member-benefits {
  width: min(980px, 100%);
  margin: 36px auto 0;
  padding: 22px 28px 26px;
  background: #f3faff;
  border-radius: 8px;
}

.member-benefits h3 {
  position: relative;
  margin: 0 0 22px;
  padding-left: 13px;
  color: #1f2635;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
}

.member-benefits h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 4px;
  height: 16px;
  background: #526bff;
  border-radius: 999px;
}

.member-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.member-benefit-grid article {
  min-height: 78px;
  padding: 0 28px;
  border-left: 1px solid rgba(82, 107, 255, .12);
}

.member-benefit-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.member-benefit-grid strong {
  display: block;
  color: #20293a;
  font-size: 13px;
  font-weight: 900;
}

.member-benefit-grid p {
  margin: 12px 0 0;
  color: #5e6879;
  font-size: 12px;
  line-height: 1.65;
}

.member-open-agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: min(980px, 100%);
  margin: 18px auto 24px;
  color: #7b8493;
  font-size: 12px;
  line-height: 1.5;
}

.member-open-agreement input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: #526bff;
}

.member-open-agreement a {
  color: #526bff;
}

.member-open-checkout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(980px, 100%);
  min-height: 76px;
  margin: 0 auto;
  padding: 18px 28px;
  background: #f3faff;
  border-radius: 8px;
}

.member-open-checkout div {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  min-width: 0;
}

.member-open-checkout strong,
.member-open-checkout span {
  color: #1f2635;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.member-open-checkout em {
  width: 100%;
  color: #ff63a5;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.member-pay-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 152px;
  height: 34px;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(135deg, #667dff, #4567f2);
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(82, 107, 255, .2);
  cursor: pointer;
}

.member-pay-button.disabled {
  opacity: .55;
}

body.member-open-modal-active {
  overflow: hidden;
}

.member-open-modal[hidden] {
  display: none;
}

.member-open-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 28px;
}

.member-open-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 18, 31, .54);
}

.member-open-dialog {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100vw - 56px));
  max-height: calc(100vh - 56px);
  overflow: auto;
  border-radius: 10px;
  outline: 0;
  box-shadow: 0 28px 80px rgba(15, 31, 68, .26);
}

.member-open-modal .member-open-shell {
  width: 100%;
  margin: 0;
}

.member-open-modal .member-open-card {
  min-height: auto;
  border-radius: 10px;
}

.member-open-modal .member-open-back {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.invite-main {
  width: min(760px, calc(100% - 40px));
  margin: 46px auto 90px;
}

.invite-panel {
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(82, 107, 255, .12);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(68, 105, 184, .08);
}

.invite-eyebrow {
  margin: 0 0 10px;
  color: #526bff;
  font-size: 14px;
  font-weight: 900;
}

.invite-panel h1 {
  margin: 0;
  color: #1f2837;
  font-size: 32px;
  line-height: 1.2;
}

.invite-copy {
  margin: 14px 0 22px;
  color: #6b7484;
  line-height: 1.8;
}

.invite-code-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: #f8faff;
  border: 1px solid #edf1f7;
  border-radius: 8px;
}

.invite-code-row span {
  color: #6b7484;
  font-size: 14px;
  font-weight: 900;
}

.invite-code-row strong {
  color: #1f2837;
  font-size: 18px;
  letter-spacing: 0;
  word-break: break-all;
}

.invite-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.invite-actions button,
.invite-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 42px;
  padding: 0 18px;
  color: #fff;
  background: #526bff;
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.invite-actions a {
  color: #526bff;
  background: #f4f7ff;
  border: 1px solid rgba(82, 107, 255, .24);
}

.invite-message {
  min-height: 22px;
  margin: 18px 0 0;
  color: #657bff;
  font-size: 14px;
  line-height: 1.6;
}

.query-box {
  white-space: pre-wrap;
  margin-top: 28px;
  padding: 20px;
  color: #526bff;
  background: #f2f6ff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.state-card {
  grid-column: 1 / -1;
  padding: 42px;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, .76);
  border-radius: 8px;
}

.state-card--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 420px;
  padding: 88px 24px;
  background: transparent;
}

.state-card-icon {
  width: min(210px, 46vw);
  height: auto;
  margin-bottom: 22px;
  object-fit: contain;
}

.state-card--empty strong {
  color: #1f2837;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 900;
}

.state-card--empty span {
  margin-top: 12px;
  color: #5f6678;
  font-size: 14px;
  line-height: 1.6;
}

.recommend-page {
  background: #eef8ff;
}

.recommend-page .site-header {
  position: sticky;
  background: #fff;
}

.recommend-page .site-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  background: #fff;
  transform: translateX(-50%);
}

.recommend-page .site-header.is-scrolled {
  top: 0;
  height: 104px;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.recommend-hero {
  margin-top: 0;
  overflow: hidden;
  background: #eaf6ff;
}

.recommend-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.recommend-hero img[hidden] {
  display: none;
}

.recommend-list-section {
  position: relative;
  padding: 78px 0 116px;
  overflow: hidden;
  background: #eef8ff url("./images/bg.png") center top / cover no-repeat;
}

.recommend-title {
  width: min(1600px, calc(100% - 96px));
  margin: 0 auto 72px;
  text-align: center;
}

.recommend-title h1 {
  margin: 0;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 500;
  line-height: 1.2;
}

.recommend-title p {
  margin: 14px 0 0;
  color: #657bff;
}

.hot-category-shell {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 20px;
  width: min(1600px, calc(100% - 96px));
  margin: 0 auto 56px;
}

.hot-category-track {
  display: flex;
  gap: 70px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.hot-category-track::-webkit-scrollbar {
  display: none;
}

.hot-category-button {
  flex: 0 0 196px;
  height: 62px;
  color: #8990a0;
  background: rgba(255, 255, 255, .88);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(82, 107, 255, .08);
  cursor: pointer;
}

.hot-category-button.active {
  color: #fff;
  background: linear-gradient(135deg, #6c80ff, #4d63f2);
  box-shadow: 0 18px 36px rgba(82, 107, 255, .22);
}

.hot-category-arrow {
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hot-category-arrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin: 10px;
  border-left: 4px solid #7891ff;
  border-bottom: 4px solid #7891ff;
}

.hot-category-arrow.prev::before {
  transform: rotate(45deg);
}

.hot-category-arrow.next::before {
  transform: rotate(225deg);
}

.recommend-filters {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: clamp(36px, 6vw, 86px);
  width: min(1600px, calc(100% - 96px));
  margin: 0 auto 84px;
}

.filter-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  padding: 0 36px;
  color: #353d4e;
  background: rgba(255, 255, 255, .82);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(82, 107, 255, .12);
  cursor: pointer;
}

.filter-arrow {
  width: 13px;
  height: 13px;
  border-right: 2px solid #9298a6;
  border-bottom: 2px solid #9298a6;
  transform: rotate(45deg) translateY(-3px);
}

.filter-menu {
  position: absolute;
  top: 76px;
  left: 0;
  width: min(420px, 100%);
  overflow: hidden;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(82, 107, 255, .12);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(78, 105, 185, .18);
}

.filter-menu[data-filter="time"] {
  left: 50%;
  transform: translateX(-50%);
}

.filter-menu[data-filter="more"] {
  right: 0;
  left: auto;
  width: min(620px, 100%);
}

.filter-menu button {
  display: block;
  width: 100%;
  height: 54px;
  padding: 0 34px;
  color: #394255;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(80, 103, 160, .08);
  cursor: pointer;
}

.filter-menu button:last-child {
  border-bottom: 0;
}

.filter-menu button:hover,
.filter-menu button.active {
  color: #fff;
  background: #7083f5;
}

.category-filter-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 220px;
  max-height: 360px;
}

.category-filter-panel.single {
  grid-template-columns: 1fr;
}

.category-filter-parents,
.category-filter-children {
  overflow-y: auto;
}

.category-filter-parents {
  background: rgba(82, 107, 255, .05);
  border-right: 1px solid rgba(80, 103, 160, .1);
}

.category-filter-panel button {
  height: 52px;
}

.category-filter-children button {
  padding-left: 28px;
}

.recommend-grid {
  gap: 50px 84px;
}

.recommend-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: min(1600px, calc(100% - 96px));
  margin: 94px auto 0;
}

.recommend-pagination button,
.pager-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 32px;
  padding: 0 12px;
  color: #4d5666;
  background: #fff;
  border: 1px solid rgba(58, 82, 145, .12);
  border-radius: 4px;
  font-size: 14px;
}

.recommend-pagination button {
  cursor: pointer;
}

.recommend-pagination button.active {
  color: #fff;
  background: #245cff;
  border-color: #245cff;
}

.recommend-pagination button:disabled {
  color: #9aa2af;
  cursor: default;
}

.join-section {
  position: relative;
  padding: 78px 0 126px;
  overflow: hidden;
  background: #eef8ff url("./images/bg.png") center top / cover no-repeat;
}

.join-card-list {
  display: grid;
  gap: 78px;
  width: min(1500px, calc(100% - 96px));
  margin: 0 auto;
}

.join-card {
  min-height: 410px;
  overflow: hidden;
  border-radius: 28px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.join-card-primary {
  display: grid;
  grid-template-columns: 1fr minmax(420px, .9fr);
  align-items: center;
  min-height: 430px;
  padding: 54px 86px;
  color: #fff;
  background-image: url("./images/join_card_bg1.png");
}

.join-card-split {
  display: grid;
  grid-template-columns: minmax(420px, .82fr) 1fr;
  align-items: center;
  min-height: 420px;
  padding: 42px 82px;
  background-image: url("./images/join_card_bg2.png");
}

.join-card-third {
  grid-template-columns: 1fr minmax(420px, .82fr);
  background-image: url("./images/join_card_bg_3.png");
}

.join-card-copy {
  position: relative;
  z-index: 1;
}

.join-card-primary .join-card-copy {
  padding-left: 34px;
}

.join-card-split .join-card-copy {
  justify-self: center;
  width: min(420px, 100%);
}

.join-card h2 {
  margin: 0 0 22px;
  color: #5b6dff;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.2;
  font-weight: 800;
}

.join-card-primary h2 {
  color: #fff;
}

.join-card p {
  margin: 0 0 28px;
  color: #2f3746;
  font-size: 17px;
  line-height: 1.7;
}

.join-card-primary p {
  color: rgba(255, 255, 255, .92);
}

.join-card-arrow {
  width: 34px;
  height: auto;
  display: block;
}

.join-card-visual {
  width: min(480px, 100%);
  display: block;
  justify-self: center;
}

.join-card-primary .join-card-visual {
  width: min(510px, 100%);
  justify-self: end;
}

.join-card-split > .join-card-visual:first-child {
  justify-self: start;
}

.join-card-third .join-card-visual {
  justify-self: end;
}

.join-apply-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1500px, calc(100% - 96px));
  height: 74px;
  margin: 92px auto 0;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #a69cff, #3549ff);
  border-radius: 999px;
  box-shadow: 0 22px 44px rgba(82, 107, 255, .2);
}

.tools-section {
  position: relative;
  padding: 78px 0 86px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(93, 220, 255, .34), transparent 28%),
    url("./images/recommend_bg.png") center top / cover no-repeat,
    #eef8ff;
}

.tools-carousel {
  display: grid;
  grid-template-columns: 108px 1fr 108px;
  align-items: center;
  gap: 72px;
  width: min(1720px, calc(100% - 96px));
  min-height: 430px;
  margin: 0 auto;
}

.tools-stage {
  position: relative;
  height: 420px;
}

.tool-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 430px;
  height: 250px;
  padding: 36px 34px;
  text-align: center;
  background: rgba(255, 255, 255, .76);
  border: 1px solid transparent;
  border-radius: 16px;
  box-shadow: 0 22px 52px rgba(82, 107, 255, .08);
  opacity: .86;
  transform: translate(-50%, -50%) scale(.82);
  transition:
    left .76s cubic-bezier(.22, 1, .36, 1),
    width .76s cubic-bezier(.22, 1, .36, 1),
    height .76s cubic-bezier(.22, 1, .36, 1),
    padding .76s cubic-bezier(.22, 1, .36, 1),
    transform .76s cubic-bezier(.22, 1, .36, 1),
    opacity .62s ease,
    border-color .62s ease,
    box-shadow .62s ease;
  pointer-events: none;
}

.tool-card.is-visible {
  pointer-events: auto;
}

.tool-card[data-position="hidden"] {
  opacity: 0;
  transform: translate(-50%, -50%) scale(.72);
  pointer-events: none;
}

.tool-card[data-position="-1"] {
  left: 14%;
}

.tool-card[data-position="0"] {
  left: 50%;
  z-index: 2;
}

.tool-card[data-position="1"] {
  left: 86%;
}

.tool-card.active {
  width: 610px;
  height: 350px;
  border-color: #667cff;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 28px 68px rgba(82, 107, 255, .12);
}

.tool-card-icon {
  width: 86px;
  height: 86px;
  object-fit: contain;
  transition: width .62s ease, height .62s ease;
}

.tool-card.active .tool-card-icon {
  width: 128px;
  height: 128px;
}

.tool-card h2 {
  margin: 22px 0 14px;
  color: #222633;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
}

.tool-card.active h2 {
  color: #5b6dff;
}

.tool-card p {
  margin: 0;
  color: #4d5360;
  font-size: 18px;
  line-height: 1.5;
}

.tool-card.active p {
  color: #6d7dff;
}

.tool-use-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 50px;
  margin-top: 22px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #7a6bff, #526bff);
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(82, 107, 255, .22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .42s ease, transform .42s ease;
}

.tool-card.active .tool-use-button {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.tools-arrow {
  display: grid;
  place-items: center;
  width: 108px;
  height: 120px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.tools-arrow img {
  width: 58px;
  height: auto;
  display: block;
}

.tools-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: min(1600px, calc(100% - 96px));
  margin: 42px auto 0;
}

.tools-dots button {
  width: 48px;
  height: 16px;
  padding: 0;
  background: #d4dcff;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.tools-dots button.active {
  width: 162px;
  background: #526bff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.login-page {
  min-height: 100vh;
  overflow: hidden;
  color: #090f25;
  background: #d9edff;
}

.login-mobile-brand,
.login-mobile-agreement {
  display: none;
}

.login-screen {
  position: relative;
  min-height: 100vh;
  background: url("./images/login_bg.png") center center / cover no-repeat;
}

.login-brand {
  position: absolute;
  top: clamp(36px, 6.4vh, 70px);
  left: clamp(48px, 8.4vw, 162px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 70px;
  color: #fff;
  font-size: clamp(46px, 4.05vw, 78px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.login-card {
  position: absolute;
  top: 50%;
  right: clamp(72px, 8.35vw, 160px);
  width: 418px;
  height: 500px;
  padding: 76px 38px 0;
  background: url("./images/logo_phone_bg.png") center / 100% 100% no-repeat;
  transform: translateY(-50%);
}

.login-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.login-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 56px;
  color: #0b0e18;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.login-title img {
  width: 44px;
  height: 40px;
  object-fit: contain;
}

.login-field {
  position: relative;
  display: flex;
  align-items: center;
  height: 61px;
  margin-bottom: 32px;
}

.login-field input {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  color: #1c2435;
  background: rgba(255, 255, 255, .98);
  border: 1px solid #86bfff;
  border-radius: 6px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.login-field input::placeholder {
  color: #bbbfc7;
}

.login-field input:focus {
  border-color: #526bff;
  box-shadow: 0 0 0 3px rgba(82, 107, 255, .14);
}

.login-code-field input {
  padding-right: 132px;
}

.login-code-field::after {
  content: "";
  position: absolute;
  top: 17px;
  right: 118px;
  width: 1px;
  height: 28px;
  background: #d9e0ef;
}

.login-code-button {
  position: absolute;
  top: 1px;
  right: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 117px;
  height: 59px;
  padding: 0 18px;
  color: #2858ff;
  line-height: 1;
  white-space: nowrap;
  background: transparent;
  border: 0;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

.login-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  margin-top: 8px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(180deg, #7768ff 0%, #1218ff 100%);
  border: 0;
  border-radius: 7px;
  box-shadow: 0 16px 30px rgba(39, 60, 255, .22);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.login-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(39, 60, 255, .28);
  filter: brightness(1.03);
}

.login-message {
  min-height: 20px;
  margin: -6px 0 14px;
  color: #e85b4b;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.login-message.is-success {
  color: #2f7d47;
}

.login-captcha-element,
.login-captcha-trigger {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: 150px 1fr 220px;
  }

  .member-entry {
    display: none;
  }

  .site-nav {
    gap: 24px;
  }

  .project-grid,
  .advantage-grid {
    gap: 36px;
  }

  .value-layout {
    grid-template-columns: 1fr;
  }

  .login-card {
    right: clamp(36px, 6vw, 80px);
  }
}

@media (max-width: 980px) {
  .member-center-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .member-bean-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header {
    grid-template-columns: 140px 42px;
    justify-content: space-between;
    width: min(100% - 32px, 760px);
    height: 80px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .search-box,
  .member-entry {
    display: none;
  }

  .site-header.nav-open {
    align-items: start;
    height: auto;
    padding: 18px;
    background: rgba(255, 255, 255, .94);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .search-box,
  .site-header.nav-open .member-entry {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-header.nav-open .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 12px;
  }

  .site-header.nav-open .search-box {
    margin-top: 10px;
  }

  .site-header.nav-open .member-entry {
    margin-top: 8px;
  }

  .hero {
    min-height: 820px;
  }

  .section-head,
  .project-grid,
  .recommend-title,
  .hot-category-shell,
  .recommend-filters,
  .recommend-pagination,
  .join-card-list,
  .join-apply-button,
  .tools-carousel,
  .tools-dots,
  .value-layout,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .category-dock {
    bottom: 36px;
    width: calc(100% - 32px);
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 132px;
    justify-content: start;
    gap: 12px;
    min-height: 116px;
    padding: 14px;
    overflow-x: auto;
  }

  .category-tab {
    min-height: 96px;
    padding: 18px 22px;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .recommend-page .site-header,
  .recommend-page .site-header.is-scrolled {
    height: 80px;
  }

  .recommend-page .site-header.nav-open,
  .recommend-page .site-header.nav-open.is-scrolled {
    height: auto;
  }

  .recommend-list-section {
    padding: 56px 0 82px;
  }

  .recommend-title {
    margin-bottom: 42px;
  }

  .join-section {
    padding: 56px 0 82px;
  }

  .join-card-list {
    gap: 34px;
  }

  .join-card,
  .join-card-primary,
  .join-card-split,
  .join-card-third {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 36px 28px;
  }

  .join-card-primary .join-card-copy,
  .join-card-split .join-card-copy {
    width: 100%;
    padding-left: 0;
    justify-self: stretch;
  }

  .join-card-visual,
  .join-card-primary .join-card-visual,
  .join-card-split > .join-card-visual:first-child,
  .join-card-third .join-card-visual {
    width: min(360px, 100%);
    justify-self: center;
  }

  .join-card-split > .join-card-visual:first-child {
    order: 2;
  }

  .join-card-split > .join-card-copy {
    order: 1;
  }

  .join-apply-button {
    margin-top: 46px;
  }

  .tools-section {
    padding: 56px 0 72px;
  }

  .tools-carousel {
    grid-template-columns: 56px 1fr 56px;
    gap: 14px;
    min-height: 330px;
  }

  .tools-stage {
    height: 330px;
    overflow: hidden;
  }

  .tool-card {
    width: min(280px, 78vw);
    height: 190px;
    transform: translate(-50%, -50%) scale(.74);
  }

  .tool-card[data-position="-1"] {
    left: 8%;
  }

  .tool-card[data-position="1"] {
    left: 92%;
  }

  .tool-card.active {
    width: min(420px, 82vw);
    height: 280px;
  }

  .tool-card-icon {
    width: 58px;
    height: 58px;
  }

  .tool-card.active .tool-card-icon {
    width: 92px;
    height: 92px;
  }

  .tools-arrow {
    width: 56px;
    height: 90px;
  }

  .tools-arrow img {
    width: 34px;
  }

  .tools-dots {
    margin-top: 28px;
  }

  .hot-category-shell {
    grid-template-columns: 42px 1fr 42px;
    gap: 8px;
    margin-bottom: 34px;
  }

  .hot-category-track {
    gap: 16px;
  }

  .hot-category-button {
    flex-basis: 148px;
    height: 54px;
  }

  .recommend-filters {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 42px;
  }

  .filter-menu,
  .filter-menu[data-filter="time"],
  .filter-menu[data-filter="more"] {
    position: static;
    width: 100%;
    grid-column: 1;
    transform: none;
  }

  .category-filter-panel {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .category-filter-parents {
    border-right: 0;
    border-bottom: 1px solid rgba(80, 103, 160, .1);
  }

  .recommend-pagination {
    margin-top: 56px;
  }

  .section-head {
    align-items: flex-end;
    gap: 24px;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .advantage-card {
    min-height: auto;
  }

  .footer-main {
    flex-direction: column;
  }

  .login-page {
    overflow: auto;
  }

  .login-screen {
    min-height: 760px;
    background-position: 34% center;
  }

  .login-brand {
    left: 32px;
  }

  .login-card {
    top: auto;
    right: 50%;
    bottom: 42px;
    transform: translateX(50%);
  }
}

@media (max-width: 640px) {
  .member-center-main,
  .simple-header {
    width: calc(100% - 32px);
  }

  .member-center-head h1 {
    font-size: 28px;
  }

  .member-bean-summary {
    grid-template-columns: 1fr;
  }

  .member-flow-panel {
    padding: 18px;
  }

  .brand img {
    width: 118px;
  }

  .hero {
    min-height: 740px;
  }

  .category-tab-title {
    font-size: 15px;
  }

  .section {
    padding: 64px 0 78px;
  }

  .section-head,
  .section-title {
    display: block;
  }

  .section-title-link {
    display: block;
  }

  .spark {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .more-link {
    margin-top: 24px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .filter-pill {
    height: 54px;
    padding: 0 24px;
  }

  .join-card {
    border-radius: 18px;
  }

  .join-card h2 {
    font-size: 26px;
  }

  .join-card p {
    font-size: 15px;
  }

  .join-apply-button {
    height: 58px;
  }

  .tools-carousel {
    grid-template-columns: 42px 1fr 42px;
  }

  .tool-card {
    width: 220px;
    transform: translate(-50%, -50%) scale(.68);
  }

  .tool-card[data-position="-1"] {
    left: 2%;
    opacity: .52;
  }

  .tool-card[data-position="1"] {
    left: 98%;
    opacity: .52;
  }

  .tool-card.active {
    width: min(320px, 84vw);
    height: 260px;
  }

  .tool-card h2 {
    font-size: 22px;
  }

  .tool-card p {
    font-size: 15px;
  }

  .tool-use-button {
    width: 160px;
    height: 44px;
  }

  .tools-dots button {
    width: 34px;
    height: 12px;
  }

  .tools-dots button.active {
    width: 108px;
  }

  .project-cover {
    height: 190px;
  }

  .project-owner-row {
    grid-template-columns: 58px 1fr;
  }

  .owner-avatar {
    width: 58px;
    height: 58px;
  }

  .detail-button {
    grid-column: 1 / -1;
  }

  .project-meta {
    gap: 22px;
  }

  .platform-card,
  .tool-panel,
  .placeholder-page {
    padding: 28px 20px;
  }

  .tool-item {
    grid-template-columns: 1fr;
    gap: 18px;
    height: 110px;
    min-height: 0;
    padding: 0 118px 0 32px;
  }

  .tool-visual {
    justify-self: start;
  }

  .footer-nav {
    gap: 18px 28px;
  }

  .login-screen {
    min-height: 720px;
    background-position: 27% center;
  }

  .login-brand {
    top: 30px;
    left: 24px;
    font-size: 42px;
  }

  .login-card {
    width: min(418px, calc(100% - 32px));
    height: auto;
    min-height: 500px;
    padding: 70px 38px 0;
  }

  .login-title {
    margin-bottom: 46px;
    font-size: 26px;
  }

  .login-field {
    margin-bottom: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

.my-projects-page {
  background: #eef8ff;
}

.my-profile-hero {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: #dff1ff url("./images/my_head_bg.png") center / cover no-repeat;
}

.my-profile-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 86px;
  background: linear-gradient(180deg, rgba(238, 248, 255, 0), #eef8ff);
  pointer-events: none;
}

.my-profile-inner {
  position: relative;
  z-index: 1;
  width: min(1600px, calc(100% - 96px));
  margin: 0 auto;
  padding: 44px 0 92px;
}

.my-profile-summary {
  display: flex;
  align-items: center;
  gap: 32px;
}

.my-profile-avatar {
  width: 132px;
  height: 132px;
  object-fit: cover;
  background: #eef5ff;
  border: 4px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
  box-shadow: 0 20px 44px rgba(31, 89, 181, .22);
}

.my-profile-copy {
  min-width: 0;
  color: #fff;
}

.my-profile-name-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.my-profile-name-row h1 {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
}

.my-dashboard {
  position: relative;
  z-index: 4;
  margin-top: -72px;
  padding: 0 0 96px;
  background: transparent;
}

.my-dashboard::before {
  content: "";
  position: absolute;
  top: 72px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #eef8ff url("./images/bg.png") center top / cover repeat-y;
}

.my-wallet-card {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  width: min(1600px, calc(100% - 96px));
  min-height: 158px;
  margin: 0 auto 38px;
  padding: 28px 64px;
  background: #fff url("./images/money_bg.png") center / 100% 100% no-repeat;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 8px;
  box-shadow: 0 26px 68px rgba(62, 103, 190, .14);
}

.my-wallet-item {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  text-align: center;
}

.my-wallet-item strong {
  color: #526bff;
  font-size: 34px;
  line-height: 1;
}

.my-wallet-item span {
  color: #1f2837;
  font-size: 14px;
}

.my-wallet-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  height: 28px;
  color: #526bff;
  border: 1px solid rgba(82, 107, 255, .42);
  border-radius: 4px;
  font-size: 13px;
}

.my-wallet-item p {
  margin: 0;
  color: #657bff;
  font-size: 13px;
  line-height: 1.4;
}

.my-wallet-divider {
  width: 1px;
  height: 82px;
  background: rgba(82, 107, 255, .18);
}

.my-project-shell {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  width: min(1600px, calc(100% - 96px));
  margin: 0 auto;
  align-items: start;
}

.my-sidebar,
.my-project-panel {
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(68, 105, 184, .08);
}

.my-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 900px;
  padding: 28px 20px;
}

.my-sidebar a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  color: #273046;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
}

.my-sidebar a.active {
  color: #fff;
  background: linear-gradient(135deg, #6f80ff, #4f64f4);
  box-shadow: 0 14px 30px rgba(82, 107, 255, .22);
}

.my-project-panel {
  min-width: 0;
  min-height: 900px;
  padding: 34px;
}

.my-project-panel .state-card--empty {
  min-height: 720px;
}

.my-project-panel--tasks {
  min-height: 520px;
  padding: 50px 44px 44px;
}

.my-project-panel--toolbox {
  min-height: 560px;
  padding: 48px 50px;
}

.my-project-grid {
  width: 100%;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px 36px;
}

.my-project-grid .project-card {
  background: #fff;
}

.my-project-grid .project-cover {
  height: 190px;
}

.my-project-grid .project-body {
  padding: 22px 24px 24px;
}

.my-project-grid .project-title-row {
  gap: 10px;
}

.my-project-grid .project-title-row h3 {
  font-size: 17px;
}

.my-project-grid .project-summary {
  font-size: 14px;
}

.my-project-grid .project-owner-row {
  grid-template-columns: 58px 1fr;
  gap: 14px;
}

.my-project-grid .owner-avatar {
  width: 58px;
  height: 58px;
}

.my-project-grid .owner-name {
  font-size: 15px;
}

.my-project-grid .detail-button {
  grid-column: 1 / -1;
}

.my-project-grid .project-meta {
  gap: 24px;
}

.my-project-pagination {
  width: 100%;
  margin-top: 68px;
}

.my-star-task-view {
  position: relative;
  min-height: 420px;
  padding-top: 54px;
}

.xingdou-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.xingdou-overview div {
  display: grid;
  gap: 8px;
  min-height: 88px;
  padding: 18px 20px;
  background: #f4faff;
  border: 1px solid rgba(82, 107, 255, .12);
  border-radius: 8px;
}

.xingdou-overview strong {
  color: #526bff;
  font-size: 28px;
  line-height: 1;
}

.xingdou-overview span {
  color: #303849;
  font-size: 14px;
  font-weight: 800;
}

.xingdou-status-message {
  min-height: 22px;
  margin: 0 0 22px;
  color: #657bff;
  font-size: 14px;
  line-height: 1.5;
}

.xingdou-rule-link {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #526bff;
  font-size: 15px;
  font-weight: 800;
}

.xingdou-rule-link img {
  width: 9px;
  height: 14px;
  object-fit: contain;
}

.xingdou-task-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 74px;
}

.xingdou-task-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 124px;
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 16px 18px;
  background: #f4faff;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(80, 118, 210, .06);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.xingdou-task-card.active {
  background: #fff;
  border-color: #526bff;
}

.xingdou-task-card.muted {
  cursor: default;
  opacity: .72;
}

.xingdou-task-card:hover,
.xingdou-task-card:focus-visible {
  border-color: rgba(82, 107, 255, .55);
  box-shadow: 0 16px 34px rgba(80, 118, 210, .12);
  outline: 0;
  transform: translateY(-1px);
}

.xingdou-task-reward {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  padding-top: 22px;
  color: #fff;
  background: url("./images/xingdou_bg.png") center / contain no-repeat;
  font-size: 21px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 2px 7px rgba(61, 54, 196, .48);
}

.xingdou-task-copy {
  min-width: 0;
}

.xingdou-task-copy h2 {
  margin: 0 0 10px;
  color: #1f2837;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
}

.xingdou-task-copy p {
  margin: 0;
  color: #2b3344;
  font-size: 15px;
  line-height: 1.35;
}

.xingdou-task-action {
  justify-self: end;
  width: 116px;
  height: 40px;
  color: #fff;
  background: linear-gradient(135deg, #657dff, #4967f1);
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(82, 107, 255, .22);
}

.xingdou-task-action.sign {
  background: linear-gradient(135deg, #d24eef, #b64eea);
  box-shadow: 0 12px 24px rgba(190, 75, 232, .22);
}

.xingdou-task-action:disabled {
  cursor: not-allowed;
  background: #b8c0d4;
  box-shadow: none;
}

.my-toolbox-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 48px clamp(24px, 4vw, 80px);
  align-items: start;
}

.my-toolbox-card {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 16px;
  justify-self: center;
  width: min(170px, 100%);
  height: 170px;
  color: #242c3b;
  background: #f3faff;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(83, 120, 207, .08);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}

.my-toolbox-card.active,
.my-toolbox-card:hover,
.my-toolbox-card:focus-visible {
  background: #fff;
  border-color: #526bff;
  box-shadow: 0 18px 40px rgba(82, 107, 255, .12);
  outline: 0;
  transform: translateY(-1px);
}

.my-toolbox-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.my-toolbox-card span {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}

@media (max-width: 1280px) {
  .my-wallet-card,
  .my-project-shell,
  .my-profile-inner {
    width: calc(100% - 48px);
  }

  .my-project-shell {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .my-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xingdou-task-grid {
    gap: 28px;
  }

  .xingdou-task-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .xingdou-task-action {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
  }

  .my-toolbox-grid {
    grid-template-columns: repeat(4, 150px);
    gap: 34px 58px;
  }

  .my-toolbox-card {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 980px) {
  .my-profile-hero {
    min-height: 220px;
  }

  .my-profile-inner,
  .my-wallet-card,
  .my-project-shell {
    width: calc(100% - 32px);
  }

  .my-profile-inner {
    padding: 30px 0 84px;
  }

  .my-profile-avatar {
    width: 104px;
    height: 104px;
  }

  .my-wallet-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 24px;
  }

  .my-wallet-divider {
    width: 100%;
    height: 1px;
  }

  .my-project-shell {
    grid-template-columns: 1fr;
  }

  .my-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 0;
    gap: 10px;
  }

  .my-sidebar a {
    justify-content: center;
    text-align: center;
  }

  .my-project-panel {
    min-height: 0;
    padding: 24px;
  }

  .my-project-panel .state-card--empty {
    min-height: 420px;
  }

  .my-project-panel--tasks {
    padding: 34px 24px 28px;
  }

  .my-project-panel--toolbox {
    padding: 34px 24px;
  }

  .xingdou-task-grid {
    grid-template-columns: 1fr;
  }

  .xingdou-overview {
    grid-template-columns: 1fr;
  }

  .my-toolbox-grid {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 24px;
  }

  .my-toolbox-card {
    width: 100%;
    height: 140px;
  }
}

@media (max-width: 640px) {
  .my-profile-summary {
    gap: 18px;
  }

  .my-profile-avatar {
    width: 82px;
    height: 82px;
  }

  .my-profile-name-row h1 {
    font-size: 22px;
  }

  .my-sidebar {
    grid-template-columns: 1fr;
  }

  .my-project-grid {
    grid-template-columns: 1fr;
  }

  .my-project-panel {
    padding: 18px;
  }

  .my-project-panel .state-card--empty {
    min-height: 320px;
  }

  .my-project-panel--tasks {
    padding: 28px 18px 22px;
  }

  .my-project-panel--toolbox {
    padding: 24px 18px;
  }

  .my-toolbox-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .my-toolbox-card {
    height: 124px;
  }

  .my-toolbox-card img {
    width: 46px;
    height: 46px;
  }

  .my-toolbox-card span {
    font-size: 14px;
  }

  .xingdou-task-card {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
  }

  .xingdou-task-reward {
    width: 62px;
    height: 62px;
    padding-top: 18px;
    font-size: 18px;
  }

  .xingdou-task-copy h2 {
    font-size: 16px;
  }

  .xingdou-task-copy p {
    font-size: 13px;
  }
}

.project-detail-page {
  background: #eef8ff;
}

.project-detail-page .recommend-hero {
  height: 250px;
}

.project-detail-page .recommend-hero img {
  height: 100%;
  object-fit: cover;
}

.detail-breadcrumb-shell {
  background: rgba(255, 255, 255, .78);
}

.detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(1360px, calc(100% - 96px));
  height: 52px;
  margin: 0 auto;
  color: #7d8491;
  font-size: 13px;
}

.detail-breadcrumb img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.detail-breadcrumb a:hover {
  color: var(--blue);
}

.project-detail-section {
  padding: 32px 0 86px;
  background: #eef8ff url("./images/bg.png") center top / cover repeat-y;
}

.project-detail-container {
  width: min(1360px, calc(100% - 96px));
  margin: 0 auto;
}

.detail-summary-card,
.detail-panel {
  background: rgba(255, 255, 255, .96);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(78, 112, 204, .08);
}

.detail-summary-card {
  padding: 32px 34px 42px;
}

.detail-summary-top {
  display: grid;
  grid-template-columns: minmax(420px, 1.16fr) minmax(360px, .94fr);
  gap: 34px;
  align-items: stretch;
}

.detail-cover-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #eaf0ff;
  aspect-ratio: 2.08 / 1;
}

.detail-cover {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.detail-cover-badges {
  position: absolute;
  top: 18px;
  left: 26px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-cover-badge {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 16px;
  color: #526bff;
  background: rgba(255, 255, 255, .96);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1;
}

.detail-cover-badge.primary,
.detail-cover-badge.mode {
  color: #fff;
  background: linear-gradient(135deg, #8c58ff, #526bff);
}

.detail-cover-badge.mode {
  margin-left: auto;
}

.detail-intro-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 12px 0 0;
}

.detail-intro-panel h1 {
  margin: 0 0 10px;
  color: #252938;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}

.detail-id-row {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6f7684;
  font-size: 14px;
}

.detail-id-row span {
  color: #4d5362;
}

.detail-copy-id {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.detail-copy-id img {
  width: 13px;
  height: 13px;
  display: block;
  object-fit: contain;
}

.detail-copy-id.copied {
  transform: scale(1.1);
}

.detail-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 14px;
}

.detail-info-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 167px;
  height: 38px;
  padding: 0 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.detail-info-tag.difficulty {
  color: #526bff;
  background-image: url("./images/difficulty-bg.png");
}

.detail-info-tag.cycle {
  color: #ff9b28;
  background-image: url("./images/cycle-bg.png");
}

.detail-summary-text {
  margin: 0 0 16px;
  color: #3d4351;
  font-size: 14px;
  line-height: 1.8;
}

.detail-price-box {
  display: flex;
  align-items: baseline;
  gap: 14px;
  height: 72px;
  margin: 0 0 22px;
  padding: 0 24px;
  color: #202330;
  background: #f3f8ff;
  border-radius: 8px;
}

.detail-price-box strong {
  font-size: 30px;
  line-height: 72px;
}

.detail-price-box del {
  color: #b8bfcc;
  font-size: 20px;
}

.detail-action-row {
  display: flex;
  align-items: center;
  gap: 34px;
}

.detail-consult {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #526bff;
  font-weight: 800;
  font-size: 14px;
}

.detail-consult span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: #526bff;
  border-radius: 50%;
}

.detail-consult span img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.detail-study-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 36px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, #667dff, #4d63f2);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(82, 107, 255, .22);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.detail-study-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(82, 107, 255, .3);
}

.detail-study-button:disabled,
.detail-study-button.is-loading {
  cursor: default;
  opacity: .72;
  transform: none;
  box-shadow: 0 10px 20px rgba(82, 107, 255, .16);
}

.detail-divider {
  height: 18px;
  margin: 32px 0 28px;
  background: #f4f6f9;
}

.detail-summary-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  gap: 34px;
  align-items: stretch;
}

.detail-overview-block {
  min-width: 0;
}

.detail-section-title {
  position: relative;
  margin: 0 0 18px;
  padding-left: 14px;
  color: #252938;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}

.detail-section-title::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 4px;
  background: #526bff;
  border-radius: 999px;
}

.detail-rich-text {
  color: #343b4c;
  font-size: 14px;
  line-height: 1.8;
}

.detail-rich-text p {
  position: relative;
  margin: 0 0 8px;
  padding-left: 18px;
}

.detail-rich-text p::before {
  content: "";
  position: absolute;
  top: .68em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #c56cff;
  border-radius: 50%;
}

.detail-rich-text.collapsed {
  max-height: 72px;
  overflow: hidden;
}

.detail-rich-text.expanded {
  max-height: none;
}

.detail-expand-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 28px;
  margin-top: 12px;
  color: #9aa2b1;
  background: #f3f8ff;
  border: 0;
  font-size: 13px;
  cursor: pointer;
}

.detail-expand-button img {
  width: 12px;
  height: 7px;
  object-fit: contain;
  transition: transform .2s ease;
}

.detail-expand-button.expanded img {
  transform: rotate(180deg);
}

.detail-principal-block {
  min-width: 0;
  padding-left: 34px;
  border-left: 1px solid rgba(82, 107, 255, .16);
}

.detail-principal-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.detail-principal-head img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: #edf3ff;
}

.detail-principal-head strong {
  color: #202330;
  font-size: 17px;
}

.detail-principal-head span {
  margin: 0 12px;
  color: #98a1b8;
  font-weight: 400;
}

.detail-principal-block p {
  margin: 0 0 18px;
  color: #5f6675;
  font-size: 14px;
  line-height: 1.8;
}

.detail-principal-block blockquote {
  margin: 0;
  padding: 14px 22px;
  color: #687083;
  background: #f3f8ff;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.7;
}

.detail-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 20px;
  margin-top: 18px;
}

.detail-main-grid.single {
  grid-template-columns: 1fr;
}

.detail-left-column,
.detail-side-column {
  display: grid;
  align-content: start;
  gap: 18px;
}

.detail-panel {
  padding: 30px 34px 34px;
}

.detail-course-list.collapsed {
  max-height: 472px;
  overflow: hidden;
}

.detail-course-list.expanded {
  max-height: none;
}

.detail-course-stage {
  margin-bottom: 22px;
}

.detail-course-stage:last-child {
  margin-bottom: 0;
}

.detail-course-stage h3 {
  margin: 0;
  padding: 18px 22px;
  color: #252938;
  background: #f2f8ff;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 800;
}

.detail-course-stage ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 18px 22px;
  color: #3f4656;
  background: #f2f8ff;
  border-radius: 8px;
  list-style: none;
  font-size: 14px;
  line-height: 1.55;
}

.detail-course-stage li {
  position: relative;
  padding-left: 18px;
}

.detail-course-stage li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #526bff;
  border-radius: 50%;
}

.detail-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 32px;
}

.detail-case-grid.collapsed {
  max-height: 426px;
  overflow: hidden;
}

.detail-case-grid.expanded {
  max-height: none;
}

.detail-case-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eaf0ff;
  aspect-ratio: 1.78 / 1;
}

.detail-case-card img,
.detail-case-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.detail-case-card.text-only {
  display: flex;
  align-items: center;
  min-height: 128px;
  padding: 22px 24px;
  aspect-ratio: auto;
}

.detail-case-text strong {
  display: block;
  color: #252938;
  font-size: 15px;
  line-height: 1.5;
}

.detail-case-text p {
  margin: 8px 0 0;
  color: #687083;
  font-size: 14px;
  line-height: 1.7;
}

.detail-case-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 36px;
  padding: 0 28px;
  color: #fff;
  font-size: 14px;
  background: linear-gradient(180deg, transparent, rgba(30, 46, 86, .58));
}

.detail-case-caption strong {
  color: #19e0ff;
}

.detail-revenue-costs,
.detail-ratio-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: #f3f8ff;
  border-radius: 10px;
}

.detail-revenue-costs {
  gap: 12px;
  background: transparent;
}

.detail-revenue-costs div {
  display: grid;
  place-items: center;
  min-height: 72px;
  background: #f3f8ff;
  border-radius: 10px;
}

.detail-revenue-costs strong,
.detail-ratio-box strong {
  color: #526bff;
  font-size: 22px;
  line-height: 1.2;
}

.detail-revenue-costs strong {
  color: #202330;
}

.detail-revenue-costs span,
.detail-ratio-box span {
  color: #5e6677;
  font-size: 13px;
}

.detail-subtitle {
  margin-top: 28px;
}

.detail-ratio-box div {
  display: grid;
  place-items: center;
  min-height: 72px;
  border-right: 1px solid rgba(82, 107, 255, .18);
}

.detail-ratio-box div:last-child {
  border-right: 0;
}

.detail-side-note {
  margin: 18px 0 0;
  color: #3f4655;
  font-size: 14px;
  line-height: 1.8;
}

.detail-tool-list {
  display: grid;
  gap: 16px;
}

.detail-tool-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  color: #5d6678;
  background: linear-gradient(180deg, #eef5ff, #dfe9ff);
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.detail-tool-list a.active {
  color: #526bff;
  background: #fff;
  border: 1px solid #526bff;
}

.detail-guarantee-box {
  padding: 24px 26px;
  color: #3c4353;
  background: #f3f8ff;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.8;
}

.detail-guarantee-box p {
  margin: 0 0 20px;
}

.detail-guarantee-box p:last-child {
  margin-bottom: 0;
}

.detail-guarantee-box strong {
  display: block;
  margin-bottom: 2px;
  color: #202330;
}

.detail-risk-box {
  padding: 24px 26px;
  color: #ff8d2c;
  background: #fff2e4;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.85;
}

.detail-risk-box p {
  margin: 0;
}

body.join-modal-open {
  overflow: hidden;
}

.join-lead-modal[hidden] {
  display: none;
}

.join-lead-modal {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.join-lead-mask {
  position: absolute;
  inset: 0;
  background: rgba(16, 20, 31, .52);
}

.join-lead-dialog {
  position: relative;
  width: min(613px, calc(100vw - 32px));
  aspect-ratio: 1127 / 1172;
  background: url("./images/jiameng_bg.png") center / contain no-repeat;
  filter: drop-shadow(0 26px 58px rgba(21, 35, 74, .2));
}

.join-lead-close {
  position: absolute;
  top: 9.2%;
  right: -2.6%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.join-lead-close img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.join-lead-form {
  position: absolute;
  top: 34%;
  right: 6.2%;
  left: 6.2%;
  display: grid;
  gap: 23px;
}

.join-lead-field {
  display: grid;
  gap: 12px;
  min-width: 0;
  color: #202330;
  font-size: 13px;
  font-weight: 800;
}

.join-lead-field input {
  width: 100%;
  height: 50px;
  padding: 0 30px;
  color: #202330;
  background: #f5fbff;
  border: 0;
  border-radius: 999px;
  outline: 0;
  box-shadow: inset 0 2px 9px rgba(82, 107, 255, .05);
}

.join-lead-field input::placeholder {
  color: #c4cad4;
}

.join-lead-field input:focus {
  box-shadow: inset 0 2px 9px rgba(82, 107, 255, .05), 0 0 0 2px rgba(82, 107, 255, .16);
}

.join-lead-submit {
  justify-self: center;
  width: 188px;
  height: 50px;
  margin-top: 4px;
  color: #fff;
  background: linear-gradient(135deg, #667dff, #4f65f3);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(82, 107, 255, .25);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.join-lead-submit:hover,
.join-lead-submit:focus-visible {
  transform: translateY(-1px);
  outline: 0;
  box-shadow: 0 18px 34px rgba(82, 107, 255, .32);
}

.join-lead-submit:disabled {
  cursor: default;
  opacity: .72;
  transform: none;
  box-shadow: 0 10px 22px rgba(82, 107, 255, .16);
}

.join-lead-message {
  min-height: 18px;
  margin: -10px 0 0;
  color: #657bff;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.join-lead-message.is-error {
  color: #e85b4b;
}

.join-lead-message.is-success {
  color: #2f7d47;
}

body.order-modal-open {
  overflow: hidden;
}

.project-order-modal[hidden] {
  display: none;
}

.project-order-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.project-order-mask {
  position: absolute;
  inset: 0;
  background: rgba(16, 20, 31, .5);
}

.project-order-dialog {
  position: relative;
  width: min(846px, calc(100vw - 32px));
  height: min(710px, calc(100vh - 48px));
  color: #202330;
  background: url("./images/order_bg.png") center / 100% 100% no-repeat;
  border-radius: 22px;
  filter: drop-shadow(0 24px 54px rgba(21, 35, 74, .18));
}

.project-order-close {
  position: absolute;
  top: 38px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.project-order-close img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.project-order-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}

.project-order-main {
  flex: 1;
  min-height: 0;
  padding: 86px 32px 70px;
  overflow-y: auto;
}

.project-order-main::-webkit-scrollbar {
  width: 0;
}

.project-order-project {
  display: grid;
  grid-template-columns: 246px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 130px;
}

.project-order-cover {
  width: 246px;
  height: 112px;
  display: block;
  object-fit: cover;
  background: #eef3ff;
  border-radius: 10px;
}

.project-order-project-info {
  min-width: 0;
}

.project-order-project-info h2 {
  margin: 0 0 8px;
  color: #202330;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
}

.project-order-project-info p {
  margin: 0 0 18px;
  color: #8c93a2;
  font-size: 13px;
  line-height: 1.2;
}

.project-order-project-info strong {
  display: block;
  color: #202330;
  font-size: 30px;
  line-height: 1;
}

.project-order-divider {
  height: 16px;
  margin: 4px 0 14px;
  background: linear-gradient(180deg, rgba(248, 250, 253, 0), #f5f6f8 45%, rgba(248, 250, 253, 0));
}

.project-order-divider.compact {
  margin: 12px 0 14px;
}

.project-order-section-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: #202330;
  font-size: 15px;
  font-weight: 800;
}

.project-order-section-title span {
  width: 3px;
  height: 14px;
  background: #526bff;
  border-radius: 999px;
}

.project-order-pay-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.project-order-pay-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 52px;
  padding: 0 18px;
  color: #4b5261;
  background: #f5fbff;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.project-order-pay-option.active {
  background: #fff;
  border-color: #8ea4ff;
  box-shadow: 0 10px 22px rgba(82, 107, 255, .1);
}

.project-order-pay-option.disabled {
  opacity: .48;
  cursor: not-allowed;
  background: #f5f6f9;
}

.pay-result-main {
  min-height: calc(100vh - 94px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 20px;
  background: #f6f8ff;
}

.pay-result-panel {
  width: min(520px, 100%);
  padding: 46px 34px;
  background: #fff;
  border: 1px solid rgba(82, 107, 255, .12);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(53, 72, 132, .1);
  text-align: center;
}

.pay-result-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 6px solid #d8defa;
  border-top-color: #526bff;
  animation: pay-result-spin 1s linear infinite;
}

.pay-result-icon.success {
  border: 0;
  background: #22b573;
  animation: none;
  position: relative;
}

.pay-result-icon.success::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 16px;
  width: 16px;
  height: 28px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(45deg);
}

.pay-result-icon.warn {
  border: 0;
  background: #ffb23d;
  animation: none;
  position: relative;
}

.pay-result-icon.warn::before,
.pay-result-icon.warn::after {
  content: "";
  position: absolute;
  left: 29px;
  background: #fff;
  border-radius: 2px;
}

.pay-result-icon.warn::before {
  top: 15px;
  width: 4px;
  height: 26px;
}

.pay-result-icon.warn::after {
  bottom: 14px;
  width: 4px;
  height: 4px;
}

.pay-result-panel h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.35;
  color: #1f2633;
}

.pay-result-panel p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: #697386;
}

.pay-result-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pay-result-primary,
.pay-result-secondary {
  min-width: 136px;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
}

.pay-result-primary {
  color: #fff;
  background: #526bff;
  border: 1px solid #526bff;
}

.pay-result-secondary {
  color: #526bff;
  background: #fff;
  border: 1px solid rgba(82, 107, 255, .35);
}

@keyframes pay-result-spin {
  to {
    transform: rotate(360deg);
  }
}

.project-order-pay-option img {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
}

.project-order-bean-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 30px;
  background: #f5fbff;
  border-radius: 8px;
}

.project-order-bean-row.disabled {
  opacity: .68;
}

.project-order-bean-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.project-order-bean-icon img {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
}

.project-order-bean-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  flex: 1;
}

.project-order-bean-copy strong {
  color: #596071;
  font-size: 15px;
  white-space: nowrap;
}

.project-order-bean-copy small {
  color: #ff6b9d;
  font-size: 13px;
  line-height: 1.4;
  text-align: right;
}

.project-order-switch {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  padding: 0;
  background: #f1f3f6;
  border: 1px solid #d7dce6;
  border-radius: 50%;
  cursor: pointer;
}

.project-order-switch.active {
  background: #526bff;
  border-color: #526bff;
}

.project-order-switch.active span {
  position: absolute;
  inset: 5px;
  background: #fff;
  border-radius: 50%;
}

.project-order-switch:disabled {
  cursor: default;
}

.project-order-message {
  margin: 8px 0 0;
  color: #ff7d2a;
  font-size: 12px;
  line-height: 1.45;
}

.project-order-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  margin: 16px 0 10px;
  color: #4c5363;
  font-size: 14px;
}

.project-order-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  padding: 0 30px 0 0;
}

.project-order-summary div + div {
  padding: 0 0 0 30px;
  border-left: 1px solid rgba(82, 107, 255, .25);
}

.project-order-summary strong {
  color: #ff6b9d;
  font-weight: 500;
}

.project-order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  padding: 0 30px;
  background: #f1f9ff;
  border-radius: 8px;
}

.project-order-total span {
  color: #202330;
  font-size: 15px;
  font-weight: 800;
}

.project-order-total strong {
  color: #202330;
  font-size: 30px;
  line-height: 1;
}

.project-order-note {
  margin: 12px 0 0;
  color: #9ba3b1;
  font-size: 12px;
  line-height: 1.5;
}

.project-order-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  padding: 0 32px;
  background: #dbe5ff;
  border-radius: 0 0 22px 22px;
}

.project-order-consult {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #526bff;
  font-size: 14px;
  font-weight: 800;
}

.project-order-consult span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: #526bff;
  border-radius: 50%;
}

.project-order-consult img {
  width: 17px;
  height: 17px;
  display: block;
  object-fit: contain;
}

.project-order-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 174px;
  height: 34px;
  color: #fff;
  background: linear-gradient(135deg, #667dff, #4d63f2);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(82, 107, 255, .24);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.project-order-submit:disabled {
  cursor: default;
  opacity: .68;
  box-shadow: none;
}

@media (max-width: 1280px) {
  .project-detail-container,
  .detail-breadcrumb {
    width: calc(100% - 48px);
  }

  .detail-main-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
  }
}

@media (max-width: 980px) {
  .project-detail-page .recommend-hero {
    height: 180px;
  }

  .project-detail-container,
  .detail-breadcrumb {
    width: calc(100% - 32px);
  }

  .project-detail-section {
    padding: 24px 0 58px;
  }

  .detail-summary-card,
  .detail-panel {
    padding: 24px;
  }

  .detail-summary-top,
  .detail-summary-bottom,
  .detail-main-grid {
    grid-template-columns: 1fr;
  }

  .detail-cover-wrap {
    min-height: 220px;
  }

  .detail-principal-block {
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid rgba(82, 107, 255, .16);
  }

  .detail-side-column {
    order: -1;
  }

  .project-order-dialog {
    width: min(720px, calc(100vw - 24px));
    height: min(604px, calc(100vh - 32px));
  }

  .project-order-main {
    padding: 80px 24px 70px;
  }

  .project-order-project {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 18px;
  }

  .project-order-cover {
    width: 210px;
    height: 96px;
  }

  .project-order-pay-grid {
    gap: 16px;
  }

  .project-order-bean-row,
  .project-order-total,
  .project-order-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 640px) {
  .project-detail-page .recommend-hero {
    height: 130px;
  }

  .detail-breadcrumb {
    height: 44px;
    font-size: 12px;
  }

  .detail-summary-card,
  .detail-panel {
    border-radius: 10px;
    padding: 18px;
  }

  .detail-cover-wrap {
    min-height: 0;
    aspect-ratio: 1.55 / 1;
  }

  .detail-cover-badges {
    top: 12px;
    left: 12px;
    right: 12px;
    gap: 6px;
  }

  .detail-cover-badge {
    height: 26px;
    padding: 0 10px;
    font-size: 12px;
  }

  .detail-intro-panel h1 {
    font-size: 20px;
  }

  .detail-price-box {
    height: 60px;
    padding: 0 18px;
  }

  .detail-price-box strong {
    font-size: 26px;
    line-height: 60px;
  }

  .detail-action-row {
    gap: 16px;
  }

  .detail-study-button {
    flex: 1;
    width: auto;
  }

  .detail-divider {
    margin: 24px 0;
  }

  .detail-principal-head {
    gap: 14px;
  }

  .detail-principal-head img {
    width: 54px;
    height: 54px;
  }

  .detail-case-grid,
  .detail-revenue-costs,
  .detail-ratio-box {
    grid-template-columns: 1fr;
  }

  .detail-case-grid.collapsed {
    max-height: 700px;
  }

  .detail-ratio-box div {
    border-right: 0;
    border-bottom: 1px solid rgba(82, 107, 255, .18);
  }

  .detail-ratio-box div:last-child {
    border-bottom: 0;
  }

  .join-lead-modal {
    padding: 12px;
  }

  .join-lead-dialog {
    width: min(613px, calc(100vw - 24px));
  }

  .join-lead-close {
    top: 8.4%;
    right: -1.4%;
    width: 34px;
    height: 34px;
  }

  .join-lead-close img {
    width: 24px;
    height: 24px;
  }

  .join-lead-form {
    top: 33.8%;
    gap: 7px;
  }

  .join-lead-field {
    gap: 5px;
    font-size: 12px;
  }

  .join-lead-field input {
    height: 34px;
    padding: 0 18px;
    font-size: 12px;
  }

  .join-lead-submit {
    width: 146px;
    height: 36px;
    margin-top: 3px;
    font-size: 12px;
  }

  .project-order-modal {
    padding: 12px;
  }

  .project-order-dialog {
    width: calc(100vw - 24px);
    height: calc(100vh - 24px);
    min-height: 0;
    border-radius: 18px;
  }

  .project-order-close {
    top: -17px;
    right: 5px;
    width: 36px;
    height: 36px;
  }

  .project-order-close img {
    width: 20px;
    height: 20px;
  }

  .project-order-main {
    padding: 70px 16px 74px;
  }

  .project-order-project {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
  }

  .project-order-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 2.08 / 1;
  }

  .project-order-project-info h2 {
    font-size: 15px;
  }

  .project-order-project-info p {
    margin-bottom: 12px;
  }

  .project-order-project-info strong,
  .project-order-total strong {
    font-size: 26px;
  }

  .project-order-pay-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .project-order-pay-option {
    height: 48px;
  }

  .project-order-bean-row {
    align-items: flex-start;
    min-height: 0;
    padding: 12px 14px;
  }

  .project-order-bean-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .project-order-bean-copy small {
    text-align: left;
  }

  .project-order-summary {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .project-order-summary div,
  .project-order-summary div + div {
    padding: 0;
    border-left: 0;
  }

  .project-order-total {
    height: 50px;
    padding: 0 16px;
  }

  .project-order-footer {
    height: 58px;
    padding: 0 16px;
    border-radius: 0 0 18px 18px;
  }

  .project-order-submit {
    width: 144px;
  }
}

@media (max-width: 1280px) {
  .member-profile-inner,
  .member-xingdou-shell,
  .member-open-shell {
    width: calc(100% - 48px);
  }
}

@media (max-width: 980px) {
  .member-profile-inner {
    width: calc(100% - 32px);
    padding-bottom: 86px;
  }

  .member-balance-card {
    padding-left: 90px;
    padding-right: 90px;
  }

  .member-flow-filter,
  .member-flow-list,
  .member-center-page .member-flow-pagination {
    width: calc(100% - 48px);
  }

  .member-flow-filter {
    gap: 16px;
  }

  .member-flow-filter button {
    height: 64px;
    padding: 0 14px;
  }

  .member-open-shell {
    width: calc(100% - 48px);
  }

  .member-open-head {
    padding-left: 72px;
    padding-right: 72px;
  }

  .member-open-body {
    padding: 42px 28px 28px;
  }

  .member-plan-grid {
    gap: 22px;
  }

  .member-plan-card {
    padding: 38px 24px 30px;
  }

  .member-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 22px;
  }

  .member-benefit-grid article:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .member-open-modal {
    padding: 12px;
  }

  .member-open-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
  }

  .member-profile-hero {
    min-height: 224px;
  }

  .member-profile-inner {
    align-items: flex-start;
    gap: 18px;
    padding: 28px 0 82px;
  }

  .member-profile-avatar {
    width: 82px;
    height: 82px;
    border-width: 3px;
  }

  .member-profile-row {
    gap: 10px;
  }

  .member-profile-row h1 {
    font-size: 18px;
  }

  .member-xingdou-shell {
    width: calc(100% - 24px);
    margin-top: -52px;
    margin-bottom: 64px;
  }

  .member-balance-card {
    min-height: 150px;
    padding: 24px 22px 26px;
  }

  .member-balance-back {
    top: 22px;
    left: 18px;
  }

  .member-balance-card strong {
    font-size: 30px;
  }

  .member-balance-actions {
    gap: 12px;
    margin-top: 18px;
  }

  .member-balance-actions a {
    width: 104px;
  }

  .member-center-page .member-flow-panel {
    padding: 22px 0 28px;
  }

  .member-flow-filter,
  .member-flow-list,
  .member-center-page .member-flow-pagination {
    width: calc(100% - 28px);
  }

  .member-flow-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
  }

  .member-flow-filter button {
    height: 58px;
    font-size: 13px;
  }

  .member-flow-filter img {
    width: 26px;
    height: 26px;
  }

  .member-flow-list {
    gap: 14px;
  }

  .member-flow-card {
    min-height: 66px;
    padding: 0 16px;
    gap: 16px;
  }

  .member-flow-amount {
    font-size: 21px;
  }

  .member-open-shell {
    width: calc(100% - 24px);
    margin-top: -52px;
    margin-bottom: 64px;
  }

  .member-open-head {
    min-height: 142px;
    padding: 30px 42px 42px;
  }

  .member-open-back {
    top: 24px;
    left: 18px;
  }

  .member-open-head h2 {
    font-size: 20px;
  }

  .member-open-body {
    padding: 32px 14px 18px;
  }

  .member-plan-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .member-plan-card {
    min-height: auto;
    padding: 28px 22px 24px;
  }

  .member-plan-deduct {
    margin-top: 22px;
  }

  .member-benefits {
    margin-top: 24px;
    padding: 20px 18px 22px;
  }

  .member-benefit-grid {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .member-benefit-grid article,
  .member-benefit-grid article:nth-child(odd) {
    min-height: auto;
    padding: 0;
    border-left: 0;
  }

  .member-open-checkout {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
  }

  .member-pay-button {
    width: 100%;
  }
}

.mobile-topbar,
.mobile-tabbar,
.mobile-home-section,
.mobile-home-filters {
  display: none;
}

@media (max-width: 768px) {
  html {
    scroll-behavior: auto;
  }

  body:not(.login-page) {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
    background: #f5f5f5;
  }

  .site-header,
  .recommend-page .site-header,
  .recommend-page .site-header.is-scrolled {
    display: none !important;
  }

  .site-footer {
    display: none;
  }

  .mobile-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    height: calc(52px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 12px 0;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(30, 45, 80, .06);
    backdrop-filter: blur(18px);
  }

  .mobile-topbar-title {
    min-width: 0;
    overflow: hidden;
    color: #242936;
    font-size: 17px;
    line-height: 52px;
    font-weight: 800;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-topbar-back,
  .mobile-topbar-user {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    justify-self: start;
    background: rgba(255, 255, 255, .88);
    border: 0;
    border-radius: 50%;
  }

  .mobile-topbar-back::before {
    content: "";
    width: 10px;
    height: 10px;
    border-left: 2px solid #2d3445;
    border-bottom: 2px solid #2d3445;
    transform: translateX(2px) rotate(45deg);
  }

  .mobile-topbar-back.is-hidden {
    visibility: hidden;
  }

  .mobile-topbar-user {
    position: relative;
    justify-self: end;
    background: linear-gradient(135deg, #6bd7ff, #667eea);
    box-shadow: 0 8px 18px rgba(84, 112, 220, .18);
  }

  .mobile-topbar-user::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
  }

  .mobile-topbar-user::after {
    content: "";
    position: absolute;
    bottom: 8px;
    width: 18px;
    height: 9px;
    border: 2px solid #fff;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border-bottom: 0;
  }

  .mobile-topbar-user.is-signed-in {
    background: linear-gradient(135deg, #f4c86a, #667eea);
  }

  .mobile-tabbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 78;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: calc(58px + env(safe-area-inset-bottom));
    padding: 6px 6px calc(6px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid rgba(30, 45, 80, .08);
    box-shadow: 0 -8px 28px rgba(31, 45, 61, .08);
  }

  .mobile-tabbar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    color: #999;
    font-size: 11px;
    line-height: 1.2;
  }

  .mobile-tabbar-item img {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
  }

  .mobile-tabbar-item.active {
    color: #667eea;
    font-weight: 800;
  }

  .hero {
    height: 268px;
    min-height: 0;
    overflow: hidden;
    background: #eef3ff;
  }

  .hero-bg {
    background-position: center top;
    background-size: cover;
  }

  .hero-fade {
    display: none;
  }

  .category-dock {
    left: 15px;
    right: 15px;
    bottom: 14px;
    width: auto;
    min-height: 74px;
    padding: 10px;
    grid-auto-flow: column;
    grid-auto-columns: 78px;
    grid-template-columns: none;
    gap: 8px;
    overflow-x: auto;
    background: rgba(255, 255, 255, .94);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(31, 45, 61, .12);
    transform: none;
    scrollbar-width: none;
  }

  .category-dock::-webkit-scrollbar {
    display: none;
  }

  .category-tab {
    min-height: 54px;
    padding: 8px 6px;
    border-radius: 10px;
  }

  .category-tab:hover,
  .category-tab.active {
    color: #5673f8;
    background: #eef2ff;
    box-shadow: none;
    transform: none;
  }

  .category-tab-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 4px;
  }

  .category-tab-icon img {
    width: 24px;
    height: 24px;
  }

  .category-tab-title {
    width: 100%;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .section {
    padding: 22px 0 28px;
  }

  .section-soft,
  .section-values,
  .recommend-list-section,
  .project-detail-section {
    background: #f5f5f5;
  }

  .section-head,
  .project-grid,
  .value-layout,
  .footer-inner,
  .recommend-title,
  .recommend-filters,
  .recommend-pagination,
  .hot-category-shell {
    width: calc(100% - 30px);
  }

  .section-head {
    align-items: center;
    margin-bottom: 14px;
  }

  .section-title,
  .section-title-link {
    display: block;
  }

  .spark {
    display: none;
  }

  .section-title h2 {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
  }

  .section-title p {
    margin-top: 5px;
    color: #8a909b;
    font-size: 12px;
  }

  .more-link {
    gap: 6px;
    color: #5673f8;
    font-size: 12px;
  }

  .more-link span {
    display: none;
  }

  .project-grid,
  .recommend-grid,
  .my-project-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .project-card,
  .my-project-grid .project-card {
    overflow: hidden;
    background: #fff;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(31, 45, 61, .04);
    opacity: 1;
    transform: none;
    transition: none;
  }

  .project-card:hover {
    box-shadow: 0 8px 28px rgba(31, 45, 61, .04);
    transform: none;
  }

  .project-cover,
  .my-project-grid .project-cover {
    height: 140px;
    border-radius: 10px 10px 8px 8px;
  }

  .project-card:hover .project-cover img {
    transform: none;
  }

  .project-badges {
    top: 8px;
    left: 8px;
    right: 8px;
  }

  .badge {
    min-height: 24px;
    padding: 0 11px;
    border-radius: 999px;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  }

  .project-body,
  .my-project-grid .project-body {
    padding: 10px 12px 12px;
  }

  .project-title-row,
  .my-project-grid .project-title-row {
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
  }

  .project-title-row h3,
  .my-project-grid .project-title-row h3 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .project-price {
    font-size: 14px;
  }

  .project-info-tags {
    gap: 6px;
    margin: 0 0 9px;
  }

  .project-info-tag {
    width: auto;
    height: auto;
    padding: 4px 8px;
    border-radius: 4px;
    background-image: none !important;
    font-size: 11px;
  }

  .project-info-tag.difficulty {
    color: #d344e8;
    background: #f8e6ff;
  }

  .project-info-tag.cycle {
    color: #b66a36;
    background: #fff0e6;
    border: 1px solid #f1b48f;
  }

  .project-summary,
  .my-project-grid .project-summary {
    display: -webkit-box;
    min-height: 0;
    margin-bottom: 12px;
    overflow: hidden;
    color: #999;
    font-size: 13px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .project-owner-row,
  .my-project-grid .project-owner-row {
    display: flex;
    grid-template-columns: none;
    gap: 8px;
    margin-bottom: 10px;
  }

  .owner-avatar,
  .my-project-grid .owner-avatar {
    width: 24px;
    height: 24px;
  }

  .owner-name,
  .my-project-grid .owner-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    color: #333;
    font-size: 12px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .owner-name span {
    margin: 0 2px;
  }

  .detail-button,
  .my-project-grid .detail-button {
    grid-column: auto;
    flex: none;
    height: 28px;
    padding: 0 14px;
    border-radius: 20px;
    font-size: 12px;
    box-shadow: none;
  }

  .project-meta,
  .my-project-grid .project-meta {
    gap: 18px;
    color: #999;
    font-size: 12px;
  }

  .project-meta img {
    width: 15px;
    height: 15px;
  }

  .value-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .platform-card,
  .tool-panel {
    padding: 18px 15px;
    background: #fff;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(31, 45, 61, .04);
  }

  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .advantage-card {
    min-height: 0;
    padding: 14px;
    border-radius: 10px;
    background: #f7f9ff;
  }

  .tool-list {
    gap: 10px;
  }

  .tool-item {
    grid-template-columns: 1fr auto;
    height: auto;
    min-height: 66px;
    padding: 0 14px;
    border-radius: 10px;
    background: #f7f9ff;
  }

  .recommend-page main {
    padding-top: calc(52px + env(safe-area-inset-top));
  }

  .recommend-page .recommend-hero,
  .project-detail-page .recommend-hero,
  .detail-breadcrumb-shell {
    display: none;
  }

  .recommend-list-section {
    min-height: calc(100vh - 52px);
    padding: 14px 0 28px;
    overflow: visible;
  }

  .recommend-title {
    margin: 0 auto 14px;
    text-align: left;
  }

  .recommend-title h1 {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
  }

  .recommend-title p {
    margin-top: 5px;
    color: #8a909b;
    font-size: 12px;
  }

  .recommend-filters {
    position: sticky;
    top: calc(52px + env(safe-area-inset-top));
    z-index: 20;
    display: flex;
    gap: 9px;
    margin: 0 auto 12px;
    padding: 8px 0;
    overflow-x: auto;
    background: #f5f5f5;
    scrollbar-width: none;
  }

  .recommend-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-pill {
    flex: 0 0 auto;
    height: 34px;
    padding: 0 14px;
    gap: 8px;
    color: #555;
    background: #fff;
    border-radius: 17px;
    box-shadow: none;
    font-size: 13px;
  }

  .filter-arrow {
    width: 8px;
    height: 8px;
  }

  .filter-menu,
  .filter-menu[data-filter="time"],
  .filter-menu[data-filter="more"] {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    width: 100%;
    max-height: min(72vh, 520px);
    overflow-y: auto;
    border-radius: 18px 18px 0 0;
    transform: none;
  }

  .filter-menu button {
    height: 48px;
    padding: 0 20px;
    font-size: 14px;
  }

  .category-filter-panel,
  .category-filter-panel.single {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .category-filter-parents {
    border-right: 0;
    border-bottom: 1px solid rgba(80, 103, 160, .1);
  }

  .hot-category-shell {
    display: block;
    margin: 0 auto 12px;
  }

  .hot-category-arrow {
    display: none;
  }

  .hot-category-track {
    gap: 8px;
    padding: 8px 0;
  }

  .hot-category-button {
    flex: 0 0 auto;
    width: auto;
    height: 34px;
    padding: 0 14px;
    border-radius: 17px;
    box-shadow: none;
    font-size: 13px;
  }

  .recommend-pagination {
    margin-top: 18px;
  }

  .recommend-pagination button,
  .pager-ellipsis {
    min-width: 30px;
    height: 30px;
  }

  .project-detail-page {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
    background: #f5f5f5;
  }

  .project-detail-page .mobile-tabbar {
    display: none;
  }

  .project-detail-section {
    padding: 14px 0 18px;
  }

  .project-detail-container {
    width: 100%;
  }

  .detail-summary-card,
  .detail-panel {
    margin: 0 15px 12px;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(31, 45, 61, .04);
  }

  .detail-summary-card {
    padding-bottom: 14px;
  }

  .detail-summary-top,
  .detail-summary-bottom,
  .detail-main-grid {
    display: block;
  }

  .detail-cover-wrap {
    min-height: 0;
    border-radius: 0;
    aspect-ratio: 1.95 / 1;
  }

  .detail-cover-badges {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .detail-cover-badge {
    height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
  }

  .detail-intro-panel {
    padding: 14px 15px 0;
  }

  .detail-intro-panel h1 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.35;
  }

  .detail-id-row {
    font-size: 12px;
  }

  .detail-tag-row {
    gap: 6px;
    margin: 12px 0 10px;
  }

  .detail-info-tag {
    width: auto;
    height: auto;
    padding: 5px 8px;
    border-radius: 4px;
    background-image: none !important;
    font-size: 12px;
  }

  .detail-info-tag.difficulty {
    background: #f8e6ff;
  }

  .detail-info-tag.cycle {
    background: #fff0e6;
    border: 1px solid #f1b48f;
  }

  .detail-summary-text {
    margin-bottom: 12px;
    color: #777;
    font-size: 13px;
    line-height: 1.65;
  }

  .detail-price-box {
    height: 52px;
    margin-bottom: 0;
    padding: 0 14px;
    background: #f7f9ff;
    border-radius: 10px;
  }

  .detail-price-box strong {
    font-size: 23px;
    line-height: 52px;
  }

  .detail-price-box del {
    font-size: 14px;
  }

  .detail-action-row {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 82;
    gap: 12px;
    min-height: calc(62px + env(safe-area-inset-bottom));
    padding: 10px 15px calc(10px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid rgba(30, 45, 80, .08);
    box-shadow: 0 -8px 28px rgba(31, 45, 61, .08);
  }

  .detail-consult {
    flex: none;
    width: 64px;
    justify-content: center;
    color: #667eea;
    font-size: 13px;
  }

  .detail-consult span {
    width: 28px;
    height: 28px;
  }

  .detail-consult span img {
    width: 16px;
    height: 16px;
  }

  .detail-study-button {
    flex: 1;
    width: auto;
    height: 42px;
    font-size: 15px;
  }

  .detail-divider {
    height: 10px;
    margin: 14px 0;
    background: #f5f5f5;
  }

  .detail-summary-bottom {
    padding: 0 15px;
  }

  .detail-section-title {
    font-size: 16px;
  }

  .detail-rich-text,
  .detail-principal-block p,
  .detail-risk-box {
    font-size: 13px;
    line-height: 1.7;
  }

  .detail-principal-block {
    margin-top: 16px;
    padding: 16px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(82, 107, 255, .12);
  }

  .detail-principal-head img {
    width: 48px;
    height: 48px;
  }

  .detail-main-grid {
    margin: 0;
  }

  .detail-panel {
    padding: 15px;
  }

  .detail-side-column {
    order: initial;
  }

  .detail-case-grid,
  .detail-revenue-costs,
  .detail-ratio-box {
    grid-template-columns: 1fr;
  }

  .detail-ratio-box div {
    border-right: 0;
    border-bottom: 1px solid rgba(82, 107, 255, .18);
  }

  .detail-ratio-box div:last-child {
    border-bottom: 0;
  }

  .project-order-dialog {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }

  .project-order-footer {
    border-radius: 0;
  }
}

@media (max-width: 768px) {
  .simple-page {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
    background: #f5f5f5;
  }

  .simple-header {
    display: none;
  }

  .simple-page main,
  .pay-result-page main {
    padding-top: calc(52px + env(safe-area-inset-top));
  }

  .placeholder-page,
  .invite-main {
    width: calc(100% - 30px);
    margin: 14px auto 28px;
    padding: 0;
  }

  .placeholder-page,
  .invite-panel,
  .pay-result-panel {
    background: #fff;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(31, 45, 61, .04);
  }

  .placeholder-page {
    padding: 20px 16px;
  }

  .placeholder-page h1 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.3;
  }

  .placeholder-page p,
  .query-box {
    font-size: 13px;
    line-height: 1.7;
  }

  .query-box {
    margin-top: 16px;
    padding: 14px;
    border-radius: 10px;
  }

  .invite-main {
    display: block;
    min-height: auto;
  }

  .invite-panel {
    width: 100%;
    padding: 22px 16px;
  }

  .invite-eyebrow {
    font-size: 12px;
  }

  .invite-panel h1 {
    margin-top: 8px;
    font-size: 20px;
    line-height: 1.3;
  }

  .invite-copy,
  .invite-message {
    font-size: 13px;
  }

  .invite-code-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
    border-radius: 10px;
  }

  .invite-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .join-section,
  .tools-section {
    padding: 14px 0 28px;
    background: #f5f5f5;
  }

  .join-card-list,
  .join-apply-button,
  .tools-carousel,
  .tools-dots {
    width: calc(100% - 30px);
  }

  .join-card-list {
    gap: 12px;
  }

  .join-card,
  .join-card-primary,
  .join-card-split,
  .join-card-third {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 104px;
    align-items: center;
    min-height: 148px;
    padding: 18px 15px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(31, 45, 61, .04);
  }

  .join-card-primary {
    color: #fff;
    background: linear-gradient(135deg, #667eea, #7b61ff);
  }

  .join-card-split {
    background: linear-gradient(135deg, #ffffff, #eef2ff);
  }

  .join-card-third {
    background: linear-gradient(135deg, #ffffff, #fff5ea);
  }

  .join-card-primary .join-card-copy,
  .join-card-split .join-card-copy {
    width: 100%;
    padding-left: 0;
    justify-self: stretch;
  }

  .join-card-split > .join-card-visual:first-child {
    order: 2;
    justify-self: end;
  }

  .join-card-split > .join-card-copy {
    order: 1;
  }

  .join-card h2 {
    margin-bottom: 8px;
    color: #2c3445;
    font-size: 17px;
    line-height: 1.25;
  }

  .join-card-primary h2 {
    color: #fff;
  }

  .join-card p {
    display: -webkit-box;
    margin-bottom: 12px;
    overflow: hidden;
    color: #667085;
    font-size: 12px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .join-card-primary p {
    color: rgba(255, 255, 255, .86);
  }

  .join-card-arrow {
    width: 22px;
  }

  .join-card-visual,
  .join-card-primary .join-card-visual,
  .join-card-split > .join-card-visual:first-child,
  .join-card-third .join-card-visual {
    width: 96px;
    max-height: 104px;
    justify-self: end;
    object-fit: contain;
  }

  .join-apply-button {
    height: 44px;
    margin-top: 14px;
    border-radius: 22px;
    font-size: 14px;
    box-shadow: none;
  }

  .tools-carousel {
    display: block;
    min-height: 0;
    margin: 0 auto;
  }

  .tools-stage {
    display: grid;
    gap: 12px;
    height: auto;
  }

  .tool-card,
  .tool-card.active,
  .tool-card[data-position="-1"],
  .tool-card[data-position="0"],
  .tool-card[data-position="1"],
  .tool-card[data-position="hidden"] {
    position: relative;
    left: auto;
    top: auto;
    z-index: auto;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    width: 100%;
    height: auto;
    min-height: 96px;
    padding: 16px;
    text-align: left;
    background: #fff;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(31, 45, 61, .04);
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .tool-card-icon,
  .tool-card.active .tool-card-icon {
    grid-row: 1 / 4;
    width: 44px;
    height: 44px;
  }

  .tool-card h2,
  .tool-card.active h2 {
    margin: 0 0 6px;
    color: #222633;
    font-size: 16px;
  }

  .tool-card p,
  .tool-card.active p {
    margin: 0;
    color: #8a909b;
    font-size: 12px;
  }

  .tool-use-button,
  .tool-card.active .tool-use-button {
    width: auto;
    height: 30px;
    margin-top: 10px;
    padding: 0 16px;
    font-size: 12px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .tools-arrow,
  .tools-dots {
    display: none;
  }

  .my-projects-page main,
  .member-center-page main,
  .member-open-page main,
  .pay-result-page main {
    padding-top: calc(52px + env(safe-area-inset-top));
  }

  .my-profile-hero,
  .member-profile-hero {
    min-height: 150px;
    background-position: center top;
  }

  .my-profile-hero::after,
  .member-profile-hero::after {
    height: 34px;
    background: linear-gradient(180deg, rgba(245, 245, 245, 0), #f5f5f5);
  }

  .my-profile-inner,
  .member-profile-inner {
    width: calc(100% - 30px);
    padding: 18px 0 48px;
  }

  .my-profile-summary,
  .member-profile-inner {
    gap: 14px;
  }

  .my-profile-avatar,
  .member-profile-avatar {
    width: 64px;
    height: 64px;
    border-width: 3px;
  }

  .my-profile-name-row h1,
  .member-profile-row h1 {
    color: #fff;
    font-size: 18px;
  }

  .member-vip-badge {
    margin-top: 8px;
  }

  .member-vip-badge img {
    width: 28px;
    height: 25px;
  }

  .member-vip-badge span {
    width: 66px;
    height: 21px;
    font-size: 11px;
  }

  .my-dashboard {
    margin-top: -34px;
    padding-bottom: 28px;
  }

  .my-dashboard::before {
    top: 34px;
    background: #f5f5f5;
  }

  .my-wallet-card,
  .my-project-shell,
  .member-xingdou-shell,
  .member-open-shell {
    width: calc(100% - 30px);
  }

  .my-wallet-card {
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
    min-height: 106px;
    margin-bottom: 12px;
    padding: 16px 12px;
    background: #fff;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(31, 45, 61, .04);
  }

  .my-wallet-divider {
    width: 1px;
    height: 58px;
  }

  .my-wallet-item {
    gap: 5px;
  }

  .my-wallet-item strong {
    font-size: 24px;
  }

  .my-wallet-item span,
  .my-wallet-item p {
    font-size: 11px;
  }

  .my-wallet-item a {
    min-width: 74px;
    height: 24px;
    font-size: 11px;
    border-radius: 12px;
  }

  .my-project-shell {
    display: block;
  }

  .my-sidebar {
    display: flex;
    gap: 8px;
    min-height: 0;
    margin-bottom: 12px;
    padding: 0;
    overflow-x: auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    scrollbar-width: none;
  }

  .my-sidebar::-webkit-scrollbar {
    display: none;
  }

  .my-sidebar a {
    flex: 0 0 auto;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    color: #555;
    background: #fff;
    border-radius: 17px;
    font-size: 13px;
  }

  .my-sidebar a.active {
    color: #5673f8;
    background: #eef2ff;
    box-shadow: none;
  }

  .my-project-panel,
  .my-project-panel--tasks,
  .my-project-panel--toolbox {
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .my-project-panel .state-card--empty {
    min-height: 220px;
    padding: 28px 16px;
    background: #fff;
    border-radius: 12px;
  }

  .my-star-task-view {
    min-height: 0;
    padding-top: 42px;
  }

  .xingdou-rule-link {
    top: 4px;
    right: 2px;
    font-size: 13px;
  }

  .xingdou-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
  }

  .xingdou-overview div {
    min-height: 72px;
    padding: 12px 8px;
    border: 0;
    border-radius: 12px;
    text-align: center;
  }

  .xingdou-overview strong {
    font-size: 20px;
  }

  .xingdou-overview span {
    font-size: 11px;
  }

  .xingdou-status-message {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .xingdou-task-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .xingdou-task-card {
    grid-template-columns: 54px minmax(0, 1fr) auto;
    min-height: 78px;
    gap: 10px;
    padding: 12px;
    background: #fff;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(31, 45, 61, .04);
  }

  .xingdou-task-reward {
    width: 48px;
    height: 48px;
    padding-top: 14px;
    font-size: 14px;
  }

  .xingdou-task-copy h2 {
    margin-bottom: 4px;
    font-size: 15px;
  }

  .xingdou-task-copy p {
    display: -webkit-box;
    overflow: hidden;
    color: #8a909b;
    font-size: 12px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .xingdou-task-action {
    grid-column: auto;
    width: auto;
    min-width: 70px;
    height: 30px;
    padding: 0 12px;
    font-size: 12px;
    box-shadow: none;
  }

  .my-toolbox-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .my-toolbox-card {
    width: 100%;
    height: 82px;
    gap: 8px;
    background: #fff;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(31, 45, 61, .04);
  }

  .my-toolbox-card img {
    width: 32px;
    height: 32px;
  }

  .my-toolbox-card span {
    max-width: 100%;
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .member-xingdou-shell {
    margin: -34px auto 28px;
  }

  .member-balance-card {
    min-height: 124px;
    padding: 18px 16px;
    background: #fff;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(31, 45, 61, .04);
  }

  .member-balance-back {
    top: 16px;
    left: 14px;
  }

  .member-balance-card strong {
    font-size: 28px;
  }

  .member-balance-card span {
    font-size: 12px;
  }

  .member-balance-actions {
    gap: 10px;
    margin-top: 14px;
  }

  .member-balance-actions a {
    width: 96px;
    height: 30px;
    font-size: 12px;
    box-shadow: none;
  }

  .member-center-page .member-risk-message {
    min-height: 0;
    margin: 8px 0 10px;
    font-size: 12px;
  }

  .member-center-page .member-flow-panel {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .member-flow-filter,
  .member-flow-list,
  .member-center-page .member-flow-pagination {
    width: 100%;
  }

  .member-flow-filter {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .member-flow-filter::-webkit-scrollbar {
    display: none;
  }

  .member-flow-filter button {
    flex: 0 0 auto;
    height: 34px;
    padding: 0 12px;
    gap: 5px;
    border-radius: 17px;
    font-size: 12px;
    box-shadow: none;
  }

  .member-flow-filter img {
    width: 20px;
    height: 20px;
  }

  .member-flow-list {
    gap: 10px;
  }

  .member-flow-card {
    min-height: 64px;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
  }

  .member-flow-copy strong {
    font-size: 13px;
  }

  .member-flow-copy span {
    font-size: 11px;
  }

  .member-flow-amount {
    font-size: 20px;
  }

  .member-open-shell {
    margin: -34px auto 28px;
  }

  .member-open-card {
    background: transparent;
  }

  .member-open-head {
    display: none;
  }

  .member-open-body {
    margin-top: 0;
    padding: 0;
  }

  .member-plan-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .member-plan-card {
    min-height: 0;
    padding: 16px;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(31, 45, 61, .04);
  }

  .member-plan-card.active {
    border-color: #667eea;
    box-shadow: 0 8px 28px rgba(102, 126, 234, .12);
  }

  .member-plan-name {
    font-size: 14px;
  }

  .member-plan-card strong {
    margin-top: 8px;
    font-size: 22px;
  }

  .member-plan-save {
    top: 14px;
    right: 14px;
  }

  .member-plan-subsave {
    top: 42px;
    right: 14px;
  }

  .member-plan-deduct {
    gap: 6px;
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .member-plan-note {
    margin-top: 10px;
    font-size: 12px;
  }

  .member-benefits {
    margin-top: 12px;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(31, 45, 61, .04);
  }

  .member-benefits h3 {
    margin-bottom: 14px;
    font-size: 15px;
  }

  .member-benefit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .member-benefit-grid article,
  .member-benefit-grid article:nth-child(odd),
  .member-benefit-grid article:first-child {
    min-height: 0;
    padding: 0;
    border-left: 0;
  }

  .member-benefit-grid p {
    margin-top: 5px;
  }

  .member-open-agreement {
    margin: 12px auto;
    font-size: 11px;
  }

  .member-open-checkout {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 82;
    width: 100%;
    min-height: calc(64px + env(safe-area-inset-bottom));
    padding: 10px 15px calc(10px + env(safe-area-inset-bottom));
    background: #fff;
    border-radius: 0;
    border-top: 1px solid rgba(30, 45, 80, .08);
    box-shadow: 0 -8px 28px rgba(31, 45, 61, .08);
  }

  .member-open-checkout div {
    display: grid;
    gap: 2px;
  }

  .member-open-checkout strong,
  .member-open-checkout span {
    font-size: 13px;
  }

  .member-open-checkout em {
    font-size: 11px;
  }

  .member-pay-button {
    width: 116px;
    height: 40px;
    font-size: 14px;
  }

  .member-open-page {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .member-open-page .mobile-tabbar {
    display: none;
  }

  .pay-result-main {
    min-height: calc(100vh - 52px);
    align-items: flex-start;
    padding: 14px 15px 28px;
    background: #f5f5f5;
  }

  .pay-result-panel {
    width: 100%;
    padding: 30px 18px;
  }

  .pay-result-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
  }

  .pay-result-panel h1 {
    font-size: 20px;
  }

  .pay-result-panel p {
    font-size: 13px;
  }

  .pay-result-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pay-result-primary,
  .pay-result-secondary {
    width: 100%;
    height: 42px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .official-home-page {
    background: #f5f5f5;
  }

  .official-home-page .mobile-topbar {
    background: rgba(255, 255, 255, 0);
    border-bottom: 0;
    backdrop-filter: none;
  }

  .official-home-page .mobile-topbar-title {
    color: transparent;
  }

  .official-home-page .mobile-topbar-back {
    visibility: hidden;
  }

  .official-home-page main {
    background: #f5f5f5;
  }

  .official-home-page .hero {
    height: 260px;
    background: #eef3ff;
  }

  .official-home-page .hero-bg {
    background-size: cover;
  }

  .official-home-page .category-dock {
    display: none;
  }

  .official-home-page #values {
    display: none;
  }

  .mobile-home-section {
    display: block;
    margin: 0 15px 12px;
  }

  .mobile-joined-section {
    position: relative;
    z-index: 4;
    margin-top: -20px;
  }

  .mobile-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 15px;
    background: #f5f5f5;
    border-radius: 12px 12px 0 0;
  }

  .mobile-section-header a,
  .mobile-section-header strong {
    display: inline-flex;
    align-items: center;
    color: #333;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
  }

  .mobile-section-header a {
    width: 100%;
    justify-content: space-between;
  }

  .mobile-section-arrow {
    width: 16px;
    height: 16px;
    background: url("./images/nav_next.png") center / contain no-repeat;
  }

  .mobile-joined-list {
    display: grid;
    gap: 8px;
  }

  .mobile-joined-item,
  .mobile-joined-empty {
    display: flex;
    align-items: center;
    min-height: 82px;
    padding: 12px 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(31, 45, 61, .04);
  }

  .mobile-joined-icon {
    width: 44px;
    height: 44px;
    margin-right: 10px;
    overflow: hidden;
    flex: 0 0 auto;
    background: #eef2ff;
    border-radius: 8px;
  }

  .mobile-joined-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .mobile-joined-info {
    display: grid;
    gap: 7px;
    min-width: 0;
    flex: 1;
  }

  .mobile-joined-info > strong {
    overflow: hidden;
    color: #333;
    font-size: 14px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-joined-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
  }

  .mobile-joined-row > span {
    display: flex;
    gap: 6px;
    min-width: 0;
  }

  .mobile-joined-status,
  .mobile-joined-tag {
    display: inline-flex;
    align-items: center;
    height: 20px;
    padding: 0 8px;
    border-radius: 10px;
    font-size: 11px;
    font-style: normal;
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-joined-status {
    color: #5673f8;
    border: 1px solid #667eea;
  }

  .mobile-joined-tag {
    color: #fff;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  }

  .mobile-joined-row time {
    color: #999;
    font-size: 12px;
    white-space: nowrap;
  }

  .mobile-joined-empty {
    justify-content: center;
    min-height: 110px;
    padding: 0 22px;
  }

  .mobile-joined-empty img {
    width: 110px;
    height: 70px;
    margin-right: 16px;
    object-fit: contain;
  }

  .mobile-joined-empty span {
    display: grid;
    gap: 8px;
  }

  .mobile-joined-empty strong {
    color: #222;
    font-size: 17px;
    line-height: 1.2;
  }

  .mobile-joined-empty em {
    color: #999;
    font-size: 14px;
    font-style: normal;
  }

  .mobile-joined-state {
    min-height: 72px;
    padding: 24px 15px;
    color: #999;
    text-align: center;
    background: #fff;
    border-radius: 10px;
  }

  .mobile-hot-section {
    padding: 12px 0 14px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(31, 45, 61, .04);
  }

  .mobile-hot-section .mobile-section-header {
    min-height: 28px;
    background: transparent;
  }

  .mobile-hot-tags {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 8px 10px 0;
  }

  .mobile-hot-tag {
    display: grid;
    justify-items: center;
    gap: 7px;
    min-width: 0;
    color: #333;
    font-size: 12px;
    text-align: center;
  }

  .mobile-hot-tag > span:last-child {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-hot-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #5673f8;
    background: #eef2ff;
    border-radius: 12px;
    overflow: hidden;
  }

  .mobile-hot-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
  }

  .mobile-hot-icon-fallback {
    font-size: 18px;
    font-weight: 900;
  }

  .official-home-page #recommend {
    padding: 0 0 28px;
    background: #f5f5f5;
  }

  .official-home-page #recommend .section-head {
    display: flex;
    width: calc(100% - 30px);
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    margin-bottom: 6px;
  }

  .official-home-page #recommend .section-title-link {
    display: flex;
    min-width: 0;
    flex: 1;
  }

  .official-home-page #recommend .section-title h2 {
    font-size: 16px;
  }

  .official-home-page #recommend .section-title p {
    display: none;
  }

  .official-home-page #recommend .more-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    gap: 4px;
    margin-top: 0;
    color: #5673f8;
    font-size: 13px;
    font-weight: 500;
  }

  .official-home-page #recommend .more-link::after {
    content: "";
    width: 14px;
    height: 14px;
    background: url("./images/nav_next.png") center / contain no-repeat;
  }

  .mobile-home-filters {
    display: flex;
    gap: 8px;
    width: calc(100% - 30px);
    margin: 0 auto 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mobile-home-filters::-webkit-scrollbar {
    display: none;
  }

  .mobile-home-filters a {
    flex: 1 0 auto;
    min-width: 72px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #999;
    background: #fff;
    border-radius: 16px;
    font-size: 13px;
  }

  .mobile-home-filters a.active {
    color: #5673f8;
    font-weight: 800;
  }
}

@media (max-width: 768px) {
  .login-page {
    overflow: auto;
    background: #eef6ff;
  }

  .login-screen {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 0 39px 30px;
    background: #eef6ff url("./images/login_bg_mobile.webp") center / 100% 100% no-repeat;
  }

  .login-brand,
  .login-title {
    display: none;
  }

  .login-card {
    position: static;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 69px 0 0;
    background: transparent;
    transform: none;
  }

  .login-form {
    min-height: calc(100vh - 99px);
  }

  .login-mobile-brand {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .login-mobile-brand img {
    width: 159px;
    height: 167px;
    display: block;
    object-fit: contain;
  }

  .login-mobile-brand p {
    margin: 6px -18px 0;
    color: #999;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
  }

  .login-field {
    height: 38px;
    margin-bottom: 14px;
  }

  .login-field:first-of-type {
    margin-top: 58px;
  }

  .login-field input {
    height: 38px;
    padding: 0 19px;
    color: #222;
    background: rgba(255, 255, 255, .72);
    border: 1px solid #d6d9ea;
    border-radius: 999px;
    font-size: 14px;
    box-shadow: none;
  }

  .login-field input::placeholder {
    color: #b8b8b8;
  }

  .login-field input:focus {
    border-color: #5874f5;
    box-shadow: 0 0 0 3px rgba(88, 116, 245, .1);
  }

  .login-code-field {
    margin-bottom: 18px;
  }

  .login-code-field input {
    padding-right: 98px;
  }

  .login-code-field::after {
    display: none;
  }

  .login-code-button {
    top: 0;
    right: 14px;
    width: auto;
    min-width: 78px;
    height: 38px;
    padding: 0;
    justify-content: flex-end;
    color: #5874f5;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
  }

  .login-message {
    min-height: 19px;
    margin: -4px 0 10px;
    font-size: 12px;
  }

  .login-submit {
    height: 41px;
    margin-top: 0;
    background: #5874f5;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: none;
  }

  .login-submit:hover {
    transform: none;
    box-shadow: none;
    filter: none;
  }

  .login-mobile-agreement {
    display: block;
    margin: 17px -8px 0;
    color: #777e90;
    font-size: 12px;
    line-height: 1.7;
    text-align: center;
  }
}
