:root {
  --wechat-green: #07c160;
  --wechat-light-green: #91e8b4;
  --primary-text: #191919;
  --secondary-text: #576b95;
  --bg-gray: #f7f7f7;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}
body {
  font-family:
    -apple-system,
    Roboto,
    pingfang sc,
    helvetica neue,
    Arial,
    sans-serif,
    apple color emoji,
    segoe ui emoji,
    segoe ui symbol,
    noto color emoji;
  color: var(--primary-text);
  background-color: #fff;
  line-height: 1.6;
}
.text-wechat {
  color: var(--wechat-green);
}
.bg-wechat {
  background-color: var(--wechat-green);
}
.is-hidden {
  display: none !important;
}
.btn-wechat {
  background-color: var(--wechat-green);
  color: #fff;
  transition: all 0.2s ease;
}
.btn-wechat:hover {
  background-color: #06ad56;
  transform: translateY(-1px);
}
.btn-wechat:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.input-field {
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}
.input-field:focus {
  border-color: var(--wechat-green);
  box-shadow: 0 0 0 3px rgba(7, 193, 96, 0.1);
}
.desktop-nav-menu {
  display: none;
}
@media (min-width: 768px) {
  .desktop-nav-menu {
    display: flex;
  }
}
.nav-link {
  color: var(--primary-text);
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: var(--wechat-green);
}
.nav-active {
  color: var(--wechat-green);
  position: relative;
}
.nav-active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--wechat-green);
}
.sidebar-link-mobile {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.5rem;
  min-height: 2.5rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  font-weight: 500;
  white-space: nowrap;
  scroll-snap-align: start;
  touch-action: manipulation;
}
.sidebar-link-desktop {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem 0.5rem 3rem;
  min-height: 2.5rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}
.sidebar-link-inactive {
  color: #6b7280;
}
.sidebar-link-inactive:hover {
  background-color: #fff;
  color: var(--wechat-green);
}
.sidebar-link.active {
  background-color: #fff;
  color: var(--wechat-green);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 3%);
}
.sidebar-link.active svg {
  color: var(--wechat-green);
}
.user-top-nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.sidebar-mobile-list {
  display: flex;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  gap: 0.5rem;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable both-edges;
}
.sidebar-mobile-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
}
.sidebar-desktop-list {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
}
.sidebar-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  min-height: 2.75rem;
  border-radius: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 700;
  color: #4b5563;
  transition: all 0.2s ease;
  user-select: none;
}
.sidebar-group-title:hover {
  color: #1f2937;
  background-color: #f9fafb;
}
.sidebar-group-title-open {
  color: #4b5563;
}
.sidebar-group-title-main {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.sidebar-group-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
}
.sidebar-group-arrow {
  width: 1rem;
  height: 1rem;
  color: #9ca3af;
  transition: transform 0.3s ease;
}
.sidebar-group-items {
  margin-top: 0.25rem;
}
.sidebar-divider {
  margin: 1rem 0;
  border: 0;
  border-top: 1px solid #f3f4f6;
}
.sidebar-logout-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  min-height: 2.75rem;
  border-radius: 0.75rem;
  color: #ef4444;
  font-weight: 500;
  transition: all 0.2s ease;
}
.sidebar-logout-btn:hover {
  background-color: #fef2f2;
}
.sidebar-logout-icon {
  width: 1.25rem;
  height: 1.25rem;
}
@media (min-width: 768px) {
  .sidebar-desktop-list {
    display: flex;
  }
}
.status-badge {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.status-badge-pending {
  background: #fffbeb;
  color: #d97706;
}
.status-badge-review {
  background: #eff6ff;
  color: #3b82f6;
}
.status-badge-success {
  background: #f0fdf4;
  color: var(--wechat-green);
}
.status-badge-cancel {
  background: #f3f4f6;
  color: #6b7280;
}
.status-badge-failed {
  background: #fef2f2;
  color: #dc2626;
}
.status-badge-progress {
  background: #fff7ed;
  color: #f97316;
}
.status-badge-single {
  background: #f0f9ff;
  color: #0284c7;
}
.status-badge-wildcard {
  background: #faf5ff;
  color: #9333ea;
}
.status-badge-priority-normal {
  background: #eef2ff;
  color: #6366f1;
}
.status-badge-priority-high {
  background: #fffbeb;
  color: #d97706;
}
.status-badge-priority-urgent {
  background: #fef2f2;
  color: #dc2626;
}
.filter-tab {
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #9ca3af;
  transition: all 0.2s ease;
}
.filter-tab:hover {
  color: var(--wechat-green);
  background-color: #fff;
}
.filter-tab.active {
  color: var(--wechat-green);
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 3%);
}
.pagination-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #f3f4f6;
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  transition: all 0.2s ease;
}
.pagination-btn:hover:not(:disabled) {
  border-color: var(--wechat-green);
  color: var(--wechat-green);
  background-color: #fff;
}
.pagination-btn.active {
  background-color: var(--wechat-green);
  color: #fff;
  border-color: var(--wechat-green);
  box-shadow: 0 4px 12px rgba(7, 193, 96, 0.2);
}
.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  backdrop-filter: blur(4px);
}
.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.message-bubble {
  max-width: 80%;
  border-radius: 1.5rem;
  padding: 1.25rem;
}
.message-user {
  background-color: var(--wechat-green);
  color: #fff;
  border-bottom-right-radius: 0.25rem;
}
.message-admin {
  background-color: #fff;
  border: 1px solid #eee;
  border-bottom-left-radius: 0.25rem;
}
.tab-btn.active {
  color: var(--wechat-green);
  border-bottom: 2px solid var(--wechat-green);
}
.card-shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 5%);
}
.hero-gradient {
  background: linear-gradient(180deg, rgba(7, 193, 96, 5%) 0%, #fff 100%);
}
.step-number {
  width: 32px;
  height: 32px;
  background: var(--wechat-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate-fade-in {
  animation: fadeIn 0.2s ease-out forwards;
}
label.error {
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0.375rem !important;
  display: block;
  animation: fadeIn 0.2s ease-out;
}
.input-field.error {
  border-color: #ef4444;
}
.input-field.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.auth-input.error,
.login-input.error,
.bind-email-input.error,
.change-phone-input.error,
.submit-ticket-select.error,
.submit-ticket-textarea.error,
.ticket-detail-reply-textarea.error,
.invoice-form-control.error {
  border-color: #ef4444 !important;
}
.auth-input.error:focus,
.login-input.error:focus,
.bind-email-input.error:focus,
.change-phone-input.error:focus,
.submit-ticket-select.error:focus,
.submit-ticket-textarea.error:focus,
.ticket-detail-reply-textarea.error:focus,
.invoice-form-control.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}
.bind-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.bind-card:hover {
  border-color: var(--wechat-green);
}
.contact-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s ease;
}
.contact-card:hover {
  border-color: var(--wechat-green);
  box-shadow: 0 10px 30px rgba(7, 193, 96, 5%);
}
.map-container {
  width: 100%;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #f9f9f9;
}
.menu-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-text);
  transition: all 0.3s ease;
}
.mobile-menu-toggle {
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  touch-action: manipulation;
}
.menu-icon.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-icon.active span:nth-child(2) {
  opacity: 0;
}
.menu-icon.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: 0 0;
  z-index: 60;
  pointer-events: none;
  transition: background 0.3s ease;
}
.mobile-backdrop.active {
  background: rgba(0, 0, 0, 0.45);
  pointer-events: auto;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 70;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 8%);
  overflow: hidden;
  overscroll-behavior: contain;
}
.mobile-drawer.active {
  transform: translateX(0);
}
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
  flex-shrink: 0;
}
.mobile-drawer-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #6b7280;
  transition: all 0.2s ease;
  background: 0 0;
  border: none;
  cursor: pointer;
}
.mobile-drawer-close:hover {
  background: #f3f4f6;
  color: var(--primary-text);
}
.mobile-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  min-height: 2.75rem;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-text);
  text-decoration: none;
  transition: all 0.15s ease;
  border-left: 3px solid transparent;
}
.mobile-nav-item:hover {
  background: #f9fafb;
  color: var(--wechat-green);
}
.mobile-nav-active {
  color: var(--wechat-green);
  background: rgba(7, 193, 96, 6%);
  border-left-color: var(--wechat-green);
}
.mobile-nav-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.mobile-drawer-section-title {
  padding: 10px 20px 4px;
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mobile-drawer-footer {
  flex-shrink: 0;
  border-top: 1px solid #f3f4f6;
  padding: 16px 20px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  background: #fafafa;
}
.mobile-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid #f3f4f6;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.mobile-user-info:hover {
  opacity: 0.8;
}
.mobile-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: #e5e7eb;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.mobile-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-user-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-user-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-text);
}
.mobile-user-hint {
  font-size: 12px;
  color: #9ca3af;
}
.mobile-user-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  min-height: 2.75rem;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.15s ease;
}
.mobile-action-btn:hover {
  background: #f3f4f6;
}
body.menu-open {
  overflow: hidden;
}
@media (min-width: 768px) {
  .menu-icon {
    display: none !important;
  }
  .mobile-backdrop,
  .mobile-drawer {
    display: none !important;
  }
}
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-contain: contain;
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}
.lightbox-btn {
  position: absolute;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.lightbox-btn:hover {
  background: var(--wechat-green);
  border-color: var(--wechat-green);
  transform: scale(1.1);
}
.lightbox-prev {
  left: 40px;
}
.lightbox-next {
  right: 40px;
}
.lightbox-close {
  top: 40px;
  right: 40px;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.thin-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #d1d5db transparent;
}
.thin-scrollbar::-webkit-scrollbar {
  height: 6px;
}
.thin-scrollbar::-webkit-scrollbar-track {
  background: 0 0;
}
.thin-scrollbar::-webkit-scrollbar-thumb {
  background-color: #d1d5db;
  border-radius: 3px;
}
.thin-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #9ca3af;
}
.feature-img-container {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background-color: #f9f9f9;
}
.feature-img-zoom {
  cursor: zoom-in;
  aspect-ratio: 16/9;
}
.feature-img-zoom::after {
  content: "点击放大";
  position: absolute;
  inset: 0;
  background: rgba(7, 193, 96, 0.8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.feature-img-zoom:hover::after {
  opacity: 1;
}
.feature-card-interactive {
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}
.feature-card-interactive:hover {
  border-color: var(--wechat-green);
  box-shadow: 0 10px 30px rgba(7, 193, 96, 5%);
}
.feature-card-interactive .zoom-trigger {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 20;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.feature-card-interactive:hover .zoom-trigger {
  opacity: 1;
  transform: translateY(0);
}
main.max-w-4xl {
  line-height: 1.8;
}
.source-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.source-card:hover {
  border-color: var(--wechat-green);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(7, 193, 96, 8%);
}
.case-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0.9;
  transition: all 0.3s ease;
}
.case-card:hover .case-overlay {
  background: linear-gradient(
    to top,
    rgba(7, 193, 96, 0.9) 0%,
    rgba(7, 193, 96, 0.4) 100%
  );
}
.tag-pill {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.prose p {
  margin-bottom: 10px;
  line-height: 1.8;
}
.prose h2 {
  font-size: 1.5em;
  font-weight: 700;
  color: #191919;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  line-height: 1.4;
}
.prose h3 {
  font-size: 1.25em;
  font-weight: 700;
  color: #191919;
  margin-top: 1.25em;
  margin-bottom: 0.5em;
  line-height: 1.4;
}
.prose h4 {
  font-size: 1.1em;
  font-weight: 700;
  color: #191919;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.prose strong,
.prose b {
  font-weight: 700;
  color: #191919;
}
.prose a {
  color: #2563eb;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.prose a:hover {
  color: var(--wechat-green);
  text-decoration-style: solid;
}
.prose ul {
  list-style-type: disc;
  padding-left: 1.5em;
  margin-bottom: 10px;
}
.prose ol {
  list-style-type: decimal;
  padding-left: 1.5em;
  margin-bottom: 10px;
}
.prose li {
  margin-bottom: 6px;
  line-height: 1.7;
}
.prose li > ul,
.prose li > ol {
  margin-top: 6px;
  margin-bottom: 0;
}
.prose blockquote {
  border-left: 4px solid var(--wechat-green);
  padding: 12px 20px;
  margin: 16px 0;
  background-color: #f9fafb;
  border-radius: 0 8px 8px 0;
  color: #6b7280;
  font-style: italic;
}
.prose blockquote p:last-child {
  margin-bottom: 0;
}
.prose img {
  max-width: 80%;
  height: auto;
  margin: 16px auto;
  display: block;
  border-radius: 12px;
}
.prose code {
  background-color: #f3f4f6;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.875em;
  font-family: menlo, monaco, consolas, monospace;
  color: #dc2626;
}
.prose pre {
  background-color: #1f2937;
  color: #e5e7eb;
  padding: 16px 20px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 16px 0;
  line-height: 1.6;
}
.news-detail-content pre.code-copy-enabled {
  position: relative;
  padding-top: 44px;
}
.news-detail-content .code-copy-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: 1px solid #374151;
  background: #0f172a;
  color: #e5e7eb;
  border-radius: 999px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.news-detail-content .code-copy-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}
.news-detail-content .code-copy-btn:hover {
  border-color: #9ca3af;
  background: #1e293b;
  color: #fff;
}
.news-detail-content .code-copy-btn.is-success {
  border-color: #34d399;
  color: #6ee7b7;
}
.news-detail-content .code-copy-btn.is-success svg {
  display: none;
}
.news-detail-content .code-copy-btn.is-success::after {
  content: "✓";
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.news-detail-content .code-copy-btn.is-error {
  border-color: #ef4444;
  color: #fca5a5;
}
.news-detail-content .code-copy-btn.is-error svg {
  display: none;
}
.news-detail-content .code-copy-btn.is-error::after {
  content: "!";
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.prose pre code {
  background: 0 0;
  padding: 0;
  border-radius: 0;
  color: inherit;
  font-size: 0.875em;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.95em;
}
.prose th {
  background-color: #f9fafb;
  font-weight: 700;
  text-align: left;
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  color: #191919;
}
.prose td {
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
}
.prose tr:hover td {
  background-color: #f9fafb;
}
.prose hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 24px 0;
}
.prose em {
  font-style: italic;
}
.balance-page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}
.balance-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.balance-page-head {
  margin-bottom: 8px;
}
.balance-page-title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}
.balance-page-desc {
  margin: 4px 0 0;
  color: #9ca3af;
  font-size: 14px;
}
.balance-card,
.balance-log-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 32px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 6%);
}
.balance-card {
  padding: 32px;
}
.balance-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.balance-card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}
.balance-info {
  text-align: right;
}
.balance-info-label {
  color: #9ca3af;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.balance-info-amount {
  margin-top: 2px;
  font-size: 20px;
  font-weight: 700;
  color: var(--wechat-green);
}
.balance-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.amount-btn {
  border: 2px solid #f3f4f6;
  border-radius: 12px;
  background: #fff;
  color: #191919;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  transition: all 0.2s ease;
}
.amount-btn:hover,
.amount-btn-active {
  border-color: rgba(7, 193, 96, 0.5);
  color: var(--wechat-green);
  background: rgba(7, 193, 96, 8%);
}
.custom-amount-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.custom-amount-label {
  color: #6b7280;
  font-size: 14px;
}
.custom-amount-input {
  width: 112px;
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 14px;
  outline: none;
}
.balance-pay-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.recharge-pay-btn {
  position: relative;
  width: 120px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  overflow: hidden;
  background: 0 0;
  transition: opacity 0.15s ease;
}
.recharge-pay-btn:hover {
  opacity: 0.95;
}
.recharge-pay-btn.is-loading {
  pointer-events: none;
  opacity: 0.8;
}
.recharge-pay-img {
  height: 42px;
  width: auto;
  display: block;
  pointer-events: none;
  user-select: none;
}
.pay-btn-loading {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  color: #374151;
  font-size: 12px;
  font-weight: 700;
}
.pay-btn-loading.is-visible {
  display: flex;
}
.balance-log-card {
  overflow: hidden;
}
.balance-log-table-wrap {
  overflow-x: auto;
}
.balance-log-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  text-align: left;
}
.balance-log-thead {
  background: #f9fafb;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}
.balance-th {
  padding: 12px 16px;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nowrap {
  white-space: nowrap;
}
.balance-log-row {
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.2s ease;
}
.balance-log-row:hover {
  background: rgba(249, 250, 251, 0.75);
}
.balance-td {
  padding: 16px;
  font-size: 14px;
}
.amount-cell {
  font-weight: 700;
}
.balance-amount-positive {
  color: var(--wechat-green);
}
.balance-amount-negative {
  color: #ef4444;
}
.td-muted {
  color: #6b7280;
}
.order-no-cell {
  font-family:
    Menlo,
    Monaco,
    Consolas,
    courier new,
    monospace;
  font-size: 12px;
}
.order-no-text {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.remark-text {
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.balance-empty {
  padding: 48px 16px;
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
}
.balance-log-footer {
  padding: 16px 24px;
  border-top: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ca3af;
  font-size: 12px;
}
.balance-pagination {
  display: flex;
  gap: 8px;
}
.text-danger {
  color: #ef4444;
}
.balance-swal-popup {
  border-radius: 16px;
}
.article-sidebar {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.article-side-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 8%);
}
.article-side-title {
  margin: 0 0 1rem;
  font-weight: 700;
  font-size: 1.125rem;
}
.article-side-title-hot {
  margin-bottom: 1.5rem;
}
.article-cate-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.article-cate-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: background-color 0.2s ease;
}
.article-cate-item:hover {
  background: #f9fafb;
}
.article-cate-item-active {
  background: #f0fdf4;
}
.article-cate-name {
  color: #4b5563;
  font-weight: 500;
  transition: color 0.2s ease;
}
.group:hover .article-cate-name,
.article-cate-name-active {
  color: var(--wechat-green);
}
.article-cate-count {
  background: #f3f4f6;
  color: #9ca3af;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
}
.group:hover .article-cate-count,
.article-cate-count-active {
  background: #f0fdf4;
  color: var(--wechat-green);
}
.article-hot-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.article-hot-item {
  display: flex;
  gap: 1rem;
}
.article-hot-rank {
  font-size: 1.5rem;
  color: #e5e7eb;
  font-weight: 700;
  transition: color 0.2s ease;
}
.group:hover .article-hot-rank {
  color: var(--wechat-green);
}
.article-hot-content {
  min-width: 0;
}
.article-hot-title {
  margin: 0 0 0.25rem;
  color: #111827;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}
.group:hover .article-hot-title {
  color: var(--wechat-green);
}
.article-hot-meta {
  font-size: 0.75rem;
  color: #9ca3af;
}
@media (min-width: 1024px) {
  .article-sidebar {
    width: 33.333333%;
  }
}
.invoice-page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.invoice-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.invoice-page-head {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.invoice-page-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.invoice-page-desc {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: #9ca3af;
}
.invoice-apply-btn {
  background: var(--wechat-green);
  color: #fff;
  border: 0;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease;
}
.invoice-apply-btn:hover {
  background: #16a34a;
}
.invoice-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 8%);
  overflow: hidden;
}
.invoice-table-wrap {
  overflow-x: auto;
}
.invoice-table-wrap,
.orders-table-wrap,
.my-ssl-table-wrap,
.deploy-targets-table-wrap,
.dns-credential-table-wrap {
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable both-edges;
}
.invoice-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  text-align: left;
}
.invoice-thead {
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
}
.invoice-th {
  padding: 1rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.invoice-row {
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.2s ease;
}
.invoice-row:hover {
  background: rgba(249, 250, 251, 0.75);
}
.invoice-td {
  padding: 1.5rem 2rem;
}
.invoice-td-sm {
  font-size: 0.875rem;
}
.invoice-td-strong {
  font-weight: 500;
}
.invoice-amount {
  font-weight: 700;
  color: var(--wechat-green);
}
.invoice-td-muted {
  font-size: 0.875rem;
  color: #6b7280;
}
.invoice-link-view {
  color: #3b82f6;
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.25rem;
}
.invoice-link-view:hover,
.invoice-link-download:hover {
  text-decoration: underline;
}
.invoice-link-download {
  color: var(--wechat-green);
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.25rem;
}
.invoice-text-light {
  color: #9ca3af;
  font-size: 0.875rem;
}
.invoice-empty {
  padding: 3rem 2rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}
.invoice-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ca3af;
  font-size: 0.75rem;
}
.invoice-pagination {
  display: flex;
  gap: 0.5rem;
}
.invoice-modal {
  position: fixed;
  inset: 0;
  z-index: 1040;
}
.invoice-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.invoice-modal-center {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.invoice-modal-panel {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.18);
  width: 100%;
  max-width: 42rem;
  overflow: hidden;
  position: relative;
}
.invoice-modal-panel-orders {
  max-height: 80vh;
}
.invoice-modal-panel-apply {
  max-height: 90vh;
}
.invoice-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #f3f4f6;
}
.invoice-modal-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
}
.invoice-modal-close {
  border: 0;
  background: 0 0;
  color: #9ca3af;
  font-size: 1.5rem;
  line-height: 1;
}
.invoice-modal-close:hover {
  color: #4b5563;
}
.invoice-modal-body {
  overflow: auto;
  padding: 1.5rem 2rem;
}
.invoice-modal-body-orders {
  max-height: 60vh;
}
.invoice-modal-body-apply {
  max-height: 75vh;
}
.invoice-sub-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: #fff;
}
.invoice-sub-thead {
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
}
.invoice-sub-th {
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.invoice-sub-th-checkbox {
  width: 2.5rem;
}
.invoice-sub-tbody > tr + tr {
  border-top: 1px solid #f3f4f6;
}
.invoice-sub-row:hover {
  background: rgba(249, 250, 251, 0.75);
}
.invoice-sub-td {
  padding: 0.75rem 1rem;
}
.invoice-sub-td-strong {
  font-size: 0.875rem;
  font-weight: 500;
}
.invoice-sub-td-amount {
  font-size: 0.875rem;
  font-weight: 700;
}
.invoice-sub-td-muted {
  font-size: 0.875rem;
  color: #6b7280;
}
.invoice-sub-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}
.invoice-sub-empty-error {
  color: #f87171;
}
.invoice-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.invoice-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #374151;
}
.invoice-required {
  color: #ef4444;
}
.invoice-form-control {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
}
.invoice-form-control:focus {
  border-color: var(--wechat-green);
  box-shadow: 0 0 0 2px rgba(7, 193, 96, 0.25);
}
.invoice-title-row {
  display: flex;
  gap: 0.75rem;
}
.invoice-head-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.invoice-title-manage-btn {
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: #fff;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}
.invoice-title-manage-btn:hover {
  background: #f9fafb;
}
.invoice-title-refresh {
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #374151;
  cursor: pointer;
}
.invoice-title-refresh:hover {
  border-color: #d1d5db;
  background: #f9fafb;
}
.invoice-title-save-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.invoice-checkbox-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4b5563;
  font-size: 0.875rem;
}
.invoice-modal-panel-title {
  width: min(920px, calc(100vw - 2rem));
}
.invoice-modal-body-title {
  max-height: min(78vh, 760px);
  overflow: auto;
}
.invoice-title-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.invoice-title-table-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
}
.invoice-title-main .invoice-title-table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
}
.invoice-title-main .invoice-sub-table {
  min-width: 680px;
}
.invoice-title-editor {
  margin-top: 1rem;
  border: 1px solid #e5e7eb;
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.invoice-title-editor-title {
  margin: 0;
  font-size: 1rem;
  color: #111827;
}
.invoice-title-editor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.invoice-order-box {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
}
.invoice-order-checkbox {
  border-radius: 0.25rem;
}
.invoice-total-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.invoice-total-amount {
  font-weight: 700;
  color: var(--wechat-green);
}
.invoice-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}
.invoice-btn-cancel,
.invoice-btn-submit {
  border: 0;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s ease;
}
.invoice-btn-cancel {
  background: #f3f4f6;
  color: #1f2937;
}
.invoice-btn-cancel:hover {
  background: #e5e7eb;
}
.invoice-btn-submit {
  background: var(--wechat-green);
  color: #fff;
}
.invoice-btn-submit:hover {
  background: #16a34a;
}
@media (min-width: 768px) {
  .invoice-page-wrap {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
  }
  .invoice-table {
    min-width: 100%;
  }
}
@media (max-width: 640px) {
  .invoice-head-actions {
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .invoice-title-editor-grid {
    grid-template-columns: 1fr;
  }
  .invoice-title-main .invoice-sub-th,
  .invoice-title-main .invoice-sub-td {
    white-space: nowrap;
  }
  .invoice-title-main .invoice-title-table-wrap {
    border-radius: 0.5rem;
  }
  .invoice-title-main .invoice-sub-table {
    min-width: 620px;
  }
  .sidebar-mobile-list {
    padding-inline: 0.125rem;
  }
  .orders-filter-wrap {
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
  .orders-footer,
  .invoice-footer,
  .my-ssl-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .orders-pagination,
  .invoice-pagination,
  .my-ssl-pagination {
    flex-wrap: wrap;
  }
  .invoice-modal-center {
    padding: 0.5rem;
  }
  .invoice-modal-panel {
    border-radius: 0.75rem;
  }
  .invoice-modal-head,
  .invoice-modal-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .invoice-modal-head {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .invoice-modal-body {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .invoice-form-actions {
    flex-direction: column-reverse;
  }
  .invoice-btn-cancel,
  .invoice-btn-submit {
    width: 100%;
  }
}
.payment-page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.payment-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.payment-page-head {
  margin-bottom: 1.5rem;
}
.payment-page-head-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.25rem;
}
.payment-page-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.payment-page-desc {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: #9ca3af;
}
.payment-head-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0 1rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.payment-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.payment-overview-item {
  border: 1px solid #dcfce7;
  background: linear-gradient(180deg, #f8fff9 0%, #f0fdf4 100%);
  border-radius: 0.75rem;
  padding: 0.8rem 0.9rem;
}
.payment-overview-label {
  display: block;
  font-size: 0.76rem;
  color: #4b5563;
  margin-bottom: 0.2rem;
}
.payment-overview-value {
  color: #166534;
  font-weight: 700;
  font-size: 1.05rem;
}
.payment-overview-value-code {
  font-size: 0.84rem;
  color: #047857;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.payment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.payment-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 8%);
  padding: 2rem;
}
.payment-card-title {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}
.payment-order-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.payment-order-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}
.payment-order-label {
  color: #6b7280;
}
.payment-order-value {
  color: #111827;
}
.payment-order-mono {
  font-family:
    Menlo,
    Monaco,
    Consolas,
    courier new,
    monospace;
}
.payment-order-value-pill {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  font-size: 0.8rem;
}
.payment-order-strong {
  font-weight: 500;
}
.payment-order-total {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
  font-size: 1.125rem;
  font-weight: 700;
}
.payment-total-amount {
  color: var(--wechat-green);
}
.payment-loading-text {
  color: #9ca3af;
}
.payment-method-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.payment-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 2px solid #f3f4f6;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.payment-method:hover,
.payment-method-active {
  border-color: rgba(7, 193, 96, 0.45);
}
.payment-radio {
  width: 1rem;
  height: 1rem;
  accent-color: var(--wechat-green);
}
#qr-expire-seconds {
  color: #ef4444;
}
.payment-method-text {
  font-weight: 500;
}
.payment-submit-wrap {
  margin-top: 1.5rem;
}
.payment-submit-btn {
  width: 100%;
  border: 0;
  border-radius: 0.75rem;
  background: var(--wechat-green);
  color: #fff;
  padding: 1rem 0;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.2);
  transition: all 0.2s ease;
}
.payment-submit-btn:hover:not(:disabled) {
  background: #16a34a;
}
.payment-submit-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}
.payment-qr-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(17, 24, 39, 0.45);
}
.payment-qr-area {
  position: relative;
  margin-top: 0;
  width: min(100%, 340px);
  text-align: center;
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.25);
}
.payment-qr-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  border: 0;
  border-radius: 50%;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}
