/*
-----------------------------------------------------------------------
    List CSS
-----------------------------------------------------------------------
*/
/* list img */
.post-item {
    position: relative;
    height: 230px;
    margin-bottom: 20px;
    width: 100%;
}

.post-item .post-item-content {
    margin-bottom: 65px;
    position: absolute;
    z-index: 2;
    padding: 0 30px;
    width: 100%;
}

.post-item .thumb {
    height: 190px;
    display: block;
    margin-bottom: 31px;
    overflow: hidden;
    margin-right: 30px;
    width: 285px;

}

.post-item .thumb-img {
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}



.post-item .content {
    width: calc(100% - 335px);
}

.post-item .content .title {
    margin-top: 10px;
    margin-bottom: 20px;
}

.post-item .content .title a {
    color: #333;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.521739;
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-item .content .title a:hover {
    color: #2464BB;
}

.post-item .content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 15px;
}

.post-item .content p a {
    color: #808080;
}

.post-item:hover .content p a {
    color: #fff;
}

.post-item .content .borderBottom {
    width: 100%;
    height: 5px;
    border-bottom: 1px solid rgb(0, 0, 0, 0.15);
    margin-bottom: 15px;
}

.post-item:hover .content .borderBottom {
    border-bottom: 1px solid rgb(255, 255, 255, 0.15);
}

.post-item .content .meta {
    color: #2464BB;
    display: flex;
    justify-content: space-between;

}

.post-item .content .meta {
    color: #2464BB;
}

.post-item:hover .content .meta {
    color: #fff;
}

.post-item:hover .content .meta a {
    color: #fff;
}

.post-item .content .meta .post-date {
    margin-right: 8px;
}

