.mobile-user-page {
  min-height: calc(100vh - 44px);
  background: #f5f5f5;
}
.mobile-user-page .mobile-user-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}
.mobile-user-page .mobile-user-header button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #333;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
}
.mobile-user-page .mobile-user-header button:active {
  background: #f5f5f5;
}
.mobile-user-page .mobile-user-header button svg {
  width: 24px;
  height: 24px;
}
.mobile-user-page .mobile-user-header .menu-btn {
  margin-right: auto;
}
.mobile-user-page .mobile-user-header .search-btn {
  flex: 1;
  max-width: 200px;
  margin: 0 8px;
}
.mobile-user-page .mobile-user-header .settings-btn {
  margin-left: auto;
}
.mobile-user-page .mobile-user-content {
  padding-top: 56px;
  padding: 8px;
  padding-bottom: 50px;
}
.mobile-user-page .login-section {
  margin-bottom: 8px;
}
.mobile-user-page .login-section .login-card {
  display: flex;
  align-items: center;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
}
.mobile-user-page .login-section .login-card .avatar-placeholder {
  width: 48px;
  height: 48px;
  margin-right: 12px;
  flex-shrink: 0;
  overflow: hidden;
}
.mobile-user-page .login-section .login-card .avatar-placeholder img, .mobile-user-page .login-section .login-card .avatar-placeholder svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-user-page .login-section .login-card .login-text {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}
.mobile-user-page .login-section .login-card .arrow {
  flex-shrink: 0;
  margin-left: 8px;
}
.mobile-user-page .user-section {
  margin-bottom: 8px;
}
.mobile-user-page .user-section .user-card {
  display: flex;
  align-items: center;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
}
.mobile-user-page .user-section .user-card .user-avatar {
  width: 48px;
  height: 48px;
  margin-right: 12px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.55);
}
.mobile-user-page .user-section .user-card .user-avatar .avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-user-page .user-section .user-card .user-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-user-page .user-section .user-card .user-info .user-name {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  line-height: normal;
}
.mobile-user-page .user-section .user-card .user-info .user-id {
  font-size: 12px;
  color: #76787b;
  line-height: 18px;
}
.mobile-user-page .user-section .user-card .arrow {
  flex-shrink: 0;
  margin-left: 8px;
}
.mobile-user-page .vip-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.mobile-user-page .vip-card .vip-content {
  flex: 1;
  position: relative;
  z-index: 1;
}
.mobile-user-page .vip-card .vip-content .vip-level-wrapper {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 4px;
}
.mobile-user-page .vip-card .vip-content .vip-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  line-height: normal;
}
.mobile-user-page .vip-card .vip-content .vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 4.5px;
  padding: 3px 6px;
  border-radius: 37.5px;
  height: 20px;
  border: 0.931px solid rgba(255, 255, 255, 0.02);
}
.mobile-user-page .vip-card .vip-content .vip-badge svg, .mobile-user-page .vip-card .vip-content .vip-badge img {
  width: 15px;
  height: 15px;
}
.mobile-user-page .vip-card .vip-content .vip-badge span {
  font-size: 11px;
  font-weight: 500;
  line-height: normal;
}
.mobile-user-page .vip-card .vip-content .vip-desc {
  font-size: 12px;
  margin: 0 0 4px 0;
  line-height: normal;
}
.mobile-user-page .vip-card .vip-content .vip-desc .highlight {
  font-weight: 600;
  color: #de462a;
}
.mobile-user-page .vip-card .vip-content .vip-expire {
  font-size: 12px;
  margin: 0;
  line-height: normal;
  display: flex;
  align-items: center;
}
.mobile-user-page .vip-card .vip-content .vip-expire span:first-child {
  opacity: 1;
}
.mobile-user-page .vip-card .vip-content .vip-expire span:last-child {
  opacity: 1;
}
.mobile-user-page .vip-card .vip-btn {
  padding: 0 16px;
  height: 32px;
  min-width: 72px;
  border-radius: 16px;
  border: none;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
  line-height: normal;
  position: relative;
  z-index: 1;
}
.mobile-user-page .vip-card .vip-btn:active {
  transform: scale(0.95);
}
.mobile-user-page .vip-card .vip-decoration {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80px;
  height: 60px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.4;
}
.mobile-user-page .vip-card .vip-decoration svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: auto;
}
.mobile-user-page .vip-card.vip-normal {
  background: #ffdebd;
}
.mobile-user-page .vip-card.vip-normal .vip-title {
  color: #442300;
}
.mobile-user-page .vip-card.vip-normal .vip-badge {
  background: linear-gradient(90deg, #e0e9ff 0%, #cddaf8 100%);
}
.mobile-user-page .vip-card.vip-normal .vip-badge svg {
  color: #999;
}
.mobile-user-page .vip-card.vip-normal .vip-badge span {
  color: #4c4d4f;
}
.mobile-user-page .vip-card.vip-normal .vip-desc {
  color: #70471f;
}
.mobile-user-page .vip-card.vip-normal .vip-btn {
  background: linear-gradient(90deg, #895a1a 0%, #57320d 100%);
  color: #fff;
}
.mobile-user-page .vip-card.vip-gold {
  background: rgb(255, 222, 189);
}
.mobile-user-page .vip-card.vip-gold .vip-title {
  color: #442300;
}
.mobile-user-page .vip-card.vip-gold .vip-badge {
  background: linear-gradient(90deg, #AC8D26 0%, #261000 100%);
}
.mobile-user-page .vip-card.vip-gold .vip-badge span {
  color: rgb(255, 240, 217);
}
.mobile-user-page .vip-card.vip-gold .vip-desc {
  color: #442300;
}
.mobile-user-page .vip-card.vip-gold .vip-desc .highlight {
  color: #de462a;
}
.mobile-user-page .vip-card.vip-gold .vip-expire {
  color: #442300;
}
.mobile-user-page .vip-card.vip-gold .vip-btn {
  background: linear-gradient(90deg, #895a1a 0%, #57320d 100%);
  color: #fff;
}
.mobile-user-page .vip-card.vip-diamond {
  background: #bfddff;
}
.mobile-user-page .vip-card.vip-diamond .vip-title {
  color: #012557;
}
.mobile-user-page .vip-card.vip-diamond .vip-badge {
  background: linear-gradient(90deg, #234AAA 0%, #00003F 100%);
}
.mobile-user-page .vip-card.vip-diamond .vip-badge span {
  color: rgb(166, 223, 251);
}
.mobile-user-page .vip-card.vip-diamond .vip-desc {
  color: #012557;
}
.mobile-user-page .vip-card.vip-diamond .vip-desc .highlight {
  color: #de462a;
}
.mobile-user-page .vip-card.vip-diamond .vip-expire {
  color: #012557;
}
.mobile-user-page .vip-card.vip-diamond .vip-btn {
  background: linear-gradient(90deg, #234aaa 0%, #00003f 100%);
  color: #a6dffb;
}
.mobile-user-page .balance-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 8px;
  gap: 8px;
}
.mobile-user-page .balance-card .balance-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.mobile-user-page .balance-card .balance-info .wallet-icon {
  width: 20px;
  height: 20px;
  color: #333;
  flex-shrink: 0;
}
.mobile-user-page .balance-card .balance-info .balance-label {
  font-size: 14px;
  color: #000;
  line-height: 18px;
}
.mobile-user-page .balance-card .balance-info .balance-amount {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: normal;
}
.mobile-user-page .balance-card .recharge-link {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #76787b;
  font-size: 12px;
  flex-shrink: 0;
}
.mobile-user-page .section-card {
  background: #fff;
  border-radius: 8px;
  padding: 0;
  margin-bottom: 8px;
}
.mobile-user-page .section-card .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  padding: 0 12px;
}
.mobile-user-page .section-card .section-header .section-title {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin: 0;
  line-height: normal;
}
.mobile-user-page .section-card .section-header .section-link {
  font-size: 12px;
  color: #76787b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: normal;
}
.mobile-user-page .section-card .section-header .section-link span {
  line-height: 16px;
}
.mobile-user-page .section-card .section-title {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin: 0;
  height: 40px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  line-height: normal;
}
.mobile-user-page .section-card .section-title.pl0 {
  padding-left: 0;
}
.mobile-user-page .purchases-section .empty-purchases {
  text-align: center;
  padding: 32px 16px;
}
.mobile-user-page .purchases-section .empty-purchases .empty-text {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.mobile-user-page .purchases-section .purchases-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 12px 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mobile-user-page .purchases-section .purchases-list::-webkit-scrollbar {
  display: none;
}
.mobile-user-page .purchases-section .purchase-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  flex-shrink: 0;
  width: 92px;
}
.mobile-user-page .purchases-section .purchase-item .purchase-cover {
  width: 92px;
  aspect-ratio: 160/90;
  object-fit: cover;
  border-radius: 4px;
}
.mobile-user-page .purchases-section .purchase-item .purchase-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-user-page .purchases-section .purchase-item .purchase-info .purchase-title {
  font-size: 11px;
  color: #000;
  opacity: 0.8;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  line-height: normal;
}
.mobile-user-page .purchases-section .purchase-item .purchase-info .purchase-date {
  display: none;
}
.mobile-user-page .common-section .common-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-wrap: wrap;
  gap: 0;
}
.mobile-user-page .common-section .common-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 8px 0;
  transition: all 0.2s;
}
.mobile-user-page .common-section .common-item:active {
  background: #f0f0f0;
  transform: scale(0.95);
}
.mobile-user-page .common-section .common-item .item-label {
  font-size: 12px;
  color: #333;
  text-align: center;
  line-height: 18px;
  margin-top: 4px;
}
.mobile-user-page .help-section .help-list {
  display: flex;
  flex-direction: column;
  padding: 0 12px;
}
.mobile-user-page .help-section .help-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  gap: 8px;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.2s;
}
.mobile-user-page .help-section .help-item:last-child {
  border-bottom: none;
}
.mobile-user-page .help-section .help-item:active {
  background: #f9f9f9;
  margin: 0 -12px;
  padding: 0 12px;
  border-radius: 8px;
}
.mobile-user-page .help-section .help-item .help-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.mobile-user-page .help-section .help-item .help-item-left .help-icon {
  width: 24px;
  height: 24px;
  color: #333;
  flex-shrink: 0;
}
.mobile-user-page .help-section .help-item .help-item-left .help-label {
  font-size: 14px;
  color: #000;
  line-height: normal;
}
.mobile-user-page .help-section .help-item .help-item-right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.mobile-user-page .help-section .help-item .help-item-right .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 3.429px;
  background: #f7521d;
  color: #fff;
  font-size: 13.714px;
  line-height: 13.714px;
  border-radius: 8px;
}

/*# sourceMappingURL=user.css.map */