.payment-qr-close:hover {
  background: #e5e7eb;
  color: #111827;
}
.payment-qr-title {
  margin: 0 0 1rem;
  color: #6b7280;
  font-size: 0.875rem;
}
.payment-qr-box {
  display: inline-block;
  padding: 1rem;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
}
.payment-qr-shell {
  position: relative;
  display: inline-block;
}
.payment-qr-expired-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.96);
}
.payment-qr-expired-text {
  margin: 0;
  font-size: 0.875rem;
  color: #d97706;
  font-weight: 600;
}
.payment-qr-refresh-btn {
  border: 0;
  border-radius: 0.5rem;
  background: var(--wechat-green);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.payment-qr-refresh-btn:hover:not(:disabled) {
  background: #16a34a;
}
.payment-qr-refresh-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.payment-qr-desc {
  margin: 1rem 0 0;
  color: #9ca3af;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .payment-page-wrap {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
  }
}
@media (min-width: 1024px) {
  .payment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .payment-order-col {
    grid-column: span 2 / span 2;
  }
  .payment-method-col {
    grid-column: span 1 / span 1;
  }
}
.orders-page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.orders-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.orders-page-head {
  margin-bottom: 1.5rem;
}
.orders-page-head-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.25rem;
}
.orders-page-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.orders-page-desc {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: #9ca3af;
}
.orders-filter-wrap {
  display: flex;
  gap: 0.5rem;
  padding: 0.25rem;
  background: rgba(243, 244, 246, 0.5);
  border-radius: 1rem;
  width: fit-content;
}
.orders-head-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0 1rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.orders-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.orders-overview-item {
  border: 1px solid #dcfce7;
  background: linear-gradient(180deg, #f8fff9 0%, #f0fdf4 100%);
  border-radius: 0.75rem;
  padding: 0.8rem 0.9rem;
}
.orders-overview-label {
  display: block;
  font-size: 0.76rem;
  color: #4b5563;
  margin-bottom: 0.2rem;
}
.orders-overview-value {
  color: #166534;
  font-weight: 700;
  font-size: 1.05rem;
}
.orders-overview-value-muted {
  font-size: 0.86rem;
  color: #047857;
}
.orders-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 4%);
  overflow: hidden;
}
.orders-table-wrap {
  overflow-x: auto;
  /* 与 invoice 页一致：不强制预留双侧滚动槽位，避免顶部圆角出现断层。 */
  scrollbar-gutter: auto;
}
.orders-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
  text-align: left;
}
.orders-thead {
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
}
.orders-th {
  padding: 1rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.orders-th-first {
  padding-left: 1.5rem;
}
.orders-th-last {
  padding-right: 1.5rem;
}
.orders-tbody tr + tr {
  border-top: 1px solid #f3f4f6;
}
.orders-row {
  transition: background-color 0.2s ease;
}
.orders-row:hover {
  background: rgba(249, 250, 251, 0.75);
}
.orders-row-highlight {
  background: rgba(34, 197, 94, 8%);
}
.orders-td {
  padding: 1.25rem 0.75rem;
  vertical-align: middle;
  font-size: 0.875rem;
}
.orders-td-first {
  padding-left: 1.5rem;
}
.orders-td-last {
  padding-right: 1.5rem;
}
.orders-td-orderno {
  font-family:
    Menlo,
    Monaco,
    Consolas,
    courier new,
    monospace;
  white-space: nowrap;
}
.orders-td-product {
  font-weight: 600;
  color: #111827;
}
.orders-td-biz {
  min-width: 260px;
  max-width: 320px;
  white-space: normal;
}
.orders-biz-main {
  font-weight: 600;
  color: #111827;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  word-break: break-word;
  line-height: 1.4;
}
.orders-biz-sub {
  margin-top: 0.18rem;
  color: #6b7280;
  font-size: 0.75rem;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  word-break: break-word;
  line-height: 1.4;
}
.orders-td-domain {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #374151;
}
.orders-td-amount {
  font-weight: 700;
  white-space: nowrap;
}
.orders-amount-positive {
  color: var(--wechat-green);
}
.orders-td-sm {
  white-space: nowrap;
  color: #4b5563;
}
.orders-td-paytime {
  min-width: 150px;
}
.orders-pay-method {
  color: #4b5563;
  white-space: nowrap;
}
.orders-pay-time {
  margin-top: 0.18rem;
  font-size: 0.75rem;
  color: #6b7280;
  white-space: nowrap;
}
.orders-td-muted {
  color: #6b7280;
  white-space: nowrap;
}
.orders-td-actions {
  white-space: nowrap;
}
.orders-actions-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.orders-actions-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.orders-link-pay,
.orders-link-cancel,
.orders-link-verify,
.orders-link-retry {
  border: 0;
  background: 0 0;
  padding: 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
}
.orders-link-pay {
  color: var(--wechat-green);
}
.orders-link-verify {
  color: #3b82f6;
}
.orders-link-cancel,
.orders-link-retry {
  color: #ef4444;
}
.orders-link-pay:hover,
.orders-link-cancel:hover,
.orders-link-verify:hover,
.orders-link-retry:hover {
  text-decoration: underline;
}
.site-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.95rem;
  border-radius: 999px;
  padding: 0.15rem 0.75rem;
  border: 1px solid transparent;
  text-decoration: none !important;
  transition: all 0.18s ease;
}
.site-action-btn:hover {
  text-decoration: none !important;
}
.site-action-btn-primary {
  color: #15803d !important;
  border-color: #86efac;
  background: #f0fdf4;
}
.site-action-btn-primary:hover {
  background: #dcfce7;
  border-color: #22c55e;
}
.site-action-btn-danger {
  color: #dc2626 !important;
  border-color: #fecaca;
  background: #fef2f2;
}
.site-action-btn-danger:hover {
  color: #b91c1c !important;
  border-color: #fca5a5;
  background: #fee2e2;
}
.site-action-btn-muted {
  color: #4b5563 !important;
  border-color: #d1d5db;
  background: #f3f4f6;
}
.site-action-btn-muted:hover {
  color: #374151 !important;
  border-color: #9ca3af;
  background: #e5e7eb;
}
.orders-text-progress {
  color: #3b82f6;
  font-size: 0.875rem;
}
.orders-text-hint {
  color: #9ca3af;
  font-size: 0.75rem;
}
.orders-text-light {
  color: #9ca3af;
  font-size: 0.875rem;
}
.orders-error-text {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #f87171;
  font-size: 0.75rem;
}
.orders-empty {
  padding: 3rem 1.5rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}
.orders-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-top: 1px solid #f3f4f6;
  color: #9ca3af;
  font-size: 0.75rem;
}
.orders-pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.server-order-overview {
  margin-bottom: 0.9rem;
}
.server-order-section {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.9rem;
  background: #fcfcfd;
}
.server-order-fee-card {
  border: 1px dashed #d1d5db;
  border-radius: 0.75rem;
  background: #fafafa;
}
.my-ssl-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.my-ssl-overview-item {
  border: 1px solid #dcfce7;
  background: linear-gradient(180deg, #f8fff9 0%, #f0fdf4 100%);
  border-radius: 0.75rem;
  padding: 0.8rem 0.9rem;
}
.my-ssl-overview-label {
  display: block;
  font-size: 0.76rem;
  color: #4b5563;
  margin-bottom: 0.2rem;
}
.my-ssl-overview-value {
  color: #166534;
  font-weight: 700;
  font-size: 1.05rem;
}
.my-ssl-overview-value-muted {
  font-size: 0.86rem;
  color: #047857;
}
@media (min-width: 768px) {
  .orders-page-wrap {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
  }
}
.ssl-order-page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.ssl-order-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ssl-order-head {
  margin-bottom: 1.5rem;
}
.ssl-order-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.ssl-order-desc {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: #9ca3af;
}
.ssl-order-intro {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}
.ssl-order-intro-title {
  margin: 0 0 0.5rem;
  color: #111827;
  font-size: 1.125rem;
  font-weight: 700;
}
.ssl-order-intro-desc {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.7;
}
.ssl-order-intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.ssl-order-intro-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: #f0fdf4;
  color: #166534;
  font-size: 0.75rem;
  font-weight: 600;
}
.ssl-order-alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #fed7aa;
  background: #fff7ed;
}
.ssl-order-alert-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #f97316;
  flex-shrink: 0;
}
.ssl-order-alert-body {
  flex: 1;
}
.ssl-order-alert-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #c2410c;
}
.ssl-order-alert-desc {
  margin: 0.125rem 0 0;
  font-size: 0.75rem;
  color: #ea580c;
}
.ssl-order-alert-action {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border-radius: 0.75rem;
  background: #f97316;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.ssl-order-alert-action:hover {
  background: #ea580c;
}
.ssl-order-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 4%);
  padding: 2rem;
}
.ssl-order-card-disabled {
  opacity: 0.6;
  pointer-events: none;
  user-select: none;
}
.ssl-order-product-head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f3f4f6;
}
.ssl-order-product-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.ssl-order-tag-brand {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: #f0fdf4;
  color: var(--wechat-green);
  font-size: 0.75rem;
  font-weight: 700;
}
.ssl-order-tag-provider {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 0.75rem;
}
.ssl-order-product-name {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}
.ssl-order-product-desc {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: #6b7280;
}
.ssl-order-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.75rem;
}
.ssl-order-feature-tag {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border: 1px solid #f3f4f6;
  border-radius: 0.375rem;
  background: #f9fafb;
  color: #4b5563;
  font-size: 0.75rem;
}
.ssl-order-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.ssl-order-price {
  color: var(--wechat-green);
  font-size: 1.5rem;
  font-weight: 700;
}
.ssl-order-origin-price {
  color: #9ca3af;
  font-size: 0.875rem;
  text-decoration: line-through;
}
.ssl-order-product-card-list {
  display: flex;
  gap: 0.75rem;
  padding: 0.125rem 0.125rem 0.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
}
.ssl-order-product-card {
  position: relative;
  flex: 0 0 76%;
  max-width: 320px;
  min-width: 220px;
  padding: 0.875rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.875rem;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  scroll-snap-align: start;
  box-sizing: border-box;
}
.ssl-order-product-card:hover {
  border-color: #bbf7d0;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 8%);
}
.ssl-order-product-card.is-active {
  border-color: var(--wechat-green);
  box-shadow:
    inset 0 0 0 1px var(--wechat-green),
    0 8px 16px rgba(34, 197, 94, 14%);
  background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%);
}
.ssl-order-product-card-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.ssl-order-product-card-title {
  margin: 0;
  color: #111827;
  font-size: 1rem;
  font-weight: 700;
}
.ssl-order-product-card-desc {
  margin: 0.375rem 0 0;
  color: #6b7280;
  font-size: 0.8125rem;
}
.ssl-order-product-card-price {
  margin-top: 0.75rem;
  color: var(--wechat-green);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}
.ssl-order-product-card-check {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 999px;
  background: #d1d5db;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  opacity: 0;
  transition: all 0.2s ease;
}
.ssl-order-product-card.is-active .ssl-order-product-card-check {
  background: var(--wechat-green);
  opacity: 1;
}
.ssl-order-hidden-select {
  display: none;
}
.ssl-order-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ssl-order-field {
  display: flex;
  flex-direction: column;
}
.ssl-order-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 700;
}
.ssl-order-label-with-help {
  display: inline-flex;
  align-items: center;
}
.ssl-order-label-lg {
  margin-bottom: 0.75rem;
}
.ssl-order-label-tip {
  color: #9ca3af;
  font-weight: 400;
}
.ssl-order-required {
  color: #ef4444;
}
.ssl-order-help-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #9ca3af;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ssl-order-help-badge:hover {
  background: var(--wechat-green);
  color: #fff;
}
.ssl-order-section-spacing {
  margin-top: 1rem;
}
.ssl-order-input {
  width: 100%;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  outline: none;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}
