.flex {
    display: flex;
}

.pc_main {
    display: none;
}

.container {
    width: 1200px;
    margin: auto;
}

/* 当前位置 */
.crumbs {
    margin: 30px 0 40px;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    color: #666666;
}

.crumbs img {
    width: 5px;
    height: 6px;
    margin: -3px 10px;
    vertical-align: super;
}

.crumbs span {
    margin-left: -4px;
}

.leftcon {
    width: 854px;
    height: 656px;
    background-color: rgba(250, 250, 250, 0.39);
}

/* 标题、简介 */
.leftcon .topCon .videoCon {
    height: 476px;
}

.leftcon .topCon .titleBox {
    padding: 18px 20px 0;
}

.leftcon .topCon .top .status {
    width: 80px;
}

.leftcon .topCon .status img {
    width: 100%;
}

.leftcon .topCon .top .title {
    flex: 1;
    font-size: 20px;
    font-weight: bold;
    text-align: justify;
    line-height: 26px;
    padding: 3px 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.leftcon .topCon .desc {
    font-size: 14px;
    text-align: justify;
    line-height: 24px;
    padding: 2px 4px;
    color: #707070;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 分享、功能 */
.toolbox {
    padding: 15px 20px 27px;
    justify-content: space-between;
}

.toolbox .share .name {
    font-size: 14px;
    color: #707070;
    margin-top: 12px;
    margin-right: 12px;
}

.toolbox .share .social-share > a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 40px;
    transition: all .5s;
    position: relative;
    text-align: center;
    margin: 0 8px;
}

.toolbox .share .social-share > a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    left: 0;
    top: 0;
    transform: scale(0);
}

.toolbox .share .social-share > a:hover:after {
    transform: scale(1);
    transition: all .3s;
}

.toolbox .share .weixinIcon:hover::after {
    background: #3dbe5b;
}

.toolbox .share .weiboIcon:hover::after {
    background: #ff5757;
}

.toolbox .share .qqIcon:hover::after {
    background: #21b3f7;
}

.toolbox .share .icons img:hover {
    animation: rock .4s;
}

