﻿/* ========================================
   SSL证书页面样式 - 2026 Version
   SSL Certificate Page Styles
======================================== */

:root {
  --ssl-primary: #10b981;
  --ssl-primary-dark: #059669;
  --ssl-gradient: linear-gradient(135deg, #10b981 0%, #0d9488 100%);
  --ssl-gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0d9488 100%);
}

/* ========== Hero Section ========== */
.ssl-hero {
  position: relative;
  padding: 140px 0 100px;
  background: var(--ssl-gradient-dark);
  overflow: hidden;
  margin-top: 70px;
}

.ssl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 50px 50px;
}

.ssl-hero .container {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero Decoration */
.ssl-hero-decor {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
}

.ssl-hero-decor-left {
  left: 20px;
  animation: floatLeft 8s ease-in-out infinite;
}

.ssl-hero-decor-right {
  right: 20px;
  animation: floatRight 7s ease-in-out infinite;
}

.ssl-hero-decor svg {
  width: 280px;
  height: 280px;
}

@keyframes floatLeft {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-53%) translateX(-10px); }
}

@keyframes floatRight {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-47%) translateX(10px); }
}

/* Hero Content */
.ssl-hero-content {
  color: #fff;
}

.ssl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.ssl-hero-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.2;
}

.ssl-hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
  line-height: 1.8;
}

.ssl-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ssl-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--ssl-gradient);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  transition: all 0.3s;
}

.ssl-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
  color: #fff;
}

.ssl-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.ssl-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

/* Hero Stats */
.ssl-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.ssl-hero-stat {
  text-align: center;
}

.ssl-hero-stat-value {
  font-size: 36px;
  font-weight: 700;
  color: #6ee7b7;
}

.ssl-hero-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 5px;
}

/* Hero Illustration */
.ssl-hero-illustration {
  position: relative;
}

.ssl-hero-illustration svg {
  width: 100%;
  max-width: 450px;
  height: auto;
}

/* ========== Products Section ========== */
.ssl-products {
  padding: 80px 0;
  background: #f8fafc;
}

.ssl-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.ssl-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(13,148,136,0.1));
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ssl-primary);
  margin-bottom: 16px;
}

.ssl-section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 15px;
}

.ssl-section-desc {
  font-size: 16px;
  color: #64748b;
  margin: 0;
}

/* Products Grid */
.ssl-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.ssl-product-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ssl-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ssl-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.ssl-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.ssl-product-card:hover::before {
  transform: scaleX(1);
}

.ssl-product-card.featured {
  border: 2px solid var(--ssl-primary);
}

.ssl-product-card.featured::before {
  transform: scaleX(1);
}

.ssl-product-tag {
  position: absolute;
  top: 20px;
  right: -30px;
  padding: 6px 40px;
  background: var(--ssl-gradient);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  transform: rotate(45deg);
}

.ssl-product-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d1fae5 0%, #6ee7b7 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--ssl-primary-dark);
}

.ssl-product-name {
  font-size: 22px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 8px;
}

.ssl-product-brand {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 20px;
}

.ssl-product-price {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e2e8f0;
}

.ssl-product-price-value {
  font-size: 42px;
  font-weight: 700;
  color: #1e293b;
}

.ssl-product-price-value.free {
  color: var(--ssl-primary);
}

.ssl-product-price-value span {
  font-size: 18px;
  font-weight: 400;
  color: #94a3b8;
}

.ssl-product-price-unit {
  font-size: 14px;
  color: #94a3b8;
}

.ssl-product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.ssl-product-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: #475569;
}

.ssl-product-features li .iconify {
  color: var(--ssl-primary);
  flex-shrink: 0;
}

.ssl-product-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: var(--ssl-gradient);
  color: #fff;
  text-align: center;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ssl-product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  color: #fff;
}

/* Empty State */
.ssl-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: #64748b;
}

.ssl-empty .iconify {
  color: #cbd5e1;
  margin-bottom: 16px;
}

/* ========== Features Section ========== */
.ssl-features {
  padding: 80px 0;
  background: #fff;
}

.ssl-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.ssl-feature-card {
  padding: 30px;
  border-radius: 16px;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.ssl-feature-card:hover {
  background: #f1f5f9;
  transform: translateY(-5px);
}

.ssl-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--ssl-gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}

