.blog-page {
    background: #222;
    color: #1a1a1a;
    overflow-x: hidden;
}

.blog-container {
    width: min(1200px, calc(100% - 40px));
    max-width: 100%;
    margin: 0 auto;
}

.blog-breadcrumb {
    min-height: 270px;
    padding: 0;
    background: linear-gradient(rgba(0, 0, 0, .12), rgba(0, 0, 0, .12)), url("../../images/xiaobanner1.jpg") center center / cover no-repeat;
    color: #fff;
    font-size: 16px;
}

.blog-breadcrumb .blog-container {
    display: flex;
    min-height: 270px;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.blog-breadcrumb a {
    color: #fff;
}

.blog-section {
    padding: 64px 0 70px;
    background: #222;
}

.blog-section h1 {
    margin-bottom: 30px;
    color: #fff;
    font-family: "Oswald-Regular", Arial, sans-serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
}

.blog-list {
    display: grid;
    gap: 40px;
}

.blog-card {
    position: relative;
    max-width: 100%;
    min-height: 336px;
    padding: 30px;
    background: #fff;
    transition: box-shadow .3s ease;
    overflow: hidden;
}

.blog-card::after {
    display: block;
    clear: both;
    content: "";
}

.blog-image {
    float: left;
    display: block;
    width: 40%;
}

.blog-card:nth-child(even) .blog-image {
    float: right;
}

.blog-image img {
    display: block;
    width: 100%;
    height: 275px;
    object-fit: cover;
}

.blog-card-body {
    min-width: 0;
    min-height: 276px;
    padding-left: 50%;
}

.blog-card:nth-child(even) .blog-card-body {
    padding-right: 50%;
    padding-left: 0;
}

.blog-card h2 {
    margin: 24px 0 28px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.blog-card h2 a {
    display: block;
    overflow: hidden;
    color: #1a1a1a;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-card time {
    display: block;
    height: 30px;
    color: gray;
    font-size: 12px;
    line-height: 30px;
}

.blog-card time i {
    margin-right: 8px;
}

.blog-card p {
    min-height: 20px;
    margin: 80px 0 25px;
    color: #777;
    font-size: 14px;
    line-height: 24px;
}

.blog-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 35px;
    color: #000;
    line-height: 35px;
    transition: transform .3s ease;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 34px;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    min-width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border: 1px solid #c9caca;
    color: #898989;
    font-size: 14px;
}

.blog-pagination span:not(.is-active) {
    border-color: transparent;
}

.blog-pagination .is-active {
    border-color: #ffe70c;
    background: #ffe70c;
    color: #fff;
}

@media (min-width: 1025px) {
    .blog-card:hover {
        box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    }
    .blog-card h2 a:hover,
    .blog-breadcrumb a:hover,
    .blog-pagination a:hover {
        color: #1a1a1a;
    }
    .blog-card:hover .blog-more {
        transform: translateX(5px);
    }
    .blog-more:hover {
        color: #666;
    }
}

@media (max-width: 991px) {
    .blog-list {
        gap: 28px;
    }
    .blog-card {
        min-height: 0;
    }
    .blog-image,
    .blog-card:nth-child(even) .blog-image {
        float: none;
        width: 100%;
    }
    .blog-card-body,
    .blog-card:nth-child(even) .blog-card-body {
        min-height: 0;
        padding: 0;
    }
}

@media (max-width: 767px) {
    .blog-container {
        width: min(100% - 30px, 1200px);
    }
    .blog-section {
        padding: 42px 0 54px;
    }
    .blog-section h1 {
        font-size: 30px;
    }
    .blog-card {
        padding: 10px;
    }
    .blog-card h2 a {
        white-space: normal;
    }
    .blog-card p {
        margin-top: 24px;
    }
    .blog-image img {
        height: auto;
    }
}