.blog-list-page {
    width: 100%;
    padding: 70px 0;
    background: #fff;
}

.blog-list-head {
    margin-bottom: 42px;
}

.blog-list-title {
    margin-bottom: 28px;
}

.blog-list-title h1 {
    margin: 0;
    color: #111;
    font-size: 38px;
    line-height: 48px;
    font-weight: bold;
}

.blog-list-title span {
    display: block;
    width: 60px;
    height: 10px;
    margin-top: 12px;
    background: #026ABD;
}

.blog-list-title p {
    margin: 20px 0 0;
    color: #666;
    font-size: 16px;
    line-height: 30px;
}

.blog-list-cate {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-list-cate a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    height: 40px;
    padding: 0 22px;
    box-sizing: border-box;
    border: 1px solid #eee;
    border-radius: 22px;
    background: #fff;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: all .25s ease;
}

.blog-list-cate a:hover,
.blog-list-cate a.active {
    border-color: #026ABD;
    background: #026ABD;
    color: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    overflow: hidden;
    background: #f7f7f7;
    border-radius: 16px;
    transition: all .3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    background: #fff;
    box-shadow: 0 18px 42px rgba(0,0,0,.08);
}

.blog-thumb {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #eee;
}

.blog-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .45s ease;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.06);
}

.blog-body {
    padding: 24px 24px 28px;
    box-sizing: border-box;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    color: #888;
    font-size: 14px;
    line-height: 22px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 7px;
    color: #026ABD;
}

.blog-title {
    display: block;
    height: 56px;
    margin-bottom: 12px;
    overflow: hidden;
    color: #111;
    font-size: 20px;
    line-height: 28px;
    font-weight: bold;
    text-decoration: none;
    transition: all .25s ease;
}

.blog-excerpt {
    height: 54px;
    margin: 0 0 20px;
    overflow: hidden;
    color: #666;
    font-size: 14px;
    line-height: 27px;
}

.blog-more {
    display: inline-flex;
    align-items: center;
    color: #026ABD;
    font-size: 14px;
    line-height: 24px;
    text-decoration: none;
}

.blog-more i {
    margin-left: 8px;
    transition: all .25s ease;
}

.blog-card:hover .blog-title {
    color: #026ABD;
}

.blog-card:hover .blog-more i {
    transform: translateX(4px);
}

.default.clear {
    margin-top: 46px;
    text-align: center;
}