.ssl-order-input:focus {
  background: #fff;
}
.ssl-order-select {
  background: #fff;
}
.ssl-order-textarea {
  resize: none;
  min-height: 144px;
  font-family:
    Menlo,
    Monaco,
    Consolas,
    courier new,
    monospace;
  font-size: 0.75rem;
  line-height: 1.5;
}
.ssl-order-help {
  margin: 0.375rem 0 0;
  font-size: 0.75rem;
  color: #9ca3af;
}
.ssl-order-help-warn {
  color: #f59e0b;
  font-weight: 600;
}
.ssl-order-help-strong {
  color: #6b7280;
}
.ssl-order-help-link {
  color: var(--wechat-green);
  font-weight: 700;
  text-decoration: none;
}
.ssl-order-help-link:hover {
  text-decoration: underline;
}
.ssl-order-verify-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ssl-order-radio {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
.ssl-order-radio-input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--wechat-green);
}
.ssl-order-radio-text {
  font-weight: 500;
  color: #111827;
}
.ssl-order-acme-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.25rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: #eff6ff;
}
.ssl-order-acme-note-icon {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  color: #60a5fa;
  flex-shrink: 0;
}
.ssl-order-acme-note-text {
  font-size: 0.75rem;
  color: #2563eb;
  line-height: 1.6;
}
.ssl-order-email-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: #f9fafb;
}
.ssl-order-email-icon {
  width: 1rem;
  height: 1rem;
  color: #9ca3af;
  flex-shrink: 0;
}
.ssl-order-email-text {
  color: #374151;
  font-size: 0.875rem;
}
.ssl-order-dns-empty {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: #fff7ed;
}
.ssl-order-dns-empty-text {
  color: #4b5563;
  font-size: 0.875rem;
}
.ssl-order-dns-empty-link {
  font-size: 0.875rem;
}
.ssl-order-deploy-row {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.ssl-order-deploy-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ssl-order-deploy-actions .ssl-order-help-link {
  font-size: 0.75rem;
  font-weight: 600;
}
.ssl-order-help-link-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.ssl-order-refresh-icon {
  width: 0.875rem;
  height: 0.875rem;
}
.ssl-order-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 1rem;
}
.ssl-order-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ssl-order-back-link:hover {
  color: #4b5563;
}
.ssl-order-submit-btn {
  padding: 0.75rem 2.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.2);
}
.ssl-order-swal-content {
  text-align: left;
  font-size: 0.875rem;
}
.ssl-order-swal-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ssl-order-swal-stack-sm {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ssl-order-swal-card {
  padding: 1rem;
  border-radius: 0.75rem;
}
.ssl-order-swal-card-blue {
  background: #eff6ff;
}
.ssl-order-swal-card-green {
  background: #f0fdf4;
}
.ssl-order-swal-card-orange {
  background: #fff7ed;
}
.ssl-order-swal-card-gray {
  background: #f9fafb;
}
.ssl-order-swal-title {
  margin-bottom: 0.375rem;
  color: #1f2937;
  font-weight: 700;
}
.ssl-order-swal-text {
  margin: 0;
  color: #4b5563;
  line-height: 1.65;
}
.ssl-order-swal-tip {
  margin: 0.375rem 0 0;
  color: #6b7280;
  font-size: 0.75rem;
}
.ssl-order-swal-tip-top {
  margin-top: 0.75rem;
}
.ssl-order-swal-code {
  display: inline-block;
  padding: 0 0.25rem;
  border-radius: 0.25rem;
  background: #e5e7eb;
  color: #374151;
  font-size: 0.75rem;
}
.ssl-order-domain-swal .ssl-domain-info {
  margin-top: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.ssl-order-domain-swal .ssl-domain-info-title {
  margin-bottom: 1rem;
}
.ssl-order-domain-swal .ssl-domain-info-tip {
  margin-top: 1rem;
}
.ssl-order-swal-lead {
  margin: 0 0 0.75rem;
  color: #374151;
}
.ssl-order-cert-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ssl-order-cert-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem;
  border-radius: 0.5rem;
  background: #f9fafb;
}
.ssl-order-cert-brand {
  color: #111827;
  font-weight: 600;
}
.ssl-order-cert-status {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  background: #f0fdf4;
  color: #16a34a;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .ssl-order-page-wrap {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
  }
  .ssl-order-product-head {
    flex-direction: row;
    align-items: center;
  }
  .ssl-order-product-card {
    flex: 0 0 calc((100% - 1.5rem) / 3);
    max-width: calc((100% - 1.5rem) / 3);
    min-width: 205px;
  }
  .ssl-order-deploy-row {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }
  .ssl-order-deploy-row .ssl-order-select {
    flex: 1;
  }
  .ssl-order-deploy-actions {
    flex: 0 0 auto;
  }
}
.ssl-page-wrap {
  min-height: 100vh;
  padding: 3rem 1.5rem;
  background: #f9fafb;
}
.ssl-page-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.ssl-page-head {
  margin-bottom: 0;
}
.ssl-hero {
  position: relative;
  padding: 2.5rem 1.5rem;
  padding-inline: max(1.5rem, calc((100% - 1280px) / 2 + 1.5rem));
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, #ecfdf3 0%, #f0fdf4 42%, #f9fafb 100%);
  box-shadow: none;
}
.ssl-page-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  background: #f0fdf4;
  color: var(--wechat-green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ssl-page-title {
  margin: 0 0 0.5rem;
  color: #111827;
  font-size: 1.875rem;
  font-weight: 700;
}
.ssl-page-desc {
  margin: 0;
  color: #6b7280;
  font-size: 0.9375rem;
}
.ssl-overview-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.ssl-overview-metric {
  padding: 0.875rem 1rem;
  border: 1px solid #dcfce7;
  border-radius: 0.75rem;
  background: #fff;
}
.ssl-overview-metric-value {
  margin: 0;
  color: #15803d;
  font-size: 1.125rem;
  font-weight: 800;
}
.ssl-overview-metric-label {
  margin: 0.25rem 0 0;
  color: #6b7280;
  font-size: 0.75rem;
}
.ssl-hero-note-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.ssl-brand-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.ssl-domain-filter {
  display: flex;
  gap: 0.5rem;
  width: fit-content;
  margin-bottom: 2rem;
  padding: 0.25rem;
  border-radius: 1rem;
  background: rgba(243, 244, 246, 0.6);
}
.ssl-nanny-intro {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 5%);
}
.ssl-nanny-intro-title {
  margin: 0 0 0.5rem;
  color: #111827;
  font-size: 1.125rem;
  font-weight: 700;
}
.ssl-nanny-intro-desc {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.7;
}
.ssl-nanny-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-top: 1rem;
}
.ssl-nanny-intro-item {
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #f9fafb;
}
.ssl-nanny-intro-item-title {
  margin: 0 0 0.375rem;
  color: #111827;
  font-size: 0.9375rem;
  font-weight: 700;
}
.ssl-nanny-intro-item-desc {
  margin: 0;
  color: #6b7280;
  font-size: 0.8125rem;
  line-height: 1.65;
}
.ssl-flow {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fffb 100%);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 5%);
}
.ssl-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(7, 193, 96, 0.1) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.35;
}
.ssl-flow-head {
  position: relative;
  margin-bottom: 1.25rem;
  padding: 0.9375rem 1rem 0.9375rem 4.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}
.ssl-flow-head::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  transform: translateY(-50%);
  background-color: #ecfdf3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24' fill='none' stroke='%2307c160' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5h18'/%3E%3Cpath d='M7 12h10'/%3E%3Cpath d='M10 19h4'/%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.375rem 1.375rem;
}
.ssl-flow-head::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 4.5rem;
  height: 1.25rem;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(
    to right,
    rgba(7, 193, 96, 0.2) 0%,
    rgba(7, 193, 96, 0.08) 70%,
    rgba(7, 193, 96, 0) 100%
  );
}
.ssl-flow-title {
  margin: 0 0 0.5rem;
  color: #111827;
  font-size: 1.125rem;
  font-weight: 700;
}
.ssl-flow-desc {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.7;
}
.ssl-flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-left: 1.75rem;
}
.ssl-flow-grid::before {
  content: "";
  position: absolute;
  left: 0.4375rem;
  top: 1rem;
  bottom: 1rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    rgba(7, 193, 96, 0.5),
    rgba(7, 193, 96, 0.08)
  );
}
.ssl-flow-item {
  position: relative;
  padding: 1rem 1rem 1rem 1.125rem;
  border: 1px solid #bbf7d0;
  border-radius: 0.75rem;
  background: linear-gradient(180deg, #ffffff 0%, #f6fff9 100%);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 4%);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.ssl-flow-item::before {
  content: "";
  position: absolute;
  left: -1.75rem;
  top: 1.5rem;
  width: 0.875rem;
  height: 0.875rem;
  border: 3px solid #dcfce7;
  border-radius: 999px;
  background: var(--wechat-green);
  box-shadow: 0 0 0 3px rgba(7, 193, 96, 0.08);
}
.ssl-flow-item:hover {
  border-color: rgba(7, 193, 96, 0.35);
  background: #fff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 6%);
}
.ssl-flow-item:not(:last-child)::after {
  display: none;
}
.ssl-flow-item-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
}
.ssl-flow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: #ecfdf3;
  color: var(--wechat-green);
}
.ssl-flow-icon svg {
  width: 1rem;
  height: 1rem;
}
.ssl-flow-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2rem;
  padding: 0 0.5rem;
  border: 1px solid #86efac;
  border-radius: 0.625rem;
  background: #ecfdf3;
  color: #166534;
  font-size: 0.75rem;
  font-weight: 700;
}
.ssl-urgency,
.ssl-cost-compare,
.ssl-trust-wall,
.ssl-guarantee,
.ssl-scenario,
.ssl-faq,
.ssl-page-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.ssl-urgency::before,
.ssl-cost-compare::before,
.ssl-trust-wall::before,
.ssl-guarantee::before,
.ssl-scenario::before,
.ssl-faq::before,
.ssl-page-cta::before {
  content: "";
  position: absolute;
  right: -3.75rem;
  bottom: -3.75rem;
  width: 11rem;
  height: 11rem;
  border-radius: 999px;
  background: radial-gradient(
    circle at center,
    rgba(7, 193, 96, 0.12) 0%,
    rgba(7, 193, 96, 0.05) 45%,
    rgba(7, 193, 96, 0) 75%
  );
  pointer-events: none;
}
.ssl-urgency > *,
.ssl-cost-compare > *,
.ssl-trust-wall > *,
.ssl-guarantee > *,
.ssl-scenario > *,
.ssl-faq > *,
.ssl-page-cta > * {
  position: relative;
  z-index: 1;
}
.ssl-urgency::before {
  background: radial-gradient(
    circle at center,
    rgba(248, 113, 113, 0.2) 0%,
    rgba(248, 113, 113, 0.08) 45%,
    rgba(248, 113, 113, 0) 75%
  );
}
.ssl-cost-compare::before {
  background: radial-gradient(
    circle at center,
    rgba(59, 130, 246, 0.2) 0%,
    rgba(59, 130, 246, 0.08) 45%,
    rgba(59, 130, 246, 0) 75%
  );
}
.ssl-flow-item-title {
  margin: 0 0 0.375rem;
  color: #111827;
  font-size: 0.9375rem;
  font-weight: 700;
}
.ssl-flow-item-desc {
  margin: 0;
  color: #6b7280;
  font-size: 0.8125rem;
  line-height: 1.65;
}
.ssl-flow-tip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.ssl-flow-tip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: #f0fdf4;
  color: #166534;
  font-size: 0.75rem;
  font-weight: 600;
}
.ssl-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.ssl-product-section {
  margin-bottom: 2rem;
}
.ssl-nanny-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.ssl-nanny-apply-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}
.ssl-hero-outline-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid #86efac;
  border-radius: 999px;
  background: #fff;
  color: #166534;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.ssl-hero-outline-btn:hover {
  border-color: #22c55e;
  color: #15803d;
}
.ssl-hero-link {
  color: #15803d;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}
.ssl-hero-link:hover {
  text-decoration: underline;
}
.ssl-hero-scroll-tip {
  margin: 0.875rem 0 0;
  color: #6b7280;
  font-size: 0.75rem;
}
.ssl-proof-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-bottom: 2rem;
}
.ssl-proof-item {
  position: relative;
  overflow: hidden;
  padding: 1rem 1rem 1rem 3.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.875rem;
  background: #fff;
}
.ssl-proof-item::before,
.ssl-urgency-item::before,
.ssl-trust-item::before,
.ssl-guarantee-item::before,
.ssl-scenario-item::before,
.ssl-faq-item::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem 1rem;
}
.ssl-proof-item::before {
  background-color: #ecfdf3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2307c160' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 4v5c0 5-3.5 8-7 9-3.5-1-7-4-7-9V7l7-4z'/%3E%3Cpath d='M9.5 12.5l1.8 1.8 3.6-3.6'/%3E%3C/svg%3E");
}
.ssl-proof-title {
  margin: 0 0 0.375rem;
  color: #111827;
  font-size: 0.9375rem;
  font-weight: 700;
}
.ssl-proof-desc {
  margin: 0;
  color: #6b7280;
  font-size: 0.8125rem;
  line-height: 1.65;
}
.ssl-urgency {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid #fee2e2;
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff 0%, #fef2f2 100%);
}
.ssl-urgency-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}
.ssl-urgency-item {
  position: relative;
  overflow: hidden;
  padding: 1rem 1rem 1rem 3.25rem;
  border: 1px solid #fecaca;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.85);
}
.ssl-urgency-item::before {
  background-color: #fee2e2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23b91c1c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l9 16H3L12 3z'/%3E%3Cpath d='M12 9v4'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E");
}
.ssl-urgency-title {
  margin: 0 0 0.375rem;
  color: #7f1d1d;
  font-size: 0.9375rem;
  font-weight: 700;
}
.ssl-urgency-desc {
  margin: 0;
  color: #7f1d1d;
  font-size: 0.8125rem;
  line-height: 1.65;
}
.ssl-cost-compare {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid #dbeafe;
  border-radius: 1rem;
  background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 4%);
}
.ssl-cost-compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}
.ssl-cost-card {
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #fff;
}
.ssl-cost-card-risk {
  border-color: #fecaca;
  background: #fff7f7;
}
.ssl-cost-card-safe {
  border-color: #bbf7d0;
  background: #f0fdf4;
}
.ssl-cost-title {
  margin: 0 0 0.625rem;
  color: #111827;
  font-size: 0.9375rem;
  font-weight: 700;
}
.ssl-cost-list {
  margin: 0;
  padding-left: 1rem;
  color: #4b5563;
  font-size: 0.8125rem;
  line-height: 1.7;
}
.ssl-cost-item + .ssl-cost-item {
  margin-top: 0.25rem;
}
.ssl-cost-compare-action {
  margin-top: 1rem;
}
.ssl-trust-wall {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 5%);
}
.ssl-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}
.ssl-trust-item {
  position: relative;
  overflow: hidden;
  padding: 1rem 1rem 1rem 3.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #f8fafc;
}
.ssl-trust-item::before {
  background-color: #e0f2fe;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 10h3v4H7a3 3 0 010-6h4'/%3E%3Cpath d='M16 14h-3v-4h4a3 3 0 010 6h-4'/%3E%3C/svg%3E");
}
.ssl-trust-title {
  margin: 0 0 0.375rem;
  color: #111827;
  font-size: 0.9375rem;
  font-weight: 700;
}
.ssl-trust-desc {
  margin: 0;
  color: #4b5563;
  font-size: 0.8125rem;
  line-height: 1.65;
}
.ssl-trust-role {
  margin: 0.5rem 0 0;
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 600;
}
.ssl-guarantee {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 5%);
}
.ssl-guarantee-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}
.ssl-guarantee-item {
  position: relative;
  overflow: hidden;
  padding: 1rem 1rem 1rem 3.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #f9fafb;
}
.ssl-guarantee-item::before {
  background-color: #dcfce7;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2315803d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l2.5 5.1 5.6.8-4 3.9.9 5.5L12 16l-5 2.3.9-5.5-4-3.9 5.6-.8L12 3z'/%3E%3C/svg%3E");
}
.ssl-guarantee-title {
  margin: 0 0 0.375rem;
  color: #111827;
  font-size: 0.9375rem;
  font-weight: 700;
}
.ssl-guarantee-desc {
  margin: 0;
  color: #6b7280;
  font-size: 0.8125rem;
  line-height: 1.65;
}
.ssl-scenario {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 5%);
}
.ssl-scenario-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}
.ssl-scenario-item {
  position: relative;
  overflow: hidden;
  padding: 1rem 1rem 1rem 3.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #f8fafc;
}
.ssl-scenario-item::before {
  background-color: #ede9fe;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3a13 13 0 010 18'/%3E%3Cpath d='M12 3a13 13 0 000 18'/%3E%3C/svg%3E");
}
.ssl-scenario-title {
  margin: 0 0 0.375rem;
  color: #111827;
  font-size: 0.9375rem;
  font-weight: 700;
}
.ssl-scenario-desc {
  margin: 0;
  color: #6b7280;
  font-size: 0.8125rem;
  line-height: 1.65;
}
.ssl-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 5%);
  transition: all 0.2s ease;
}
.ssl-card:hover {
  border-color: rgba(7, 193, 96, 0.2);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 9%);
}
.ssl-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}
.ssl-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.ssl-card-brand {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: #f0fdf4;
  color: var(--wechat-green);
  font-size: 0.75rem;
  font-weight: 700;
}
.ssl-card-provider {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 0.75rem;
}
.ssl-card-title {
  margin: 0 0 0.5rem;
  color: #111827;
  font-size: 1.125rem;
  font-weight: 700;
  transition: color 0.2s ease;
}
.ssl-card:hover .ssl-card-title {
  color: var(--wechat-green);
}
.ssl-card-desc {
  margin: 0 0 0.75rem;
  color: #6b7280;
  font-size: 0.875rem;
}
.ssl-card-link {
  color: var(--wechat-green);
  text-decoration: none;
}
.ssl-card-link:hover {
  text-decoration: underline;
}
.ssl-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1rem;
}
.ssl-feature-tag {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border: 1px solid #f3f4f6;
  border-radius: 0.375rem;
  background: #f9fafb;
  color: #4b5563;
  font-size: 0.75rem;
}
.ssl-card-footer {
  margin-top: auto;
}
.ssl-card-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.ssl-card-price {
  color: var(--wechat-green);
  font-size: 1.5rem;
  font-weight: 700;
}
.ssl-card-origin-price {
  color: #9ca3af;
  font-size: 0.875rem;
  text-decoration: line-through;
}
.ssl-card-buy-btn {
  display: block;
  width: 100%;
  padding: 0.75rem 0;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.2);
}
.ssl-empty {
  grid-column: 1/-1;
  padding: 4rem 1.5rem;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  background: #fff;
  text-align: center;
}
.ssl-empty-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  color: #e5e7eb;
}
.ssl-empty-text {
  margin: 0;
  color: #9ca3af;
}
.ssl-domain-info {
  margin-top: 3.5rem;
  padding: 2rem;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 5%);
  scroll-margin-top: 1.5rem;
}
.ssl-domain-info-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  color: #111827;
  font-size: 1.125rem;
  font-weight: 700;
}
.ssl-domain-info-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--wechat-green);
}
.ssl-domain-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.ssl-domain-card {
  padding: 1.5rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
}
.ssl-domain-card-single {
  border-color: #dcfce7;
  background: rgba(240, 253, 244, 0.7);
}
.ssl-domain-card-wildcard {
  border-color: #fde68a;
  background: rgba(255, 251, 235, 0.7);
}
.ssl-domain-card-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.ssl-domain-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
}
.ssl-domain-badge-single {
  background: var(--wechat-green);
}
.ssl-domain-badge-wildcard {
  background: #f59e0b;
}
.ssl-domain-card-title {
  margin: 0;
  color: #111827;
  font-size: 1rem;
  font-weight: 700;
}
.ssl-domain-card-desc {
  margin: 0 0 0.75rem;
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.7;
}
.ssl-domain-points {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #6b7280;
  font-size: 0.75rem;
}
.ssl-domain-point {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  margin: 0;
  line-height: 1.6;
}
.ssl-domain-check {
  color: var(--wechat-green);
}
.ssl-domain-cross {
  color: #f87171;
}
.ssl-domain-code {
  display: inline-block;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  background: #fff;
  color: #374151;
}
.ssl-domain-info-tip {
  margin: 1.25rem 0 0;
  color: #9ca3af;
  font-size: 0.75rem;
  text-align: center;
}
.ssl-faq {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 5%);
}
.ssl-faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.ssl-faq-item {
  position: relative;
  overflow: hidden;
  padding: 0.875rem 1rem 0.875rem 3.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #f9fafb;
}
.ssl-faq-item::before {
  top: 0.8125rem;
  background-color: #dbeafe;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M9.5 9a2.5 2.5 0 014.5 1.5c0 1.7-2 2.1-2 3.5'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E");
}
.ssl-faq-question {
  color: #111827;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
}
.ssl-faq-answer {
  margin: 0.625rem 0 0;
  color: #6b7280;
  font-size: 0.8125rem;
  line-height: 1.65;
}
.ssl-page-cta {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 1.5rem max(1.5rem, calc((100vw - 1280px) / 2 + 1.5rem));
  border: 1px solid #dcfce7;
  border-radius: 0;
  background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
}
.ssl-page-cta::before {
  right: -3.75rem;
  bottom: -3.75rem;
  width: 11rem;
  height: 11rem;
  background: radial-gradient(
    circle at center,
    rgba(7, 193, 96, 0.12) 0%,
    rgba(7, 193, 96, 0.05) 45%,
    rgba(7, 193, 96, 0) 75%
  );
}
.ssl-page-cta::after {
  display: none;
}
.ssl-page-cta-title {
  margin: 0;
  color: #111827;
  font-size: 1.125rem;
  font-weight: 700;
}
.ssl-page-cta-desc {
  margin: 0.5rem 0 0;
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.7;
}
.ssl-page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.ssl-page-cta-btn {
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
}
.ssl-page-cta-link {
  color: #15803d;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}
.ssl-page-cta-link:hover {
  text-decoration: underline;
}
.ssl-upload-page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.ssl-upload-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ssl-upload-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.ssl-upload-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.ssl-upload-desc {
  margin: 0.25rem 0 0;
  color: #9ca3af;
  font-size: 0.875rem;
}
.ssl-upload-back-link {
  color: var(--wechat-green);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}
.ssl-upload-back-link:hover {
  text-decoration: underline;
}
.ssl-upload-card {
  padding: 2rem;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 4%);
}
.ssl-upload-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border: 1px solid #bfdbfe;
  border-radius: 1rem;
  background: #eff6ff;
}
.ssl-upload-alert-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  color: #60a5fa;
  flex-shrink: 0;
}
.ssl-upload-alert-body {
  color: #1d4ed8;
  font-size: 0.875rem;
  line-height: 1.7;
}
.ssl-upload-alert-title {
  margin: 0 0 0.25rem;
  color: #1e40af;
  font-weight: 700;
}
.ssl-upload-alert-list {
  margin: 0;
  padding-left: 1rem;
  color: #2563eb;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.ssl-upload-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ssl-upload-field {
  display: flex;
  flex-direction: column;
}
.ssl-upload-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 700;
}
.ssl-upload-required {
  color: #ef4444;
}
.ssl-upload-optional {
  color: #9ca3af;
  font-weight: 400;
}
.ssl-upload-input {
  width: 100%;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  outline: none;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}
