@charset "utf-8";

/* history */
#time-line {
    width: 85%;
    float: left;
    margin-right: 20px;
    margin-top: 20px;
}

#time-line #circle {
    width: 100px;
    height: 100px;
    border: 6px solid red;
    background: white;
    border-radius: 95px;
    text-indent: 0;
    text-align: center;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    float: right;
}

#time-line #circle:hover {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
}

#time-line #circle .title {
    margin-top: 24px;
    font-size: 18px;
    color: black;
    line-height: 24px;
}

#time-line #content {
    width: 200px;
    padding-top: 10px;
    background: url('../images/vertical.png') repeat-y 145px 2px;
    float: right;
}

#time-line .lileft {
    line-height: 55px;
    text-align: right;
    display: inline-block;
    width: 108px;
}

#time-line .lileft .date {
    color: #333;
    font-size: 18px;
}

#time-line .point {
    width: 50px;
    height: 55px;
    background: url('../images/point.png') no-repeat 8px 14px;
    display: inline-block;
    vertical-align: middle;
}

#time-line .point b {
    height: 16px;
    width: 16px;
    background: #fff;
    display: block;
    margin: 15px 0 0 27px;
    border-radius: 18px;
    border: 2px solid red;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
    cursor: pointer;
}

#time-line .thiscur .point b {
    width: 26px;
    height: 26px;
    border: 5px solid red;
    margin: 11px 0px 0px 22px;
    border-radius: 52px;
}

@media screen and (max-width: 992px) {

    #time-line #circle {
        width: 70px;
        height: 70px;
        border: 4px solid red;
    }

    #time-line #circle .title {
        margin-top: 12px;
        font-size: 13px;
        color: black;
        line-height: 17px;
    }

    #time-line #content {
        width: 200px;
        padding-top: 10px;
        padding-left: 35px;
        background: url(../images/vertical.png) repeat-y 162px 2px;
        background-size: 6px;
        float: right;
    }

    #time-line .lileft .date {
        color: #333;
        font-size: 14px;
    }

    #time-line .point b {
        height: 12px;
        width: 12px;
        margin: 18px 0 0 10px;
    }

    #time-line .thiscur .point b {
        width: 19px;
        height: 19px;
        border: 4px solid red;
        margin: 14px 0px 0px 7px;
        border-radius: 52px;
    }

    #time-line .point {
        background: url(../images/point.png) no-repeat -5px 15px;
    }
}