/* ===== 背景（按截图深蓝紫） ===== */
.signInViolet[data-v-7046184c] {
  --bg: #0a144b;
  --bg2: #080e37;
  --panel: rgba(10, 20, 75, 0.78);
  --panel2: rgba(10, 20, 75, 0.62);
  --border: rgba(67, 67, 178, 0.65);
  --border2: rgba(67, 67, 178, 0.45);
  --text: #ffffff;
  --sub: #c7c9cc;
  --accent: #a7e8ff;
  --green: #90ff8d;
  min-height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--bg)), to(var(--bg2))) !important;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%) !important;
  color: var(--text);
}
/* ===== 导航（沉浸） ===== */
.signInViolet[data-v-7046184c] .van-nav-bar {
  background: rgba(10, 20, 75, 0.72) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.signInViolet[data-v-7046184c] .van-nav-bar__title,
.signInViolet[data-v-7046184c] .van-icon {
  color: #fff !important;
}
/* ===== 内容区 ===== */
.content[data-v-7046184c] {
  padding: 12px 12px 0;
}
/* ===== 日历大卡 ===== */
.calCard[data-v-7046184c] {
  border-radius: 14px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(110, 100, 255, 0.18)), to(rgba(16, 18, 88, 0.62)));
  background: linear-gradient(180deg, rgba(110, 100, 255, 0.18) 0%, rgba(16, 18, 88, 0.62) 100%);
  border: 1px solid var(--border2);
  -webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
          box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  padding: 12px;
}
/* 月份行 */
.calHead[data-v-7046184c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.calMonth[data-v-7046184c] {
  font-weight: 900;
  letter-spacing: 0.5px;
  font-size: 14px;
  color: #fff;
}
.calNav[data-v-7046184c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.calBtn[data-v-7046184c] {
  width: 34px;
  height: 28px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border2);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.calBtn[data-v-7046184c]:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
/* 星期行 */
.calWeek[data-v-7046184c] {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  opacity: 0.95;
}
.wk[data-v-7046184c] {
  text-align: center;
  font-size: 12px;
  color: rgba(199, 201, 204, 0.95);
  font-weight: 800;
}
/* 日期格 */
.calGrid[data-v-7046184c] {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.day[data-v-7046184c] {
  height: 34px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  position: relative;
}
.day.is-out[data-v-7046184c] {
  opacity: 0.35;
}
.day.is-today[data-v-7046184c] {
  border-color: rgba(167, 232, 255, 0.85);
  -webkit-box-shadow: 0 0 0 2px rgba(167, 232, 255, 0.12), 0 10px 20px rgba(0, 0, 0, 0.18);
          box-shadow: 0 0 0 2px rgba(167, 232, 255, 0.12), 0 10px 20px rgba(0, 0, 0, 0.18);
}
.day.is-signed[data-v-7046184c]::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  -webkit-box-shadow: 0 0 10px rgba(144, 255, 141, 0.65);
          box-shadow: 0 0 10px rgba(144, 255, 141, 0.65);
}
.dayNum[data-v-7046184c] {
  -webkit-transform: translateY(0.5px);
          transform: translateY(0.5px);
}
/* 图例行 */
.calLegend[data-v-7046184c] {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.legendLeft[data-v-7046184c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.legendItem[data-v-7046184c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.dot[data-v-7046184c] {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.dotToday[data-v-7046184c] {
  background: rgba(167, 232, 255, 0.95);
  -webkit-box-shadow: 0 0 10px rgba(167, 232, 255, 0.5);
          box-shadow: 0 0 10px rgba(167, 232, 255, 0.5);
}
.dotSigned[data-v-7046184c] {
  background: rgba(144, 255, 141, 0.95);
  -webkit-box-shadow: 0 0 10px rgba(144, 255, 141, 0.5);
          box-shadow: 0 0 10px rgba(144, 255, 141, 0.5);
}
.legendTxt[data-v-7046184c] {
  font-size: 12px;
  color: rgba(199, 201, 204, 0.95);
  font-weight: 800;
}
.legendRight[data-v-7046184c] {
  font-size: 12px;
  color: #fff;
  font-weight: 900;
  opacity: 0.95;
}
/* 下半区：每日签到说明 + 右侧按钮 */
.calBottom[data-v-7046184c] {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.bottomLeft[data-v-7046184c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  min-width: 0;
}
.diamond[data-v-7046184c] {
  width: 54px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.diamond img[data-v-7046184c] {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.bottomText[data-v-7046184c] {
  min-width: 0;
}
.bottomTitle[data-v-7046184c] {
  font-size: 13px;
  font-weight: 900;
  color: #fff;
}
.bottomSub[data-v-7046184c] {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(199, 201, 204, 0.92);
  font-weight: 700;
  max-width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bottomRight[data-v-7046184c] {
  width: 124px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.stackBtn[data-v-7046184c] {
  height: 36px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 900;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border2);
  color: rgba(255, 255, 255, 0.92);
}
.stackBtn--blue[data-v-7046184c] {
  background: -webkit-gradient(linear, left top, left bottom, from(#619cff), to(#376fff));
  background: linear-gradient(180deg, #619cff 0%, #376fff 100%);
  border: 0;
  color: #fff;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 14px 26px rgba(55, 111, 255, 0.18);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 14px 26px rgba(55, 111, 255, 0.18);
}
.stackBtn--disabled[data-v-7046184c] {
  background: rgba(255, 255, 255, 0.06);
}
.stackBtn--activeDisabled[data-v-7046184c] {
  opacity: 0.75;
}
.stackBtn[data-v-7046184c]:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
/* ===== 列表区域 ===== */
.signList[data-v-7046184c] {
  margin-top: 12px;
}
.listTitle[data-v-7046184c] {
  font-size: 14px;
  font-weight: 900;
  color: var(--accent);
  margin: 6px 2px 10px;
  position: relative;
}
.listTitle[data-v-7046184c]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 90px;
  height: 2px;
  border-radius: 999px;
  background: -webkit-gradient(linear, left top, right top, from(var(--accent)), to(rgba(167, 232, 255, 0)));
  background: linear-gradient(90deg, var(--accent) 0%, rgba(167, 232, 255, 0) 100%);
  -webkit-box-shadow: 0 0 10px rgba(167, 232, 255, 0.55);
          box-shadow: 0 0 10px rgba(167, 232, 255, 0.55);
}
/* 单条记录卡（按截图） */
.logCard[data-v-7046184c] {
  border-radius: 14px;
  padding: 12px 14px;
  margin: 0 0 12px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(110, 100, 255, 0.18)), to(rgba(16, 18, 88, 0.62)));
  background: linear-gradient(180deg, rgba(110, 100, 255, 0.18) 0%, rgba(16, 18, 88, 0.62) 100%);
  border: 1px solid var(--border2);
  -webkit-box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.06);
          box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.logLeft[data-v-7046184c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  min-width: 0;
}
.logIcon[data-v-7046184c] {
  width: 44px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.logIcon img[data-v-7046184c] {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
.logText[data-v-7046184c] {
  min-width: 0;
}
.logTitle[data-v-7046184c] {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.pill[data-v-7046184c] {
  height: 18px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
}
.logTime[data-v-7046184c] {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(199, 201, 204, 0.86);
  font-weight: 700;
}
.logRight[data-v-7046184c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 4px;
  white-space: nowrap;
  color: var(--green);
  font-weight: 900;
}
.plus[data-v-7046184c] {
  font-size: 16px;
}
.amt[data-v-7046184c] {
  font-size: 16px;
}
.unit[data-v-7046184c] {
  font-size: 12px;
  opacity: 0.95;
}
/* finished 文案 */
.signList[data-v-7046184c] .van-list__finished-text {
  background: transparent !important;
  color: rgba(199, 201, 204, 0.85) !important;
  font-size: 12px;
}
.safeSpace[data-v-7046184c] {
  height: 50px;
}


/*# sourceMappingURL=chunk-1bc41778.ee232ee5.css.map*/