/* 定制流程板块 - 完整修正版 */
#process-section-wrapper {
    color: #333;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Awesome图标修正 */
#process-section-wrapper .fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.process-container {
    width: 1200px;
    padding: 20px 40px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    position: relative;
}

.process-header {
    text-align: center;
    margin-top: 10px;
    width: 100%;
}

.process-header h2 {
    font-size: 24px;
    font-weight: bold;
    color: #ffff00;
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
    line-height: 1.2;
    text-align: center;
}

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

/* 流程步骤样式 */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 900px;
    margin: 0 auto;
    padding: 0;
}

.process-step {
    text-align: center;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 0;
}

.process-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    width: 60px;
    height: 60px;
}

.process-step-icon i {
    font-size: 36px;
    color: #4fc3f7;
    display: inline-block;
}

/* 步骤标题文字 - 白色 */
.process-step-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 8px;
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

/* 使用transform精确居中 */
.process-hobby-image {
    text-align: center;
    margin: 20px auto;
    width: 1200px;
    position: relative;
}

.process-hobby-image a {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* 精确居中 */
    width: 981px;
}

.process-hobby-image img {
    width: 981px;
    height: 172px;
    display: block;
}
/* 清除浮动 */
.clear {
    clear: both;
}