@keyframes rock {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.toolbox .share .social-share > a:last-child {
    margin-bottom: 0;
}

.toolbox .function {
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
    color: #656F80;
}

.toolbox .function .launch {
    cursor: pointer;
}

.toolbox .function .launch img {
    width: 24px;
    height: 20px;
    margin-top: 10px;
}

.toolbox .function .launch:last-child img {
    width: 21px;
    height: 21px;
}

.toolbox .function .num1 {
    margin-left: 8px;
}

.toolbox .function .num2 {
    margin-left: 8px;
}

/* 相关推荐 */
.recommended {
    margin: 30px 0 40px 0;
}

.recommended .head {
    position: relative;
    margin-bottom: 20px;
}

.recommended .head img {
    width: 23px;
}

.recommended .head>span {
    font-size: 20px;
    font-weight: bold;
    line-height: 26px;
    color: #333333;
    margin-left: 5px;
}

.recommended .head .change {
    width: 74px;
    position: absolute;
    right: 0;
    top: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    color: #999999;
    cursor: pointer;
}

.recommended .head .change:hover {
    color: var(--themeColor);
}

.recommended .head .change img {
    vertical-align: middle;
    width: 15px;
}

.recommended .head .change.disable img {
    animation: rotate 0.75s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.recommended .contents .item {
    width: 224px;
    margin-left: 20px;
    cursor: pointer;
    overflow: hidden;
}

.recommended .contents .item:first-child {
    margin-left: 0;
}

.recommended .contents .item>img {
    width: 224px;
    height: 126px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform .3s ease-out;
}

.recommended .contents .item>img:hover {
    transform: scale(1.05);
}

.recommended .contents .item>p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #333333;
    margin-top: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.recommended .contents .item>p:hover {
    color: var(--themeColor);
}

/* 图文直播、评论 */
.rightCon {
    width: 336px;
    height: 656px;
    background-color: rgba(250, 250, 250, 0.39);
}

.rightCon .navCon {
    display: flex;
    font-size: 16px;
    line-height: 58px;
    position: relative;
    z-index: 999;
    border-bottom: 1px solid #F0F0F0;
}

.rightCon .navCon .lookNum {
    width: 104px;
    height: 25px;
    background: rgba(237, 249, 255, 0.39);
    border-radius: 70px;
    font-size: 12px;
    color: #268BFF;
    opacity: 0.85;
    text-align: center;
    margin-top: 18px;
    margin-right: 15px;
    line-height: 27px;
}

.rightCon .nav {
    flex: 1;
    padding: 0 17px;
    font-weight: normal;
    color: #999;
}

.rightCon .nav .navItem {
    margin-right: 26px;
    cursor: pointer;
    color: rgba(102, 102, 102, 0.85);
    font-size: 16px;
}

.rightCon .nav .navItem.active {
    color: var(--themeColor);
    font-weight: bold;
    position: relative;
}

.rightCon .nav .navItem.active::after{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    margin: auto;
    width: 60px;
    height: 3px;
    background: var(--themeColor);
}

/* 内容 */
.pcMainWrapper{
    overflow: hidden;
    height: 598px;
}
.pcMainWrapper .mainCon{
    width: 100%;
    height: 100%;
}
.pcMainWrapper .mainCon .mainItem{
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 17px 17px 0;
    box-sizing: border-box;
    flex-shrink: 0;
    display: none;
}
.pcMainWrapper .mainCon .mainItem.active{
    display: block;
}

/* 图文直播 */
.pcMainWrapper .liveCon .item{
    font-size: 13px;
    line-height: 22px;
    /* border-bottom: .1rem solid #E6E6E6; */
    margin-bottom: 17px;
    padding-bottom: 17px;
    display: flex;
    justify-content: space-between;
}
.pcMainWrapper .liveCon .item .publisherImg{
    width: 26px;
    height: 26px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 11px;
}
.pcMainWrapper .liveCon .item .publisherImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pcMainWrapper .liveCon .item .content{
    width: 100%;
    padding-top: 2px;
}
.pcMainWrapper .liveCon .item .liveInfo{
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #333;
}
.pcMainWrapper .liveCon .item .liveInfo .publishDate{
    color: #999;
}
.pcMainWrapper .liveCon .item .text{
    margin-top: 8px;
    font-size: 15px;
    color: #1A1A1A;
}
.pcMainWrapper .liveCon .item .imgs{
    margin-top: 11px;
}
.pcMainWrapper .liveCon .item .content img{
    max-width: 100%;
    border-radius: 3px;
    margin-top: 8px;
    display: block;
}
.pcMainWrapper .liveCon .item .zdyVideo{
    width: 100%;
    max-width: 100%;
    height: var(--h);
    max-height: var(--maxh);
    margin-top: 1.1rem;
}
.pcMainWrapper .liveCon .item .zdyVideo video{
    width: 100% !important;
    height: var(--h) !important;
    max-height: var(--maxh) !important;
}
/* 直播评论 */
.pcMainWrapper .mainCon .liveComment{
    padding: 0;
}
.pcMainWrapper .liveComment .commentCount{
    color: #666;
    font-size: 14px;
    padding: 16px 17px 6px;
}
.pcMainWrapper .comment{
    background: #FAFAFA;
    padding-top: 11px;
    padding: 11px 17px;
}
.pcMainWrapper .comment .item{
    font-size: 15px;
    line-height: 22px;
    color: #ccc;
    display: flex;
    justify-content: space-between;
}
.pcMainWrapper .comment .item ~ .item{
    margin-top: 17px;
}
.pcMainWrapper .comment .item .userImg{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 8px;
    flex-shrink: 0;
}
.pcMainWrapper .comment .item .userImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pcMainWrapper .comment .item .content{
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 3px 11px 6px;
}
.pcMainWrapper .comment .item .content .userInfo{
    display: flex;
    justify-content: space-between;
    margin-bottom: 2px;
}
.pcMainWrapper .comment .item .content .userInfo .addTime{
    font-size: 13px;
}
.pcMainWrapper .comment .item .content .text{
    color: #1A1A1A;
}

#BackToTop {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 50px;
    bottom: 60px;
    cursor: pointer;
    display: none;
}

#BackToTop img {
    width: 100%;
    height: 100%;
}

.banner {
    width: 100%;
    height: 150px;
    background: url('../imgs/pcbanner.jpg') no-repeat left top /cover;
    background-color: black;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    margin: 0 auto 30px auto;
}
.banner-main {
    width: 1200px;
    margin: 0 auto;
}
.banner .logo-txt {
    display: -webkit-inline-flex;
    display: flex;
    flex-direction: row;
    align-items: center;
    /* margin: 84px 0 76px 0px; */
    float: left;
    width: 30%;
    margin-right: 10%;
}
.banner .logo-txt .logo {
    margin-right: 27px;
    height: 120px;
    border-radius: 50%;
    max-width: 380px;
    height: 120px;
    line-height: 120px;
}
.banner .logo-txt .logo img {
    width: 78px !important;
    height: 78px !important;
    border-radius: 50%;
    /* line-height: 188px; */
}
.banner .logo-txt .text_title {
    font-size: 26px;
    color: #fff;
    letter-spacing: 2px;
    /* line-height: 20px; */
    /* margin-top: -37px; */
}