
/* 访谈列表.html */
/* 视频 */
.tv_box {
    width: 100%;
}
.tv_box .tv {
    width: 100%;
    height: 7rem;
}
.tv_box .tv_e {
    margin-top: 0.2rem;
    font-size: 0.2rem;
    font-family: Microsoft YaHei-Bold, Microsoft YaHei;
    font-weight: bold;
    color: #333333;
    text-align: center;
}

/* 列表 */
.pic_list {
    width: 100%;
    margin-top: 0.6rem;
    display: flex;
    flex-wrap: wrap;
}
.pic_list .li {
    width: 4.5rem;
    margin-top: 0.3rem;
    margin-right: 0.25rem;
}
.pic_list .li:nth-child(-n+3) {
    margin-top: 0;
}
.pic_list .li:nth-child(3n) {
    margin-right: 0;
}
.pic_list .li .pic {
    display: block;
    width: 100%;
    height: 2.6rem;
}
.pic_list .li .title {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.16rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 分页在common.css中 */







/* 访谈详情.html */
/* 视频 */
.talk_box {
    width: 100%;
}
.talk_box #dplayer {
    width: 100%;
    height: 7rem;
}
#dplayer .tv {
    width: 100%;
    height: 7rem;
}
.talk_box .fonts {
    margin-top: 0.2rem;
    font-size: 0.2rem;
    font-family: Microsoft YaHei-Bold, Microsoft YaHei;
    font-weight: bold;
    color: #333333;
}
/* 下半部分 */
.down_part {
    width: 100%;
    margin-top: 0.4rem;
    display: flex;
    justify-content: space-between;
}
/* 内容摘要 */
.down_part .content {
    width: 9.5rem;
    padding: 0.3rem;
    background: #FFFFFF;
}
.down_part .content .tit {
    font-size: 0.2rem;
    font-family: Microsoft YaHei-Bold, Microsoft YaHei;
    font-weight: bold;
    color: #333333;
}
.down_part .content .tie {
    margin-top: 0.2rem;
}
.down_part .content li {
    font-size: 0.18rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    line-height: 0.4rem;
}

/* 热门新闻 */
.down_part .hot {
    width: 4.2rem;
    padding: 0.2rem;
    background-color: #fff;
}
.down_part .hot .title_box {
    font-size: 0.2rem;
    font-family: Microsoft YaHei-Bold, Microsoft YaHei;
    font-weight: bold;
    color: #333333;
    display: flex;
    align-items: center;
}
.down_part .hot .title_box img {
    width: 0.26rem;
    height: 0.26rem;
    object-fit: contain;
}
.down_part .hot .hot_list {
    width: 100%;
    margin-top: 0.2rem;
}
.down_part .hot .hot_item {
    display: flex;
    width: 100%;
    margin-top: 0.2rem;
}
.down_part .hot .left_info {
    flex: 1;
}
.down_part .hot .left_info .title {
    width: 2.5rem;
    font-size: 0.16rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    line-height: 0.32rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.down_part .hot .left_info .title:hover {
    font-weight: bold;
}
.down_part .hot .date {
    margin-top: 0.3rem;
    font-size: 0.16rem;
    font-family: Arial-Regular, Arial;
    font-weight: 400;
    color: #999999;
}
.down_part .hot .item_img {
    width: 1.3rem;
    height: 1rem;
}





@media only screen and (max-width:1024px){
    .tv_box .tv {
        height: auto;
    }
    .tv_box .tv_e{
        font-size: 14px;
    }
    .pic_list .li{
        width: 100%;
        height: auto;
        padding: 15px;
        margin: 0;
    }
    .pic_list .li .pic{
        height: auto;
    }
    .pic_list .li .title{
        font-size: 14px;
    }
    .talk_box .fonts{
        font-size: 14px;
        padding: 0 15px;
    }
    .down_part .hot{
        display: none;
    }
    .down_part .content .tit{
        font-size: 16px;
    }
    .down_part .content .tie{
        font-size: 12px;
    }
    .talk_box #dplayer,
    #dplayer .tv{
        height: auto;
    }
}


