/* 订单详情页面现代化样式 */

/* ===== 全局动画 ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== 现代化订单卡片 ===== */
.modern-order-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.8s ease;
}

/* 顶部渐变效果已移除 */

.modern-order-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ===== 订单头部 ===== */
.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.order-header-left {
    flex: 1;
}

.order-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    animation: slideInRight 0.6s ease;
}

.order-number {
    font-size: 14px;
    color: #6c757d;
    display: flex;
    align-items: center;
    animation: slideInRight 0.6s ease 0.1s both;
}

.order-header-right {
    animation: slideInRight 0.6s ease 0.2s both;
}

/* ===== 状态标签 ===== */
.status-badge {
    padding: 10px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.status-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.status-badge.status-completed {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.status-badge.status-pending {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: #2c3e50;
}

.status-badge.status-wait-pay {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: white;
    animation: pulse 2s infinite;
}

.status-badge.status-processing {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.status-badge.status-failure {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: white;
}

.status-badge.status-abnormal {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
}

.status-badge.status-expired {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
}

.status-badge.status-unknown {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
}

/* ===== 订单内容区域 ===== */
.order-content {
    padding: 0;
}

/* ===== 信息区域 ===== */
.info-section {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease 0.3s both;
}

.info-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #28a745);
    border-radius: 3px;
}

/* ===== 信息网格 ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 固定每行2列 */
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.6) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 123, 255, 0.2);
}

.info-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-value {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
}

