header {
    padding-top: 64px;
    background: #222;
    position: relative;
    overflow: visible;
}

article {
    margin: 0 auto;
    width: 100%;
    max-width: 792px;
}

.breadcrumb-line {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background-color: #E9ECEF;
    z-index: 20;
}

.breadcrumb-content {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    padding: 10px 0;
}

.breadcrumb {
    margin-bottom: 0;
    font-size: 16px;
}

.title {
    margin: 40px 0;
    border-bottom: 1px solid #D8D9DC;
}

.title p {
    line-height: 25px;
    color: #919797;
}

article {
    margin-top: 40px;
}

article p {
    padding-bottom: 29px;
    line-height: 25px;
    color: #5F6464;
}

article img {
    width: 100%;
    padding-bottom: 29px;
}

.news-section {
    width: 100%;
    background-color: #F7F7F7;
}

.news-content {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    padding: 100px 0;
}

.news-line-item {
    display: block;
    background-color: #fff;
    margin-top: 20px;
}

.news-line-item>.info {
    width: 100%;
    padding: 20px;
    position: relative;
}

.news-line-item>.info>.date {
    position: absolute;
    top: -30px;
    left: 0;
    background-color: #fff;
    width: 100px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #aaa;
}

.news-line-item>.cover {
    position: relative;
    width: 100%;
    height: 240px;
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #eee;
    background-image: url(../img/news_cover.png);
    overflow: hidden;
}

.news-line-item>.cover>img {
    width: 100%;
    min-height: 100%;
}

.news-line-item h4 {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.news-line-item p {
    color: #aaa;
}

.news-line-item>.info>.title-border {
    position: relative;
    margin: 10px 0;
    width: 100%;
    height: 1px;
    display: block;
    background-color: #eee;
}

.news-line-item>.info>.title-border::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #333;
    transition: 500ms;
}

.news-line-item:hover>.info>.title-border::before {
    width: 100%;
}