@charset "utf-8";
/* CSS Document */


/*团队列表*/
.list-team .item {
    margin-bottom:20px;
}
.list-team .item .img {
    text-align:center;
}
.list-team .item .team-img {
    display:inline-block;
    padding:20px;
    margin:0 auto;
    overflow:hidden;
}
.list-team .item .team-img img {
    width:100%;
    aspect-ratio: 1.6997 / 1;
    transition: all 0.3s linear;
}
.list-team .item .team-img:hover img {
    transform: scale(1.05);
}
.list-team .item:nth-child(2n) {
    flex-direction: row-reverse;
}
.list-team .item .team-tit {
    text-align:center;
}
@media (min-width:992px){
    .list-team .item .img {
        text-align:left;
    }
    .list-team .item .team-img {
        text-align:left;
    }
    .list-team .item .team-tit {
        text-align:left;
    }
}


/*分页*/
.blog-grid-wrap .pagination {
    margin-top: 70px;
}
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
}
.justify-content-center {
    justify-content: center!important;
}
.techmax-pagination .pagination .page-item {
    margin: 0 3px;
}

.techmax-pagination .pagination .page-item .page-link {
    display: block;
    width: 35px;
    height: 35px;
    padding: 0;
    line-height: 33px;
    font-weight: 400;
    text-align: center;
    color: #6c7381;
    border: 0;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s linear;
}

.techmax-pagination .pagination .page-item .page-link:focus {
    box-shadow: none;
}

.techmax-pagination .pagination .page-item .page-link:hover {
    background: #005de0;
    color: #ffffff;
}

.techmax-pagination .pagination .page-item .page-link i {
    font-size: 12px;
}

.techmax-pagination .pagination .page-item.active .page-link {
    background: #005de0;
    color: #ffffff;
}