.blog-articles {
    display: none;
    font-size: 16px;
    /*display: flex;*/
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: space-between;
    gap: 1em;
}
.blog-articles.active {
    display: flex;
}
.blog-articles.gap-l {
    gap: 1.2em;
}
.article-card {
    position: relative;
    display: flex;
    background-color: #fff;
    border-radius: 0.5em;
    overflow: hidden;
}
.article-card.direction-horizontal {
    flex-direction: row;
    width: 24.2em;
    height: 9em;
}
.article-card.direction-vertical {
    flex-direction: column;
    width: 18em;
    height: 19em;
}
.article-card--left, .article-card--right, .article-card--up, .article-card--down {
    position: relative;
}
.article-card--right, .article-card--down {
    flex: 1;
}
.article-card--left, .article-card--right {
    height: 100%;
}
.article-card--up, .article-card--down {
    width: 100%;
}
.article-card--up {
    aspect-ratio: 386 / 210;
}
.article-desc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    width: 100%;
    height: 100%;
}
.article-card--right .article-desc {
    padding: 1em 0.8em 1em 0;
}
.article-card--down .article-desc {
    padding: 1em;
}
.article-coverPic {
    position: relative;
    width: 100%;
    height: 100%;
}
.article-coverPic > h2 {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
}
.article-coverPic > a {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.article-coverPic > .overlay {
    position: absolute;
    width: 100%;
    box-sizing: border-box;
    bottom: 0;
    padding: 15px 20px;
    font-size: 14px;
    line-height: 22px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #fff;
    background: rgba(0, 0, 0, .4);
    border-radius: 0 0 8px 8px;
}
.article-desc--title {
    font-size: 1.1em;
    line-height: 1.5;
    word-break: break-word;  /* 单词断行 */
    text-align: justify;  /* 两边对齐 */
    font-variant-numeric: tabular-nums;  /* 数字占位相同 */
    letter-spacing: 0.04em;
}
.article-card.direction-horizontal .article-desc--title {
    font-size: 1em;
}
.article-desc--date {
    font-size: 1em;
    line-height: 1.5;
    color: var(--text-color-gray);
}
.article-card > a {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.article-card:hover {
    /*box-shadow: 0 2px 2px 0 rgba(44,71,146,0.17);*/
    box-shadow: 0 6px 24px rgba(28, 76, 186, .1);
}
.article-card:hover .article-desc--title {
    color: var(--text-color-blue);
}
.article-card--left > img {
    width: 8em;
    height: 8em;
    margin: .5em;
}
.article-card--left > .overlayT {
    position: absolute;
    font-size: 1.2em;
    line-height: 1;
    font-weight: 500;
    top: 53%;
    left: 46%;
    transform: translate3d(-24%, -59%, 0) rotate(-9deg);
}
.article-card:hover .overlayT {
    color: #ff7774;
}
@media screen and (max-width: 768px){
    .blog-articles {
        justify-content: space-around;
    }
    .blog-articles {
        gap: 0.8em;
    }
    .blog-articles.gap-l {
        gap: 1em;
    }
    #module-3 .container {
        padding: 0 10px;
    }
    .article-card.direction-horizontal,
    .article-card.direction-vertical {
        width: 100%;
        height: 6em;
    }
    .article-card.direction-vertical {
        flex-direction: row;
        border-radius: 0;
    }
    .article-card.direction-vertical .article-card--up {
        width: 9em;
        /*width: unset;*/
    }
    .article-card--left > img {
        width: 6em;
        height: 6em;
        margin: 0 0.5em;
    }
    .article-card--left > .overlayT {
        font-size: 0.8em;
        top: 54%;
        left: 47%
    }
    .article-card--down .article-desc,
    .article-card--right .article-desc {
        padding: 0.5em
    }
    .article-card--down .article-desc {
        padding-left: 0.8em;
    }
    .article-card.direction-horizontal .article-desc--title,
    .article-card.direction-vertical .article-desc--title {
        font-size: 0.9em;
        line-height: 1.2;
    }
    .article-desc--date {
        font-size: 0.7em;
    }
}


#module-1 {
    padding: 30px 0;
}
#module-1 .content{
    display: flex;
    align-items: center;
    height: 440px;
}
#module-1 .content-left, #module-1 .content-right {
    height: 100%;
}
#module-1 .content-left {
    margin-right: auto;
}
#module-1 .poster-wrapper {
    position: relative;
    width: 793px;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}
