
.process-page {
    margin-top: 120px;
    min-height: calc(100vh - 120px);
    background: var(--gray-light);
    padding: 0 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-page-inner {
    width: 100%;
    max-width: 1240px;
    padding: 0 32px;
}

.process-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 18px;
    border-bottom: 1px solid #e6e8ec;
    margin-bottom: 20px;
}

.process-head-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.process-head-icon {
    width: 70px;
    height: 50px;
    border: 1px solid #e6e8ec;
}
.process-head-icon img{
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-size: cover;
    background-repeat: no-repeat;
}

.process-head h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.process-head h1 small {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #5b6778;
    margin-top: 2px;
}

.process-head-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.process-head-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    background: rgba(9, 81, 155, 0.06);
    color: var(--primary-color);
    border: 1px solid rgba(9, 81, 155, 0.15);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.process-head-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.step-track {
    margin-bottom: 20px;
    background: var(--white);
    
    box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 1px 2px rgba(0,0,0,0.04);
    padding: 0 10px;
}

.step-track-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 12px 0;
}

.step-track-progress {
    display: none;
}

.step-node {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 14px;
    user-select: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.step-line {
    flex: 1;
    height: 1px;
    background: #d4d8df;
    min-width: 20px;
}

.step-node-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    background: var(--white);
    border: 1.5px solid #d4d8df;
    color: #9aa3b2;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
}

.step-node.done .step-node-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: transparent;
}

.step-node.done .step-node-circle::after {
    content: "\2713";
    position: absolute;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.step-node.active .step-node-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    /* 光圈呼吸动画见 web/style/subpage-common.css（5 国共用） */
}

.step-node-label {
    font-size: 13px;
    color: #9aa3b2;
    line-height: 1.3;
    white-space: nowrap;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-node.active .step-node-label {
    color: var(--text-dark);
    font-weight: 600;
}

.step-node.done .step-node-label {
    color: var(--text-dark);
}

.process-body {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.process-aside {
    width: 300px;
    flex-shrink: 0;
    flex-grow: 0;
}

.process-aside-sticky {
    position: sticky;
    top: 144px;
    height: fit-content;
}

.process-aside-card {
    background: var(--white);
    border: 1px solid #e6e8ec;
    border-left: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 1px 2px rgba(0,0,0,0.04);
    overflow: hidden;
}

.process-aside-header {
    padding: 20px 20px 16px;
    border-bottom: 1px solid #e6e8ec;
}

.process-aside-header h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.process-aside-header h3 svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.aside-guide {
    padding: 0;
}

.aside-guide-section {
    border-bottom: 1px solid #e6e8ec;
    padding: 18px 20px;
}

.aside-guide-section:last-child {
    border-bottom: none;
}

.aside-guide-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.5;
}

.aside-guide-title .num {
    color: var(--primary-color);
    font-weight: 700;
    flex-shrink: 0;
}

.aside-guide-desc {
    font-size: 13px;
    color: #5b6778;
    line-height: 1.7;
    margin-bottom: 8px;
}

.aside-guide-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.aside-guide-link:hover {
    opacity: 0.75;
}

.aside-guide-entity {
    margin-top: 10px;
    padding: 12px 12px;
    background: var(--gray-light);
    
    border: 1px solid #e6e8ec;
}

.aside-guide-entity-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1.5;
}

.aside-guide-entity-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.aside-guide-entity-list li {
    font-size: 13px;
    color: #5b6778;
    line-height: 1.7;
    padding: 2px 0 2px 13px;
    position: relative;
}

.aside-guide-entity-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #9aa3b2;
}

.aside-guide-sub-list {
    list-style: none;
    margin: 0;
    padding: 4px 0 0 14px;
}


.aside-guide-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.aside-guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 4px 10px;
   
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.aside-guide-btn--primary {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.aside-guide-btn--primary:hover {
    background: rgba(9, 81, 155, 0.85);
}

.aside-guide-btn--outline {
    background: transparent;
    color: var(--primary-color);
    border-color: rgba(9, 81, 155, 0.15);
}

.aside-guide-btn--outline:hover {
    background: rgba(9, 81, 155, 0.06);
}

.aside-progress {
    display: none;
}

.aside-progress.active {
    display: block;
}

.aside-guide-wrapper {
    display: none;
}

.aside-guide-wrapper.active {
    display: block;
}

.process-aside-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.process-aside-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid #e6e8ec;
    font-size: 13px;
    color: #5b6778;
    line-height: 1.6;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
}

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

.process-aside-item-indicator {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #e6e8ec;
    background: var(--white);
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0;
}

