/**
* @Author : Nana
* @Date : 2019/3/20 16:10
* @Version 1.0
*/

/* archives */
.archivesSummary {
    margin: 10px auto;
    text-align: center;
    font-size: 1.5em;
    color: #2c3e50;
}
.archivesNum {
    font-size: 1.2em;
    font-weight: bold;
}
.timeline {
    position: relative;
    border-left: 2px solid #f5f5f5;
    color: #666;
    /*padding: 20px;*/
}
.timelineTitle {
    position: relative;
    padding: 20px;

}
.timelineTitle::after {
    content: "";
    width: 15px;
    height: 15px;
    border: 1px solid #bbb;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: -10px;
    background-color: #bbb;
}
.timelineYear {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #888;
}
.timelineContent {
    position: relative;
}
.timelineContentItem {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #888;
    cursor: pointer;
}
.timelineContentItem::after {
    content: '';
    width: 10px;
    height: 10px;
    border: 2px solid #bbb;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: -28px;
    background-color: #fff;
}
.timelineContentItem:hover {
    /*color: #000;*/
    color: #2c3e50;
    border-bottom-color: #2C3E50;
}
.timelineContentItem:hover::after {
    background-color: #bbb;
}