#module-1 .poster-slideshow {
    display: flex;
    flex-wrap: nowrap;
    width: 793px;
    height: 440px;
}
#module-1 .slide-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .3s ease;
    flex-shrink: 0;
}
#module-1 .slide-item.active {
    opacity: 1;
}
#module-1 .slide-item > h2 {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
}
#module-1 .slide-item > a {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.poster-dots {
    position: absolute;
    display: flex;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    padding: 5px;
    z-index: 2;
}
.dot-item {
    position: relative;
    width: 10px;
    height: 10px;
    margin: 0 3px;
    /*background-color: #c7c7c7;*/
    background-color: rgba(255, 255, 255, .3);
    border-radius: 5px;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}
.dot-item.active {
    background-color: rgba(255, 255, 255, .9);
}
/*
.dot-item .dot-fill {
    position: absolute;
    width:0;
    height: 100%;
    transition-duration: 0ms;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, .9);
}
.dot-item.active {
    width: 100px;
}
.dot-item.active .dot-fill {
    width: 100%;
    transition: width 3000ms linear;
}

 */
#module-1 .content-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
#module-1 .content-right > div {
    width: 386px;
    height: 210px;
}

#module-1 .content-right .article-coverPic {
    border-radius: 8px;
    overflow: hidden;
}

#module-2 .content-filter {
    display: flex;
    align-items: center;
    height: 64px;
}
#module-2 .filter-tabs {
    position: relative;
    display: flex;
    height: 100%;
    margin-right: auto;
}
#module-2 .tab-item {
    display: flex;
    align-items: center;
    padding: 0 36px;
    font-size: 20px;
    color: #12141D;
    height: 100%;
    cursor: pointer;
}
#module-2 .tab-item:nth-child(1) {
    padding-left: 0;
}
#module-2 .tab-item.active{
    color: var(--text-color-blue);
}
#module-2 .selectTabLine {
    position: absolute;
    height: 2px;
    bottom: 0;
    background-color: var(--text-color-blue);
    transition: .2s ease-in-out;
}
#module-3 {
    padding: 32px 0;
    background-color: #F8F8F8;
}
@media screen and (max-width: 768px){
    #module-2 .filter-tabs {
        justify-content: space-between;
        width: 100%;
    }
    #module-2 .tab-item {
        padding: 0;
        font-size: 14px;
    }
    #module-3 {
        padding: 20px 0;
    }
}

.divider {
    width: 100%;
    border-bottom: 1px solid var(--underline-color-gray);
    margin: 15px 0 30px;
}

