/* 整体容器 */
.bolg-list{width:100%;float:left;margin-bottom:3%;}
.bolg-list .main-content{padding:2%;overflow: hidden;border:none;}
.top-bar{float:left;}.header{float:left;overflow: hidden;}

.bolg-list .breadcrumb{float:right; color:#333;width:100%;text-align: right;font-style:normal;}
.bolg-list .breadcrumb a{ font-style:normal;}
.blog-thumb{width:20%;float:left; text-align:center;}.blog-thumb img{width:100%;max-width:100%;}

/* 面包屑 */
.breadcrumb {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}
.breadcrumb a {
    color: #007aff;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

/* 标题 */
.bolg-list h1 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* 博客列表 */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* 单条博客 */
.blog-item {
    display: flex;
    gap: 18px;
    padding-bottom: 20px;margin-bottom:2%;
    border-bottom: 1px solid #eee;
}

/* 缩略图 */
.blog-thumb img {
    object-fit: cover;
    border-radius: 6px;
    transition: transform .25s ease;
}

/* 图片 hover 动效 */
.blog-thumb:hover img {
    transform: scale(1.04);
}

/* 内容部分 */
.blog-content h2 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.3;
}
.blog-content h2 a {
    text-decoration: none;
    color: #333;font-size: 16px;
}
.blog-content h2 a:hover {
    color: #000;
}
.icon_page_prev:before{content:"<"; }.icon_page_next:before{content:">"; }
/* 简介 */
.blog-content p {
    margin: 0 0 15px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

/* 阅读更多 */
.read-more {
    font-size: 12px;
    padding: 6px 14px;
    background: #333;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background .2s;
}
.read-more:hover {
    background: #999;
}

/* 分页 */
.pagination {
    margin-top: 30px;
    text-align: center;
}
.pagination a,
.pagination font {
    display: inline-block;
    margin: 0 4px;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #333;
}
.pagination .page_item_current {
    background: #333;
    border-color: #333;
    color: #fff;
}
.pagination a:hover {
    background: #333;  color: #fff;
}
.blog-content{width:78%;float:right;}
.blog-title{width:100%;float:left; text-align:center;border-bottom:solid 1px #f4f4f4;padding-bottom:10px;}
.blog-conten{width:100%;float:left;line-height:25px; color:#666;}

@media(max-width:769px){
	.bolg-list h1{ font-size:18px;}
	.blog-thumb{width:100%;}
	.blog-content{width:100%;}
	}







