/* 完全独立的样式作用域 */
#process-section-wrapper {
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* 确保Font Awesome图标正常显示 */
#process-section-wrapper .fas,
#process-section-wrapper .far,
#process-section-wrapper .fab {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

.process-container {
    width: 980px;
    padding: 20px 40px; /* 最后一个值控制底部内边距 */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-header {
    margin-top: 10px !important;  /* 从 22px 改为 10px 或更小 */
    text-align: center;
    margin-bottom: 10px !important;
}

.process-header h2 {
    font-size: 24px;
    font-weight: 700;
    font-weight: bold; /* 双重保障 */
    color: #ffbe92;
    margin: 0;
    padding: 0; /* 添加padding重置 */
    letter-spacing: 1px;
    line-height: 1.2;
    text-align: center;
    display: block; /* 确保块级显示 */
    width: 100%; /* 确保宽度 */
    box-sizing: border-box; /* 盒模型统一 */
}

/* 流程容器样式 */
.process-flow {
    position: relative;
    padding: 20px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* 流程步骤样式 */
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    width: 900px; /* 9个步骤 * 100px = 900px */
}

.process-step {
    text-align: center;
    width: 100px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.2);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 0;
    margin: 0;
}

.process-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    font-size: 1.5em;
    width: 60px;
    height: 60px;
}

.process-step-icon i {
    font-size: 36px;
    color: #4fc3f7;
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
}

.process-step-title {
    font-size: 14px;
    font-weight: 700;
    color: #4fc3f7;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    line-height: 1.2;
    text-align: center;
    width: 100%;
}


/* 鼠标悬停效果 */
.process-step:hover {
    transform: translateY(-5px);
}

.process-step:hover .process-step-icon i {
    transform: scale(1.2);
    color: #ffbe92;
}

.process-step:hover .process-step-title {
    color: #ffbe92;
}

.process-step:hover .process-step-desc {
    color: #BBB;
}