/*==============================
  文章主体
==============================*/

.byz-article-main{
    width:100%;
}

.byz-article-box{
    background:#fff;
    padding:18px 16px 16px 16px;
    box-shadow:none;
}

/*==============================
  分类
==============================*/

.byz-article-category{
    display:inline-flex;
    align-items:center;
    gap:4px;
    padding:5px 12px;
    font-size:12px;
    margin-bottom:15px;
}

/*==============================
  标题
==============================*/

.byz-article-title{
    font-size:24px;
    line-height:1.45;
    margin-bottom:18px;
    font-weight:700;
}

/*==============================
  信息
==============================*/

.byz-article-meta{
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 15px;
    color: #666;
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid #efefef;
}

.byz-article-meta span{
    display:flex;
    align-items:center;
    gap:4px;
}

/*==============================
  摘要
==============================*/

.byz-article-summary{
    margin:20px 0 25px;
    padding:15px;
    font-size:15px;
    line-height:1.9;
}

/*==============================
  正文
==============================*/

.byz-article-content{
    font-size:18px;
    line-height:1.8;
    color:#333;
    word-break:break-word;
}

.byz-article-content p{
    margin-bottom:22px;
}

.byz-article-content h2{
    font-size:22px;
    line-height:1.45;
    margin:32px 0 18px;
}

.byz-article-content h3{
    font-size:20px;
    line-height:1.5;
    margin:28px 0 16px;
}

.byz-article-content img{
    width:100%;
    max-width:100%;
    height:auto;
    display:block;
    margin:18px auto;
    border-radius:6px;
}

.byz-article-content table{
    display:block;
    width:100%;
    overflow-x:auto;
}

.byz-article-content iframe{
    width:100%;
    max-width:100%;
}

/*==============================
  标签
==============================*/

.byz-article-tags {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #efefef;
}

.byz-article-tags a {
	display: inline-block;
    padding: 8px 16px;
    background: #f5f6f7;
    border-radius: 20px;
    color: #666;
    font-size: 15px;
    margin-right: 10px;
    margin-bottom: 10px;
}


/*==============================
  猜你喜欢
==============================*/

.byz-guess-like{
    width:100%;
    background:#fff;
    padding:15px;
    margin:15px 0;
    box-shadow:none;
}

.byz-home-topic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 3px;
}

.byz-home-module-title {
    font-size: 18px;
    font-weight: 600;
}

.byz-guess-list{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.byz-guess-item{
    display:flex;
    gap:12px;
    border-bottom: 1px solid #efefef;
}

.byz-guess-item:last-child{
    border-bottom: none;
}

.byz-guess-item:not(:last-child){
    padding-bottom:16px;
}

.byz-guess-thumb{
    width:110px;
    height:72px;
    border-radius:4px;
    flex-shrink:0;
}

.byz-guess-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.byz-guess-content{
    flex:1;
    min-width:0;
}

.byz-guess-title{
    font-size:18px;
    line-height:1.45;
    margin-bottom:8px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.byz-guess-desc{
    display:none;
}

.byz-guess-meta{
    font-size:14px;
    color:#999;
}

/* 长英文、网址自动换行 */
.byz-article-content{
    overflow-wrap:break-word;
    word-break:break-word;
}

/* 视频自适应 */
.byz-article-content video{
    width:100%;
    height:auto;
}

/* 图片点击放大时更自然 */
.byz-article-content img{
    cursor:pointer;
}

/* 防止代码块撑宽 */
.byz-article-content pre{
    overflow-x:auto;
}

.byz-article-content code{
    word-break:break-all;
}

/* 点击阅读更多 */
.readmore {
    display: block;
	color: #555;
    border-radius: 25px;
    border: solid 1px #efefef;
    text-align: center;
    font-size: 15px;
    padding: 12px 0;
    margin: 25px auto 10px auto;
}