.timeline-wrapper {
    background-image: linear-gradient(to bottom, #FFF, #FFF);
    color: #181818;
    font-family: "FangSong", "SimSun", serif !important;
    font-size: 14px;
    margin: 0;
    padding: 0;
    clear: both;
}
.timeline-wrapper * {box-sizing: border-box;}
.timeline-wrapper h1 {
    text-align: center;
    font-family: "FangSong", "SimSun", serif;
}
.timeline {
    position: relative;
    padding: 1rem;
    margin: 0 auto;
    width: 100%;
}
.timeline:before {
    content: "";
    position: absolute !important;
    height: 100%;
    border: 1px solid hotpink;
    right: 40px;
    top: 0;
}
.timeline:after {
    content: "";
    display: table;
    clear: both;
}
@media screen and (min-width: 700px) {
    .timeline {padding: 2rem;}
    .timeline:before {
        left: calc(50% - 1px);
        right: auto;
    }
}
.timeline__item {
    padding: 1rem;
    border: 2px solid hotpink;
    border-image: linear-gradient(to right, skyblue 0%, hotpink 100%);
    border-image-slice: 1;
    position: relative !important;
    margin: 1rem 3rem 1rem 1rem;
    clear: both;
}
.timeline__item:after, .timeline__item:before {
    content: "";
    display: table;
    position: absolute !important;
    clear: both;
}
.timeline__item:before {
    right: -10px;
    top: calc(50% - 5px);
    border-style: solid;
    border-color: hotpink hotpink transparent transparent;
    border-width: 10px;
    transform: rotate(45deg);
    clear: both;
}
@media screen and (min-width: 700px) {
    .timeline__item {
        text-align: left;
        width: 46%;
        margin: 1rem;
    }
    .timeline__item:nth-of-type(2n) {
        float: right;
        margin: 1rem;
        border-image: linear-gradient(to right, hotpink 0%, skyblue 100%);
        border-image-slice: 1;
    }
    .timeline__item:nth-of-type(2n):before {
        text-align: right;
        right: auto;
        left: -10px;
        border-color: transparent transparent hotpink hotpink;
    }
}
.timeline__item--year {
    font-family: "Times New Roman";
    text-align: center;
    max-width: 150px;
    margin: 0 48px 0 auto;
    font-size: 1.8rem;
    background-color: #FFF;
    line-height: 1;
    border-image: none;
    padding: .5rem 1rem 1rem;
}
.timeline__item--year:before, .timeline__item--year:after {
    content: "";
    display: table;
    clear: both;
}
@media screen and (min-width: 700px) {
    .timeline__item--year {
        text-align: center;
        margin: 0 auto;
    }
    .timeline__item--year:nth-of-type(2n) {
        float: none;
        margin: 0 auto;
        border-image: none;
    }
    .timeline__item--year:nth-of-type(2n):before {
        display: none;
    }
}
.timeline__title {
    margin: 0;
    font-family: "FangSong", "SimSun", sans-serif;
    font-size: 1.5em;
}
.timeline__blurb {
    line-height: 1.5;
    font-size: 1rem;
    font-family: "SimSun", sans-serif;
    margin: .5rem 0 0;
}