.ssl-upload-input:focus {
  background: #fff;
}
.ssl-upload-textarea {
  min-height: 176px;
  resize: none;
  font-family:
    Menlo,
    Monaco,
    Consolas,
    courier new,
    monospace;
  font-size: 0.75rem;
  line-height: 1.5;
}
.ssl-upload-textarea-ca {
  min-height: 132px;
}
.ssl-upload-file-label {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  width: fit-content;
  margin-top: 0.5rem;
  padding: 0.375rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background: #f9fafb;
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ssl-upload-file-label:hover {
  background: #f3f4f6;
  color: #374151;
}
.ssl-upload-file-icon {
  width: 0.875rem;
  height: 0.875rem;
}
.ssl-upload-help {
  margin: 0.375rem 0 0;
  color: #9ca3af;
  font-size: 0.75rem;
}
.ssl-upload-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 1rem;
}
.ssl-upload-cancel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ssl-upload-cancel-link:hover {
  color: #4b5563;
}
.ssl-upload-submit-btn {
  padding: 0.75rem 2.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.2);
}
.my-ssl-page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.my-ssl-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.my-ssl-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.my-ssl-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.my-ssl-desc {
  margin: 0.25rem 0 0;
  color: #9ca3af;
  font-size: 0.875rem;
}
.my-ssl-upload-btn {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.2);
}
.my-ssl-card {
  overflow: hidden;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 4%);
}
.my-ssl-table-wrap {
  overflow-x: auto;
}
.my-ssl-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  text-align: left;
}
.my-ssl-thead {
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
}
.my-ssl-th {
  padding: 0.875rem 1.25rem;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.my-ssl-tbody tr + tr {
  border-top: 1px solid #f3f4f6;
}
.my-ssl-row {
  transition: background-color 0.2s ease;
}
.my-ssl-row:hover {
  background: rgba(249, 250, 251, 0.75);
}
.my-ssl-td {
  padding: 1rem 1.25rem;
}
.my-ssl-td-domain {
  font-weight: 500;
  color: #111827;
}
.my-ssl-td-sm {
  font-size: 0.875rem;
}
.my-ssl-td-cert {
  min-width: 460px;
}
.my-ssl-cert-domain {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.my-ssl-domain-text {
  color: #111827;
  font-weight: 600;
}
.my-ssl-cert-meta {
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  font-size: 12px;
  color: #6b7280;
}
.my-ssl-cert-meta-label {
  color: #9ca3af;
}
.my-ssl-cert-meta-value {
  color: #111827;
}
.my-ssl-cert-meta-sep {
  color: #d1d5db;
}
.my-ssl-valid-range {
  color: #6b7280;
}
.my-ssl-days-left {
  font-size: 0.75rem;
}
.my-ssl-days-danger {
  color: #ef4444;
  font-weight: 700;
}
.my-ssl-days-warn {
  color: #f59e0b;
}
.my-ssl-days-normal {
  color: #9ca3af;
}
.my-ssl-empty-value {
  color: #d1d5db;
}
.my-ssl-detail-link {
  color: var(--wechat-green);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.25rem;
}
.my-ssl-detail-link:hover {
  text-decoration: underline;
}
.my-ssl-deploy-name {
  color: #111827;
  font-weight: 600;
}
.my-ssl-deploy-meta {
  color: #6b7280;
  font-size: 12px;
}
.my-ssl-deploy-danger {
  color: #ef4444;
}
.my-ssl-deploy-link {
  display: inline-flex;
  color: var(--wechat-green);
  font-size: 12px;
  text-decoration: none;
}
.my-ssl-deploy-link:hover {
  text-decoration: underline;
}
.my-ssl-renew-btn {
  min-width: 72px;
  padding: 6px 12px;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
}
.my-ssl-renew-btn-pause {
  background: #f3f4f6;
  color: #4b5563;
}
.my-ssl-renew-btn-pause:hover {
  background: #e5e7eb;
}
.my-ssl-renew-fee-note {
  margin-top: 0.35rem;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.3;
}
.my-ssl-empty {
  padding: 3rem 2rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}
.my-ssl-renew-rule-tip {
  padding: 0.9rem 2rem 0;
  color: #6b7280;
  font-size: 12px;
}
.my-ssl-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-top: 1px solid #f3f4f6;
  color: #9ca3af;
  font-size: 0.75rem;
}
.my-ssl-pagination {
  display: flex;
  gap: 0.5rem;
}
.tickets-page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.tickets-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.tickets-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}
.tickets-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.tickets-new-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.2);
}
.tickets-filter-wrap {
  display: flex;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.25rem;
  border-radius: 1rem;
  background: rgba(243, 244, 246, 0.6);
}
.tickets-card {
  overflow: hidden;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 4%);
}
.tickets-table-wrap {
  overflow-x: auto;
}
.tickets-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  text-align: left;
}
.tickets-thead {
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
}
.tickets-th {
  padding: 1rem 2rem;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tickets-tbody tr + tr {
  border-top: 1px solid #f3f4f6;
}
.tickets-row {
  transition: background-color 0.2s ease;
}
.tickets-row:hover {
  background: rgba(249, 250, 251, 0.75);
}
.tickets-td {
  padding: 1.5rem 1rem;
}
.tickets-td-id {
  font-family:
    Menlo,
    Monaco,
    Consolas,
    courier new,
    monospace;
  font-size: 0.875rem;
}
.tickets-td-type {
  font-size: 0.875rem;
  font-weight: 700;
}
.tickets-cate {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
}
.tickets-cate-tech {
  color: #2563eb;
}
.tickets-cate-dev {
  color: #9333ea;
}
.tickets-cate-upgrade {
  color: #16a34a;
}
.tickets-cate-other {
  color: #4b5563;
}
.tickets-content-preview {
  margin-left: 0.25rem;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 400;
}
.tickets-td-date {
  color: #9ca3af;
  font-size: 0.875rem;
}
.tickets-detail-link {
  color: var(--wechat-green);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.tickets-detail-link:hover {
  text-decoration: underline;
}
.tickets-empty {
  padding: 3rem 2rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}
.tickets-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1rem;
  border-top: 1px solid #f3f4f6;
  color: #9ca3af;
  font-size: 0.75rem;
}
.tickets-pagination {
  display: flex;
  gap: 0.5rem;
}
.submit-ticket-page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.submit-ticket-main {
  flex: 1;
}
.submit-ticket-head {
  margin-bottom: 2rem;
}
.submit-ticket-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.submit-ticket-desc {
  margin: 0.25rem 0 0;
  color: #9ca3af;
  font-size: 0.875rem;
}
.submit-ticket-card {
  padding: 2rem;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 4%);
}
.submit-ticket-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.submit-ticket-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.submit-ticket-field {
  display: flex;
  flex-direction: column;
}
.submit-ticket-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 700;
}
.submit-ticket-select {
  width: 100%;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  outline: none;
  font-size: 0.875rem;
  appearance: none;
  transition: all 0.2s ease;
}
.submit-ticket-select:focus {
  background: #fff;
}
.submit-ticket-textarea {
  width: 100%;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  outline: none;
  font-size: 0.875rem;
  resize: none;
  transition: all 0.2s ease;
}
.submit-ticket-textarea:focus {
  background: #fff;
}
.submit-ticket-upload-area {
  padding: 2rem;
  border: 2px dashed #f3f4f6;
  border-radius: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.submit-ticket-upload-area:hover,
.submit-ticket-upload-area.is-dragover {
  border-color: rgba(7, 193, 96, 0.3);
}
.submit-ticket-upload-icon {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.5rem;
  color: #d1d5db;
  transition: color 0.2s ease;
}
.submit-ticket-upload-area:hover .submit-ticket-upload-icon,
.submit-ticket-upload-area.is-dragover .submit-ticket-upload-icon {
  color: var(--wechat-green);
}
.submit-ticket-upload-text {
  color: #9ca3af;
  font-size: 0.875rem;
}
.submit-ticket-attachment-list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.submit-ticket-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 1rem;
}
.submit-ticket-cancel-btn {
  border: 0;
  background: 0 0;
  padding: 0.75rem 2rem;
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease;
}
.submit-ticket-cancel-btn:hover {
  color: #4b5563;
}
.submit-ticket-submit-btn {
  padding: 0.75rem 2.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.2);
}
.ticket-attach-loading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: #f9fafb;
  color: #9ca3af;
  font-size: 0.875rem;
}
.ticket-attach-loading-icon {
  width: 1rem;
  height: 1rem;
}
.ticket-attach-loading-circle {
  opacity: 0.25;
}
.ticket-attach-loading-path {
  opacity: 0.75;
}
.is-spinning {
  animation: spin 1s linear infinite;
}
.ticket-attach-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: #f9fafb;
  font-size: 0.875rem;
}
.ticket-attach-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.ticket-attach-thumb {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: cover;
  border: 1px solid #f3f4f6;
  border-radius: 0.5rem;
}
.ticket-attach-name {
  max-width: 200px;
  color: #374151;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ticket-attach-size {
  color: #9ca3af;
  font-size: 0.75rem;
}
.ticket-attach-remove {
  border: 0;
  background: 0 0;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.2s ease;
}
.ticket-attach-remove:hover {
  color: #ef4444;
}
.ticket-attach-remove-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.ticket-detail-page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
}
.ticket-detail-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ticket-detail-header-card {
  padding: 2rem;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 4%);
}
.ticket-detail-header-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.ticket-detail-id-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.ticket-detail-id {
  color: #9ca3af;
  font-family:
    Menlo,
    Monaco,
    Consolas,
    courier new,
    monospace;
  font-size: 0.75rem;
}
.ticket-detail-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.ticket-detail-actions {
  display: flex;
  gap: 0.75rem;
}
.ticket-detail-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  border-radius: 0.75rem;
  background: #f9fafb;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.ticket-detail-back-btn:hover {
  background: #f3f4f6;
}
.ticket-detail-close-btn {
  padding: 0.625rem 1.5rem;
  border: 1px solid #fee2e2;
  border-radius: 0.75rem;
  background: #fff;
  color: #ef4444;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ticket-detail-close-btn:hover {
  background: #fef2f2;
}
.ticket-detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f9fafb;
}
.ticket-detail-meta-label {
  margin-bottom: 0.25rem;
  color: #9ca3af;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ticket-detail-meta-value {
  color: #111827;
  font-size: 0.875rem;
  font-weight: 700;
}
.ticket-detail-priority-normal {
  color: #6366f1;
}
.ticket-detail-priority-high {
  color: #f97316;
}
.ticket-detail-priority-urgent {
  color: #dc2626;
}
.ticket-detail-thread {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem 0;
}
.ticket-msg {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ticket-msg-user-wrap {
  align-items: flex-end;
}
.ticket-msg-admin-wrap {
  align-items: flex-start;
}
.ticket-msg-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.ticket-msg-time {
  color: #9ca3af;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.ticket-msg-author {
  color: #111827;
  font-size: 10px;
  font-weight: 700;
}
.ticket-msg-author-admin {
  color: var(--wechat-green);
}
.ticket-msg-bubble {
  font-size: 0.875rem;
  line-height: 1.75;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 5%);
}
.ticket-msg-attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid;
}
.ticket-msg-attachments-user {
  border-color: rgba(255, 255, 255, 0.2);
}
.ticket-msg-attachments-admin {
  border-color: rgba(229, 231, 235, 0.4);
}
.ticket-msg-image {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: opacity 0.2s ease;
}
.ticket-msg-image:hover {
  opacity: 0.8;
}
.ticket-msg-image-user {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.ticket-msg-image-admin {
  border: 1px solid rgba(229, 231, 235, 0.5);
}
.ticket-detail-notice {
  padding: 2rem;
  border-radius: 2rem;
  text-align: center;
}
.ticket-detail-notice-closed {
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
}
.ticket-detail-notice-waiting {
  border: 1px solid #bfdbfe;
  background: #eff6ff;
}
.ticket-detail-notice-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
}
.ticket-detail-notice-icon-wrap-closed {
  background: #e5e7eb;
}
.ticket-detail-notice-icon-wrap-waiting {
  background: #dbeafe;
}
.ticket-detail-notice-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.ticket-detail-notice-icon-closed {
  color: #9ca3af;
}
.ticket-detail-notice-icon-waiting {
  color: #60a5fa;
}
.ticket-detail-notice-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}
.ticket-detail-notice-title-closed {
  color: #6b7280;
}
.ticket-detail-notice-title-waiting {
  color: #3b82f6;
}
.ticket-detail-notice-desc {
  margin: 0;
  font-size: 0.875rem;
}
.ticket-detail-notice-desc-closed {
  color: #9ca3af;
}
.ticket-detail-notice-desc-waiting {
  color: #60a5fa;
}
.ticket-detail-reply-card {
  padding: 2rem;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 4%);
}
.ticket-detail-reply-title {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 700;
}
.ticket-detail-reply-textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  resize: none;
  transition: all 0.2s ease;
}
.ticket-detail-reply-textarea:focus {
  background: #fff;
}
.ticket-detail-reply-upload-wrap {
  margin-bottom: 1rem;
}
.ticket-detail-reply-upload-area {
  padding: 1.5rem;
  border: 2px dashed #f3f4f6;
  border-radius: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ticket-detail-reply-upload-area:hover,
.ticket-detail-reply-upload-area.is-dragover {
  border-color: rgba(7, 193, 96, 0.3);
}
.ticket-detail-reply-upload-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 auto 0.25rem;
  color: #d1d5db;
  transition: color 0.2s ease;
}
.ticket-detail-reply-upload-area:hover .ticket-detail-reply-upload-icon,
.ticket-detail-reply-upload-area.is-dragover .ticket-detail-reply-upload-icon {
  color: var(--wechat-green);
}
.ticket-detail-reply-upload-text {
  color: #9ca3af;
  font-size: 0.75rem;
}
.ticket-detail-reply-attachment-list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ticket-detail-reply-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.ticket-detail-reply-tip {
  margin: 0;
  color: #9ca3af;
  font-size: 0.75rem;
}
.ticket-detail-reply-submit-btn {
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.2);
}
.news-page-header {
  padding: 4rem 1.5rem 3rem;
  border-bottom: 1px solid #f3f4f6;
  background: #fff;
}
.news-page-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.news-page-title {
  margin: 0 0 1.5rem;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #111827;
}
.news-page-title-accent {
  color: var(--wechat-green);
}
.news-page-subtitle {
  max-width: 42rem;
  margin: 0 auto;
  color: #6b7280;
  font-size: 1.125rem;
}
.news-page-main {
  padding: 4rem 1.5rem;
}
.news-page-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.news-list-col {
  width: 100%;
}
.news-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.news-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  background: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.news-card:hover {
  border-color: rgba(7, 193, 96, 0.2);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}
