/**
 * Number Steps Widget Styles
 */

.number-steps-widget {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.number-step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.number-step-header {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.number-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.number-step-circle:hover {
    transform: scale(1.1);
}

.number-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.number-step-icon i {
    font-size: 24px;
    line-height: 1;
    display: block;
    transition: all 0.3s ease;
}

.number-step-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    transition: all 0.3s ease;
}

.number-step-line {
    flex: 1;
    height: 1px;
    background-color: #e0e0e0;
}

.number-step-item:first-child .number-step-header {
    justify-content: flex-start;
    padding-left: calc(50% - 25px);
}

.number-step-item:last-child .number-step-header {
    justify-content: flex-end;
    padding-right: calc(50% - 25px);
}

.number-step-line-left {
    margin-right: -1px;
}

.number-step-line-right {
    margin-left: -1px;
}

.number-step-content {
    padding: 0 15px;
}

.number-step-title {
    margin: 20px 0 0 0;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

.number-step-desc {
    margin: 10px 0 0 0;
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .number-steps-widget {
        flex-wrap: wrap;
    }
    
    .number-step-item {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
    
    .number-step-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .number-step-item {
        flex: 0 0 100%;
    }
}
