/*————————————————————————————文章 开始————————————————————————————*/

/*文章 pc*/
.article_pc {
    position: fixed;
    top: 14%;
    left: 50%;
    transform: translate(-50%);
    height: 80%;
    width: 64%;
}

.article-pc-1 {
    height: 90px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.article-pc-1-1 {
    width: 100%;
    height: 90px;
    /*border-top: 1px solid #1c1c1c;*/
    border-bottom: 1px solid #1c1c1c;
}

.article-pc-1-1-1 {
    width: 91%;
    height: 100%;
    float: left;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.article-pc-1-1-1-1 {
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    overflow: hidden;
    white-space: nowrap;
    /*超出部分文字以...显示*/
    text-overflow: ellipsis;
}

.article-pc-1-1-1-2 {
    height: 40px;
}

.article-pc-1-1-1-2 img {
    width: 35px;
    height: 16px;
    margin-left: 5px;
    margin-top: -3px;
}

.article-pc-1-1-2 {
    width: 70px;
    height: 70px;
    float: right;
    margin: 10px 0 0 0;
}

/*文章 xc*/
.article_xs {
    margin-top: 5%;
    height: 80%;
    width: 100%;
    display: none;
    overflow-x: hidden;
    overflow-y: scroll;
}

.article-xc-1 {
    width: 88%;
    height: 100%;
    margin: 0 auto;
}

.article-xc-1-1 {
    width: 100%;
    height: 200px;
    border-top: 1px solid #1c1c1c;
    border-bottom: 1px solid #1c1c1c;
    margin-bottom: 4%;
    background: #101013;
    border-radius: 9px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 1px solid transparent;
}

.article-xc-1-1-1 {
    width: 100%;
    height: 130px;
}

.article-xc-1-1-2 {
    height: 20%;
    margin-left: 4%;
    margin-top: 2%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.article-xc-1-1-2-1 {
    height: 30px;
    width: 100%;
    line-height: 30px;
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.article-xc-1-1-2-2 {
    height: 30px;
}

.article-xc-1-1-2-2 img {
    width: 28px;
    height: 13px;
    margin-left: 5px;
    margin-top: -2px;
}

/*————————————————————————————文章 结束————————————————————————————*/


/*————————————————————————————媒体查询 开始————————————————————————————*/
/*媒体查询 电脑模式*/
@media (max-width: 1200px) {

    /*顶部导航*/
    /*.header_div {*/
    /*display: none !important;*/
    /*}*/

}

/*媒体查询 手机模式*/
@media (max-width: 768px) {

    /*文章*/
    .article_pc {
        display: none !important;
    }

    .article_xs {
        display: block !important;
    }


}

/*————————————————————————————媒体查询 结束————————————————————————————*/