.news-card-cover-wrap {
  width: 100%;
  height: 12rem;
  overflow: hidden;
  border-radius: 0.75rem;
  flex-shrink: 0;
}
.news-card-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-cover {
  transform: scale(1.05);
}
.news-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.news-card-tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.2s ease;
}
.news-card:hover .news-card-tag {
  background: #f0fdf4;
  color: var(--wechat-green);
}
.news-card-date,
.news-card-views {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #9ca3af;
  font-size: 0.75rem;
}
.news-card-meta-icon {
  width: 0.875rem;
  height: 0.875rem;
}
.news-card-title {
  margin: 0 0 0.75rem;
  color: #111827;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.45;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card:hover .news-card-title {
  color: var(--wechat-green);
}
.news-card-summary {
  margin: 0 0 1rem;
  color: #6b7280;
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--wechat-green);
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s ease;
}
.news-card:hover .news-card-readmore {
  gap: 0.5rem;
}
.news-card-readmore-icon {
  width: 1rem;
  height: 1rem;
}
.news-empty {
  padding: 4rem 1rem;
  text-align: center;
  color: #9ca3af;
}
.news-empty-text {
  margin: 0;
  font-size: 1.125rem;
}
.news-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.news-pagination-link:hover {
  border-color: var(--wechat-green);
  color: var(--wechat-green);
  background: #fff;
}
.news-pagination-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.news-detail-main {
  padding: 3rem 1.5rem;
}
.news-detail-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.news-detail-article-col {
  width: 100%;
}
.news-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: #9ca3af;
  font-size: 0.875rem;
}
.news-detail-breadcrumb-link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}
.news-detail-breadcrumb-link:hover {
  color: var(--wechat-green);
}
.news-detail-breadcrumb-current {
  max-width: 200px;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-detail-article {
  padding: 2rem;
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 5%);
}
.news-detail-article-header {
  margin-bottom: 2.5rem;
  text-align: center;
}
.news-detail-cate-tag {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: #f0fdf4;
  color: var(--wechat-green);
  font-size: 0.75rem;
  font-weight: 700;
}
.news-detail-title {
  margin: 0 0 1.5rem;
  color: #111827;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.4;
}
.news-detail-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
}
.news-detail-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.news-detail-meta-icon {
  width: 1rem;
  height: 1rem;
}
.news-detail-content {
  color: #4b5563;
}
.news-detail-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
  padding: 0 1rem;
}
.news-detail-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
  color: #6b7280;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.news-detail-nav-link:hover {
  color: var(--wechat-green);
}
.news-detail-nav-link-next {
  margin-left: auto;
}
.news-detail-nav-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.news-detail-nav-link:hover .news-detail-nav-icon-prev {
  transform: translateX(-4px);
}
.news-detail-nav-link:hover .news-detail-nav-icon-next {
  transform: translateX(4px);
}
.news-detail-nav-text {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-detail-nav-placeholder {
  display: none;
}
.about-page-header {
  padding: 5rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  background: #f9fafb;
}
.about-page-header-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.about-page-title {
  margin: 0 0 1.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
}
.about-page-subtitle {
  margin: 0;
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.8;
}
.about-marketing-section {
  padding: 6rem 1.5rem;
}
.about-marketing-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.about-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
.about-feature-content {
  flex: 1;
}
.about-feature-en-title {
  margin-bottom: 1rem;
  color: var(--wechat-green);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-feature-title {
  margin: 0 0 1.5rem;
  color: #111827;
  font-size: 1.875rem;
  font-weight: 700;
}
.about-feature-desc {
  margin: 0 0 1.5rem;
  color: #4b5563;
  line-height: 1.9;
}
.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #4b5563;
}
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.about-feature-check-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
  color: var(--wechat-green);
  flex-shrink: 0;
}
.about-feature-visual {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  border-radius: 1.5rem;
  background: #f3f4f6;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.about-feature-visual-bg {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  animation: pulse 2s infinite;
}
.about-feature-visual-bg-green {
  background: linear-gradient(135deg, rgba(7, 193, 96, 0.12), transparent);
  opacity: 0.3;
}
.about-feature-visual-bg-blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), transparent);
  opacity: 0.4;
}
.about-feature-visual-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-feature-main-icon {
  width: 6rem;
  height: 6rem;
  margin-bottom: 1.5rem;
  color: var(--wechat-green);
  animation: bounce 1.5s infinite;
}
.about-feature-visual-title {
  margin: 0 0 0.5rem;
  color: #1f2937;
  font-size: 1.25rem;
  font-weight: 700;
}
.about-feature-visual-desc {
  margin: 0;
  color: #6b7280;
  text-align: center;
}
.about-cta-section {
  padding: 6rem 1.5rem;
  background: var(--wechat-green);
  color: #fff;
  text-align: center;
}
.about-cta-inner {
  max-width: 48rem;
  margin: 0 auto;
}
.about-cta-title {
  margin: 0 0 2rem;
  font-size: 1.875rem;
  font-weight: 700;
}
.about-cta-desc {
  margin: 0 0 3rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
}
.about-cta-link {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  background: #fff;
  color: var(--wechat-green);
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.about-cta-link:hover {
  background: #f3f4f6;
}
.contact-page-header {
  padding: 5rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  background: #f9fafb;
}
.contact-page-header-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.contact-page-title {
  margin: 0 0 1.5rem;
  color: #111827;
  font-size: 2.25rem;
  font-weight: 700;
}
.contact-page-subtitle {
  margin: 0;
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.8;
}
.contact-page-section {
  padding: 6rem 1.5rem;
}
.contact-page-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
}
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-card-title {
  margin: 0 0 2rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.contact-info-icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--wechat-green);
}
.contact-info-label {
  margin-bottom: 0.25rem;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-info-value {
  color: #111827;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-form-label {
  margin-left: 0.25rem;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-form-control {
  width: 100%;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  outline: none;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}
.contact-form-control:focus {
  background: #fff;
}
.contact-form-select {
  appearance: none;
}
.contact-form-textarea {
  resize: none;
}
.contact-form-submit {
  width: 100%;
  padding: 1rem 0;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.2);
}
.cases-page-header {
  padding: 5rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  background: #fff;
}
.cases-page-header-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.cases-page-title {
  margin: 0 0 1.5rem;
  color: #111827;
  font-size: 2.25rem;
  font-weight: 700;
}
.cases-page-subtitle {
  margin: 0;
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.8;
}
.cases-page-section {
  padding: 5rem 1.5rem;
}
.cases-page-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.case-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.case-card:hover .case-card-image {
  transform: scale(1.1);
}
.case-card-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.case-card-title {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}
.case-card-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  line-height: 1.7;
}
.cases-cta-section {
  padding: 6rem 1.5rem;
  background: var(--wechat-green);
  color: #fff;
}
.cases-cta-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.cases-cta-title {
  margin: 0 0 2rem;
  color: #fff;
  font-size: 1.875rem;
  font-weight: 700;
}
.cases-cta-desc {
  margin: 0 0 3rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
}
.cases-cta-link {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  background: #fff;
  color: var(--wechat-green);
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}
.cases-cta-link:hover {
  background: #f3f4f6;
}
.solutions-page-header {
  padding: 5rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  background: #f9fafb;
}
.solutions-page-header-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.solutions-page-title {
  margin: 0 0 1.5rem;
  color: var(--wechat-green);
  font-size: 2.25rem;
  font-weight: 700;
}
.solutions-page-subtitle {
  margin: 0;
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.8;
}
.solutions-page-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.solutions-section-title {
  margin: 0 0 4rem;
  color: #111827;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
}
.solutions-process-section {
  padding: 6rem 1.5rem;
  background: #fff;
}
.solutions-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.solutions-process-card {
  position: relative;
  padding: 2rem;
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  background: #f9fafb;
}
.solutions-step-number {
  margin-bottom: 1.5rem;
}
.solutions-process-title {
  margin: 0 0 1rem;
  color: #111827;
  font-size: 1.25rem;
  font-weight: 700;
}
.solutions-process-desc {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.8;
}
.solutions-pricing-section {
  padding: 6rem 1.5rem;
  background: #f9fafb;
}
.solutions-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.solutions-pricing-card {
  padding: 2.5rem;
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 4%);
}
.solutions-pricing-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 2rem;
  color: #111827;
  font-size: 1.5rem;
  font-weight: 700;
}
.solutions-pricing-icon {
  width: 2rem;
  height: 2rem;
  color: var(--wechat-green);
}
.solutions-pricing-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.solutions-pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f9fafb;
}
.solutions-pricing-item-name {
  color: #4b5563;
}
.solutions-pricing-item-price {
  color: var(--wechat-green);
  font-weight: 700;
}
.solutions-pricing-tip {
  margin: 2rem 0 0;
  color: #9ca3af;
  font-size: 0.75rem;
}
.solutions-maintain-section {
  padding: 6rem 1.5rem;
  background: #fff;
}
.solutions-table-wrap {
  overflow-x: auto;
}
.solutions-table {
  width: 100%;
  min-width: 760px;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  border-collapse: collapse;
  overflow: hidden;
  background: #fff;
}
.solutions-table-head {
  background: #f9fafb;
}
.solutions-table-th {
  padding: 1rem 1.5rem;
  text-align: left;
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.solutions-table-body tr + tr {
  border-top: 1px solid #f3f4f6;
}
.solutions-table-td {
  padding: 1rem 1.5rem;
  color: #4b5563;
}
.solutions-table-td-strong {
  color: #1f2937;
  font-weight: 500;
}
.solutions-table-td-price {
  color: var(--wechat-green);
  font-weight: 700;
}
.solutions-table-tip {
  margin: 2rem 0 0;
  color: #6b7280;
  text-align: center;
  font-size: 0.875rem;
}
.solutions-cta-section {
  padding: 6rem 1.5rem;
  background: var(--wechat-green);
  color: #fff;
  text-align: center;
}
.solutions-cta-inner {
  max-width: 48rem;
  margin: 0 auto;
}
.solutions-cta-title {
  margin: 0 0 2rem;
  font-size: 1.875rem;
  font-weight: 700;
}
.solutions-cta-desc {
  margin: 0 0 3rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
}
.solutions-cta-link {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  background: #fff;
  color: var(--wechat-green);
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.solutions-cta-link:hover {
  background: #f3f4f6;
}
.policy-page-wrap {
  max-width: 56rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  line-height: 1.8;
}
.policy-page-title {
  margin: 0 0 1rem;
  color: #111827;
  font-size: 2.25rem;
  font-weight: 800;
}
.policy-page-date {
  margin: 0 0 3rem;
  color: #9ca3af;
}
.policy-page-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.policy-page-section-title {
  margin: 0 0 1rem;
  color: #111827;
  font-size: 1.5rem;
  font-weight: 700;
}
.policy-page-text {
  margin: 0;
  color: #4b5563;
}
.policy-page-text-with-gap {
  margin-bottom: 1rem;
}
.policy-page-list {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #4b5563;
  list-style: disc;
}
.case-detail-header {
  padding: 6rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  background: #f9fafb;
}
.case-detail-header-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.case-detail-tags {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.case-detail-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: #dcfce7;
  color: var(--wechat-green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.case-detail-tag-alt {
  background: #dbeafe;
  color: #3b82f6;
}
.case-detail-tag-warm {
  background: #ffedd5;
  color: #f97316;
}
.case-detail-tag-purple {
  background: #f3e8ff;
  color: #a855f7;
}
.case-detail-tag-red {
  background: #fee2e2;
  color: #ef4444;
}
.case-detail-tag-yellow {
  background: #fef3c7;
  color: #d97706;
}
.case-detail-tag-teal {
  background: #ccfbf1;
  color: #0d9488;
}
.case-detail-tag-indigo {
  background: #e0e7ff;
  color: #6366f1;
}
.case-detail-title {
  margin: 0 0 1.5rem;
  color: #111827;
  font-size: 2.25rem;
  font-weight: 700;
}
.case-detail-subtitle {
  margin: 0;
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.8;
}
.case-detail-main {
  padding: 6rem 1.5rem;
}
.case-detail-inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.case-detail-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.case-detail-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  color: #111827;
  font-size: 1.875rem;
  font-weight: 700;
}
.case-detail-title-bar {
  width: 0.5rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--wechat-green);
}
.case-detail-text {
  margin: 0;
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.9;
}
.case-detail-hero-image {
  width: 100%;
  border: 1px solid #f3f4f6;
  border-radius: 2.5rem;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}
.case-detail-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.case-detail-feature-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.case-detail-feature-image {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 1.5rem;
  border: 1px solid #f3f4f6;
}
.case-detail-feature-card {
  padding: 2rem;
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  background: #f9fafb;
}
.case-detail-feature-title {
  margin: 0 0 0.75rem;
  color: #111827;
  font-size: 1.25rem;
  font-weight: 700;
}
.case-detail-feature-text {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.8;
}
.case-detail-result {
  padding: 3rem;
  border: 1px solid rgba(7, 193, 96, 0.15);
  border-radius: 2rem;
  background: rgba(7, 193, 96, 5%);
}
.case-detail-result-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
.case-detail-result-value {
  margin-bottom: 0.5rem;
  color: var(--wechat-green);
  font-size: 2.25rem;
  font-weight: 800;
}
.case-detail-result-label {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (min-width: 640px) {
  .ssl-overview-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ssl-proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ssl-urgency-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ssl-cost-compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ssl-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ssl-guarantee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ssl-scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ssl-nanny-intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ssl-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 0;
  }
  .ssl-flow-grid::before {
    display: none;
  }
  .ssl-flow-item::before {
    left: 50%;
    top: -0.75rem;
    transform: translateX(-50%);
  }
  .ssl-flow-item::after {
    display: none;
  }
  .ssl-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .submit-ticket-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .sidebar-mobile-list {
    display: none;
  }
  .ssl-page-title {
    font-size: 2.25rem;
  }
  .ssl-hero {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
  .ssl-nanny-intro {
    padding: 2rem;
  }
  .ssl-flow {
    padding: 2rem;
  }
  .ssl-flow-head {
    padding-right: 7rem;
  }
  .ssl-flow-head::after {
    width: 6.5rem;
  }
  .ssl-domain-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ssl-upload-page-wrap {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
  }
  .my-ssl-page-wrap {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
  }
  .tickets-page-wrap {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
  }
  .submit-ticket-page-wrap {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
  }
  .ticket-detail-page-wrap {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
  }
  .ticket-detail-header-top {
    flex-direction: row;
    align-items: center;
  }
  .ticket-detail-meta-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .news-page-title {
    font-size: 3rem;
  }
  .news-card {
    flex-direction: row;
  }
  .news-card-cover-wrap {
    width: 16rem;
    height: 10rem;
  }
  .news-card-title {
    font-size: 1.25rem;
  }
  .news-pagination-wrap {
    justify-content: flex-start;
  }
  .news-detail-title {
    font-size: 2.25rem;
  }
  .news-detail-nav {
    flex-direction: row;
    justify-content: space-between;
  }
  .news-detail-nav-placeholder {
    display: inline-block;
    width: 45%;
  }
  .about-page-title {
    font-size: 3rem;
  }
  .about-feature {
    flex-direction: row;
  }
  .about-feature-reverse {
    flex-direction: row-reverse;
  }
  .contact-page-title {
    font-size: 3rem;
  }
  .contact-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cases-page-title {
    font-size: 3rem;
  }
  .cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .solutions-page-title {
    font-size: 3rem;
  }
  .solutions-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .solutions-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-detail-title {
    font-size: 3rem;
  }
  .case-detail-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-detail-result-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .news-page-layout,
  .news-detail-layout {
    flex-direction: row;
    align-items: flex-start;
  }
  .news-list-col,
  .news-detail-article-col {
    width: 66.666667%;
  }
}
@media (min-width: 1024px) {
  .ssl-urgency-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ssl-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ssl-scenario-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ssl-nanny-intro-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ssl-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem 3rem;
    align-items: start;
  }
  .ssl-flow-item::before {
    left: 1rem;
    top: -0.75rem;
    transform: none;
  }
  .ssl-flow-item::after {
    display: none;
  }
  .ssl-flow-item:nth-child(odd) {
    transform: translateY(-0.375rem);
  }
  .ssl-flow-item:nth-child(even) {
    transform: translateY(1.25rem);
  }
  .ssl-flow-item:nth-child(odd)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1.5rem;
    width: 1.5rem;
    height: 2px;
    background: linear-gradient(
      to right,
      rgba(7, 193, 96, 0.2),
      rgba(7, 193, 96, 0.6)
    );
  }
  .ssl-flow-item:nth-child(even):not(:last-child)::after {
    content: "";
    position: absolute;
    left: 1.25rem;
    bottom: -1.75rem;
    width: 2px;
    height: 1.75rem;
    background: linear-gradient(
      to bottom,
      rgba(7, 193, 96, 0.45),
      rgba(7, 193, 96, 0.12)
    );
  }
  .ssl-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cases-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .solutions-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .ssl-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.qr-popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
}
.qr-wrap {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto 20px;
}
.qr-corner {
  position: absolute;
  width: 24px;
  height: 24px;
}
.qr-corner-tl {
  top: 0;
  left: 0;
  border-top: 3px solid #4361ee;
  border-left: 3px solid #4361ee;
  border-radius: 4px 0 0 0;
}
.qr-corner-tr {
  top: 0;
  right: 0;
  border-top: 3px solid #4361ee;
  border-right: 3px solid #4361ee;
  border-radius: 0 4px 0 0;
}
.qr-corner-bl {
  bottom: 0;
  left: 0;
  border-bottom: 3px solid #4361ee;
  border-left: 3px solid #4361ee;
  border-radius: 0 0 0 4px;
}
.qr-corner-br {
  bottom: 0;
  right: 0;
  border-bottom: 3px solid #4361ee;
  border-right: 3px solid #4361ee;
  border-radius: 0 0 4px 0;
}
.scan-qr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 16px;
}
.qr-expired-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 4px;
}
.qr-expired-overlay.is-visible {
  display: flex;
}
.qr-expired-text {
  color: #e6a23c;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.qr-refresh-btn {
  color: #e6a23c;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.qr-refresh-icon {
  display: inline-block;
  font-size: 16px;
}
.qr-pay-hint {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.qr-pay-desc {
  font-size: 13px;
  color: #999;
}
.qr-pay-expire {
  color: #f56c6c;
  font-weight: 600;
}
.qr-pay-icons {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.qr-pay-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 28px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 14px;
  color: #333;
  position: relative;
}
.qr-pay-icon-with-badge {
  position: relative;
}
.qr-pay-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #f56c6c;
  color: #fff;
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 6px;
}
.ssl-detail-page-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ssl-detail-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ssl-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.ssl-detail-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}
.ssl-detail-desc {
  margin: 0.25rem 0 0;
  color: #9ca3af;
  font-size: 0.875rem;
}
.ssl-detail-back-link,
.ssl-detail-link {
  color: var(--wechat-green);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}