.ssl-feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 10px;
}

.ssl-feature-desc {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.7;
}

/* ========== Process Section ========== */
.ssl-process {
  padding: 80px 0;
  background: var(--ssl-gradient-dark);
}

.ssl-process .ssl-section-title {
  color: #fff;
}

.ssl-process .ssl-section-desc {
  color: rgba(255,255,255,0.7);
}

.ssl-process-steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.ssl-process-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  width: 220px;
  position: relative;
  transition: all 0.3s;
}

.ssl-process-step:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.ssl-process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.3)'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E") no-repeat center;
}

.ssl-process-num {
  width: 40px;
  height: 40px;
  background: var(--ssl-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 20px;
}

.ssl-process-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
}

.ssl-process-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.6;
}

/* ========== FAQ Section ========== */
.ssl-faq {
  padding: 80px 0;
  background: #f8fafc;
}

.ssl-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.ssl-faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  overflow: hidden;
}

.ssl-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.2s;
}

.ssl-faq-question:hover {
  color: var(--ssl-primary);
}

.ssl-faq-question .iconify {
  transition: transform 0.3s;
  flex-shrink: 0;
}

.ssl-faq-item.active .ssl-faq-question .iconify {
  transform: rotate(180deg);
}

.ssl-faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: #64748b;
  line-height: 1.8;
}

.ssl-faq-item.active .ssl-faq-answer {
  display: block;
}

/* ========== CTA Section ========== */
.ssl-cta {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.ssl-cta-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 15px;
}

.ssl-cta-desc {
  font-size: 16px;
  color: #64748b;
  margin: 0 0 30px;
}

/* ========== Buy Page Styles ========== */
.ssl-buy-header {
  background: var(--ssl-gradient-dark);
  padding: 120px 0 80px;
  text-align: center;
  color: #fff;
  margin-top: 70px;
  position: relative;
}

.ssl-buy-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 50px 50px;
}

.ssl-buy-header .container {
  position: relative;
  z-index: 2;
}

.ssl-buy-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 12px;
}

.ssl-buy-header p {
  font-size: 16px;
  opacity: 0.8;
  margin: 0;
}

.ssl-buy-container {
  max-width: 1000px;
  margin: -40px auto 60px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  position: relative;
  z-index: 5;
}

.ssl-buy-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

.ssl-buy-card-header {
  padding: 20px 25px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ssl-buy-card-header .iconify {
  color: var(--ssl-primary);
}

.ssl-buy-card-body {
  padding: 25px;
}

/* Form Styles */
.ssl-form-group {
  margin-bottom: 24px;
}

.ssl-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 10px;
}

.ssl-form-label span {
  color: #ef4444;
  margin-left: 2px;
}

.ssl-form-input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s;
  outline: none;
}

.ssl-form-input:focus {
  border-color: var(--ssl-primary);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.ssl-form-input::placeholder {
  color: #9ca3af;
}

.ssl-form-tip {
  font-size: 13px;
  color: #6b7280;
  margin-top: 8px;
}

/* Method Options */
.ssl-method-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ssl-method-option {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.ssl-method-option:hover {
  border-color: var(--ssl-primary);
  background: #f0fdf4;
}

.ssl-method-option.selected {
  border-color: var(--ssl-primary);
  background: #ecfdf5;
}

.ssl-method-option.selected::after {
  content: '✓';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  background: var(--ssl-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.ssl-method-option input {
  display: none;
}

.ssl-method-title {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ssl-method-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

.ssl-method-tag {
  display: inline-block;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 8px;
  background: #dcfce7;
  color: #166534;
}

/* Order Summary */
.ssl-order-summary {
  position: sticky;
  top: 90px;
}

.ssl-order-product {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 20px;
}

.ssl-order-product-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d1fae5 0%, #6ee7b7 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ssl-primary-dark);
}

.ssl-order-product-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 4px;
}

.ssl-order-product-info p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

.ssl-order-details {
  margin-bottom: 20px;
}

.ssl-order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
}

.ssl-order-row-label {
  color: #6b7280;
}

.ssl-order-row-value {
  color: #1e293b;
  font-weight: 500;
}

.ssl-order-total {
  border-top: 2px solid #f0f0f0;
  padding-top: 20px;
  margin-bottom: 24px;
}

.ssl-order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ssl-order-total-label {
  font-size: 16px;
  color: #374151;
}

.ssl-order-total-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--ssl-primary);
}

