/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #a8e6cf; /* 浅绿色 */
    --secondary-color: #4fb0ae; /* 青色 */
    --accent-color: #3d9970;
    --text-color: #333;
    --light-text: #666;
    --background: #f5f7fa;
    --card-bg: rgba(255, 255, 255, 0.7);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 毛玻璃卡片效果 */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 标题样式 */
.title {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 10px;
    font-size: 2rem;
}

.subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 30px;
}

/* 表单样式 */
.form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(79, 176, 174, 0.2);
}

/* 验证码样式 */
.captcha-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.captcha-input {
    flex: 1;
}

.captcha-display {
    background: var(--secondary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 5px;
    user-select: none;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--secondary-color);
    width: 100%;
}

.btn-secondary {
    background: var(--light-text);
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-danger {
    background: #e74c3c;
}

.btn-danger:hover {
    background: #c0392b;
}

/* 提示文字 */
.hint {
    text-align: center;
    color: var(--light-text);
    font-size: 0.9rem;
    margin-top: 20px;
}

/* 警告框 */
.alert {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-error {
    background: rgba(255, 0, 0, 0.1);
    color: #d63031;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.alert-success {
    background: rgba(0, 255, 0, 0.1);
    color: #00b894;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

/* 头部样式 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.header h1 {
    color: var(--secondary-color);
}

/* 区域样式 */
.section {
    margin-bottom: 30px;
}

.section h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(79, 176, 174, 0.2);
}

/* 产品容器 */
.products-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.product-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 20px;
    min-width: 200px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.product-card p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.product-card .remark {
    color: var(--light-text);
    font-style: italic;
}

/* 进度步骤 */
.progress-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.step-card.active {
    border-left: 5px solid var(--secondary-color);
}

.step-card.completed {
    border-left: 5px solid var(--accent-color);
}

.step-card.disabled {
    opacity: 0.6;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    font-weight: bold;
}

.step-card.completed .step-number {
    background: var(--accent-color);
}

.step-card.disabled .step-number {
    background: var(--light-text);
}

.step-header h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.step-content p {
    margin-bottom: 10px;
    color: var(--light-text);
}

/* 模态框 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-content.large {
    max-width: 800px;
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-text);
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close:hover {
    color: var(--secondary-color);
    background: rgba(0, 0, 0, 0.05);
}

/* 表格样式 */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table th, .table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.table th {
    background: rgba(79, 176, 174, 0.1);
    color: var(--secondary-color);
    font-weight: 600;
}

.table tr:hover {
    background: rgba(79, 176, 174, 0.05);
}

/* 管理面板样式 */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(79, 176, 174, 0.2);
}

.admin-actions {
    display: flex;
    gap: 10px;
}

/* 状态标签 */
.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}
.status-检测中 { background: #ffeaa7; color: #e17055; }
.status-方案选择 { background: #81ecec; color: #00cec9; }
.status-工序执行 { background: #74b9ff; color: #0984e3; }
.status-付款 { background: #a29bfe; color: #6c5ce7; }
.status-完结 { background: #55efc4; color: #00b894; }

.action-buttons {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.table-responsive {
    overflow-x: auto;
}

/* 表单网格 */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.form-inline {
    display: flex;
    align-items: end;
    gap: 15px;
}

/* ========== 弹窗增强样式 ========== */
.modal-content.large {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

/* 步骤头部 */
.step-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(79, 176, 174, 0.1);
}

.step-header h2 {
    color: var(--secondary-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.step-subtitle {
    color: var(--light-text);
    font-size: 1.1rem;
}

/* 图标样式 */
.icon-info:before { content: "ℹ️"; }
.icon-search:before { content: "🔍"; }
.icon-list:before { content: "📋"; }
.icon-clock:before { content: "⏰"; }
.icon-credit-card:before { content: "💳"; }
.icon-award:before { content: "🏆"; }
.icon-user:before { content: "👤"; }
.icon-tools:before { content: "🛠️"; }
.icon-alert:before { content: "⚠️"; }
.icon-note:before { content: "📝"; }
.icon-clipboard:before { content: "📋"; }
.icon-check:before { content: "✅"; }
.icon-calendar:before { content: "📅"; }
.icon-document:before { content: "📄"; }
.icon-time:before { content: "⏱️"; }
.icon-warning:before { content: "🔶"; }
.icon-user-check:before { content: "👨‍💼"; }
.icon-calendar-check:before { content: "📆"; }
.icon-wallet:before { content: "💰"; }
.icon-check-circle:before { content: "✔️"; }
.icon-package:before { content: "📦"; }
.icon-qr-code:before { content: "🔳"; }

/* 信息网格布局 */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.info-grid.compact {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

/* 信息卡片 */
.info-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(79, 176, 174, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.info-content label {
    display: block;
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.info-content h3 {
    color: var(--secondary-color);
    margin: 0;
    font-size: 1.2rem;
}

.info-content p {
    margin: 0;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* 信息项 */
.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item label {
    color: var(--light-text);
    font-weight: 500;
}

.info-item span {
    color: var(--text-color);
    font-weight: 600;
}

.info-full {
    margin-top: 15px;
}

.info-full label {
    display: block;
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.info-full p {
    margin: 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

/* 信息区块 */
.info-section {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(79, 176, 174, 0.1);
}

.info-section.highlight {
    background: linear-gradient(135deg, rgba(168, 230, 207, 0.1), rgba(79, 176, 174, 0.1));
    border: 1px solid rgba(79, 176, 174, 0.2);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.section-content {
    color: var(--text-color);
}

.problem-preview {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border-left: 3px solid #e74c3c;
}

/* 方案选择样式 */
.plans-selection {
    margin-top: 20px;
}

.selection-header {
    text-align: center;
    margin-bottom: 30px;
}

.selection-header h3 {
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.selection-header p {
    color: var(--light-text);
}

.plan-option {
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(79, 176, 174, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.plan-option.selected {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(168, 230, 207, 0.1), rgba(79, 176, 174, 0.1));
}

.plan-option-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.plan-radio input {
    display: none;
}

.plan-radio label {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: block;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-option.selected .plan-radio label {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}

.plan-option.selected .plan-radio label::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.plan-title {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-title h4 {
    margin: 0;
    color: var(--secondary-color);
}

.plan-cost {
    background: var(--secondary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

.plan-option-content {
    padding-left: 35px;
}

.plan-feature {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.plan-feature:last-child {
    margin-bottom: 0;
}

.plan-feature i {
    color: var(--secondary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.plan-feature strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 4px;
}

.plan-feature p {
    margin: 0;
    color: var(--light-text);
    line-height: 1.5;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

/* 已选择方案卡片 */
.selected-plan-card {
    background: linear-gradient(135deg, rgba(168, 230, 207, 0.2), rgba(79, 176, 174, 0.2));
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    margin-top: 20px;
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.plan-header h3 {
    margin: 0;
    color: var(--secondary-color);
}

.plan-content {
    margin-bottom: 15px;
}

.plan-desc, .plan-remark {
    margin-bottom: 15px;
}

.plan-desc h4, .plan-remark h4 {
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 1rem;
}

.plan-desc p, .plan-remark p {
    margin: 0;
    color: var(--light-text);
    line-height: 1.5;
}

.plan-footer {
    border-top: 1px solid rgba(79, 176, 174, 0.2);
    padding-top: 15px;
}

.selection-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* 进度时间线增强 */
.estimate-card {
    background: linear-gradient(135deg, rgba(116, 185, 255, 0.1), rgba(9, 132, 227, 0.1));
    border: 1px solid rgba(116, 185, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.estimate-icon {
    width: 50px;
    height: 50px;
    background: #74b9ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.estimate-content label {
    display: block;
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.estimate-content h3 {
    margin: 0;
    color: #0984e3;
    font-size: 1.3rem;
}

.estimate-content p {
    margin: 0;
    color: var(--light-text);
    font-size: 0.9rem;
}

.progress-timeline-enhanced {
    position: relative;
}

.timeline-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.timeline-header h3 {
    color: var(--secondary-color);
    margin: 0;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
}

.timeline-item.latest .timeline-dot {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border: 3px solid #ddd;
    border-radius: 50%;
    background: white;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-line {
    width: 2px;
    flex: 1;
    background: #ddd;
    margin-top: 5px;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.timeline-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-text);
    font-size: 0.9rem;
}

.timeline-badge {
    background: var(--secondary-color);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
}

.timeline-desc p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.5;
}

.timeline-estimate {
    margin-top: 10px;
    padding: 8px 12px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e67e22;
    font-size: 0.9rem;
}

/* 付款摘要卡片 */
.payment-summary-card {
    background: linear-gradient(135deg, rgba(168, 230, 207, 0.2), rgba(79, 176, 174, 0.2));
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin-bottom: 25px;
    border: 2px solid rgba(79, 176, 174, 0.2);
}

.payment-amount {
    display: inline-block;
}

.amount-label {
    color: var(--light-text);
    font-size: 1rem;
    margin-bottom: 8px;
}

.amount-value {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.amount-note {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* 完结页面样式 */
.completion-hero {
    background: linear-gradient(135deg, rgba(168, 230, 207, 0.2), rgba(79, 176, 174, 0.2));
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.completion-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.completion-message h3 {
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.completion-message p {
    color: var(--light-text);
    margin: 0;
    font-size: 1.1rem;
}

.completion-summary {
    margin-bottom: 30px;
}

.summary-section {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-section h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.qr-section {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.qr-header h4 {
    color: var(--secondary-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.qr-header p {
    color: var(--light-text);
    margin-bottom: 20px;
}

.qr-code-container {
    display: inline-block;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qr-image {
    width: 200px;
    height: 200px;
    display: block;
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 50px 20px;
    color: var(--light-text);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.empty-state p {
    margin: 0;
    font-size: 1.1rem;
}

/* 产品详情弹窗样式 */
.product-detail-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(79, 176, 174, 0.1);
}

.product-detail-header h2 {
    color: var(--secondary-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-subtitle {
    color: var(--light-text);
    font-size: 1.1rem;
}

.product-basic-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.product-info-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(79, 176, 174, 0.1);
    transition: all 0.3s ease;
}

.product-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-info-card .info-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-info-content label {
    display: block;
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.product-info-content h3 {
    color: var(--secondary-color);
    margin: 0;
    font-size: 1.1rem;
}

.product-detail-section {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(79, 176, 174, 0.1);
}

.product-detail-section h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.product-detail-content {
    color: var(--text-color);
    line-height: 1.6;
}

.product-detail-content p {
    margin: 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.product-code-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.code-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.code-item label {
    color: var(--light-text);
    font-weight: 500;
}

.code-item span {
    color: var(--text-color);
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .glass-card {
        padding: 20px;
    }
    
    .progress-steps {
        grid-template-columns: 1fr;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .admin-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .completion-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .timeline-marker {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    
    .timeline-line {
        width: 100%;
        height: 2px;
        margin-top: 0;
    }
    
    .product-basic-info {
        grid-template-columns: 1fr;
    }
    
    .product-code-grid {
        grid-template-columns: 1fr;
    }
}