.ssl-detail-back-link:hover,
.ssl-detail-link:hover {
  text-decoration: underline;
}
.ssl-detail-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 4%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.ssl-detail-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ssl-detail-section-divider {
  border-top: 1px solid #f3f4f6;
  padding-top: 2rem;
}
.ssl-detail-section-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}
.ssl-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.5rem;
}
.ssl-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f9fafb;
}
.ssl-detail-row-span {
  grid-column: span 1;
}
.ssl-detail-row-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f9fafb;
}
.ssl-detail-label {
  color: #6b7280;
  font-size: 0.875rem;
}
.ssl-detail-value-strong {
  font-weight: 500;
  color: #111827;
}
.ssl-detail-placeholder {
  color: #d1d5db;
}
.ssl-detail-inline-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.ssl-detail-mini-btn {
  padding: 0.25rem 0.75rem;
  border: 1px solid #bbf7d0;
  border-radius: 0.5rem;
  color: var(--wechat-green);
  background: #fff;
  font-size: 0.75rem;
  cursor: pointer;
}
.ssl-detail-mini-btn:hover {
  background: #f0fdf4;
}
.ssl-detail-days-danger {
  color: #ef4444;
  font-weight: 700;
}
.ssl-detail-days-warn {
  color: #f59e0b;
  font-weight: 500;
}
.ssl-detail-days-safe {
  color: var(--wechat-green);
}
.ssl-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.5rem;
}
.ssl-detail-action-btn {
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(7, 193, 96, 0.2);
}
.ssl-detail-tabs {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
}
.deploy-tab {
  border: 0;
  border-bottom: 2px solid transparent;
  background: 0 0;
  color: #9ca3af;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.deploy-tab:hover {
  color: #4b5563;
}
.deploy-tab.is-active {
  color: var(--wechat-green);
  border-bottom-color: var(--wechat-green);
}
.ssl-detail-tip-text {
  color: #9ca3af;
  font-size: 0.875rem;
}
.ssl-detail-link-wrap {
  margin-top: 1rem;
}
.ssl-detail-target-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ssl-detail-empty-text {
  text-align: center;
  padding: 1.5rem 0;
  color: #d1d5db;
  font-size: 0.875rem;
}
.ssl-detail-quick-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.ssl-detail-deploy-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.ssl-detail-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  display: inline-block;
}
.ssl-detail-dot-success {
  background: #22c55e;
}
.ssl-detail-dot-failed {
  background: #ef4444;
}
.ssl-detail-text-success {
  color: #16a34a;
  font-size: 0.875rem;
}
.ssl-detail-text-failed {
  color: #ef4444;
  font-size: 0.875rem;
}
.ssl-detail-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ssl-detail-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.ssl-detail-input-label {
  display: block;
  color: #4b5563;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}
.ssl-detail-required {
  color: #f87171;
}
.ssl-detail-input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: #111827;
  font-size: 0.875rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.ssl-detail-input:focus {
  outline: none;
  border-color: #4ade80;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}
.ssl-detail-verify-pre {
  margin: 0;
  padding: 1rem;
  font-size: 0.875rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  overflow-x: auto;
  white-space: pre-wrap;
  color: #374151;
}
.ssl-detail-target-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.ssl-detail-target-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: all 0.2s;
  cursor: pointer;
}
.ssl-detail-target-card:hover {
  border-color: var(--wechat-green);
  box-shadow: 0 2px 8px rgba(17, 24, 39, 6%);
}
.ssl-detail-target-head,
.ssl-detail-target-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.ssl-detail-target-head {
  margin-bottom: 0.5rem;
}
.ssl-detail-target-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #111827;
}
.ssl-detail-target-type {
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #6b7280;
}
.ssl-detail-target-code {
  font-size: 0.75rem;
  color: #9ca3af;
}
.ssl-detail-target-btn {
  padding: 0.375rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(7, 193, 96, 0.2);
}
.ssl-detail-log-wrap {
  overflow-x: auto;
}
.ssl-detail-log-table {
  width: 100%;
  min-width: 600px;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
}
.ssl-detail-log-thead {
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
}
.ssl-detail-log-th {
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
}
.ssl-detail-log-tbody {
  border-top: 1px solid #f3f4f6;
}
.ssl-detail-log-row:hover {
  background: rgba(249, 250, 251, 0.75);
}
.ssl-detail-log-td {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: #111827;
  border-top: 1px solid #f3f4f6;
}
.ssl-detail-log-td-strong {
  font-weight: 500;
}
.ssl-detail-log-td-muted {
  color: #6b7280;
}
.ssl-detail-log-td-time {
  color: #9ca3af;
}
.ssl-detail-error-text {
  display: block;
  margin-top: 0.25rem;
  color: #f87171;
  font-size: 0.75rem;
}
.ssl-detail-empty-wrap {
  padding: 3rem;
}
.error-page-wrap {
  min-height: 60vh;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-page-card {
  text-align: center;
}
.error-page-code {
  margin-bottom: 1rem;
  color: #e5e7eb;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
}
.error-page-title {
  margin: 0 0 1rem;
  color: #111827;
  font-size: 1.5rem;
  font-weight: 700;
}
.error-page-desc {
  max-width: 28rem;
  margin: 0 auto 2rem;
  color: #6b7280;
  line-height: 1.75;
}
.error-page-home-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  background: var(--wechat-green);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.error-page-home-btn:hover {
  opacity: 0.9;
}
.auth-page-body {
  min-height: 100vh;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}
.auth-page-card {
  width: 100%;
  max-width: 28rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 8%);
  overflow: hidden;
}
.auth-page-main {
  padding: 2rem;
}
.auth-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.auth-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: inherit;
  text-decoration: none;
}
.auth-brand-logo-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--wechat-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.auth-brand-logo-text {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}
.auth-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #111827;
}
.auth-page-title {
  margin: 0;
  color: #111827;
  font-size: 1.5rem;
  font-weight: 700;
}
.auth-page-subtitle {
  margin: 0.5rem 0 0;
  color: #9ca3af;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.auth-form-compact {
  gap: 1.25rem;
}
.auth-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.auth-form-label {
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.auth-input {
  width: 100%;
  min-width: 0;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  outline: none;
}
.auth-input-row {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}
.auth-code-btn {
  flex-shrink: 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(7, 193, 96, 0.2);
  border-radius: 0.75rem;
  color: var(--wechat-green);
  background: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
}
.auth-code-btn:hover {
  background: rgba(7, 193, 96, 6%);
}
.auth-code-btn.is-disabled,
.change-phone-code-btn.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.auth-submit-btn {
  width: 100%;
  margin-top: 0.25rem;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(7, 193, 96, 0.2);
}
.auth-footer-tip {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}
.auth-link {
  color: var(--wechat-green);
  font-weight: 700;
  text-decoration: none;
}
.auth-link:hover {
  text-decoration: underline;
}
.auth-check-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.auth-check-input {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  accent-color: var(--wechat-green);
}
.auth-check-label {
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1.6;
}
.login-page-body {
  min-height: 100vh;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}
.login-page-card {
  width: 100%;
  max-width: 28rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 8%);
  overflow: hidden;
}
.login-page-main {
  position: relative;
  padding: 2rem;
}
.login-page-footer {
  background: #f9fafb;
  border-top: 1px solid #f3f4f6;
  padding: 1rem 2rem;
  text-align: center;
}
.login-footer-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}
.login-footer-back:hover {
  color: #4b5563;
}
.login-footer-back-icon {
  width: 0.75rem;
  height: 0.75rem;
}
.login-corner-toggle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  cursor: pointer;
}
.login-corner-box {
  position: relative;
  width: 76px;
  height: 76px;
}
.login-corner-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.login-corner-bg {
  position: absolute;
  inset: 0;
  transition: all 0.3s;
}
.login-corner-bg-to-qr {
  background-image: linear-gradient(to bottom right, #cbd5e1, #94a3b8);
}
.login-corner-bg-to-form {
  background-image: linear-gradient(to bottom right, #34d399, #07c160);
}
.login-corner-group:hover .login-corner-bg-to-qr {
  background-image: linear-gradient(to bottom right, #34d399, #07c160);
}
.login-corner-group:hover .login-corner-bg-to-form {
  background-image: linear-gradient(to bottom right, #cbd5e1, #94a3b8);
}
.login-corner-icon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 1.75rem;
  height: 1.75rem;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}
.login-corner-tooltip-wrap {
  position: absolute;
  right: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s;
}
.login-corner-group:hover .login-corner-tooltip-wrap {
  opacity: 1;
}
.login-corner-tooltip-content {
  position: relative;
  background: #374151;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  white-space: nowrap;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.login-corner-tooltip-arrow {
  position: absolute;
  top: -0.25rem;
  right: 0.75rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #374151;
  transform: rotate(45deg);
}
.login-wx-card,
.login-qr-view {
  text-align: center;
  padding: 1rem 0;
}
.login-wx-avatar-wrap {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: var(--wechat-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.login-wx-avatar-icon {
  width: 2.5rem;
  height: 2.5rem;
}
.login-wx-name {
  margin-bottom: 0.5rem;
  color: #1f2937;
  font-size: 1.125rem;
  font-weight: 700;
}
.login-wx-desc {
  margin-bottom: 2rem;
  color: #9ca3af;
  font-size: 0.875rem;
}
.login-qr-title {
  margin: 0 0 0.5rem;
  color: #1f2937;
  font-size: 1.25rem;
  font-weight: 700;
}
.login-qr-desc {
  margin: 0 0 1rem;
  color: #9ca3af;
  font-size: 0.875rem;
}
.login-qr-container {
  position: relative;
  min-height: 220px;
}
.login-qr-mount {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-qr-mount iframe {
  width: 220px !important;
  height: 220px !important;
}
.login-qr-loading-mask {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index: 20;
}
.login-qr-loading-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.login-qr-loading-card {
  width: 12rem;
  height: 12rem;
  border-radius: 0.75rem;
  border: 2px dashed #e5e7eb;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.login-qr-loading-icon {
  width: 3rem;
  height: 3rem;
  color: #d1d5db;
  margin-bottom: 0.5rem;
}
.login-qr-loading-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
}
.login-spin {
  animation: spin 1s linear infinite;
}
.login-qr-loading-spinner {
  width: 1rem;
  height: 1rem;
}
.login-qr-spinner-track {
  opacity: 0.25;
}
.login-qr-spinner-head {
  opacity: 0.75;
}
.login-qr-expired-mask {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}
.login-qr-expired-content {
  text-align: center;
}
.login-qr-expired-text {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.login-qr-refresh-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border: 0;
  border-radius: 0.5rem;
  background: var(--wechat-green);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.login-qr-refresh-btn:hover {
  background: #06ae56;
}
.login-qr-refresh-icon {
  width: 1rem;
  height: 1rem;
}
.login-qr-error-wrap {
  text-align: center;
  padding: 2rem 0;
}
.login-qr-error-text {
  margin: 0 0 1rem;
  color: #f87171;
  font-size: 0.875rem;
}
.login-brand-wrap {
  text-align: center;
  margin-bottom: 1.5rem;
}
.login-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
  color: inherit;
}
.login-brand-logo-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--wechat-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.login-brand-logo-text {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}
.login-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #111827;
}
.login-tabs {
  display: flex;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 2rem;
}
.tab-btn {
  flex: 1;
  border: 0;
  border-bottom: 2px solid transparent;
  background: 0 0;
  color: #9ca3af;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn.active,
.tab-btn.is-active {
  color: var(--wechat-green);
  border-bottom-color: var(--wechat-green);
}
.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.login-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.login-form-label {
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.login-form-inline,
.login-captcha-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.login-input {
  width: 100%;
  min-width: 0;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  outline: none;
}
.login-code-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1rem;
  white-space: nowrap;
  border: 1px solid rgba(7, 193, 96, 0.2);
  border-radius: 0.75rem;
  color: var(--wechat-green);
  background: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.login-code-btn:hover {
  background: rgba(7, 193, 96, 6%);
}
.login-code-btn.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.login-form-head-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login-captcha-img {
  height: 3rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  cursor: pointer;
}
.login-submit-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
  text-decoration: none;
}
.login-signup-tip {
  margin-top: 2rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
}
.login-link-btn {
  color: var(--wechat-green);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}
.login-link-btn:hover {
  text-decoration: underline;
}
.login-social {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #f9fafb;
}
.login-social-title {
  margin-bottom: 1.5rem;
  text-align: center;
  color: #d1d5db;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.login-social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.login-social-item {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid #f3f4f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.login-social-item-qq:hover {
  background: #eff6ff;
  border-color: #dbeafe;
}
.login-social-item-wechat:hover {
  background: #f0fdf4;
  border-color: #dcfce7;
}
.login-social-icon {
  width: 1.75rem;
  height: 1.75rem;
}
.login-social-path-qq,
.login-social-path-wechat {
  transition: fill 0.2s;
}
.login-social-item-qq:hover .login-social-path-qq {
  fill: #12b7f5;
}
.login-social-item-wechat:hover .login-social-path-wechat {
  fill: #07c160;
}
.oauth-complete-user-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 1rem;
  background: #f9fafb;
}
.oauth-complete-avatar-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f3f4f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.oauth-complete-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.oauth-complete-avatar-icon {
  width: 2rem;
  height: 2rem;
  color: #d1d5db;
}
.oauth-complete-user-meta {
  min-width: 0;
}
.oauth-complete-user-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.oauth-complete-user-desc {
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: #9ca3af;
}
.oauth-complete-platform {
  margin-left: auto;
  flex-shrink: 0;
}
.oauth-complete-platform-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.oauth-complete-platform-icon-qq {
  background: #eff6ff;
}
.oauth-complete-platform-icon-wechat {
  background: #f0fdf4;
}
.oauth-complete-platform-icon-default {
  background: #eff6ff;
}
.oauth-complete-platform-svg {
  width: 1.25rem;
  height: 1.25rem;
}
.oauth-complete-platform-svg-default {
  color: #3b82f6;
}
.change-phone-page-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.change-phone-main {
  flex: 1;
}
.change-phone-head {
  margin-bottom: 2rem;
}
.change-phone-title {
  margin: 0;
  color: #111827;
  font-size: 1.5rem;
  font-weight: 700;
}
.change-phone-desc {
  margin-top: 0.25rem;
  color: #9ca3af;
  font-size: 0.875rem;
}
.change-phone-desc-strong {
  color: #4b5563;
  font-weight: 500;
}
.change-phone-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 4%);
  padding: 2rem;
}
.change-phone-form {
  max-width: 32rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.change-phone-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.change-phone-label {
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.change-phone-input-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.change-phone-input {
  width: 100%;
  min-width: 0;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  transition: all 0.2s;
}
.change-phone-input:focus {
  background: #fff;
  border-color: #d1d5db;
}
.change-phone-code-btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 1rem 1.5rem;
  border: 0;
  border-radius: 1rem;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
}
.change-phone-code-btn:hover {
  background: #e5e7eb;
}
.change-phone-actions {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.change-phone-submit-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(7, 193, 96, 0.2);
  order: 1;
}
.change-phone-back-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  order: 2;
  border-radius: 1rem;
  padding: 1rem;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s;
}
.change-phone-back-btn:hover {
  background: #e5e7eb;
}
.account-bind-page-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.account-bind-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.account-bind-head {
  margin-bottom: 0.5rem;
}
.account-bind-title {
  margin: 0;
  color: #111827;
  font-size: 1.5rem;
  font-weight: 700;
}
.account-bind-desc {
  margin-top: 0.25rem;
  color: #9ca3af;
  font-size: 0.875rem;
}
.account-bind-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.account-bind-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.account-bind-icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.account-bind-icon-wechat {
  background: #f0fdf4;
}
.account-bind-icon-qq {
  background: #eff6ff;
}
.account-bind-icon-phone {
  background: #faf5ff;
}
.account-bind-icon-email {
  background: #f0f9ff;
}
.account-bind-icon-svg {
  width: 1.5rem;
  height: 1.5rem;
}
.account-bind-icon-phone-color {
  color: #a855f7;
}
.account-bind-icon-email-color {
  color: #0ea5e9;
}
.account-bind-name {
  font-weight: 700;
  color: #111827;
}
.account-bind-status-text {
  margin-top: 0.125rem;
  color: #9ca3af;
  font-size: 0.75rem;
}
.account-bind-status-wechat {
  color: var(--wechat-green);
  font-weight: 500;
}
.account-bind-status-qq {
  color: #3b82f6;
  font-weight: 500;
}
.account-bind-status-email {
  color: #0ea5e9;
  font-weight: 500;
}
.account-bind-status-unbound {
  color: #f97316;
  font-weight: 500;
}
.account-bind-tip {
  margin-top: 0.125rem;
  color: #d1d5db;
  font-size: 0.75rem;
}
.account-bind-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  border: 0;
  cursor: pointer;
}
.account-bind-btn-muted {
  background: #f3f4f6;
  color: #6b7280;
}
.account-bind-btn-muted:hover {
  background: #e5e7eb;
}
.account-bind-btn-wechat {
  box-shadow: 0 8px 20px rgba(7, 193, 96, 0.1);
}
.account-bind-btn-qq {
  background: #3b82f6;
  color: #fff;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
}
.account-bind-btn-qq:hover {
  background: #2563eb;
}
.account-bind-btn-email {
  background: #0ea5e9;
  color: #fff;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.1);
}
.account-bind-btn-email:hover {
  background: #0284c7;
}
.bind-email-page-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bind-email-main {
  flex: 1;
}
.bind-email-head {
  margin-bottom: 2rem;
}
.bind-email-title {
  margin: 0;
  color: #111827;
  font-size: 1.5rem;
  font-weight: 700;
}
.bind-email-desc {
  margin-top: 0.25rem;
  color: #9ca3af;
  font-size: 0.875rem;
}
.bind-email-desc-strong {
  color: #4b5563;
  font-weight: 500;
}
.bind-email-tip {
  margin-top: 0.25rem;
  color: #d1d5db;
  font-size: 0.75rem;
}
.bind-email-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 4%);
  padding: 2rem;
}
.bind-email-form {
  max-width: 32rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.bind-email-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bind-email-label {
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bind-email-input-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.bind-email-input {
  width: 100%;
  min-width: 0;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  transition: all 0.2s;
}
.bind-email-input:focus {
  background: #fff;
  border-color: #d1d5db;
}
.bind-email-code-btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 1rem 1.5rem;
  border: 0;
  border-radius: 1rem;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
}
.bind-email-code-btn:hover {
  background: #e5e7eb;
}
.bind-email-code-btn.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.bind-email-actions {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bind-email-submit-btn {
  width: 100%;
  order: 1;
  border: 0;
  border-radius: 1rem;
  padding: 1rem;
  background: #0ea5e9;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
  cursor: pointer;
  transition: background-color 0.2s;
}
.bind-email-submit-btn:hover {
  background: #0284c7;
}
.bind-email-back-btn {
  width: 100%;
  order: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  padding: 1rem;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s;
}
.bind-email-back-btn:hover {
  background: #e5e7eb;
}
.profile-page-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.profile-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.profile-head-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 4%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.profile-user-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.profile-avatar-wrap {
  width: 5rem;
  height: 5rem;
  border-radius: 1.5rem;
  background: #f0fdf4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.profile-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-avatar-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--wechat-green);
}
.profile-user-name {
  margin: 0 0 0.25rem;
  color: #111827;
  font-size: 1.5rem;
  font-weight: 700;
}
.profile-user-meta {
  margin: 0;
  color: #9ca3af;
  font-size: 0.875rem;
}
.profile-head-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.profile-balance-box {
  text-align: right;
}
.profile-balance-label {
  margin-bottom: 0.25rem;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.profile-balance-value {
  color: var(--wechat-green);
  font-size: 1.5rem;
  font-weight: 700;
}
.profile-balance-divider {
  width: 1px;
  height: 2.5rem;
  background: #e5e7eb;
}
.profile-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.profile-action-btn-primary {
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.2);
}
.profile-action-btn-muted {
  background: #f3f4f6;
  color: #374151;
}
.profile-action-btn-muted:hover {
  background: #e5e7eb;
}
.profile-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.profile-stat-card {
  display: block;
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 4%);
  text-decoration: none;
  transition: all 0.2s;
}
.profile-stat-card-processing:hover {
  border-color: #bfdbfe;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.12);
}
.profile-stat-card-pending:hover {
  border-color: #fed7aa;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.12);
}
.profile-stat-card-completed:hover {
  border-color: #bbf7d0;
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.12);
}
.profile-stat-label {
  margin-bottom: 0.5rem;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.profile-stat-value {
  color: #111827;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1;
}
.profile-stat-value-pending {
  color: #f97316;
}
.profile-stat-value-completed {
  color: var(--wechat-green);
}
.profile-activity-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 4%);
  padding: 2rem;
}
.profile-activity-title {
  margin: 0 0 1.5rem;
  color: #111827;
  font-size: 1.125rem;
  font-weight: 700;
}
.profile-activity-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.profile-activity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 -1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background-color 0.2s;
}
.profile-activity-item:hover {
  background: #f9fafb;
}
.profile-activity-icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.profile-activity-icon-tech {
  background: #eff6ff;
}
.profile-activity-icon-code {
  background: #faf5ff;
}
.profile-activity-icon-biz {
  background: #fff7ed;
}
.profile-activity-icon-default {
  background: #f3f4f6;
}
.profile-activity-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.profile-activity-icon-tech-color {
  color: #3b82f6;
}
.profile-activity-icon-code-color {
  color: #a855f7;
}
.profile-activity-icon-biz-color {
  color: #f97316;
}
.profile-activity-icon-default-color {
  color: #6b7280;
}
.profile-activity-content {
  flex: 1;
  min-width: 0;
}
.profile-activity-text {
  color: #111827;
  font-size: 0.875rem;
  font-weight: 700;
}
.profile-activity-text-muted {
  color: #6b7280;
  font-weight: 400;
}
.profile-activity-meta {
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.75rem;
}
.profile-activity-empty {
  text-align: center;
  color: #9ca3af;
  padding: 2rem 0;
}
.profile-activity-empty-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.75rem;
  color: #e5e7eb;
}
.profile-activity-empty-text {
  margin: 0;
  font-size: 0.875rem;
}
.profile-edit-page-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.profile-edit-main {
  flex: 1;
}
.profile-edit-head {
  margin-bottom: 2rem;
}
.profile-edit-title {
  margin: 0;
  color: #111827;
  font-size: 1.5rem;
  font-weight: 700;
}
.profile-edit-desc {
  margin-top: 0.25rem;
  color: #9ca3af;
  font-size: 0.875rem;
}
.profile-edit-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 4%);
  padding: 2rem;
}
.profile-edit-form {
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.profile-edit-avatar-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 0.5rem;
}
.profile-edit-avatar-wrap {
  position: relative;
}
.profile-edit-avatar-box {
  width: 6rem;
  height: 6rem;
  border-radius: 2rem;
  overflow: hidden;
  background: #f3f4f6;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(17, 24, 39, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.profile-edit-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-edit-avatar-mask {
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}
.profile-edit-avatar-group:hover .profile-edit-avatar-mask {
  opacity: 1;
}
.profile-edit-avatar-mask-icon {
  width: 2rem;
  height: 2rem;
}
.profile-edit-avatar-title {
  margin-bottom: 0.25rem;
  color: #111827;
  font-size: 1.125rem;
  font-weight: 700;
}
.profile-edit-avatar-tip {
  color: #9ca3af;
  font-size: 0.875rem;
}
.profile-edit-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.profile-edit-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.profile-edit-label {
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.profile-edit-input {
  width: 100%;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  transition: all 0.2s;
}
.profile-edit-input:focus {
  background: #fff;
  border-color: #d1d5db;
}
.profile-edit-security {
  border-top: 1px solid #f3f4f6;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.profile-edit-security-title {
  color: #111827;
  font-size: 1.125rem;
  font-weight: 700;
}
.profile-edit-no-password {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
}
.profile-edit-no-password-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #f59e0b;
  flex-shrink: 0;
}
.profile-edit-no-password-text {
  color: #b45309;
  font-size: 0.875rem;
}
.profile-edit-password-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.profile-edit-actions {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.profile-edit-submit-btn {
  width: 100%;
  order: 1;
  border-radius: 1rem;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.2);
}
.profile-edit-back-btn {
  width: 100%;
  order: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  padding: 1rem;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s;
}
.profile-edit-back-btn:hover {
  background: #e5e7eb;
}
.home-container {
  max-width: 80rem;
  margin: 0 auto;
}
.home-section {
  padding: 6rem 1.5rem;
}
.home-section-white {
  background: #fff;
}
.home-section-gray {
  background: #f9fafb;
}
.home-section-head {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.home-section-head-main {
  max-width: 42rem;
}
.home-section-center-head {
  margin-bottom: 4rem;
  text-align: center;
}
.home-section-title {
  margin: 0 0 1rem;
  color: #111827;
  font-size: 1.875rem;
  font-weight: 700;
}
.home-section-desc {
  margin: 0;
  color: #6b7280;
}
.home-head-link {
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--wechat-green);
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s;
}
.home-head-link:hover {
  gap: 0.75rem;
}
.home-head-link-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.home-hero {
  padding: 6rem 1.5rem 8rem;
  background: linear-gradient(180deg, rgba(7, 193, 96, 5%) 0%, #fff 100%);
}
.home-hero-inner {
  text-align: center;
}
.home-hero-badge {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  background: #f0fdf4;
  color: var(--wechat-green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-hero-title {
  margin: 0 0 2rem;
  color: #111827;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.home-hero-title-accent {
  color: var(--wechat-green);
}
.home-hero-desc {
  max-width: 42rem;
  margin: 0 auto 3rem;
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.8;
}
.home-hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.home-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
}
.home-hero-btn-primary {
  color: #fff;
}
.home-hero-btn-muted {
  background: #f3f4f6;
  color: #374151;
  transition: background-color 0.2s;
}
.home-hero-btn-muted:hover {
  background: #e5e7eb;
}
.home-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.home-service-card {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #f3f4f6;
  background: #f9fafb;
  transition: all 0.2s;
}
.home-service-card:hover {
  border-color: rgba(7, 193, 96, 0.3);
}
.home-service-icon-wrap {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 5%);
  transition: transform 0.2s;
}
.home-service-card-group:hover .home-service-icon-wrap {
  transform: scale(1.1);
}
.home-service-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.home-service-icon-wechat {
  color: var(--wechat-green);
}
.home-service-title {
  margin: 0 0 0.75rem;
  color: #111827;
  font-size: 1.25rem;
  font-weight: 700;
}
.home-service-desc {
  margin: 0 0 1.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.8;
}
.home-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--wechat-green);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s;
}
.home-service-link:hover {
  gap: 0.5rem;
}
.home-service-link-icon {
  width: 1rem;
  height: 1rem;
}
.home-source-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.home-source-icon-wrap {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.home-source-icon-wrap-green {
  background: #f0fdf4;
}
.home-source-icon-wrap-blue {
  background: #eff6ff;
}
.home-source-icon-wrap-orange {
  background: #fff7ed;
}
.home-source-icon-wrap-indigo {
  background: #eef2ff;
}
.home-source-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.home-source-icon-wechat {
  color: var(--wechat-green);
}
.home-source-icon-blue {
  color: #3b82f6;
}
.home-source-icon-orange {
  color: #f97316;
}
.home-source-icon-indigo {
  color: #6366f1;
}
.home-source-title {
  margin: 0 0 1rem;
  color: #111827;
  font-size: 1.25rem;
  font-weight: 700;
}
.home-source-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  color: #6b7280;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.home-source-link {
  color: var(--wechat-green);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}