.post-item:hover .thumb-img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.list-img-bg {
    width: 100%;
    position: absolute;
    bottom: 0px;
    background-color: #EFF6FF;
    height: 170px;
    z-index: 1;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.post-item:hover .list-img-bg {
    background-color: #2362B2;
}

@media only screen and (max-width: 991px) {
    .post-item {
        height: 150px;
    }

    .post-item .thumb {
        width: 205px;
    }

    .post-item .thumb-img {
        height: 130px !important;
    }

    .post-item .content {
        width: calc(100% - 205px);
    }

    .post-item .content .title {
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .post-item .content .title a {
        font-size: 1.2rem;
    }

    .post-item .content p {
        -webkit-line-clamp: 2;
        margin-bottom: 5px;
    }

    .post-item .content .borderBottom {
        margin-bottom: 5px;

    }

    .list-img-bg {
        height: 110px;
    }

}

@media only screen and (max-width: 678px) {
    .post-item {
        height: 120px;
        overflow: hidden;
    }

    .post-item .post-item-content {
        padding: 10px;
        width: 100%;
        background-color: #EFF6FF;
    }

    .post-item .thumb {
        width: 120px;
        margin-bottom: 0;
        margin-right: 10px;
    }

    .post-item .thumb-img {
        height: 90px !important;
    }

    .post-item .content {
        width: calc(100% - 120px);
    }

    .post-item .content .title {
        margin-top: 0px;
        margin-bottom: 10px;
    }

    .post-item .content .title a {
        font-size: 1rem;
    }

    .post-item .content p {
        -webkit-line-clamp: 2;
        margin-bottom: 2px;
        font-size: 0.8rem;
    }

    .post-item:hover .content p a {
        color: #808080;
    }

    .post-item .content .borderBottom {
        margin-bottom: 2px;
    }

    .post-item:hover .content .borderBottom {
        border-bottom: 1px solid rgb(0, 0, 0, 0.15);
    }

    .post-item .content .meta {
        justify-content: end;
    }

    .post-item .content .meta .post-time {
        display: none;
    }

    .post-item .content .meta .post-date {
        color: #7E7E7E;
        font-size: 0.8rem;
    }

    .list-img-bg {
        display: none;
        height: 110px;
    }
}

/* list  文本/查找结果列表 */




.list-text-area .post-text-item {
    padding: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(0, 0, 0, 0.15);
}

.list-text-area .post-text-item:hover {
    background-color: #2362B2;
    -webkit-box-shadow: 0 5px 10px 5px rgba(7, 48, 128, 0.2);
    box-shadow: 0 5px 10px 5px rgba(7, 48, 128, 0.2);
}

.list-text-area .post-text-date {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #2362B2;
}

.list-text-area .post-text-item:hover .post-text-date {
    color: #fff;
}

.list-text-area .title {
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(100% - 120px);
}

.list-text-area .title a {
    color: #333;
}

.list-text-area .post-text-item:hover .title,
.list-text-area .post-text-item:hover .title a {
    color: #fff;
}


.list-text-area .post-text-more {
    width: 120px;
    text-align: right;
    color: #2362B2;
}

.list-text-area .post-text-item:hover .post-text-more {
    color: #fff;
}

.list-text-area .post-text-more.post-text-more-date {
    width: 100%;
    display: block;
    text-align: right;
}

@media only screen and (max-width: 991px) {
    .list-text-area .post-text-item {
        border-bottom: none;
        background-color: #F1F6FD;
    }

    .list-text-area .post-text-item-content {
        flex-direction: column;
    }

    .list-text-area .title {
        width: 100%;
        white-space: wrap;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 1.2rem;
    }

    .list-text-area .post-text-item:hover .title {

        color: #fff;

    }


}

/*  文本/查找结果列表 部分样式和list-text-area重叠*/
/* 查询input */
.list-search-area .list-search {
    margin: 30px 0;
}

.list-search-area .list-search .search-input {
    height: 45px;
    border: 1px solid rgb(0, 0, 0, 0.15);
    padding-left: 10px;
    font-size: 0.9rem;
    border-radius: 0;
    width: calc(100% - 95px);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.list-search-area .list-search .search-input:focus {
    border: 1px solid rgb(24, 124, 222, 1);
}

.list-search-area .search-btn {
    height: 45px;
    width: 95px;
    background-color: #187CDE;
    border: none;
    color: #fff;
    font-size: 1rem;
}

.list-search-area .search-btn i {
    padding-right: 10px;
}

/* 查询input end*/
/* 列表 */
.list-text-area .title {
    width: 100%;
}

.list-search-area .post-text-item-content {
    flex-direction: column;
}

.list-search-area .post-text-item-content p {
    white-space: wrap;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-search-area .post-text-item-content p a {
    color: #808080;
}

.list-search-area .post-text-item-content:hover p a {
    color: rgb(255, 255, 255, 0.6);
}

/*  文本/查找结果列表 end*/



/* 表格列表 Start */
.post-table-item {
    width: 100%;
}

.post-table-item th,
.post-table-item td {
    padding: 15px;
    border-right: 1px solid rgb(0, 0, 0, 0.1);
}

.post-table-item th:first-child,
.post-table-item td:first-child {
    border-left: 1px solid rgb(0, 0, 0, 0.1);
    text-align: center;
}



.post-table-item th {
    background-color: #2464BB;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    font-weight: normal;
}

.post-table-item tr:nth-child(even) {
    background-color: #EDF5FD;
}

.post-table-item tr:last-child {
    border-bottom: 1px solid rgb(0, 0, 0, 0.1);
}

@media only screen and (max-width: 991px) {

    .post-table-item th,
    .post-table-item td {
        padding: 10px 5px;
    }
}

/* 表格列表 End */




/* 杰出人才列表 Start */
.person-item {
    border-bottom: 2px solid rgb(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.person-item .img-wrap {
    height: 320px;
    position: relative;
}

.person-item .img-wrap .img {
    height: 300px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.person-item .img-wrap .name {
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    background-color: #2464BB;
    color: #fff;
    text-align: center;
    width: 50%;
    padding: 5px 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.person-item .college {
    text-align: center;
    margin: 10px 0;
}

@media only screen and (max-width: 991px) {
    .person-item .img-wrap {
        height: 200px;
        position: relative;
    }

    .person-item .img-wrap .img {
        height: 190px;
    }

    .person-item .img-wrap .name {
        font-size: 1rem;
    }
}

/* 人才列表左边导航 Start */
.widget-social ul {
    margin-bottom: 0;
}

.widget-social ul li i {
    color: rgb(0, 0, 0, 0.7);
}

.widget-social ul li a {
    background-color: #f0f0f0;
    color: #333;
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px 29px;
    position: relative;
    width: 100%;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.widget-social ul li a:hover {
    background-color: #2464BB;
    color: #fff;
}

.widget-social ul li:hover i {
    color: rgb(255, 255, 255, 0.8);
}

.widget-social ul li a:hover span {
    color: #fff;
}

.widget-social ul li a.active {
    background-color: #2464BB;
    color: #fff;
}

.widget-social ul li a.active span {
    color: #fff;
}

.widget-social ul li a i {
    font-size: 18px;
    margin-right: 16px;
}

.widget-social ul li a.active i {
    color: rgb(255, 255, 255, 0.8);
}

.widget-social ul li a span {
    color: #0055ff;
    font-size: 15px;
    position: absolute;
    right: 29px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}


/* 人才列表左边导航 End */
/* 杰出人才列表 End */