.page {
    background: #F8F8F8;
}
.blog-main {
    display: flex;
    gap: 16px;
    width: 1200px;
    margin: 0 auto;
}
.blog-main .container-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.blog-main .container-right {
    margin-top: 30px;
}
.blog-main .section {
    background: none;
}
.blog-articles {
    display: none;
    font-size: 16px;
    /*display: flex;*/
    flex-direction: column;
    justify-content: flex-start;
    align-content: space-between;
    gap: 24px;
}
.blog-articles.active {
    display: flex;
}
.blog-articles.gap-l {
    gap: 1.2em;
}
.blog-articles.category-1 {

}
.article-card {
    position: relative;
    display: flex;
    gap: 24px;
    background-color: #fff;
    border-radius: 0.5em;
    overflow: hidden;
}
.article-card:hover .article-card-title {
    color: var(--text-color-blue);
}
.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 img {
    border-radius: 0.5em;
}
.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--left > img {
    width: 8em;
    height: 8em;
    margin: .5em;
}
.article-card> .overlayT {
    position: absolute;
    font-size: 1.2em;
    line-height: 1;
    font-weight: 500;
    top: 53%;
    left: 7%;
    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 0 0;
}
#module-1 .content{
    display: flex;
    align-items: center;
    gap: 16px;
}
#module-1 .content-left, #module-1 .content-right {
    height: 100%;
}

#module-1 .poster-wrapper {
    position: relative;
    width: 656px;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
}
#module-1 .poster-slideshow {
    display: flex;
    flex-wrap: nowrap;
    width: 656px;
    height: 320px;
}
#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;
    right: 24px;
    bottom: 24px;
    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;
    gap: 16px;
    height: 100%;
}
#module-1 .content-right > div {
    width: 224px;
    height: 152px;
}
#module-1 .content-right a {
    display: flex;
}


#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 0 0;
}
@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);
}