/* ===== 类型标签 ===== */
.type-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.type-badge.automatic {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.type-badge.manual {
    background: linear-gradient(135deg, #fd7e14, #ffc107);
    color: white;
}

.type-badge.change-password,
.type-badge.verify-account-password {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

/* ===== 支付标签 ===== */
.payment-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* ===== 价格卡片 ===== */
.price-card {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.total {
    border-top: 2px solid rgba(40, 167, 69, 0.2);
    margin-top: 8px;
    padding-top: 20px;
    font-size: 16px;
    font-weight: 700;
}

.price-row.discount .price-value {
    color: #28a745;
    font-weight: 700;
}

.price-label {
    font-size: 14px;
    color: #6c757d;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.price-value {
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
}

.price-row.total .price-value {
    color: #28a745;
    font-size: 18px;
}

/* ===== 现代化按钮 ===== */
.action-section {
    padding: 25px 30px;
    display: flex;
    justify-content: center;
}

.btn-modern {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.btn-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-modern:active {
    transform: translateY(0);
}

.btn-repay {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-repay:hover {
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.btn-copy {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-copy:hover {
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.btn-copy.success-state {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.btn-copy.error-state {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.btn-download {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-download:hover {
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.btn-download.loading-state {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    cursor: not-allowed;
}

.btn-download.success-state {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.btn-download.error-state {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.btn-group-modern {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== 结果区域 ===== */
.result-section {
    padding: 25px 30px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

/* ===== 文件信息卡片 ===== */
.file-info-card {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.file-info-header {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.file-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #495057;
    padding: 8px 0;
}

.file-item i {
    margin-right: 10px;
    font-size: 16px;
}

/* ===== 卡密卡片 ===== */
.kami-card {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.kami-textarea {
    width: 100%;
    border: 2px solid rgba(0, 123, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
    line-height: 1.6;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.6) 100%);
    resize: vertical;
    transition: all 0.3s ease;
}

.kami-textarea:focus {
    outline: none;
    border-color: rgba(0, 123, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* ===== ZIP密码显示区域 ===== */
.password-section {
    animation: fadeInUp 0.6s ease;
}

.password-card {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.password-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #fd7e14);
}

.password-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
    color: #856404;
}

.password-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.password-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.password-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255, 193, 7, 0.4);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 2px;
    text-align: center;
    transition: all 0.3s ease;
}

.password-input:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    background: rgba(255, 255, 255, 1);
}

.btn-copy-password {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.btn-copy-password:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-copy-password:active {
    transform: translateY(0);
}

.btn-copy-password.success-state {
    background: linear-gradient(135deg, #28a745, #20c997);
    animation: pulse 0.5s ease;
}

.btn-copy-password.error-state {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    animation: pulse 0.5s ease;
}

.password-note {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #856404;
    background: rgba(255, 193, 7, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

/* ===== 现代化Toast ===== */
.toast-modern {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 16px 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    min-width: 300px;
    animation: slideInRight 0.3s ease;
    pointer-events: all;
}

.toast-modern.toast-success {
    border-left: 4px solid #28a745;
}

.toast-modern.toast-error {
    border-left: 4px solid #dc3545;
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
    color: #28a745;
}

.toast-error .toast-icon {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
    color: #dc3545;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 14px;
    color: #2c3e50;
    margin-bottom: 2px;
}

.toast-message {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    font-size: 16px;
    color: #6c757d;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.2s ease;
    margin-left: 10px;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #2c3e50;
}

/* ===== 面包屑增强 ===== */
.breadcrumb-enhanced {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.breadcrumb-enhanced .breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.breadcrumb-enhanced .breadcrumb-item a:hover {
    color: #0056b3;
    transform: translateX(2px);
}

.breadcrumb-enhanced .breadcrumb-item.active {
    color: #6c757d;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* ===== 响应式设计 ===== */

/* 平板端适配 (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .info-item {
        padding: 18px;
    }
    
    .modern-order-card {
        margin: 0 20px;
    }
}

/* 手机横屏/小平板 (481px - 768px) */
@media (max-width: 768px) {
    .modern-order-card {
        margin: 0 15px;
        border-radius: 16px;
    }

    .order-header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        text-align: center;
    }

    .order-title {
        font-size: 20px;
        justify-content: center;
    }

    .order-number {
        justify-content: center;
        font-size: 13px;
    }

    .info-section {
        padding: 20px;
    }

    .info-grid {
        grid-template-columns: 1fr; /* 手机端改为单列布局 */
        gap: 15px;
    }

    .info-item {
        padding: 16px;
        border-radius: 12px;
    }

    .info-icon {
        width: 38px;
        height: 38px;
        margin-right: 12px;
    }

    .info-icon i {
        font-size: 17px;
    }

    .info-label {
        font-size: 11px;
    }

    .info-value {
        font-size: 14px;
        word-break: break-all; /* 防止长文本溢出 */
    }

    .section-title {
        font-size: 17px;
        text-align: center;
        justify-content: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }

    .price-card,
    .file-info-card,
    .kami-card {
        padding: 18px;
        border-radius: 12px;
    }

    .price-row {
        padding: 10px 0;
        flex-wrap: wrap;
    }

    .price-label,
    .price-value {
        font-size: 13px;
    }

    .price-row.total .price-value {
        font-size: 16px;
    }

    .btn-modern {
        min-width: auto;
        width: 100%;
        font-size: 14px;
        padding: 12px 24px;
    }

    .btn-group-modern {
        flex-direction: column;
        gap: 12px;
    }

    .action-section {
        padding: 20px;
    }

    .breadcrumb-enhanced {
        margin: 0 15px;
        padding: 10px 15px;
        font-size: 13px;
    }

    .toast-modern {
        min-width: 280px;
        margin: 0 15px 12px;
    }

    .status-badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .type-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
    
}

/* 小屏手机端 (最大480px) */
@media (max-width: 480px) {
    .modern-order-card {
        margin: 0 10px;
        border-radius: 12px;
    }

    .order-header {
        padding: 15px;
        gap: 10px;
    }

    .order-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .order-number {
        font-size: 12px;
    }

    .info-section {
        padding: 15px;
    }

    .info-item {
        padding: 12px;
        flex-direction: row; /* 保持横向布局 */
        text-align: left;
        align-items: center;
    }

    .info-icon {
        width: 32px;
        height: 32px;
        margin-right: 10px;
        flex-shrink: 0;
    }

    .info-icon i {
        font-size: 14px;
    }

    .info-label {
        font-size: 10px;
        margin-bottom: 2px;
    }

    .info-value {
        font-size: 13px;
        line-height: 1.3;
        word-break: break-all;
    }

    .price-card,
    .file-info-card,
    .kami-card {
        padding: 15px;
        border-radius: 10px;
    }

    .price-row {
        padding: 8px 0;
        font-size: 12px;
    }

    .price-label {
        font-size: 12px;
    }

    .price-value {
        font-size: 12px;
    }

    .price-row.total {
        font-size: 14px;
        padding-top: 15px;
    }

    .price-row.total .price-value {
        font-size: 15px;
    }

    .section-title {
        font-size: 15px;
    }

    .section-title::after {
        width: 30px;
    }

    .btn-modern {
        padding: 11px 18px;
        font-size: 13px;
        min-height: 44px; /* 确保触摸友好 */
    }

    .action-section {
        padding: 15px;
    }

    .breadcrumb-enhanced {
        margin: 0 10px;
        padding: 8px 12px;
        font-size: 12px;
    }

    .toast-modern {
        min-width: 260px;
        margin: 0 10px 10px;
        padding: 12px 15px;
        font-size: 13px;
    }

    .status-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .type-badge {
        font-size: 10px;
        padding: 4px 8px;
    }

    .payment-badge {
        font-size: 11px;
        padding: 5px 10px;
    }

    /* 文件相关样式优化 */
    .file-list {
        gap: 8px;
    }

    .file-item {
        padding: 8px;
        font-size: 12px;
    }

    /* 卡密区域优化 */
    .kami-textarea {
        font-size: 12px;
        padding: 10px;
    }

    /* 密码区域优化 */
    .password-card {
        padding: 15px;
        margin: 15px 0;
    }

    .password-display {
        flex-direction: column;
        gap: 12px;
    }

    .password-input {
        font-size: 14px;
        padding: 10px 12px;
        letter-spacing: 1px;
    }

    .btn-copy-password {
        width: 100%;
        height: 40px;
        border-radius: 10px;
    }

    .password-note {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* 超小屏手机端 (最大360px) */
@media (max-width: 360px) {
    .modern-order-card {
        margin: 0 8px;
        border-radius: 10px;
    }

    .order-header {
        padding: 12px;
    }

    .order-title {
        font-size: 16px;
    }

    .order-number {
        font-size: 11px;
    }

    .info-section {
        padding: 12px;
    }

    .info-item {
        padding: 10px;
    }

    .info-icon {
        width: 28px;
        height: 28px;
        margin-right: 8px;
    }

    .info-icon i {
        font-size: 12px;
    }

    .info-label {
        font-size: 9px;
    }

    .info-value {
        font-size: 12px;
    }

    .section-title {
        font-size: 14px;
    }

    .price-card,
    .file-info-card,
    .kami-card {
        padding: 12px;
    }

    .btn-modern {
        padding: 10px 16px;
        font-size: 12px;
    }

    .action-section {
        padding: 12px;
    }

    .status-badge {
        font-size: 10px;
        padding: 5px 10px;
    }

    .type-badge {
        font-size: 9px;
        padding: 3px 6px;
    }

    /* 密码区域超小屏优化 */
    .password-card {
        padding: 12px;
        margin: 12px 0;
    }

    .password-header {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .password-input {
        font-size: 13px;
        padding: 8px 10px;
        letter-spacing: 1px;
    }

    .btn-copy-password {
        width: 100%;
        height: 36px;
        font-size: 14px;
    }

    .password-note {
        font-size: 11px;
        padding: 5px 8px;
    }
}

/* 横屏模式优化 */
@media (max-height: 600px) and (orientation: landscape) {
    .modern-order-card {
        margin: 0 20px;
    }

    .order-header {
        padding: 15px 20px;
    }

    .info-section {
        padding: 15px 20px;
    }

    .action-section {
        padding: 15px 20px;
    }

    .section-title {
        margin-bottom: 15px;
    }

    .info-grid {
        gap: 12px;
    }

    .info-item {
        padding: 12px;
    }
} 