.home-source-link:hover {
  text-decoration: underline;
}
.home-case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.home-case-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.home-case-card-group:hover .home-case-image {
  transform: scale(1.1);
}
.home-case-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.home-case-title {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}
.home-case-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}
.home-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.home-news-feature {
  position: relative;
  min-height: 400px;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  background: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
.home-news-feature:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.25rem);
}
.home-news-feature-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.home-news-feature-group:hover .home-news-feature-image {
  transform: scale(1.05);
}
.home-news-feature-fallback {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom right, #374151, #111827);
}
.home-news-feature-overlay {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.3),
    transparent
  );
}
.home-news-feature-tag {
  display: inline-block;
  width: fit-content;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--wechat-green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}
.home-news-feature-title {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
}
.home-news-feature-summary {
  margin: 0 0 1rem;
  color: #e5e7eb;
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.home-news-feature-time {
  color: #d1d5db;
  font-size: 0.75rem;
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    liberation mono,
    courier new,
    monospace;
}
.home-news-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.home-news-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  background: #fff;
  padding: 1.5rem;
  transition: all 0.3s;
}
.home-news-item:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.25rem);
}
.home-news-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 0.5rem;
}
.home-news-item-cate {
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  background: #f0fdf4;
  color: var(--wechat-green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.home-news-item-time {
  color: #9ca3af;
  font-size: 0.75rem;
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    liberation mono,
    courier new,
    monospace;
}
.home-news-item-title {
  margin: 0 0 0.75rem;
  color: #111827;
  font-size: 1.125rem;
  font-weight: 700;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.home-news-item-group:hover .home-news-item-title {
  color: var(--wechat-green);
}
.home-news-item-summary {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.my-domain-services-page-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.my-domain-services-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.my-domain-services-head {
  margin-bottom: 0;
}
.my-domain-services-title {
  margin: 0;
  color: #111827;
  font-size: 1.5rem;
  font-weight: 700;
}
.my-domain-services-desc {
  margin-top: 0.25rem;
  color: #9ca3af;
  font-size: 0.875rem;
}
.my-domain-services-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 4%);
  overflow: hidden;
}
.my-domain-services-empty {
  padding: 4rem 2rem;
  text-align: center;
}
.my-domain-services-empty-text {
  margin: 0;
  color: #9ca3af;
  font-size: 0.875rem;
}
.my-domain-services-empty-subtext {
  margin: 0.5rem 0 0;
  color: #d1d5db;
  font-size: 0.75rem;
}
.deploy-targets-page-wrap,
.dns-credential-page-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.deploy-targets-main,
.dns-credential-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.deploy-targets-head,
.dns-credential-head {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.deploy-targets-title,
.dns-credential-title {
  margin: 0;
  color: #111827;
  font-size: 1.5rem;
  font-weight: 700;
}
.deploy-targets-desc,
.dns-credential-desc {
  margin-top: 0.25rem;
  color: #9ca3af;
  font-size: 0.875rem;
}
.deploy-targets-add-btn,
.dns-credential-add-btn {
  padding: 0.625rem 1.25rem;
  border: 0;
  border-radius: 0.75rem;
  background: var(--wechat-green);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}
.deploy-targets-add-btn:hover,
.dns-credential-add-btn:hover {
  opacity: 0.9;
}
.deploy-targets-card,
.dns-credential-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 4%);
  overflow: hidden;
}
.deploy-targets-table-wrap,
.dns-credential-table-wrap {
  overflow-x: auto;
}
.deploy-targets-table,
.dns-credential-table {
  width: 100%;
  min-width: 700px;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
}
.dns-credential-table {
  min-width: 600px;
}
.deploy-targets-thead,
.dns-credential-thead {
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
}
.deploy-targets-th,
.dns-credential-th {
  padding: 1rem 2rem;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.deploy-targets-tbody tr + tr td,
.dns-credential-tbody tr + tr td {
  border-top: 1px solid #f3f4f6;
}
.deploy-targets-row,
.dns-credential-row {
  transition: background-color 0.2s;
}
.deploy-targets-row:hover,
.dns-credential-row:hover {
  background: rgba(249, 250, 251, 0.7);
}
.deploy-targets-td,
.dns-credential-td {
  padding: 1.5rem 2rem;
  color: #111827;
  font-size: 0.875rem;
}
.deploy-targets-td-name,
.dns-credential-td-name {
  font-weight: 500;
}
.deploy-targets-td-mono,
.dns-credential-td-mono {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    liberation mono,
    courier new,
    monospace;
}
.deploy-targets-td-time,
.dns-credential-td-time {
  color: #6b7280;
}
.deploy-targets-op-btn,
.dns-credential-op-btn {
  border: 0;
  background: 0 0;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 2rem;
  padding: 0 0.25rem;
}
.deploy-targets-op-btn-edit,
.dns-credential-op-btn-edit {
  color: var(--wechat-green);
  margin-right: 0.75rem;
}
.deploy-targets-op-btn-delete,
.dns-credential-op-btn-delete {
  color: #ef4444;
}
.deploy-targets-op-btn:hover,
.dns-credential-op-btn:hover {
  text-decoration: underline;
}
.deploy-targets-empty,
.dns-credential-empty {
  padding: 3rem 2rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}
.target-modal .swal2-html-container {
  overflow: visible !important;
  padding: 0 1.5rem 0.5rem !important;
  max-height: 60vh !important;
  overflow-y: auto !important;
}
.target-modal .swal2-title,
.dns-modal .swal2-title {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  padding: 1.25rem 1.5rem 0.75rem !important;
}
.target-modal .swal2-actions,
.dns-modal .swal2-actions {
  padding: 0.75rem 1.5rem 1.25rem !important;
}
.target-modal .swal2-confirm,
.target-modal .swal2-cancel,
.dns-modal .swal2-confirm,
.dns-modal .swal2-cancel {
  border-radius: 0.5rem !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.5rem !important;
}
.dns-modal .swal2-html-container {
  overflow: visible !important;
  padding: 0 1.5rem 0.5rem !important;
}
.deploy-targets-modal-body,
.dns-credential-modal-body {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.deploy-targets-modal-field-wrap {
  margin-bottom: 0.625rem;
}
.target-field,
.dns-field {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #111827;
  background: #fff;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  box-sizing: border-box;
}
.target-field:focus,
.dns-field:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.target-field::placeholder,
.dns-field::placeholder {
  color: #9ca3af;
}
select.target-field,
select.dns-field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
  background-size: 1.25rem;
  padding-right: 2.25rem;
}
textarea.target-field {
  resize: vertical;
  min-height: 4.5rem;
  font-family:
    Menlo,
    Monaco,
    Consolas,
    courier new,
    monospace;
  font-size: 0.8125rem;
}
textarea.dns-field {
  resize: vertical;
  min-height: 5rem;
  font-family:
    Menlo,
    Monaco,
    Consolas,
    courier new,
    monospace;
  font-size: 0.8125rem;
}
.target-label,
.dns-label {
  display: block;
  margin-bottom: 0.25rem;
  color: #374151;
  font-size: 0.8125rem;
  font-weight: 600;
}
.config-help {
  display: block;
  margin-top: 0.2rem;
  color: #9ca3af;
  font-size: 0.75rem;
  line-height: 1.3;
}
.config-section-title {
  margin-bottom: 0.125rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pwd-wrap {
  position: relative;
}
.pwd-wrap .target-field {
  padding-right: 2.5rem;
}
.pwd-toggle {
  position: absolute;
  right: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  background: 0 0;
  border: 0;
  cursor: pointer;
  color: #9ca3af;
  padding: 0.125rem;
  font-size: 0.8125rem;
  line-height: 1;
}
.pwd-toggle:hover {
  color: #6b7280;
}
.target-label .optional-tag {
  margin-left: 0.25rem;
  color: #9ca3af;
  font-weight: 400;
}
@media (max-width: 640px) {
  .auth-input-row,
  .login-form-inline,
  .login-captcha-row,
  .bind-email-input-row,
  .change-phone-input-row {
    flex-direction: column;
    align-items: stretch;
  }
  .auth-code-btn,
  .login-code-btn,
  .bind-email-code-btn,
  .change-phone-code-btn {
    width: 100%;
    min-height: 2.75rem;
    justify-content: center;
  }
  .login-captcha-img {
    width: 100%;
    height: 2.75rem;
    object-fit: cover;
  }
  .submit-ticket-actions,
  .ticket-detail-reply-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .submit-ticket-submit-btn,
  .submit-ticket-cancel-btn,
  .ticket-detail-reply-submit-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .mobile-drawer {
    width: 92vw;
    max-width: none;
  }
  .mobile-drawer-header,
  .mobile-drawer-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .mobile-nav-item {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .swal2-popup.target-modal,
  .swal2-popup.dns-modal {
    width: calc(100vw - 1rem) !important;
    margin: 0.5rem !important;
  }
  .target-modal .swal2-title,
  .dns-modal .swal2-title {
    font-size: 1.0625rem !important;
    padding: 1rem 1rem 0.625rem !important;
  }
  .target-modal .swal2-html-container,
  .dns-modal .swal2-html-container {
    padding: 0 1rem 0.25rem !important;
    max-height: 55vh !important;
  }
  .target-modal .swal2-actions,
  .dns-modal .swal2-actions {
    padding: 0.625rem 1rem 1rem !important;
    gap: 0.5rem !important;
    flex-direction: column-reverse !important;
  }
  .target-modal .swal2-confirm,
  .target-modal .swal2-cancel,
  .dns-modal .swal2-confirm,
  .dns-modal .swal2-cancel {
    width: 100% !important;
    margin: 0 !important;
  }
  .deploy-targets-modal-body,
  .dns-credential-modal-body {
    gap: 0.75rem;
  }
  .invoice-modal-body-orders {
    max-height: 52vh;
  }
}
@media (max-width: 375px) {
  .site-nav-inner,
  .user-top-nav-inner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .site-nav-inner .site-brand,
  .user-top-nav-inner .site-brand {
    min-width: 0;
    flex: 1;
    margin-right: 0.5rem;
  }
  .site-brand-text,
  .site-brand-text-mobile {
    min-width: 0;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .user-top-profile-wrap {
    gap: 0.5rem;
    padding-right: 0.5rem;
    margin-right: 0.25rem;
  }
  .site-footer {
    padding: 3.5rem 1rem 2rem;
  }
  .site-footer-grid {
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  .site-footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.375rem 0.75rem;
    line-height: 1.6;
  }
  .site-footer-legal-gap {
    margin-left: 0;
  }
  .site-footer-legal a,
  .site-footer-legal span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .site-footer-legal-icon {
    display: inline-block;
    vertical-align: text-bottom;
  }
  .home-hero {
    padding: 4.5rem 1rem 5.5rem;
  }
  .home-hero-badge {
    margin-bottom: 1.25rem;
  }
  .home-hero-title {
    margin-bottom: 1.25rem;
    font-size: 2rem;
    line-height: 1.25;
  }
  .home-hero-desc {
    margin-bottom: 2rem;
    font-size: 0.9375rem;
    line-height: 1.7;
  }
  .home-hero-actions {
    gap: 0.75rem;
  }
  .home-hero-btn {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  .home-section {
    padding: 4rem 1rem;
  }
  .home-section-head,
  .home-section-center-head {
    margin-bottom: 2.25rem;
  }
  .home-section-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .login-page-body {
    padding: 1rem;
  }
  .login-page-card {
    border-radius: 1rem;
  }
  .login-page-main {
    padding: 1.25rem 1rem;
  }
  .login-page-footer {
    padding: 0.875rem 1rem;
  }
  .login-brand-wrap {
    margin-bottom: 1rem;
  }
  .login-brand-link {
    margin-bottom: 1rem;
  }
  .login-brand-name {
    font-size: 1.25rem;
  }
  .login-tabs {
    margin-bottom: 1.25rem;
  }
  .login-form {
    gap: 1rem;
  }
  .login-submit-btn {
    min-height: 2.75rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  .login-social {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
  .login-social-list {
    gap: 1rem;
  }
  .login-social-item {
    width: 2.75rem;
    height: 2.75rem;
  }
  .news-page-header,
  .cases-page-header,
  .solutions-page-header {
    padding: 3.25rem 1rem 2.25rem;
  }
  .news-page-main,
  .cases-page-section,
  .solutions-process-section,
  .solutions-pricing-section,
  .solutions-maintain-section,
  .solutions-cta-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .news-page-main,
  .solutions-process-section,
  .solutions-pricing-section,
  .solutions-maintain-section,
  .solutions-cta-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .cases-page-section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
  .news-page-title,
  .cases-page-title,
  .solutions-page-title,
  .solutions-section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .news-page-subtitle,
  .cases-page-subtitle,
  .solutions-page-subtitle {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
  .news-list-wrap,
  .cases-grid,
  .solutions-process-grid,
  .solutions-pricing-grid {
    gap: 1.25rem;
  }
  .news-card,
  .solutions-process-card,
  .solutions-pricing-card {
    padding: 1rem;
  }
  .news-card-cover-wrap {
    height: 10rem;
  }
  .news-card-meta {
    flex-wrap: wrap;
    row-gap: 0.375rem;
  }
  .news-card-title,
  .case-card-title,
  .solutions-process-title {
    font-size: 1rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .news-card-summary,
  .case-card-desc,
  .solutions-process-desc {
    font-size: 0.8125rem;
    line-height: 1.65;
  }
  .news-card-foot {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .news-card-readmore,
  .cases-cta-link,
  .solutions-cta-link {
    min-height: 2.75rem;
    width: 100%;
    justify-content: center;
  }
  .case-card-tags {
    flex-wrap: wrap;
  }
  .cases-cta-section {
    padding: 3.5rem 1rem;
  }
  .cases-cta-title,
  .solutions-cta-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  .cases-cta-desc,
  .solutions-cta-desc {
    margin-bottom: 1.75rem;
    font-size: 0.9375rem;
    line-height: 1.7;
  }
  .solutions-table-tip,
  .news-empty-text {
    font-size: 0.8125rem;
  }
  .news-detail-main,
  .case-detail-main,
  .policy-page-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .news-detail-main,
  .case-detail-main,
  .policy-page-wrap {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .news-detail-layout,
  .case-detail-inner,
  .policy-page-sections {
    gap: 2rem;
  }
  .news-detail-breadcrumb {
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
  }
  .news-detail-breadcrumb-current {
    max-width: 120px;
  }
  .news-detail-article {
    padding: 1rem;
    border-radius: 1rem;
  }
  .news-detail-article-header {
    margin-bottom: 1.5rem;
  }
  .news-detail-title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .news-detail-meta {
    gap: 0.75rem;
    font-size: 0.8125rem;
  }
  .news-detail-nav {
    margin-top: 2rem;
    padding: 0;
    gap: 0.75rem;
  }
  .news-detail-nav-link {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.5rem 0.625rem;
    border-radius: 0.75rem;
    background: #f9fafb;
  }
  .news-detail-nav-link-next {
    margin-left: 0;
  }
  .case-detail-header {
    padding: 3.5rem 1rem 2.5rem;
  }
  .case-detail-tags {
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    gap: 0.5rem;
  }
  .case-detail-title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.35;
  }
  .case-detail-subtitle {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
  .case-detail-section-title {
    font-size: 1.25rem;
    gap: 0.5rem;
  }
  .case-detail-title-bar {
    height: 1.5rem;
  }
  .case-detail-text {
    font-size: 0.9375rem;
    line-height: 1.75;
  }
  .case-detail-feature-card,
  .case-detail-result {
    padding: 1rem;
    border-radius: 1rem;
  }
  .case-detail-feature-image {
    min-height: 180px;
    border-radius: 1rem;
  }
  .case-detail-result-value {
    font-size: 1.75rem;
  }
  .policy-page-title {
    font-size: 1.5rem;
  }
  .policy-page-date {
    margin-bottom: 1.5rem;
    font-size: 0.8125rem;
  }
  .policy-page-section-title {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
  }
  .policy-page-text,
  .policy-page-list,
  .news-detail-content .prose p,
  .news-detail-content .prose li {
    font-size: 0.875rem;
    line-height: 1.75;
  }
  .news-detail-content .prose h2 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .news-detail-content .prose h3 {
    font-size: 1.125rem;
    margin-top: 1.25rem;
    margin-bottom: 0.625rem;
  }
  .balance-page-wrap,
  .profile-page-wrap,
  .profile-edit-page-wrap {
    padding: 0.875rem;
  }
  .balance-main,
  .profile-main {
    gap: 1.25rem;
  }
  .balance-page-title,
  .profile-user-name,
  .profile-edit-title {
    font-size: 1.375rem;
  }
  .balance-card,
  .balance-log-card,
  .profile-head-card,
  .profile-activity-card,
  .profile-edit-card {
    border-radius: 1rem;
  }
  .balance-card,
  .profile-head-card,
  .profile-activity-card,
  .profile-edit-card {
    padding: 1rem;
  }
  .balance-card-head {
    margin-bottom: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .balance-info {
    text-align: left;
  }
  .balance-amounts {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .amount-btn {
    min-height: 2.5rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
  }
  .custom-amount-wrap {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .custom-amount-input {
    width: 100%;
  }
  .balance-pay-actions {
    gap: 0.5rem;
  }
  .recharge-pay-btn {
    width: 100%;
    max-width: 10rem;
  }
  .balance-log-footer {
    padding: 0.875rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }
  .balance-pagination {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .pagination-btn {
    min-width: 2.25rem;
    min-height: 2.25rem;
    font-size: 0.8125rem;
  }
  .balance-log-table-wrap {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .balance-log-table {
    min-width: 560px;
  }
  .balance-th {
    padding: 0.625rem 0.5rem;
    font-size: 0.6875rem;
  }
  .balance-td {
    padding: 0.75rem 0.5rem;
    font-size: 0.8125rem;
  }
  .order-no-text,
  .remark-text {
    max-width: 120px;
  }
  .balance-empty {
    padding: 2rem 0.75rem;
    font-size: 0.8125rem;
  }
  .profile-user-info {
    gap: 0.875rem;
  }
  .profile-avatar-wrap {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
  }
  .profile-user-meta {
    font-size: 0.8125rem;
  }
  .profile-head-actions {
    width: 100%;
    gap: 0.625rem;
  }
  .profile-balance-box {
    width: 100%;
    text-align: left;
  }
  .profile-balance-divider {
    display: none;
  }
  .profile-action-btn {
    width: 100%;
    min-height: 2.75rem;
  }
  .profile-stats-grid {
    gap: 0.875rem;
  }
  .profile-stat-card {
    padding: 1rem;
  }
  .profile-stat-value {
    font-size: 1.5rem;
  }
  .profile-activity-title {
    margin-bottom: 1rem;
  }
  .profile-activity-list {
    gap: 0.875rem;
  }
  .profile-activity-item {
    margin: 0;
    padding: 0.5rem 0.625rem;
  }
  .profile-activity-empty {
    padding: 1.5rem 0;
  }
  .profile-activity-empty-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  .profile-activity-empty-text {
    font-size: 0.8125rem;
  }
  .profile-edit-head {
    margin-bottom: 1.25rem;
  }
  .profile-edit-form {
    gap: 1.25rem;
  }
  .profile-edit-avatar-row {
    gap: 1rem;
    margin-bottom: 0;
    align-items: flex-start;
  }
  .profile-edit-avatar-box {
    width: 4.75rem;
    height: 4.75rem;
    border-radius: 1.25rem;
  }
  .profile-edit-avatar-mask {
    border-radius: 1.25rem;
  }
  .profile-edit-avatar-title {
    font-size: 1rem;
  }
  .profile-edit-avatar-tip {
    font-size: 0.8125rem;
    line-height: 1.6;
  }
  .profile-edit-content,
  .profile-edit-security,
  .profile-edit-password-grid {
    gap: 1rem;
  }
  .profile-edit-input {
    padding: 0.875rem 1rem;
    font-size: 0.8125rem;
  }
  .profile-edit-no-password {
    padding: 0.875rem 1rem;
    gap: 0.5rem;
  }
  .profile-edit-no-password-text {
    font-size: 0.8125rem;
    line-height: 1.6;
  }
  .profile-edit-submit-btn,
  .profile-edit-back-btn {
    min-height: 2.75rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}
@media (max-width: 320px) {
  .site-nav-inner,
  .user-top-nav-inner {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .mobile-menu-toggle {
    min-width: 2.5rem;
    min-height: 2.5rem;
  }
  .site-footer-brand-text {
    font-size: 1.125rem;
  }
  .home-hero-title {
    font-size: 1.75rem;
  }
  .home-hero-desc {
    font-size: 0.875rem;
  }
  .home-hero-btn {
    font-size: 0.9375rem;
  }
  .login-page-main {
    padding: 1rem 0.875rem;
  }
  .login-brand-name {
    font-size: 1.125rem;
  }
  .tab-btn {
    font-size: 0.8125rem;
  }
  .news-page-title,
  .cases-page-title,
  .solutions-page-title,
  .solutions-section-title,
  .cases-cta-title,
  .solutions-cta-title {
    font-size: 1.375rem;
  }
  .news-card,
  .solutions-process-card,
  .solutions-pricing-card {
    padding: 0.875rem;
  }
  .news-card-title,
  .case-card-title,
  .solutions-process-title {
    font-size: 0.9375rem;
  }
  .news-card-summary,
  .case-card-desc,
  .solutions-process-desc,
  .solutions-page-subtitle,
  .cases-page-subtitle,
  .news-page-subtitle {
    font-size: 0.8125rem;
  }
  .cases-cta-link,
  .solutions-cta-link,
  .news-card-readmore {
    font-size: 0.9375rem;
  }
  .news-detail-title,
  .case-detail-title,
  .policy-page-title {
    font-size: 1.375rem;
  }
  .news-detail-article,
  .case-detail-feature-card,
  .case-detail-result {
    padding: 0.875rem;
  }
  .news-detail-nav-link {
    font-size: 0.875rem;
  }
  .case-detail-text,
  .policy-page-text,
  .policy-page-list {
    font-size: 0.8125rem;
  }
  .balance-page-wrap,
  .profile-page-wrap,
  .profile-edit-page-wrap {
    padding: 0.75rem;
  }
  .balance-page-title,
  .profile-user-name,
  .profile-edit-title {
    font-size: 1.25rem;
  }
  .balance-card,
  .profile-head-card,
  .profile-activity-card,
  .profile-edit-card {
    padding: 0.875rem;
  }
  .amount-btn {
    font-size: 0.75rem;
  }
  .recharge-pay-btn {
    max-width: 9rem;
    height: 40px;
  }
  .recharge-pay-img {
    height: 40px;
  }
  .profile-avatar-wrap {
    width: 3.5rem;
    height: 3.5rem;
  }
  .profile-stat-value {
    font-size: 1.375rem;
  }
  .profile-activity-text,
  .profile-edit-avatar-tip,
  .profile-user-meta {
    font-size: 0.75rem;
  }
  .profile-edit-avatar-box {
    width: 4.25rem;
    height: 4.25rem;
  }
  .profile-edit-submit-btn,
  .profile-edit-back-btn,
  .profile-action-btn {
    font-size: 0.9375rem;
  }
  .balance-log-table {
    min-width: 520px;
  }
  .balance-th {
    font-size: 0.625rem;
    padding: 0.5rem 0.375rem;
  }
  .balance-td {
    font-size: 0.75rem;
    padding: 0.625rem 0.375rem;
  }
  .order-no-text,
  .remark-text {
    max-width: 96px;
  }
  .pagination-btn {
    min-width: 2.125rem;
    min-height: 2.125rem;
    font-size: 0.75rem;
  }
  .balance-empty,
  .profile-activity-empty-text,
  .profile-edit-no-password-text {
    font-size: 0.75rem;
  }
  .profile-activity-empty {
    padding: 1.25rem 0;
  }
  .profile-activity-empty-icon {
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 768px) {
  .balance-page-wrap {
    flex-direction: row;
    gap: 32px;
    padding: 32px;
  }
  .ssl-detail-page-wrap {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
  }
  .ssl-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ssl-detail-row-span {
    grid-column: span 2;
  }
  .ssl-detail-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ssl-detail-target-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .error-page-title {
    font-size: 1.875rem;
  }
  .auth-page-main {
    padding: 3rem;
  }
  .change-phone-page-wrap {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
  }
  .change-phone-card {
    padding: 3rem;
  }
  .change-phone-actions {
    flex-direction: row;
  }
  .change-phone-submit-btn {
    flex: 1;
    order: 2;
  }
  .change-phone-back-btn {
    width: 8rem;
    order: 1;
  }
  .account-bind-page-wrap {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
  }
  .bind-email-page-wrap {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
  }
  .bind-email-card {
    padding: 3rem;
  }
  .bind-email-actions {
    flex-direction: row;
  }
  .bind-email-submit-btn {
    flex: 1;
    order: 2;
  }
  .bind-email-back-btn {
    width: 8rem;
    order: 1;
  }
  .profile-page-wrap {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
  }
  .profile-head-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .profile-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .profile-edit-page-wrap {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
  }
  .profile-edit-card {
    padding: 3rem;
  }
  .profile-edit-password-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .profile-edit-actions {
    flex-direction: row;
  }
  .profile-edit-submit-btn {
    flex: 1;
    order: 2;
  }
  .profile-edit-back-btn {
    width: 8rem;
    order: 1;
  }
  .home-hero-title {
    font-size: 4.5rem;
  }
  .home-section-title {
    font-size: 2.25rem;
  }
  .home-section-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .home-head-link {
    margin-bottom: 0;
  }
  .home-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-source-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .my-domain-services-page-wrap {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
  }
  .deploy-targets-page-wrap,
  .dns-credential-page-wrap {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
  }
  .deploy-targets-table,
  .dns-credential-table {
    min-width: 100%;
  }
}
@media (min-width: 1024px) {
  .home-source-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .home-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-news-feature {
    grid-column: span 2 / span 2;
  }
}

/* ==================== SWAS Front ==================== */
.server-page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.server-main {
  flex: 1;
}
.server-head {
  margin-bottom: 1rem;
}
.server-title {
  margin: 0;
  font-size: 1.5rem;
  color: #111827;
}
.server-desc {
  margin: 0.5rem 0 0;
  color: #6b7280;
}
.server-alert-error {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: #fef2f2;
  color: #b91c1c;
}
.server-card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 1rem;
}
.server-form {
  display: grid;
  gap: 1rem;
}
.server-field {
  display: grid;
  gap: 0.5rem;
}
.server-label {
  font-weight: 600;
  color: #111827;
}
.server-input {
  width: 100%;
}
.server-period-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.server-period-option {
  min-width: 70px;
  height: 36px;
  padding: 0 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  background: #fff;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.server-period-option:hover {
  border-color: #86efac;
  color: #15803d;
}
.server-period-option.is-active {
  border-color: #22c55e;
  background: #f0fdf4;
  color: #15803d;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.08);
}
.server-notice {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 0.5rem;
  padding: 0.75rem;
  color: #0369a1;
  font-size: 0.875rem;
}
.server-actions {
  display: flex;
  justify-content: flex-end;
}
.server-field-tip {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}
.server-order-layout {
  display: block;
}
.server-order-main-card {
  min-width: 0;
}
.server-order-submit-btn {
  padding: 0.75rem 2.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.2);
}
.server-summary-title {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  color: #111827;
}
.server-summary-item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed #e5e7eb;
  font-size: 0.9rem;
}
.server-summary-item span {
  color: #6b7280;
}
.server-summary-item strong {
  color: #111827;
  text-align: right;
  font-weight: 600;
}
.server-summary-total {
  margin-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.server-summary-total span {
  color: #111827;
  font-weight: 600;
}
.server-summary-total strong {
  color: #16a34a;
  font-size: 1.4rem;
}
.server-product-card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.server-program-card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.server-product-card {
  width: 100%;
  text-align: left;
  border: 1px solid #e5e7eb;
  border-radius: 0.6rem;
  background: #fff;
  padding: 0.75rem;
  transition: all 0.2s ease;
  cursor: pointer;
}
.server-program-card {
  width: 100%;
  text-align: left;
  border: 1px solid #e5e7eb;
  border-radius: 0.6rem;
  background: #fff;
  padding: 0.75rem;
  transition: all 0.2s ease;
  cursor: pointer;
}
.server-product-card:hover {
  border-color: #86efac;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.12);
}
.server-program-card:hover {
  border-color: #86efac;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.12);
}
.server-product-card.is-active {
  border-color: #22c55e;
  background: #f0fdf4;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.1);
}
.server-program-card.is-active {
  border-color: #22c55e;
  background: #f0fdf4;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.1);
}
.server-product-card-head {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}
.server-program-card-head {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}
.server-product-region {
  font-size: 0.9rem;
  color: #111827;
  font-weight: 600;
}
.server-program-name {
  font-size: 0.9rem;
  color: #111827;
  font-weight: 600;
}
.server-product-code {
  font-size: 0.75rem;
  color: #6b7280;
}
.server-program-code {
  font-size: 0.75rem;
  color: #6b7280;
}
.server-program-desc {
  margin-top: 0.4rem;
  color: #4b5563;
  font-size: 0.78rem;
  line-height: 1.45;
}
.server-program-price {
  margin-top: 0.6rem;
  color: #16a34a;
  font-size: 0.95rem;
  font-weight: 700;
}
.server-product-app {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #0284c7;
  font-weight: 600;
}
.server-product-config {
  margin-top: 0.4rem;
  color: #4b5563;
  font-size: 0.78rem;
  line-height: 1.45;
}
.server-product-price {
  margin-top: 0.6rem;
  color: #16a34a;
  font-size: 1rem;
  font-weight: 700;
}
.server-hidden-select {
  display: none;
}
.server-toolbar {
  margin-bottom: 0.75rem;
}
.server-table-wrap {
  overflow-x: auto;
}
.server-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 880px;
}
.server-table th,
.server-table td {
  border-bottom: 1px solid #e5e7eb;
  padding: 0.75rem 0.5rem;
  vertical-align: top;
  text-align: left;
  font-size: 0.875rem;
}
.server-expire-hint {
  color: #111827;
}
.server-status-msg {
  color: #6b7280;
  margin-top: 0.25rem;
}
.server-renew-tips {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #4b5563;
  border-top: 1px dashed #e5e7eb;
  padding-top: 0.75rem;
}
.server-confirm-tip {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #6b7280;
}
.server-renew-swal {
  border-radius: 0.9rem;
}
.server-renew-swal .swal2-title {
  font-size: 1.2rem;
  color: #111827;
}
.server-renew-swal-html {
  margin: 0.5rem 0 0;
}
.server-renew-modal {
  text-align: left;
}
.server-renew-modal-card {
  border: 1px solid #dcfce7;
  background: linear-gradient(180deg, #f8fff9 0%, #f0fdf4 100%);
  border-radius: 0.7rem;
  padding: 0.75rem 0.85rem;
}
.server-renew-modal-label {
  font-size: 0.78rem;
  color: #4b5563;
}
.server-renew-modal-name {
  margin-top: 0.35rem;
  color: #166534;
  font-weight: 700;
  line-height: 1.45;
  word-break: break-all;
}
.server-renew-modal-field {
  margin-top: 0.85rem;
}
.server-renew-period-selector {
  margin-top: 0.45rem;
}
.server-renew-period-selector .server-period-option {
  min-width: 76px;
}
.server-renew-modal-fee {
  margin-top: 0.85rem;
  padding: 0.65rem 0.75rem;
  border: 1px dashed #bbf7d0;
  border-radius: 0.6rem;
  background: #f9fffb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.server-renew-modal-fee span {
  font-size: 0.85rem;
  color: #4b5563;
}
.server-renew-modal-fee strong {
  color: #16a34a;
  font-size: 1.15rem;
  font-weight: 700;
}
.server-renew-confirm-tip {
  margin-top: 0.8rem;
  margin-bottom: 0;
}
.server-sites-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.server-sites-create-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0 1rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.server-sites-card {
  padding: 1.25rem;
}
.server-sites-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.server-sites-overview-item {
  border: 1px solid #dcfce7;
  background: linear-gradient(180deg, #f8fff9 0%, #f0fdf4 100%);
  border-radius: 0.7rem;
  padding: 0.75rem 0.85rem;
}
.server-sites-overview-label {
  display: block;
  font-size: 0.76rem;
  color: #4b5563;
  margin-bottom: 0.25rem;
}
.server-sites-overview-value {
  font-size: 1.15rem;
  color: #166534;
  font-weight: 700;
}
.server-sites-overview-value-muted {
  font-size: 0.86rem;
  color: #047857;
}
.server-sites-table-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 0.7rem;
}
.server-sites-table-wrap .server-table {
  min-width: 960px;
}
.server-sites-table-wrap .server-table th {
  background: #f9fafb;
  color: #4b5563;
  font-weight: 600;
  font-size: 0.82rem;
}
.server-sites-table-wrap .server-table td {
  padding: 0.8rem 0.55rem;
  vertical-align: middle;
}
.server-sites-table-wrap .server-table tbody tr:hover {
  background: #fcfcfd;
}
.server-sites-program,
.server-sites-config {
  font-weight: 600;
  color: #111827;
}
.server-sites-meta-list {
  display: grid;
  gap: 0.42rem;
}
.server-sites-meta-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: 0.45rem;
}
.server-sites-meta-label {
  color: #6b7280;
  font-size: 0.76rem;
  line-height: 1.6;
}
.server-sites-config-meta {
  margin-top: 0.28rem;
  font-size: 0.76rem;
  color: #6b7280;
  line-height: 1.45;
}
.server-sites-region {
  color: #374151;
  font-weight: 600;
}
.server-sites-region-code {
  margin-top: 0.2rem;
  font-size: 0.76rem;
  color: #6b7280;
}
.server-sites-code {
  display: inline-block;
  max-width: 220px;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.78rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.server-sites-ip-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}
.server-ip-copy-btn {
  width: 1.55rem;
  height: 1.55rem;
  border: 1px solid #d1d5db;
  border-radius: 0.45rem;
  background: #fff;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.16s ease;
}
.server-ip-copy-btn svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: currentColor;
}
.server-ip-copy-btn:hover {
  border-color: #86efac;
  color: #15803d;
  background: #f0fdf4;
}
.server-ip-copy-btn.is-copied {
  border-color: #22c55e;
  color: #15803d;
  background: #dcfce7;
}
.server-expire-time {
  color: #111827;
  line-height: 1.4;
}
.server-action-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  background: #fff;
  min-height: 2rem;
  padding: 0.15rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s ease;
}
.server-action-btn-primary {
  color: #15803d;
  border-color: #86efac;
  background: #f0fdf4;
}
.server-action-btn-primary:hover {
  border-color: #22c55e;
  background: #dcfce7;
}
.server-action-btn-disabled {
  color: #9ca3af;
  border-color: #e5e7eb;
  background: #f9fafb;
  cursor: not-allowed;
}
.server-sites-renew-tips {
  border: 1px dashed #d1d5db;
  border-radius: 0.7rem;
  background: #fafafa;
  padding: 0.8rem;
}
.server-sites-renew-tips p {
  margin: 0.3rem 0;
}
.server-sites-renew-tips p span {
  color: #374151;
  font-weight: 600;
}

/* SWAS landing page */
.swas-page-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
}
.swas-page-hero {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0f9ff 100%);
  padding: 3.5rem 0 2.8rem;
  border-bottom: 1px solid #d1fae5;
}
.swas-hero-kicker {
  display: inline-flex;
  margin: 0;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.8rem;
  font-weight: 700;
}
.swas-hero-title {
  margin: 0.9rem 0 0;
  color: #111827;
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  line-height: 1.22;
}
.swas-hero-desc {
  margin: 0.9rem 0 0;
  max-width: 700px;
  color: #4b5563;
  line-height: 1.75;
}
.swas-hero-actions {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.swas-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  min-width: 10rem;
  border-radius: 999px;
  padding: 0 1.25rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.swas-hero-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(22, 163, 74, 0.24);
}
.swas-hero-link {
  color: #14532d;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s ease;
}
.swas-hero-link:hover {
  color: #15803d;
}
.swas-ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0 1rem;
  border: 1px solid #86efac;
  border-radius: 999px;
  background: #fff;
  line-height: 1;
  text-align: center;
}
.swas-ghost-btn:hover {
  border-color: #4ade80;
  background: #f0fdf4;
}
.swas-page-wrap {
  background: #fff;
}
.swas-page-section {
  padding: 3rem 0;
}
.swas-page-section-muted {
  background: #f8fafc;
}
.swas-section-title {
  margin: 0 0 1.2rem;
  color: #111827;
  font-size: clamp(1.28rem, 2.2vw, 1.7rem);
}
.swas-benefit-grid,
.swas-step-grid,
.swas-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.swas-benefit-card,
.swas-step-card,
.swas-scene-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.9rem;
  background: #fff;
  padding: 1rem;
}
.swas-benefit-title,
.swas-step-title,
.swas-scene-title {
  margin: 0;
  color: #111827;
  font-size: 1.02rem;
}
.swas-benefit-desc,
.swas-step-desc,
.swas-scene-desc {
  margin: 0.66rem 0 0;
  color: #4b5563;
  line-height: 1.72;
  font-size: 0.92rem;
}
.swas-step-no {
  margin: 0;
  color: #16a34a;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}
.swas-page-cta {
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  padding: 2.7rem 0 3rem;
}
.swas-cta-title {
  margin: 0;
  color: #111827;
  font-size: clamp(1.22rem, 2.1vw, 1.62rem);
}
.swas-cta-desc {
  margin: 0.75rem 0 0;
  color: #4b5563;
}
.swas-cta-actions {
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .swas-page-hero {
    padding: 2.2rem 0 2rem;
  }
  .swas-page-section {
    padding: 2rem 0;
  }
  .swas-hero-actions,
  .swas-cta-actions {
    gap: 0.65rem;
  }
  .swas-hero-btn,
  .swas-ghost-btn {
    width: 100%;
  }
  .swas-benefit-grid,
  .swas-step-grid,
  .swas-scene-grid {
    grid-template-columns: 1fr;
  }
  .server-page-wrap {
    flex-direction: column;
  }
  .server-sites-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .server-sites-create-btn {
    width: 100%;
  }
  .server-sites-overview {
    grid-template-columns: 1fr;
  }
  .server-sites-card {
    padding: 0.85rem;
  }
  .server-sites-code {
    max-width: 170px;
  }
  .orders-page-head-compact {
    flex-direction: column;
    align-items: flex-start;
  }
  .orders-head-action-btn {
    width: 100%;
  }
  .orders-overview {
    grid-template-columns: 1fr;
  }
  .payment-page-head-compact {
    flex-direction: column;
    align-items: flex-start;
  }
  .payment-head-back-btn {
    width: 100%;
  }
  .payment-overview,
  .my-ssl-overview {
    grid-template-columns: 1fr;
  }
  .server-product-card-list {
    grid-template-columns: 1fr;
  }
  .server-program-card-list {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  .server-page-wrap {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
  }
}

/* language switcher */
.site-lang-select-wrap{display:inline-flex;align-items:center;margin-right:8px;}
.site-lang-select{height:32px;padding:0 8px;border:1px solid #e5e7eb;border-radius:6px;background:#fff;color:#191919;font-size:13px;cursor:pointer;}
.site-lang-select:focus{outline:none;border-color:#07c160;}
