:root {
  --sg-color-primary: #f37460;
  --sg-color-primary-light: #f8b2a7;
  --sg-color-primary-dark: #ef4b31;
  --sg-color-secondary: #4a5568;
  --sg-color-secondary-light: #96a1b5;
  --sg-color-accent: #EE8A19;
  --sg-color-bg: #ffffff;
  --sg-color-bg-section: #f8f9fa;
  --sg-color-bg-dark: #1a202c;
  --sg-color-text: #2d3748;
  --sg-color-text-muted: #718096;
  --sg-color-text-light: #a0aec0;
  --sg-color-border: #e2e8f0;
  --sg-color-success: #48bb78;
  --sg-color-warning: #f6ad55;
  --sg-color-danger: #fc8181;
  --sg-color-info: #63b3ed;
  --sg-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --sg-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --sg-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.14);
  --sg-font-base: Noto Sans TC, Microsoft JhengHei, Arial, sans-serif;
  --sg-font-heading: Noto Serif TC, Georgia, serif;
  --sg-radius-sm: 4px;
  --sg-radius-md: 8px;
  --sg-radius-lg: 16px;
  --sg-radius-full: 9999px;
}

.share-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  height: 60px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.share-header .share-header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1rem;
  gap: 0.5rem;
}
.share-header .share-logo {
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f37460;
  text-decoration: none;
  letter-spacing: -0.3px;
}
.share-header .share-logo:hover {
  color: #ef4b31;
}
.share-header .share-nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .share-header .share-nav-center {
    display: none;
  }
}
.share-header .share-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}
.share-header .share-notif-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: #718096;
  transition: background 0.2s, color 0.2s;
}
.share-header .share-notif-btn:hover {
  background: #f8f9fa;
  color: #2d3748;
}
.share-header .share-notif-btn .share-notif-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  background: #f37460;
  color: #fff;
  border-radius: 9999px;
  text-align: center;
}
.share-header .share-notif-btn .share-notif-badge:empty, .share-header .share-notif-btn .share-notif-badge[data-count="0"] {
  display: none;
}
.share-header .share-dropdown-caret {
  color: #718096;
  line-height: 1;
  padding: 0 2px !important;
  opacity: 0.6;
}
.share-header .share-dropdown-caret:hover {
  opacity: 1;
  color: #f37460;
}
.share-header .share-user-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  background: #f8f9fa;
  border: 2px solid #e2e8f0;
  cursor: pointer;
}
.share-header .share-login-btn {
  padding: 0.35rem 1rem;
  font-size: 0.875rem;
  border-radius: 9999px;
}

.share-footer {
  padding: 2rem 0 1.5rem;
  border-top: 1px solid #e2e8f0;
  background: #fff;
}
.share-footer .share-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (max-width: 575px) {
  .share-footer .share-footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
.share-footer .share-footer-logo {
  font-size: 1rem;
  font-weight: 700;
  color: #f37460;
  text-decoration: none;
}
.share-footer .share-footer-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.share-footer .share-footer-links a {
  font-size: 0.8125rem;
  color: #718096;
  text-decoration: none;
}
.share-footer .share-footer-links a:hover {
  color: #f37460;
}
.share-footer .share-footer-copyright {
  font-size: 0.75rem;
  color: #a0aec0;
}

.share-main {
  min-height: calc(100vh - 60px - 6rem);
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

.share-back-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #f37460;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1020;
}
.share-back-top.visible {
  opacity: 1;
  visibility: visible;
}
.share-back-top:hover {
  background: #ef4b31;
  color: #fff;
}

.share-bottom-nav {
  display: none;
}
@media (max-width: 767px) {
  .share-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    z-index: 1030;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.07);
  }
}
.share-bottom-nav .share-bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #718096;
  font-size: 0.6875rem;
  text-decoration: none;
  transition: color 0.2s;
}
.share-bottom-nav .share-bottom-nav-item i {
  font-size: 1.1rem;
}
.share-bottom-nav .share-bottom-nav-item.active, .share-bottom-nav .share-bottom-nav-item:hover {
  color: #f37460;
}

