.main-article {
    margin-top: 32px;
}

.main-header {
    color: rgb(34, 128, 226);
    font-size: 26px;
    font-weight: bolder;
    font-family: SimHei, sans-serif;
    letter-spacing: 2px;
    text-align: center;
}

.main-sub-header {
    position: relative;
    color: darkgray;
    text-align: center;
    font-size: 14px;
    font-family: "Microsoft YaHei", serif;
    margin-top: 4px;
}

.main-sub-header .main-sub-header-more {
    position: absolute;
    right: 16px;
    text-decoration: none;
    color: black;
    font-size: 13px;
}

.main-sub-header-more:hover {
    text-decoration-line: underline;
}

.article-section-container {
    display: flex;
}

.article-section {
    flex: 1 1;
    margin: 0 4px;
}

.article-header {
    --primary-color: #E3F2FD;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-left-width: 2px;
    border-radius: 4px;
}

.article-header-icon {
    color: #0277BD;
    font-size: 40px;
    background-color: white;
    padding-left: 8px;
}

.article-header-triangle {
    --triangle-size: 30px;
    border-left: var(--triangle-size) solid white;
    border-top: var(--triangle-size) solid transparent;
    border-bottom: var(--triangle-size) solid transparent;
}

.article-header-text {
    flex: 1 1;
    color: #1E88E5;
    font-family: SimHei, sans-serif;
    font-size: 25px;
    padding-left: 4px;
}

.article-header .article-list-more {
    text-decoration: none;
    margin-right: 16px;
    color: black;
    font-size: 13px;
}

.article-list-more:hover {
    text-decoration-line: underline;
}

ul.article-list {
    padding: 0 8px;
    list-style-position: inside;
    list-style-type: '● ';
}

.article-list-item {
    border-bottom: 1px solid #EEEEEE;
}

.article-list-item::marker {
    color: orange;
}

.article-list-item-link {
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    width: calc(100% - 16px);
    text-decoration: none;
}

.article-list-item-link:hover {
    --hover-color: orangered;
    color: var(--hover-color);
    text-decoration: underline;
}

.article-list-item-link:hover .article-list-item-text {
    color: var(--hover-color);
}

.article-list-item-text {
    flex: 1 1;
    color: black;
    font-size: 14px;
}

.article-list-item-date {
    font-size: 12px;
    color: #757575;
}