.ssl-order-total-value.paid {
  color: #1e293b;
}

.ssl-buy-btn {
  width: 100%;
  height: 54px;
  background: var(--ssl-gradient);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ssl-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.ssl-buy-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.ssl-buy-notice {
  margin-top: 16px;
  padding: 14px 16px;
  background: #fef3c7;
  border-radius: 10px;
  font-size: 13px;
  color: #92400e;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ssl-buy-notice .iconify {
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Login Prompt */
.ssl-login-prompt {
  text-align: center;
  padding: 40px 20px;
}

.ssl-login-prompt .iconify {
  color: #d1d5db;
  margin-bottom: 16px;
}

.ssl-login-prompt h3 {
  font-size: 18px;
  color: #374151;
  margin: 0 0 8px;
}

.ssl-login-prompt p {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 20px;
}

.ssl-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: var(--ssl-primary);
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.ssl-login-btn:hover {
  background: var(--ssl-primary-dark);
  color: #fff;
}

/* Success Page */
.ssl-success-page {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.ssl-success-icon {
  width: 100px;
  height: 100px;
  background: var(--ssl-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #fff;
  animation: successPop 0.5s ease;
}

@keyframes successPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.ssl-success-title {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px;
}

.ssl-success-desc {
  font-size: 15px;
  color: #6b7280;
  margin: 0 0 30px;
  line-height: 1.6;
}

.ssl-success-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--ssl-gradient);
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.ssl-success-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  color: #fff;
}

.ssl-success-countdown {
  margin-top: 20px;
  font-size: 14px;
  color: #9ca3af;
}

/* ========== Responsive ========== */
@media (max-width: 1400px) {
  .ssl-hero-decor svg { width: 240px; height: 240px; }
}

@media (max-width: 1200px) {
  .ssl-hero-decor { opacity: 0.4; }
  .ssl-hero-decor svg { width: 200px; height: 200px; }
}

@media (max-width: 992px) {
  .ssl-hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ssl-hero-content { order: 1; }
  .ssl-hero-illustration {
    order: 0;
    max-width: 350px;
    margin: 0 auto;
  }
  .ssl-hero-stats { justify-content: center; }
  .ssl-hero-btns { justify-content: center; }
  .ssl-hero-decor { display: none; }
  .ssl-buy-container { grid-template-columns: 1fr; }
  .ssl-order-summary { position: static; }
}

@media (max-width: 768px) {
  .ssl-hero { padding: 120px 0 60px; }
  .ssl-hero-title { font-size: 32px; }
  .ssl-hero-illustration { display: none; }
  .ssl-process-step:not(:last-child)::after { display: none; }
  .ssl-process-steps { gap: 16px; }
  .ssl-process-step { width: 100%; max-width: 300px; }
}

/* ========================================
   用户中心 SSL管理页面样式
   User Center SSL Management Styles
======================================== */

/* 信息表格 */
.ssl-info-table {
  width: 100%;
  border-collapse: collapse;
}

.ssl-info-table th,
.ssl-info-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.ssl-info-table th {
  width: 120px;
  color: #666;
  font-weight: normal;
  background: #fafafa;
}

.ssl-info-table td {
  color: #333;
}

/* 切换按钮 */
.ssl-btn-switch {
  margin-left: 10px;
  padding: 2px 10px;
  font-size: 12px;
  color: #1890ff;
  background: #e6f7ff;
  border: 1px solid #91d5ff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.ssl-btn-switch:hover {
  color: #fff;
  background: #1890ff;
}

/* 文本辅助样式 */
.ssl-text-muted {
  color: #999;
}

.ssl-text-muted-sm {
  margin-left: 10px;
  font-size: 12px;
  color: #999;
}

/* 等待状态 */
.ssl-status-waiting {
  text-align: center;
  padding: 40px 20px;
}

.ssl-status-waiting .waiting-icon {
  margin-bottom: 20px;
}

.ssl-status-waiting .waiting-icon.error svg {
  fill: #f56c6c;
}

.ssl-status-waiting h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #333;
}

.ssl-status-waiting h3.error {
  color: #f56c6c;
}

.ssl-status-waiting p {
  margin: 0 0 10px;
  color: #666;
}

.ssl-status-waiting .action-btn {
  margin-top: 20px;
}

/* 提示框 */
.ssl-alert {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.6;
}

.ssl-alert i {
  margin-right: 8px;
}

.ssl-alert.info {
  background: #e6f7ff;
  border: 1px solid #91d5ff;
  color: #1890ff;
}

.ssl-alert.warning {
  background: #fffbe6;
  border: 1px solid #ffe58f;
  color: #d48806;
}

.ssl-alert.success {
  background: #f6ffed;
  border: 1px solid #b7eb8f;
  color: #52c41a;
}

.ssl-alert ul {
  margin: 10px 0 0 20px;
  padding: 0;
}

.ssl-alert ul li {
  margin-bottom: 5px;
}

.ssl-alert.text-left {
  text-align: left;
}

/* 间距 */
.ssl-mt-20 {
  margin-top: 20px;
}

/* 验证区域 */
.ssl-verify-box {
  padding: 20px;
  background: #fafafa;
  border-radius: 8px;
}

.ssl-verify-box h4 {
  margin: 0 0 15px;
  font-size: 16px;
  color: #333;
}

.ssl-verify-box h4 i {
  margin-right: 8px;
  color: #1890ff;
}

.ssl-verify-box.dns h4 i {
  color: #722ed1;
}

.ssl-desc {
  margin: 0 0 20px;
  color: #666;
  font-size: 14px;
}

/* 步骤列表 */
.ssl-step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
}

