@charset "UTF-8";

.time-line{
    width: 100%;
    margin: auto;
    .time-item{
        position: relative;
        padding-bottom: 3em;
        &:first-child{
            margin-top: 10%;
        }
        &:before{
            content: '';
            position: absolute;
            left: 5px;
            top: 0;
            z-index: 0;
            width: 1px;
            height: 100%;
            background-color: @color-cc;
        }
        .time-pos{
            position: absolute;
            left: -5px;
            top: 18px;
            z-index: 10;
            width: 20px;
            height: 20px;
            line-height: 20px;
            background-color: @color-ff;
            border: 1px solid @primary;
            border-radius: 50%;
            text-align: center;
            cursor: pointer;
        }
        .time-pic{
            &:before{
                content: '';
                width: 20px;
                height: 20px;
                border-radius: 50%;
                background-color: @color-ff;
            }
        }
        .time-content{
            padding-left: 25px;
        }
    }
}