@media (max-width: 767px) {
  .share-main {
    padding-bottom: calc(56px + 1.5rem);
  }
}
.item-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}
.item-status-badge.status-published {
  background: rgba(34, 197, 94, 0.12);
  color: #1a9a49;
}
.item-status-badge.status-pending {
  background: rgba(245, 158, 11, 0.12);
  color: #c57f08;
}
.item-status-badge.status-expired, .item-status-badge.status-completed {
  background: rgba(107, 114, 128, 0.12);
  color: #6b7280;
}
.item-status-badge.status-in_review {
  background: rgba(99, 179, 237, 0.12);
  color: #359de8;
}
.item-status-badge.status-rejected {
  background: rgba(252, 129, 129, 0.12);
  color: #fb4f4f;
}

.item-card {
  position: relative;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.item-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.item-card .item-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f8f9fa;
}
.item-card .item-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.item-card .item-card-img:hover img {
  transform: scale(1.04);
}
.item-card .item-card-img .item-card-status-badge {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 9999px;
  background: rgba(34, 197, 94, 0.92);
  color: #fff;
  pointer-events: none;
}
.item-card .item-card-img .item-card-fav {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #718096;
  font-size: 0.875rem;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  border: none;
}
.item-card .item-card-img .item-card-fav.is-fav, .item-card .item-card-img .item-card-fav:hover {
  color: #f37460;
  background: #fff;
}
.item-card .item-card-img .item-card-countdown {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.35rem 0.6rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}
.item-card .item-card-body {
  padding: 0.875rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.item-card .item-card-category {
  font-size: 0.7rem;
  font-weight: 600;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.item-card .item-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2d3748;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.item-card .item-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.4rem;
}
.item-card .item-card-meta .item-card-publisher {
  font-size: 0.8rem;
  color: #718096;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.item-card .item-card-meta .item-card-reg-count {
  font-size: 0.8rem;
  color: #718096;
}

.item-detail-gallery {
  border-radius: 8px;
  overflow: hidden;
}
.item-detail-gallery .item-detail-main-img {
  aspect-ratio: 4/3;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.item-detail-gallery .item-detail-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  overflow-x: auto;
}
.item-detail-gallery .item-detail-thumbs .thumb-item {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 4px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
}
.item-detail-gallery .item-detail-thumbs .thumb-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.item-detail-gallery .item-detail-thumbs .thumb-item.active {
  border-color: #f37460;
}

.item-reg-box {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.25rem;
  background: #f8f9fa;
}
.item-reg-box .item-reg-deadline {
  font-size: 0.875rem;
  color: #718096;
}
.item-reg-box .item-reg-deadline .countdown {
  font-weight: 700;
  color: #f37460;
}
.item-reg-box .item-reg-count {
  font-size: 0.875rem;
  color: #718096;
}
.item-reg-box .btn-register {
  margin-top: 0.75rem;
}

.item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.item-tags .item-tag {
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  border-radius: 9999px;
  background: #f8f9fa;
  color: #718096;
  border: 1px solid #e2e8f0;
}

.member-avatar {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  background: #f8f9fa;
  flex-shrink: 0;
}
.member-avatar.avatar-xs {
  width: 1.75rem;
  height: 1.75rem;
}
.member-avatar.avatar-sm {
  width: 2.25rem;
  height: 2.25rem;
}
.member-avatar.avatar-md {
  width: 3rem;
  height: 3rem;
}
.member-avatar.avatar-lg {
  width: 5rem;
  height: 5rem;
}

.member-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 9999px;
}
.member-status-badge.status-active {
  background: rgba(72, 187, 120, 0.12);
  color: #389860;
}
.member-status-badge.status-probation {
  background: rgba(246, 173, 85, 0.15);
  color: #d97c0c;
}
.member-status-badge.status-suspended {
  background: rgba(252, 129, 129, 0.12);
  color: #fb4f4f;
}
.member-status-badge.status-banned {
  background: rgba(252, 129, 129, 0.2);
  color: #fa3636;
}

.member-points-display {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: #f37460;
}
.member-points-display .points-icon {
  color: #EE8A19;
}
.member-points-display.size-sm {
  font-size: 0.875rem;
}
.member-points-display.size-md {
  font-size: 1rem;
}
.member-points-display.size-lg {
  font-size: 1.25rem;
}

