.bolg-list-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 20px;
    margin: 10px;
}
.first-page:first-child{
    position: relative;
    width: 100%;
}
.first-page:first-child .bolg-list-item-content {
    position: absolute;
    padding: 15px;
    top: 50%;
    width: 50%;
    color: #fff;
    left: 3%;
    transform: translateY(-50%);
    padding-left: 0;
    z-index: 3;
}

/* 遮罩层开始 */


.first-page:first-child::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0) 35.54%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
    /* Ensure the overlay is on top */
    pointer-events: none;
    /* Allow clicks to pass through to the content below */
}


/* 遮罩层结束 */










.first-page:first-child .bolg-list-item-content h2{
font-size: 24px;
}
.first-page:first-child .bolg-list-item-content p{
    font-size: 20px;
}
.first-page:first-child .bolg-list-item-content p:last-child {
    font-size: 14px;
}
.article-blog-title {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    height: 128px;
    padding: 0px 32px;
    text-transform: capitalize;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    color: rgb(0, 0, 0);
}
.bolg-list-item {
    width: calc(33.33% - 10px);
    /* 3 列布局 */
    margin-bottom: 15px;
    background: #fff;
    overflow: hidden;
    /* display: none; */
    /* 隐藏项目，JavaScript将显示特定的项目 */
    position: relative;
}


.bolg-list-item img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #ddd;
}

.bolg-list-item-content {
    padding: 15px;
    padding-left: 0;
}

.bolg-list-item-content p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.bolg-list-item-content h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 8px;
}

.pagination .bi {
    stroke: rgb(94, 103, 110);
    align-items: center;
    justify-content: center;
}

.pagination button:hover {
    color: rgb(12, 146, 223);
    /* 更改文本颜色 */
    box-shadow: rgba(30, 163, 239, 0.3) 0px 3px 0px, rgba(30, 163, 239, 0.5) 0px 10px 20px;
    /* 添加box-shadow */
}

.pagination {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 50px;
}

.pagination button {
    margin: 0 5px;
    border: none;
    background-color: transparent;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    width: 48px;
    height: 48px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
}

.pagination button:disabled {
    background-color: transparent;
}
.my-paginate-number{
    list-style: none;
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: rgb(109, 117, 122);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    margin-right: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
    vertical-align: baseline;
    box-shadow: rgba(30, 35, 39, 0.12) 0px 1px 1px, rgba(30, 35, 39, 0.08) 0px 0px 4px;
}
.my-paginate-number:hover {
    color: rgb(12, 146, 223) !important;
    /* 更改文本颜色 */
    box-shadow: rgba(30, 163, 239, 0.3) 0px 3px 0px, rgba(30, 163, 239, 0.5) 0px 10px 20px;
    /* 添加box-shadow */
}
.pagination .selected {
    background: rgb(12, 146, 223);
    color: #fff;
}
/* 移动端样式 */
@media (max-width: 768px) {
    .bolg-list-item {
        width: 100%;
        /* 单列布局 */
    }

    .bolg-list-item-content {
        position: absolute;
        bottom: 0;
        background:linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
        color: #fff;
        width: 100%;
        padding: 10px;
    }

    .bolg-list-item-content p {
        color: #fff;
    }

    .pagination button {
        width: 30px;
        height: 30px;
    }
    .bolg-list-item-content h2{
        font-size: 18px;
    }
    .bolg-list-item{
        margin-bottom: 10px;
    }
    .pagination{
        margin-bottom: 25px;
    }
    .article-blog-title {
        display: flex;
        align-items: center;
        justify-content: start;
        width: 100%;
        height: 48px;
        padding: 0px 10px;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        margin-bottom: 10px;
        color: rgb(255, 255, 255);
        background-color: rgb(22, 26, 29);
    }
    .first-page:first-child .bolg-list-item-content{
        width: 100%;
    }
    .first-page:first-child{
        height: 300px;
    }
    .first-page:first-child .bolg-list-item-content h2{
        font-size: 16px;
    }
    .first-page:first-child .bolg-list-item-content p{
        font-size: 14px;
    }
    .first-page:first-child .bolg-list-item-content{
        background:none;
    }
}