body{
    max-width: var(--maxWidth);
    margin: 0 auto;
}

.h5_main {
    display: none;
}

.topCon{
    position: relative;
}
.topCon .videoCon{
    /* height: 10rem; */
    background: #ccc;
}
.topCon .articleTitle{
    padding: 1.1rem 1.7rem .7rem;
    font-size: 2rem;
    font-weight: bold;
    line-height: 2.8rem;
    color: #1A1A1A;
}
.topCon .articleTitle .hitCount{
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
    background: url(../imgs/eye.png) no-repeat left;
    background-size: 1.2rem 1rem;
    text-indent: 1.6rem;
    float: right;
}
.topCon .navCon{
    display: flex;
    font-size: 1.5rem;
    line-height: 4.2rem;
    background: #fff;
    position: relative;
    z-index: 999;
}
.topCon .navCon.fixTop{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}
.topCon .nav{
    width: 100%;
    padding: 0 1.7rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-weight: normal;
    color: #999;
    border-bottom: .1rem solid #F0F0F0;
}
.topCon .nav .navItem.active{
    color: #1A1A1A;
    position: relative;
}
.topCon .nav .navItem.active::after{
    content: '';
    display: block;
    position: absolute;
    left: 0;right: 0;bottom: 0;
    margin: auto;
    width: 2.2rem;
    height: .3rem;
    background: var(--themeColor);
    border-radius: .6rem .6rem 0 0;
}

/* 内容 */
.mainWrapper{
    overflow: hidden;
}
.mainWrapper .mainCon{
    width: 100%;
    height: 100%;
}
.mainWrapper .mainCon .mainItem{
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 1.7rem 1.7rem 0;
    box-sizing: border-box;
    flex-shrink: 0;
    display: none;
}
.mainWrapper .mainCon .mainItem.active{
    display: block;
}
/* 图文直播 */
.mainWrapper .liveCon .item{
    font-size: 1.3rem;
    line-height: 2.2rem;
    /* border-bottom: .1rem solid #E6E6E6; */
    margin-bottom: 1.7rem;
    padding-bottom: 1.7rem;
    display: flex;
    justify-content: space-between;
}
.mainWrapper .liveCon .item .publisherImg{
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 1.1rem;
}
.mainWrapper .liveCon .item .publisherImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mainWrapper .liveCon .item .content{
    width: 100%;
    padding-top: .2rem;
}
.mainWrapper .liveCon .item .liveInfo{
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    color: #333;
}
.mainWrapper .liveCon .item .liveInfo .publishDate{
    color: #999;
}
.mainWrapper .liveCon .item .text{
    margin-top: 0.8rem;
    font-size: 1.5rem;
    color: #1A1A1A;
}
.mainWrapper .liveCon .item .imgs{
    margin-top: 1.1rem;
}
.mainWrapper .liveCon .item .content img{
    max-width: 100%;
    border-radius: .3rem;
    margin-top: .8rem;
    display: block;
}
.mainWrapper .liveCon .item .zdyVideo{
    width: 100%;
    max-width: 100%;
    height: var(--h);
    max-height: var(--maxh);
    margin-top: 1.1rem;
}
.mainWrapper .liveCon .item .zdyVideo video{
    width: 100% !important;
    height: var(--h) !important;
    max-height: var(--maxh) !important;
}
/* 直播评论 */
.mainWrapper .mainCon .liveComment{
    padding: 0;
}
.mainWrapper .liveComment .commentCount{
    color: #666;
    font-size: 1.4rem;
    padding: 1.6rem 1.7rem .6rem;
}
.mainWrapper .comment{
    background: #FAFAFA;
    padding-top: 1.1rem;
    padding: 1.1rem 1.7rem;
}
.mainWrapper .comment .item{
    font-size: 1.5rem;
    line-height: 2.2rem;
    color: #ccc;
    display: flex;
    justify-content: space-between;
}
.mainWrapper .comment .item ~ .item{
    margin-top: 1.7rem;
}
.mainWrapper .comment .item .userImg{
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 0.8rem;
    flex-shrink: 0;
}
.mainWrapper .comment .item .userImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mainWrapper .comment .item .content{
    width: 100%;
    background: #fff;
    border-radius: 1rem;
    padding: .3rem 1.1rem .6rem;
}
.mainWrapper .comment .item .content .userInfo{
    display: flex;
    justify-content: space-between;
    margin-bottom: .2rem;
}
.mainWrapper .comment .item .content .userInfo .addTime{
    font-size: 1.3rem;
}
.mainWrapper .comment .item .content .text{
    color: #1A1A1A;
}