.process-aside-item.active .process-aside-item-indicator {
    border-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(9, 81, 155, 0.1);
}

.process-aside-item.done .process-aside-item-indicator {
    border-color: #1a8a4a;
    background: #1a8a4a;
}

.process-aside-item.done .process-aside-item-indicator::after {
    content: "\2713";
    color: #fff;
    font-size: 10px;
    font-weight: bold;
}

.process-aside-item-content strong {
    display: block;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2px;
}

.process-aside-item.active .process-aside-item-content strong {
    color: var(--primary-color);
}

.process-aside-item-content p {
    margin: 0;
    font-size: 12px;
    color: #9aa3b2;
}

.process-content {
    flex: 1;
    min-width: 0;
    background: var(--white);
    border: 1px solid #e6e8ec;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 1px 2px rgba(0,0,0,0.04);
    overflow: hidden;
}

.step-panel {
    display: none;
    animation: panelIn 0.3s ease;
    padding: 32px 36px 0;
}

.step-panel.active {
    display: block;
}

@keyframes panelIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.panel-head {
    display: flex;
    align-items: flex-start;
    gap: 0px;
    flex-direction: column;
    margin-bottom: 6px;
}

.panel-head-text h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.panel-head-text p {
    font-size: 13px;
    color: #5b6778;
    margin-top: 4px;
    line-height: 1.7;
}

.panel-divider {
    height: 1px;
    background: #e6e8ec;
    margin: 22px 0 24px;
}

.required {
    color: #d84040;
    margin-left: 2px;
}

.process-form {
    max-width: 780px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field input[type="email"],
.form-field textarea {
    width: 100%;
    padding: 9px 13px;
    border: 1.5px solid #e6e8ec;
    
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    font-family: inherit;
    resize: vertical;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-field select {
    width: 100%;
    padding: 9px 13px;
    border: 1.5px solid #e6e8ec;
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    font-family: inherit;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.form-field select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(9, 81, 155, 0.08);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(9, 81, 155, 0.08);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #c5c9d0;
    font-size: 13px;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    background: var(--gray-light);
    border: 1.5px solid #e6e8ec;
    
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.download-item:hover {
    border-color: var(--primary-color);
    background: rgba(9, 81, 155, 0.06);
}

.dl-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
   
    border: 1px solid #e6e8ec;
    font-size: 18px;
    flex-shrink: 0;
}

.dl-name {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.dl-action {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
    padding: 4px 12px;
    background: rgba(9, 81, 155, 0.06);
   
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-item:hover .dl-action {
    background: rgba(9, 81, 155, 0.12);
}

.upload-zone {
    border: 2px dashed #e6e8ec;

    padding: 50px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: var(--gray-light);
}

.upload-zone:hover,
.upload-zone.drag-over {
    border-color: var(--primary-color);
    background: rgba(9, 81, 155, 0.06);
}

.upload-zone-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    
    border: 1px solid #e6e8ec;
    font-size: 18px;
    color: #9aa3b2;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.upload-zone:hover .upload-zone-icon,
.upload-zone.drag-over .upload-zone-icon {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.upload-zone-text {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
    margin-top: 4px;
}

.upload-zone-hint {
    font-size: 12px;
    color: #9aa3b2;
}

/* ==================== 文件类型图标徽标 ==================== */
.file-type-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    flex-shrink: 0;
    line-height: 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.file-type-icon svg {
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
}

.upload-zone:hover .file-type-icon,
.upload-zone.drag-over .file-type-icon {
    transform: scale(1.06);
}

/* 已上传 / 待提交条内的小徽标 */
.uploaded-bar .file-type-icon {
    width: 36px;
    height: 36px;
}
.uploaded-bar .file-type-icon svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06));
}

.upload-zone--compact {
    padding: 18px 16px;
    flex-direction: row;
    gap: 12px;
}

.upload-zone--compact .upload-zone-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
}

/* ==================== 已上传文件回显条 ==================== */
.uploaded-bar {
    margin-top: 10px;
    padding: 8px 12px;
    background: #f4faf5;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
    cursor: default;
    user-select: none;
}

.uploaded-bar-icon {
    flex-shrink: 0;
}

.uploaded-bar-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #1a8a4a;
}

.uploaded-bar-name em {
    font-style: normal;
    color: #8a9baa;
    font-size: 11px;
    margin-left: 6px;
}

.uploaded-bar--pending {
    background: #f2f7fd;
    border: 1px dashed #93bdf1;
}
.uploaded-bar--pending .uploaded-bar-name {
    color: #09519b;
}

