.banner {
    position: relative;
    height: 30vh;
    width: 100%;
    overflow: hidden;
    background: -webkit-linear-gradient(240deg, #ebecec, #f5f5f5, #f2f2f2); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(240deg,  #ebecec, #f5f5f5, #f2f2f2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.banner2 {
    background: -webkit-linear-gradient(240deg, #70aaf3, #a9c6ea, #c1d2e7); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(240deg, #70aaf3, #a9c6ea, #c1d2e7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.banner .title{
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff;
    font-size: clamp(1rem, 2vw,1.8rem);
}
.banner .title>div{
    display: inline-block;
    padding: 15px 30px;
    border-radius: 0.5rem;
    background-color: rgba(0, 0, 0, 0.22);
}
.banner .title>div >span{
    display: block;
    font-size: clamp(0.8rem, 2vw,1.3rem);
}
#item2 {
    width: 100%;
    position: absolute;
    left: 50px;
    top: 0;
}
#item3 {
width: 25%;
    position: absolute;
    left: 21px;
    top: -50px;
}
#item4 {
    width:55%;
    position: absolute;
    left: -50px;

}
.project-card{
    height: 260px!important;
}
.project-card .image{
    height: 260px;
    width: auto;
}
.news-list .h4{
    display: block;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%; /* 设置宽度来限制显示的字符数 */
    transition: all 0.5s ease-out;
}
.news-list .h4:hover{
    cursor: pointer;
    color: #188bd0;
}
.news-list p{
    color: #919191;
}
.news-info{
    display: flex;
    flex-direction: column;
}
.news-info .content{
    flex: 1;
}
.tags .tag{
    display: inline-block;
    padding:  5px 20px;
    background-color: #d8e9fb;
    border-radius: 50rem;
    color: #000;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}
.tags .tag:hover{
    background-color: #9ed8f6;
}
.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.post-meta span {
    font-size: 18px;
    font-weight: 400;
    color: #525256;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 10px;
}
.post-meta span.icon i {
    color: #C0C0C0;
    font-size: 6px;
}
.widget .tagcloud a, .widget .wp-block-tag-cloud a{

}
.widget .wp-block-heading, .widget .widget-title, .widget .wp-block-search__label{
    font-size: 1.3rem;
}
/* 样式容器 */
.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.pagination li {
    margin: 0;
}

.pagination a,
.pagination span {
    display: block;
    width: 40px; /* 设置宽度 */
    height: 40px; /* 设置高度 */
    line-height: 40px; /* 使文本垂直居中 */
    text-align: center; /* 使文本水平居中 */
    text-decoration: none;
    color: #007eca;
    background-color: #f8f9fa;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

.pagination a:hover,
.pagination a:focus {
    background-color: #e9ecef;
    color: #007eca;
}

.pagination .active span {
    background-color: #d6e7f8;
    color: #000000;
}

.pagination .disabled span {
    color: #6c757d;
    cursor: not-allowed;
    background-color: #f8f9fa;
}

.pagination .disabled a {
    pointer-events: none;
}
@media (max-width: 1000px) {
    #item3 {
        width: 100%;
        position: absolute;
        right: -50px;
        top:10px;
    }
    #item4 {
        width: 120%;
        position: absolute;
        right: -50px;
        top:0px;
    }
    .news-info{
        padding-top: 1rem;
    }
}