/*————————————————————————————文章 开始————————————————————————————*/

/*文章 pc*/
.article_pc {
    position: fixed;
    top: 12%;
    left: 50%;
    transform: translate(-50%);
    height: 80%;
    width: 65%;
}

.article-pc-1 {
    height: 120px;
    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: 70%;
    height: 100%;
    float: left;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.article-pc-1-1-1-1 {
    color: #fff;
    height: 45px;
    line-height: 45px;
    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;
}

.article-pc-1-1-2 {
    width: 70px;
    height: 70px;
    float: right;
    margin: 10px 10px 0 0;
}

/*文章 xc*/
.article_xs {
    position: fixed;
    top: 12%;
    left: 50%;
    transform: translate(-50%);
    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: 2%;
    background: #101013;
    border-radius: 15px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.article-xc-1-1-1 {
    width: 100%;
    height: 120px;
}

.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 {
    color: #fff;
    height: 30px;
    width: 100%;
    line-height: 30px;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.article-xc-1-1-2-2 {
    height: 30px;
}

.article-xc-1-1-2-2 img {
    width: 35px;
    height: 16px;
}

/*————————————————————————————文章 结束————————————————————————————*/

/*————————————————————————————广告位 开始————————————————————————————*/

.ggw1 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 15%;
    height: 30%;
}

.ggw2 {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%);
    width: 28%;
    height: 15%;
}

.ggw3 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 15%;
    height: 30%;
}

.ggw img {
    height: 100%;
    width: 100%;
}

/*————————————————————————————广告位 结束————————————————————————————*/


/*————————————————————————————媒体查询 开始————————————————————————————*/
/*媒体查询 电脑模式*/
@media (max-width: 1200px) {

    /*顶部导航*/
    /*.header_div {*/
    /*display: none !important;*/
    /*}*/

}

/*媒体查询 手机模式*/
@media (max-width: 768px) {

    /*桌面背景*/
    .bg_pc {
        display: none !important;
    }

    .bg_xs {
        display: block !important;
    }


    /*文章*/
    .article_pc {
        display: none !important;
    }

    .article_xs {
        display: block !important;
    }


    /*广告位*/
    .ggw1 {
        display: none !important;
    }

    .ggw2 {
        display: none !important;
    }

    .ggw3 {
        display: none !important;
    }

}

/*————————————————————————————媒体查询 结束————————————————————————————*/