 .right-area {
     flex: 1;
     min-width: 0;
     padding-bottom: 30px;
 }

 .info-title {
     position: relative;
     height: 52px;
     margin-bottom: 18px;
     border-bottom: 1px solid #dce5ef;
 }





 .section-tabs-main {
     border-bottom: 2px solid #0078de;
     font-size: 0;
 }

 .section-tab-item {
     display: inline-block;
     min-width: 132px;
     padding: 11px 28px;
     color: #333;
     font-size: 18px;
     text-align: center;
     border-radius: 4px 4px 0 0;
     background: #f5f5f5;
 }

 .section-tab-item+.section-tab-item {
     margin-left: 4px;
 }

 .section-tab-item.active {
     color: #fff;
     background: #0078de;
 }

 .page-card {
     overflow: hidden;
     background: #fff;
     border-radius: 0 0 10px 10px;
     box-shadow: 0 2px 12px rgba(24, 67, 122, 0.08);
 }

 .page-card-body {
     padding: 22px 20px 24px;
 }

 .process-flow {
     overflow-x: auto;
     overflow-y: hidden;
     padding: 6px 0 12px;
     border: 1px solid #edf2f7;
     border-radius: 8px;
     background: #fbfdff;
 }

 /* 流程图区域基础 */
.process-flow,
.process-flow * {
    box-sizing: border-box;
}

.process-flow {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 0 12px;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    background: #fbfdff;
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}
  .flow-tip {
            width: auto;
            margin: 0 0 14px;
            padding: 10px 14px;
            color: #35618f;
            font-size: 14px;
            line-height: 1.6;
            border-left: 4px solid #3a8dec;
            border-radius: 4px;
            background: #eef6ff;
        }

        .flow-stage {
            position: relative;
            width: 100%;
            max-width: 930px;
            height: 462px;
            margin: 0 auto;
        }

        .flow-lines {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
        }

        .flow-lines path {
            fill: none;
            stroke: #b9c9d9;
            stroke-width: 1.4;
        }

        .flow-lines .branch-line {
            stroke: #7dabdf;
            stroke-width: 1.6;
        }

        .flow-node {
            position: absolute;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 72px;
            padding: 6px 8px;
            color: #32445c;
            font-size: 13px;
            line-height: 1.45;
            text-align: center;
            border: 2px solid #247be0;
            border-radius: 8px;
            background: #fff;
            box-shadow: 0 2px 5px rgba(36, 123, 224, 0.08);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .flow-node:hover,
        .flow-node.active {
            color: #fff;
            border-color: #247be0;
            background: linear-gradient(135deg, #3a8dec, #247be0);
            box-shadow: 0 10px 18px rgba(36, 123, 224, 0.2);
            transform: translateY(-1px);
        }

        .flow-node.parallel {
            border-style: solid;
        }

        .flow-node-title {
            display: block;
        }

        .flow-node-subtitle {
            display: block;
            margin-top: 2px;
            font-size: 11px;
            opacity: 0.78;
        }

        .flow-node.size-main,
        .flow-node.size-parallel {
            width: 128px;
            height: 72px;
        }

        .flow-node.size-parallel {
            font-size: 12px;
        }
 .guide-detail-panel {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     margin-top: 22px;
     padding: 20px 4px 0;
 }

 .guide-detail-panel-left {
     width: 72%;
 }

 .detail-block-title {
     position: relative;
     margin-bottom: 18px;
     padding-left: 12px;
     color: #173d70;
     font-size: 18px;
     font-weight: 700;
 }

 .detail-block-title:before {
     content: "";
     position: absolute;
     top: 4px;
     left: 0;
     width: 4px;
     height: 16px;
     border-radius: 2px;
     background: #0078de;
 }

 .guide-detail-doc-list {
     margin: 0;
     padding: 0;
     list-style: none;
 }

 .guide-detail-doc-link {
     display: inline-flex;
     align-items: center;
     padding: 8px 11px;
     color: #0078de;
     font-size: 14px;
     border: 1px solid #cce0ff;
     border-radius: 4px;
     background: #fff;
     transition: all 0.2s;
 }

 .guide-detail-doc-link:hover {
     border-color: #0078de;
     background: #f0f7ff;
 }

 .guide-detail-doc-link-type {
     margin-right: 8px;
     padding: 2px 8px;
     border-radius: 3px;
     background: #dfeef8;
 }

 .guide-detail-panel-right {
     width: 24%;
     min-width: 190px;
     padding-left: 22px;
     text-align: center;
     border-left: 2px solid #e0e8f5;
 }

 .guide-detail-summary-meta-label {
     display: block;
     margin-bottom: 10px;
     color: #666;
     font-size: 14px;
 }

 .guide-detail-summary-meta-text {
     display: block;
     color: #173d70;
     font-size: 16px;
     line-height: 1.5;
 }

 @media (max-width: 1220px) {

     .page-header-inner,
     .page-area {
         width: calc(100% - 32px);
     }
 }

 @media (max-width: 860px) {
     .content {
         display: block;
     }

     .slider {
         margin-bottom: 18px;
     }

     .guide-detail-panel {
         display: block;
     }

     .guide-detail-panel-left,
     .guide-detail-panel-right {
         width: 100%;
     }

     .guide-detail-panel-right {
         margin-top: 22px;
         padding: 16px 0 0;
         border-left: none;
         border-top: 2px solid #e0e8f5;
     }
 }