#module-4 {
    padding: 60px 0;
    background: linear-gradient(to bottom, #fff, #F5F7F9);
}
#module-4 .article-main {
    width: 80%;
    padding-right: 30px;
    border-right: 1px solid #f1f1f1;
}
#module-4 .aside-right {
    flex-shrink: 0;
    width: 20%;
    padding-left: 30px;
}
.aside-month {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.group-length {
    font-size: 14px;
    font-weight: 400;
    background: #F8F8F8;
    color: #6B6D70;
    padding: 0 5px;
    margin-left: 10px;
}

.article-header {
    font-size: 36px;
    line-height: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom:24px;
}
.article-meta {
    display: flex;
    align-items: center;
}
.article-meta>* {
    display: flex;
    font-size: 14px;
    line-height: 14px;
    color: #999;
    margin-right: 28px;
}
.article-meta .iconfont {
    position: relative;
}
.icon-user {
    top: -1px;
    margin-right: 1px;
}
.icon-time-circle {
    top: -1px;
    margin-right: 2px;
}
.icon-folder {
    margin-right: 2px;
}
.tips-2 {
    display: flex;
    align-items: center;
    padding: 28px 30px;
    box-shadow: 0 2px 2px 0 rgba(44,71,146,0.17);
    border-radius: 6px;
    border: 1px solid #F5F7F9;
}
.tips-content {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 1px;
    margin-right: 30px;
    color: #999;
}
.tips-button {
    flex-shrink: 0;
}
.tips {
    padding: 20px 15px;
}

.article-tags {
    margin: 30px 0;
}
.article-related {
    display: flex;
    /*align-items: center;*/
    border-top: 1px solid rgba(107, 109, 112, .18);
    border-bottom: 1px solid rgba(107, 109, 112, .18);
}
.article-related--previous, .article-related--next {
    position: relative;
    flex: 1;
    padding: 28px 0;
}
.article-related--previous > a,
.article-related--next > a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.article-related--previous:hover *,
.article-related--next:hover * {
    color: var(--text-color-blue);
}
.article-related--previous {
    padding-right: 30px;
}
.article-related--next {
    padding-left: 30px;
}
.article-related--divider {
    width: 1px;
    height: 100px;
    align-self: center;
    background: rgba(107, 109, 112, .18);
}
.related-up {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-color-blue);
}
.article-related--previous .related-up {
    justify-content: left;
}
.article-related--next .related-up {
    justify-content: right;
}
.article-related--previous .related-down {
    text-align: left;
}
.article-related--next .related-down {
    text-align: right;
}
.related-down {
    margin-top: 30px;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 1px;
}

.article-recommend {
    margin-top: 30px;
}
.article-recommend--label {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.article-recommend--label .icon-heart {
    margin-right: 10px;
}
.article-recommend--list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.article-recommend--list .article-card {
    margin-bottom: 20px;
    zoom: 1.12;
}
.article-recommend--list .article-card.direction-horizontal {
    width: 27em;
}
.aside-section {
    margin-bottom: 60px;
}
.aside-section > * {
    margin-bottom: 30px;
}
.aside-articles {
    display: flex;
    flex-direction: column;
}
.aside-article-category {
    position: relative;
    padding-left: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.aside-article-category::before {
    position: absolute;
    top: 3px;
    left: 0;
    content: "";
    width: 2px;
    height: 14px;
    background: var(--text-color-blue);
}
.aside-article-item {
    padding-top: 18px;
    font-size: 14px;
    line-height: 22px;
    color: #6B6D70;
    -webkit-font-smoothing: antialiased;
}
.aside-section > header{
    font-size: 18px;
    font-weight: 500;
    color: #12141D;
}


.article-content {
    margin: 40px 0;
}
.proxy_ha {
    margin-bottom: 40px;
}
.proxy_ha > header,
.proxy_normal > header {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}
.proxy_ha > .table-tip,
.proxy_normal > .table-tip {
    font-size: 14px;
    color: #999;
}
.table-section .table td,
.table-section .table th {
    font-size: 14px;
}
@media screen and (max-width: 768px){
    #module-4 {
        padding: 30px 0;
        background: #F8F8F8;
    }
    #module-4 .article-main {
        width: 100%;
        padding: 0;
        border: none;
    }
    #module-4 .aside-right {
        display: none;
    }
    #module-4 .divider {
        margin: 20px 0;
    }
    .article-header {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 18px;
    }
    .article-content {
        margin: 0;
    }
    .table-section {
        overflow-x: auto;
    }
    .table-section .table {
        width: 1200px;
        max-width: unset;
    }
    .article-tags {
        margin: 40px 0;
    }
    .article-related {
        flex-direction: column;
        align-items: unset;
    }
    .article-related--previous {
        padding-bottom: 0;
    }
    .related-down {
        margin-top: 15px;
    }
    .article-related--previous .related-down {
        margin-left: 20px;
    }
    .article-related--next .related-down {
        margin-right: 20px;
    }
    .article-related--divider {
        display: none;
        /*align-self: center;*/
        /*width: 80%;*/
        /*height: 1px;*/
    }
    .article-recommend--list {
        justify-content: space-around;
    }
}