.luck-bar-wrap .luck-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  margin-bottom: 0.35rem;
}
.luck-bar-wrap .luck-bar-label .luck-level-name {
  font-weight: 600;
}
.luck-bar-wrap .luck-bar-label .luck-streak {
  color: #718096;
  font-size: 0.75rem;
}
.luck-bar-wrap .luck-bar {
  height: 8px;
  border-radius: 9999px;
  background: #f8f9fa;
  overflow: hidden;
}
.luck-bar-wrap .luck-bar .luck-bar-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 0.6s ease;
  background: linear-gradient(90deg, #f37460, #EE8A19);
}
.luck-bar-wrap.luck-low .luck-bar-fill {
  background: linear-gradient(90deg, #ef4444, #f58a8a);
}

.achievement-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0.6rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
  min-width: 80px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.achievement-badge:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.achievement-badge .achievement-icon {
  font-size: 1.75rem;
}
.achievement-badge .achievement-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: #2d3748;
  line-height: 1.3;
}
.achievement-badge .achievement-date {
  font-size: 0.65rem;
  color: #a0aec0;
}
.achievement-badge.level-bronze {
  border-color: #cd7f32;
  background: rgba(205, 127, 50, 0.05);
}
.achievement-badge.level-silver {
  border-color: #adb5bd;
  background: rgba(173, 181, 189, 0.05);
}
.achievement-badge.level-gold {
  border-color: #EE8A19;
  background: rgba(238, 138, 25, 0.05);
}
.achievement-badge.locked {
  opacity: 0.4;
  filter: grayscale(1);
  pointer-events: none;
}

.credit-stars {
  display: inline-flex;
  gap: 2px;
}
.credit-stars .star-icon {
  font-size: 0.875rem;
  color: #a0aec0;
}
.credit-stars .star-icon.filled {
  color: #EE8A19;
}

.notif-list .notif-item {
  display: flex;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  transition: background 0.15s;
  cursor: pointer;
}
.notif-list .notif-item:hover {
  background: #f8f9fa;
}
.notif-list .notif-item.unread {
  background: rgba(243, 116, 96, 0.04);
}
.notif-list .notif-item.unread .notif-dot {
  opacity: 1;
}
.notif-list .notif-item .notif-icon-wrap {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.notif-list .notif-item .notif-icon-wrap.type-system {
  background: rgba(99, 179, 237, 0.12);
  color: #63b3ed;
}
.notif-list .notif-item .notif-icon-wrap.type-item {
  background: rgba(243, 116, 96, 0.12);
  color: #f37460;
}
.notif-list .notif-item .notif-icon-wrap.type-handover {
  background: rgba(72, 187, 120, 0.12);
  color: #48bb78;
}
.notif-list .notif-item .notif-icon-wrap.type-review {
  background: rgba(238, 138, 25, 0.15);
  color: #EE8A19;
}
.notif-list .notif-item .notif-icon-wrap.type-achievement {
  background: rgba(238, 138, 25, 0.15);
  color: #EE8A19;
}
.notif-list .notif-item .notif-icon-wrap.type-ticket {
  background: rgba(74, 85, 104, 0.1);
  color: #4a5568;
}
.notif-list .notif-item .notif-content {
  flex: 1;
  min-width: 0;
}
.notif-list .notif-item .notif-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2d3748;
  line-height: 1.4;
  margin-bottom: 0.2rem;
}
.notif-list .notif-item .notif-body {
  font-size: 0.8125rem;
  color: #718096;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.notif-list .notif-item .notif-time {
  font-size: 0.75rem;
  color: #a0aec0;
  margin-top: 0.25rem;
  white-space: nowrap;
}
.notif-list .notif-item .notif-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f37460;
  margin-top: 0.35rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.notif-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #a0aec0;
}
.notif-empty .notif-empty-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.5;
}
.notif-empty p {
  font-size: 0.9rem;
  margin: 0;
}

.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  max-height: 500px;
  overflow-y: auto;
}
.chat-thread::-webkit-scrollbar {
  width: 4px;
}
.chat-thread::-webkit-scrollbar-track {
  background: transparent;
}
.chat-thread::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 2px;
}