.uploaded-bar-download {
    flex-shrink: 0;
    font-size: 12px;
    color: var(--primary-color);
    text-decoration: none;
    padding: 3px 10px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.15s;
}

.uploaded-bar-download:hover {
    background: var(--primary-color);
    color: #fff;
}

.status-card {
    border: 1.5px solid #e6e8ec;
    
    overflow: hidden;
    margin-bottom: 20px;
}

.status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #e6e8ec;
    font-size: 13px;
}

.status-row:last-child {
    border-bottom: none;
}

.status-label {
    color: #9aa3b2;
}

/* 签署文件状态行 */
.status-row--file {
    flex-wrap: wrap;
}

/* 法院审批后 · 已下发文件卡片 */
.court-files-card {
    margin-top: 12px;
    padding: 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
}
.court-files-title {
    font-size: 13px;
    font-weight: 600;
    color: #15803d;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.court-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 6px 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    margin-bottom: 4px;
    font-size: 13px;
}
.court-file-remark {
    flex-basis: 100%;
    margin-top: 10px;
    color: #92400e;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 12px;
}
.court-file-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.court-file-download {
    font-size: 12px;
    color: #09519b;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.status-row-file-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #374151;
}
.status-row-file-name {
    font-size: 13px;
}
.status-row-file-download {
    font-size: 12px;
    color: #09519b;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.status-row-file-remark {
    width: 100%;
    margin-top: 4px;
    color: #92400e;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 12px;
}

.status-value {
    color: var(--text-dark);
    font-weight: 500;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid transparent;
}

.status-badge::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-badge--processing {
    color: var(--primary-color);
    background: rgba(9, 81, 155, 0.06);
    border-color: rgba(9, 81, 155, 0.18);
}
.status-badge--processing::before {
    background: var(--primary-color);
    animation: pulseDot 1.4s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.25; }
}