.ssl-step-list li {
  position: relative;
  padding: 15px 15px 15px 50px;
  margin-bottom: 15px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
}

.ssl-step-list li::before {
  content: attr(data-step);
  position: absolute;
  left: 15px;
  top: 15px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #10b981, #0d9488);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ssl-step-list.dns li::before {
  background: linear-gradient(135deg, #722ed1, #9254de);
}

.ssl-step-list li strong {
  display: block;
  margin-bottom: 8px;
  color: #333;
}

.step-hint {
  font-size: 13px;
  color: #999;
}

.step-table {
  margin-top: 10px;
  border-collapse: collapse;
}

.step-table td {
  padding: 5px 10px 5px 0;
  font-size: 14px;
}

.step-table .label-col {
  color: #666;
  white-space: nowrap;
}

/* 代码样式 */
.ssl-code {
  padding: 2px 8px;
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  font-family: Consolas, Monaco, monospace;
  font-size: 13px;
  color: #d63384;
}

.ssl-code-block {
  display: block;
  margin-top: 8px;
  padding: 10px 15px;
  background: #1e1e1e;
  border-radius: 6px;
  font-family: Consolas, Monaco, monospace;
  font-size: 14px;
  color: #dcdcdc;
  word-break: break-all;
}

/* 验证码显示 */
.ssl-verify-code {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 12px 15px;
  background: #fff;
  border: 2px solid #10b981;
  border-radius: 6px;
}

.ssl-verify-code .code-text {
  flex: 1;
  font-family: Consolas, Monaco, monospace;
  font-size: 13px;
  color: #333;
  word-break: break-all;
  line-height: 1.5;
}

.ssl-verify-code .copy-btn {
  flex-shrink: 0;
}

/* 链接换行 */
.ssl-link-break {
  display: inline-block;
  margin-top: 5px;
  word-break: break-all;
  color: #1890ff;
}

/* 证书内容区域 */
.ssl-cert-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cert-item {
  background: #fafafa;
  border-radius: 8px;
  padding: 15px;
}

.cert-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.cert-item textarea {
  width: 100%;
  height: 150px;
  padding: 12px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-family: Consolas, Monaco, monospace;
  font-size: 12px;
  line-height: 1.5;
  background: #fff;
  resize: vertical;
}

.cert-item textarea:focus {
  border-color: #10b981;
  outline: none;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* 部署说明列表 */
.ssl-deploy-list {
  margin: 10px 0 0 20px;
  padding: 0;
}

.ssl-deploy-list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.ssl-deploy-list li strong {
  color: #333;
}
