#scene {
    padding: 50px 0;
}

#scene .item {
    background: #f2f2f2;
    margin-bottom: 20px;
}

#scene .item .top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 10px;
    border-bottom: 1px solid #606266;
}

#scene .item .top .text {
    font-size: 18px;
    color: #303133;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#scene .item .top .text .size {
    font-size: 14px;
    margin-left: 10px;
}

#scene .item .top .tag {
    display: inline-block;
    height: 32px;
    padding: 0 10px;
    line-height: 30px;
    border: 1px solid #b3d8ff;
    background: #ffffff;
    color: #409EFF;
    box-sizing: border-box;
    white-space: nowrap;
    border-radius: 4px;
}

#scene .item .bottom {
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
}

#scene .item .bottom .img {
    display: block;
    margin: 10px;
}

#scene .item .bottom .img img {
    height: 280px;
    width: 100%;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    flex: 1;
}

.step-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #c0c4cc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    margin-bottom: 6px;
    position: relative;
}

.step.active .step-icon {
    background: #1890ff;
}

.step.completed .step-icon {
    background: #52c41a;
}

.step-label {
    font-size: 12px;
    color: #999;
    text-align: center;
    line-height: 1.4;
}

.step.active .step-label {
    color: #1890ff;
    font-weight: 500;
}

.step.completed .step-label {
    color: #52c41a;
}

.progress-line {
    position: absolute;
    top: 14px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #c0c4cc;
    z-index: 1;
}

.progress-fill {
    height: 100%;
    background: #52c41a;
    width: 0;
    transition: width 0.3s;
}

.scene-box {
    background: #f2f2f2;
    padding: 30px 20px;
    box-sizing: border-box;
    display: flex;
    margin-bottom: 20px;
}

.scene-box .box-flex {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.scene-box div {
    font-size: 14px;
}

.scene-box .box-circle {
    background: #22262b;
    border-radius: 50%;
    color: #fff;
    height: 30px;
    width: 30px;
    padding: 15px;
    font-size: 14px;
}