.status-badge--pending {
    color: #9aa3b2;
    background: var(--gray-light);
    border-color: #e6e8ec;
}
.status-badge--pending::before { background: #9aa3b2; }

.status-badge--success {
    color: #1a8a4a;
    background: rgba(26, 138, 74, 0.06);
    border-color: rgba(26, 138, 74, 0.18);
}
.status-badge--success::before { background: #1a8a4a; }

.status-badge--danger {
    color: #d84040;
    background: rgba(216, 64, 64, 0.08);
    border-color: rgba(216, 64, 64, 0.2);
}
.status-badge--danger::before { background: #d84040; }

.timeline-compact {
    margin: 20px 0;
}

.timeline-compact-item {
    position: relative;
    padding: 0 0 20px 28px;
    font-size: 13px;
    color: #9aa3b2;
}

.timeline-compact-item:last-child {
    padding-bottom: 0;
}

.timeline-compact-item::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 18px;
    bottom: -2px;
    width: 2px;
    background: #e6e8ec;
    border-radius: 1px;
}

.timeline-compact-item:last-child::before {
    display: none;
}

.timeline-compact-item .dot {
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid #e6e8ec;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-compact-item.done .dot {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.timeline-compact-item.done .dot::after {
    content: "\2713";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 9px;
    font-weight: bold;
}

.timeline-compact-item.rejected {
    color: #d84040;
}
.timeline-compact-item.rejected .dot {
    background: #d84040;
    border-color: #d84040;
    box-shadow: 0 0 0 4px rgba(216, 64, 64, 0.15);
}
.timeline-compact-item.rejected .dot::after {
    content: "\2715";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
}

.timeline-compact-item.active .dot {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(9, 81, 155, 0.12);
    animation: tlPulse 1.6s infinite;
}

@keyframes tlPulse {
    0%   { box-shadow: 0 0 0 0 rgba(9, 81, 155, 0.35); }
    70%  { box-shadow: 0 0 0 8px rgba(9, 81, 155, 0); }
    100% { box-shadow: 0 0 0 0 rgba(9, 81, 155, 0); }
}

.timeline-compact-item.done,
.timeline-compact-item.active {
    color: var(--text-dark);
}

.timeline-compact-content h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 3px;
}

.timeline-compact-content p {
    margin: 0;
    font-size: 12px;
    color: #9aa3b2;
}

.tip-bar {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    background: var(--gray-light);
    border: 1px solid #e6e8ec;
    font-size: 13px;
    color: #5b6778;
    line-height: 1.6;
    margin-top: 10px;
}

.tip-bar--accent {
    background: rgba(9, 81, 155, 0.03);
    border-color: rgba(9, 81, 155, 0.15);
}

.tip-bar-icon {
    flex-shrink: 0;
    margin-top: 1px;
    color: #9aa3b2;
}

.tip-bar--accent .tip-bar-icon {
    color: var(--primary-color);
}

.time-slots {
    display: flex;
    justify-content:space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.time-slot-btn {
    padding: 8px 16px;
    border: 1.5px solid #e6e8ec;
    
    font-size: 13px;
    color: #5b6778;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    background: var(--white);
}

.time-slot-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(9, 81, 155, 0.06);
}

.time-slot-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.complete-block {
    margin-top: 20px;
    padding: 32px 24px;
    border: 2px dashed rgba(9, 81, 155, 0.2);
    
    text-align: center;
    background: rgba(9, 81, 155, 0.06);
}

.complete-block-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.complete-block h3 {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.complete-block p {
    font-size: 13px;
    color: #5b6778;
    margin: 0 auto;
    max-width: 380px;
    line-height: 1.7;
}

.process-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 24px 36px 32px;
    border-top: 1px solid #e6e8ec;
    margin-top: 28px;
    margin-left: -36px;
    margin-right: -36px;
    padding-left: 36px;
    padding-right: 36px;
}

.process-actions-btn {
    min-width: 110px;
    height: 38px;
    padding: 0 24px;
    
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.process-actions-btn--prev {
    background: var(--white);
    border-color: #e6e8ec;
    color: var(--text-dark);
}

.process-actions-btn--prev:hover:not(:disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(9, 81, 155, 0.06);
}

.process-actions-btn--prev:disabled {
    color: #9aa3b2;
    background: var(--gray-light);
    cursor: not-allowed;
    border-color: #e6e8ec;
}

.process-actions-btn--next {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.process-actions-btn--next:hover {
    background: rgba(9, 81, 155, 0.85);
    border-color: transparent;
    box-shadow: 0 3px 10px rgba(9, 81, 155, 0.25);
}

.process-actions-btn--next:disabled {
    background: #e6e8ec;
    border-color: #e6e8ec;
    color: #9aa3b2;
    box-shadow: none;
    cursor: not-allowed;
}

.process-actions-btn--upload {
    background: var(--white);
    border-color: #1a8a4a;
    color: #1a8a4a;
}

.process-actions-btn--upload:hover:not(:disabled) {
    background: #1a8a4a;
    color: #fff;
    box-shadow: 0 3px 10px rgba(26, 138, 74, 0.25);
}

.process-actions-btn--upload:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 1024px) {
    .process-body {
        flex-direction: column;
    }

    .process-aside {
        width: 100%;
        position: static;
    }

    .process-aside-list {
        display: flex;
        flex-wrap: wrap;
    }

    .process-aside-item {
        flex: 1;
        min-width: 140px;
        border-bottom: none;
        border-right: 1px solid #e6e8ec;
    }

    .process-aside-item:last-child {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .process-page-inner {
        padding: 0 16px;
    }

    .process-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 24px 0 20px;
    }

    .process-head h1 {
        font-size: 18px;
    }

    .process-head h1 small {
        font-size: 12px;
    }

    .step-track-inner {
        overflow-x: auto;
        gap: 0;
        padding: 8px 0;
    }

    .step-node {
        padding: 4px 10px;
        min-width: auto;
    }

    .step-node-circle {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .step-node-label {
        font-size: 12px;
    }

    .step-panel {
        padding: 24px 20px 0;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .process-actions {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .process-actions-btn {
        width: 100%;
    }

    .process-aside-list {
        flex-direction: column;
    }

    .process-aside-item {
        border-right: none;
        border-bottom: 1px solid #e6e8ec;
    }
}

/* 可折叠总体流程 */
.process-overview {
    background: var(--white);
    border: 1px solid #e6e8ec;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 1px 2px rgba(0,0,0,0.04);
}

.process-overview-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    user-select: none;
    list-style: none;
}

.process-overview-summary::-webkit-details-marker {
    display: none;
}

.process-overview-arrow {
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-color);
}

details[open] .process-overview-arrow {
    transform: rotate(180deg);
}

.process-overview-content {
    padding: 0 20px 18px;
    border-top: 1px solid #e6e8ec;
}

.process-overview-content p {
    font-size: 13px;
    color: #5b6778;
    line-height: 1.7;
    margin: 14px 0 10px;
}

.process-overview-content ol {
    margin: 0;
    padding-left: 20px;
}

.process-overview-content ol li {
    font-size: 13px;
    color: #5b6778;
    line-height: 1.8;
    padding: 2px 0;
}

.process-overview-note {
    font-weight: 500;
    color: var(--primary-color) !important;
    margin-top: 12px !important;
}