#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: 20px 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;
}
.section-proxy {
    padding: 24px;
    background-color: #FFFFFF;
    border-radius: 8px;
}
.section-proxy .proxy-title {
    font-weight: 500;
    font-size: 18px;
    color: #12141D;
}
.section-proxy .proxy-group {
    margin-top: 24px;
    display: flex;
    gap: 16px;
}
.section-proxy .proxy-item {
    width: 200px;
    height: 120px;
    background-size: 100%;
    background-image: url('../../../img/blog/bk-proxy.png');
    background-repeat: no-repeat;
    padding: 24px 16px;
    position: relative;
}
.proxy-item-title {
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
}
.proxy-item-desc {
    font-weight: 500;
    font-size: 12px;
    color: #FFFFFF;
    margin-top: 16px;
}
.section-proxy .proxy-item img {
    position: absolute;
    right: 16px;
    bottom: 16px;
}
.section-customization {
    padding: 24px;
    background: #FFFFFF;
    border-radius: 8px;
}
.customization-container {
    background: url("../../../img/blog/bk-customization.png");
    width: 848px;
    height: 124px;
    background-size: 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
    padding: 16px 16px 16px 24px;
    align-items: center;
}
.customization-title {
    font-weight: 500;
    font-size: 24px;
    color: #12141D;
}
.customization-group {
    margin-top: 16px;
    display: flex;
    gap: 24px;
}
.customization-item {
    display: flex;
    gap: 6px;
    align-items: center;
}
.section-article {
    padding: 24px;
    background: #FFFFFF;
    border-radius: 8px;
}
.article-card-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.article-card-title {
    font-weight: 500;
    font-size: 18px;
    color: #12141D;
}
.article-card-content {
    font-weight: 500;
    font-size: 14px;
    color: #6B6D70;
}
.category-1 .article-card-time {
    padding-left: 12px;
}
.article-card-time {
    font-weight: 500;
    font-size: 14px;
    color: #6B6D70;
    margin-top: auto;
}
.blog-main .blue-btn {
    background: #FFFFFF;
    color: var(--text-color-blue);
}
.blog-main .blue-btn.icon::after {
    background-image: url(../../../img/v3/w2@2x.png);
}
.client {
    padding: 24px;
    background: #FFFFFF;
    margin-bottom: 108px;
    border-radius: 8px;
}
.client-title {
    font-weight: 500;
    font-size: 18px;
    color: #12141D;
}
.client-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}
.client-group {
    display: flex;
    justify-content: space-between;
}
.client-item {
    width: 157px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(107,109,112,0.18);
}
.attention {
    background: url("../../../img/blog/bk-attention.png");
    height: 318px;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.attention-title {
    font-weight: 500;
    font-size: 18px;
    color: #12141D;
    text-align: center;
    margin-top: 26px;
}
.attention-content {
    margin-top: 12px;
    color: #6B6D70;
}
.attention img  {
    margin-top: 20px;
}
.attention-desc {
    margin-top: 20px;
    font-size: 12px;
    color: #FFFFFF;
}
.plugs {
    background: url("../../../img/blog/bk-plugs.png");
    height: 149px;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    cursor: pointer;
}
.plugs-title {
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
}
.plugs-content {
    font-size: 12px;
    color: #FFFFFF;
    margin-top: 16px;
}
.plugs-btn {
    width: 240px;
    height: 38px;
    background: #FFFFFF;
    border-radius: 8px;
    color: #7A73FF;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}
.applet {
    background: url("../../../img/blog/bk-xcx.png");
    height: 148px;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px;
}
.applet-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.applet-title {
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
}
.applet-desc {
    font-size: 12px;
    color: #FFFFFF;
}
.kgpc {
    background: url("../../../img/blog/bk-kgpc.png");
    height: 148px;
    background-size: 100% 100%;
    display: flex;
    gap: 46px;
    padding: 20px;
}
.kgpc-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.kgpc-title {
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
}
.kgpc-desc {
    font-size: 12px;
    color: #FFFFFF;
}
.zsxq {
    background: url("../../../img/blog/bk-zsxq.png");
    height: 148px;
    background-size: 100% 100%;
    display: flex;
    gap: 46px;
    padding: 20px;
}
.zsxq-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.zsxq-title {
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
}
.zsxq-desc {
    font-size: 12px;
    color: #FFFFFF;
}
.externallink {
    padding: 24px;
    background: #FFFFFF;
    font-size: 12px;
    color: #6B6D70;
    border-radius: 8px;
}
.externallink-title {
    font-weight: 500;
    font-size: 18px;
    color: #12141D;
    padding: 0 0 24px 0;
}
.externallink-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.externallink-group {
    width: 240px;
    height: 130px;
    background: #F8F8F8;
    border-radius: 8px;
    padding: 16px;
}
.externallink .divider {
    margin: 16px 0;
}
.tags {
    padding: 24px;
    background: #FFFFFF;
    font-size: 12px;
    color: #6B6D70;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    border-radius: 8px;
}
.tag-item {
    width: 76px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid rgba(107,109,112,0.18);
    text-align: center;
    line-height: 32px;
}
@media screen and (max-width: 768px){
    #module-4 {
        padding: 30px 0;
        background: #F8F8F8;
    }
    #module-4 .article-main {
        width: 100%;border-radius: 8px;
        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;
    }
    .blog-main {
        width: 100%;
    }
    .section-article {
        padding: 0;
    }
    .category-3 .article-card img {
        width: 6em;
    }
    .article-card img {
        width: 9em;
    }
    .article-card-content {
        display: none;
    }
    .article-card-title {
        font-size: 0.9em;
        line-height: 1.2;
        word-break: break-word;
        text-align: justify;
        font-variant-numeric: tabular-nums;
        letter-spacing: 0.04em;
    }
    .blog-main .section  {
        width: 100%;
        padding: 0 20px;
    }
    #module-3 {
        background: #F8F8F8;
    }
    #module-3 .content {
        padding: 0 10px;
    }
    #module-3 .divider {
        display: none;
    }
    .article-card-left {
        padding: 0.5em;
    }
    .article-card {
        gap: 0.8em;
    }
    .article-card> .overlayT {
        top: 54%;
        left: 12%;
        font-size: 0.8em;
    }
}