.chat-message {
  display: flex;
  gap: 0.625rem;
  align-items: flex-end;
}
.chat-message.is-admin {
  flex-direction: row-reverse;
}
.chat-message.is-admin .chat-bubble {
  background: #f37460;
  color: #fff;
  border-radius: 8px 8px 4px 8px;
}
.chat-message.is-admin .chat-meta {
  text-align: right;
}
.chat-message.is-member .chat-bubble {
  background: #f8f9fa;
  color: #2d3748;
  border-radius: 8px 8px 8px 4px;
}
.chat-message .chat-avatar-wrap {
  flex-shrink: 0;
  align-self: flex-end;
}
.chat-message .chat-body {
  max-width: 75%;
}
.chat-message .chat-meta {
  font-size: 0.7rem;
  color: #a0aec0;
  margin-bottom: 0.25rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.chat-message .chat-sender-name {
  font-weight: 600;
  color: #718096;
}
.chat-message .chat-bubble {
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  line-height: 1.6;
  word-break: break-word;
  white-space: pre-wrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.chat-reply-box {
  border-top: 1px solid #e2e8f0;
  padding: 0.875rem;
  background: #fff;
}
.chat-reply-box .chat-reply-textarea {
  resize: none;
  border-radius: 8px;
  font-size: 0.875rem;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s;
}
.chat-reply-box .chat-reply-textarea:focus {
  border-color: #f37460;
  box-shadow: 0 0 0 3px rgba(243, 116, 96, 0.12);
}
.chat-reply-box .chat-reply-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.chat-resolved-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  background: rgba(72, 187, 120, 0.08);
  border: 1px solid rgba(72, 187, 120, 0.2);
  border-radius: 8px;
  font-size: 0.8125rem;
  color: #389860;
  margin: 0.875rem;
}

.dashboard-profile-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 1.25rem;
}
.dashboard-profile-card .profile-info {
  flex: 1;
  min-width: 0;
}
.dashboard-profile-card .profile-nickname {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.2rem;
}
.dashboard-profile-card .profile-since {
  font-size: 0.8rem;
  color: #718096;
}
.dashboard-profile-card .profile-edit-btn {
  flex-shrink: 0;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 399px) {
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  padding: 0.875rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  text-align: center;
}
.stat-card .stat-value {
  font-size: 1.375rem;
  font-weight: 700;
  color: #f37460;
  line-height: 1.2;
}
.stat-card .stat-label {
  font-size: 0.75rem;
  color: #718096;
  margin-top: 0.25rem;
}

.dashboard-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 399px) {
  .dashboard-shortcuts {
    grid-template-columns: repeat(3, 1fr);
  }
}

.shortcut-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.875rem 0.5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: #2d3748;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.shortcut-card .shortcut-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(243, 116, 96, 0.1);
  color: #f37460;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.shortcut-card .shortcut-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #2d3748;
  line-height: 1.3;
}
.shortcut-card:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border-color: rgba(243, 116, 96, 0.3);
  color: #2d3748;
}

.point-log-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2e8f0;
}
.point-log-item .point-log-desc .log-reason {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2d3748;
}
.point-log-item .point-log-desc .log-time {
  font-size: 0.75rem;
  color: #718096;
  margin-top: 0.1rem;
}
.point-log-item .point-log-amount {
  font-size: 0.9375rem;
  font-weight: 700;
  white-space: nowrap;
}
.point-log-item .point-log-amount.positive {
  color: #48bb78;
}
.point-log-item .point-log-amount.negative {
  color: #fc8181;
}

.registration-item {
  display: flex;
  gap: 0.875rem;
  padding: 0.875rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 0.625rem;
}
.registration-item .reg-item-img {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
  background: #f8f9fa;
}
.registration-item .reg-item-info {
  flex: 1;
  min-width: 0;
}
.registration-item .reg-item-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.registration-item .reg-item-meta {
  font-size: 0.8rem;
  color: #718096;
}
.registration-item .reg-item-actions {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}

.qrcode-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}
.qrcode-card .qrcode-canvas-wrap {
  display: inline-block;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: #fff;
}
.qrcode-card .qrcode-expire {
  font-size: 0.875rem;
  color: #718096;
}
.qrcode-card .qrcode-expire .expire-countdown {
  font-weight: 700;
  color: #f37460;
}
/*# sourceMappingURL=share_base.css.map */
