.wrap {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    box-sizing: border-box;
}

.page-header {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 55px 0 0;
    background: #fff;
}


.page-header h1 {
    font-size: 22px;
    color: #333;
    /*margin-bottom: 20px;*/
    font-weight: normal;
}

.page-header p.desc {
    font-size: 14px;
    color: #666;
    text-align: left;
    margin: 0 auto;
}

.content {
    padding: 0 50px 48px;
}

/* 温馨提示 */
.notice {
    margin-bottom: 10px;
    background: #fff;
    text-align: left;
    margin-top: 20px;
}

.notice .notice-title {
    font-size: 14px;
    color: #333;
    font-weight: bold;
}


.notice li {
    font-size: 14px;
    font-weight: bolder;
}

/* 分组标题 */
.group-title {
    text-align: center;
    font-size: 18px;
    color: #333;
    margin: 30px 0 16px;
    font-weight: 600;
}

/* 流程容器 */
.steps {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.step {
    flex: 1;
    min-width: 0;
}

/* 顶部箭头条 */
.step-head {
    position: relative;
    color: #fff;
    padding: 12px 18px 12px 34px;
    margin-right: 20px;
}
.step:first-child .step-head {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.step:last-child .step-head {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-right: 0;
}
.step:not(:first-child) .num {
   left: 25px;
}
.step:not(:first-child) .step-head {
    padding: 12px 18px 12px 48px;
}
.step-head::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 0;
    height: 0;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

.step-head::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}
.step:first-child .step-head::before {
    content: none;
}
.step:last-child .step-head::after {
    content: none;
}
.num {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* 申请流程（红色系） */
.apply .step-head {
    background: #f02528;
}

.apply .step-head::after {
    border-left: 20px solid #f02528;
}
.apply .step-head::before {
    border-left: 15px solid #fff;
}
.apply .num {
    color: #f02528;
}

.apply .step-body {
    background: #ffdbd5;
    border: 1px solid #f5c5c1;
    color: #6a2b25;
    border-radius: 6px;
}

/* 核验流程（棕橙系） */
.verify .step-head {
    background: #c58255;
}

.verify .step-head::after {
    border-left: 20px solid #c58255;
}
.verify .step-head::before {
    border-left: 15px solid #fff;
}
.verify .num {
    color: #c58255;
}

.verify .step-body {
    background: #fbf2eb;
    border: 1px solid #f4e1d2;
    color: #6a4b2f;
    border-radius: 6px;
}

.step-title {
    font-size: 14px;
    font-weight: 600;
}

.step-body {
    border-radius: 6px;
    padding: 16px 8px 0;
    font-size: 12px;
    /*line-height: 1.6;*/
    margin-top: 14px;
    min-height: 78px;
    /*box-sizing: border-box;*/
}

/* 底部四个按钮 */
.actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 90px;
}

.actions .btn {
    background: #f02528;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 0;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    min-width: 140px;
    text-align: center;
    flex: 1;
}

/* 让右侧尖角位于下层，便于下一项的左侧透明三角遮挡 */
.steps .step .step-head::after { z-index: 1; }
