/* 列表顶部开始 */

.list .top {
    gap: 1rem;
}

.list .top .li {
    --pLt: 1.4rem;
    --ptxtLt: 2rem;
    /*background: #f3f6f9;*/
    background-color: rgba(255,255,255,.4);
}

.list .top .li .card {
    padding: var(--pLt);
    padding-bottom: 0;
}

.list .top .li .card .img-db {
    width: 100%;
    height: auto;
    aspect-ratio: 458/275;
    border-radius: .4rem;
}

.list .top .li .card h6 {
    margin-top: .6rem;
    font-size: var(--f18);
    color: #313131;
}

.list .top .li .text {
    padding: 1rem;
}

.list .top .li .card p {
    color: #313131;
    opacity: .6;
    font-size: var(--f15);
    margin-top: .8rem;
    line-height: 1.8;
}

.list .top .li .date {
    height: 3rem;
    display: flex;
    align-items: center;
    padding: 0 var(--ptxtLt);
    font-size: var(--f15);
    justify-content: space-between;
    color: rgba(49, 49, 49, .8);
    transition: background .5s, color .5s;
    padding-bottom: var(--pLt);
}



.list .top .li .date span{
    color: var(--themeActColor);
    border: 1px solid var(--themeActColor);
    padding: .2rem 1rem;
    border-radius: 50px;
    transition: background .5s, color .5s;
}

.list .top .li:hover .date span{
    background: var(--themeActColor);
    color: #fff;
}


/* 列表顶部结束 */


/* 正常列表显示开始 */

.shu-list li a {
    gap: 3.5rem;
    color: #313131;
    padding: 2rem 0;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
}

.shu-list li a::before {
    content: '';
    display: block;
    position: absolute;
    bottom: -1px;
    height: 2px;
    width: 0;
    background: var(--themeActColor);
    transition: width 1s;
}

.shu-list .date {
    padding-top: 2rem;
    font-size: var(--f14);
    color: #313131;
    transition: color .5s;
}

.shu-list .date .day {
    font-size: var(--f30);
}

.shu-list .img-db {
    width: 18rem;
    height: auto;
    aspect-ratio: 392/255;
    border-radius: .4rem;
}

.shu-list .text {
    padding-top: 2rem;
    overflow: hidden;
}

.shu-list .text h5 {
    font-size: var(--f24);
    font-weight: normal;
}

.shu-list .text p {
    color: #57525f;
    margin-top: 1rem;
    line-height: 1.8;
}

.shu-list .text i {
    margin-top: 2rem;
    display: inline-block;
    padding: .4rem;
    font-size: var(--f20);
    color: #313131;
    border: 1px solid #313131;
    line-height: 1;
    border-radius: 100%;
    transition: background .5s, color .5s, border-color .5s;
}

.shu-list li a:hover .date {
    color: var(--themeColor);
}

.shu-list li a:hover i {
    color: #fff;
    background: var(--themeActColor);
    border-color: var(--themeActColor);
}

.shu-list li a:hover::before {
    width: 100%;
}


/* 正常列表显示结束 */


/* 首页新开始 */


/* 页面无图列表 开始 */

.page_nothum_list {}

.page_nothum_list .page_nothum_list_box {
    flex-flow: wrap;
    justify-content: space-between;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    row-gap: 40px;
}

.page_nothum_list .page_nothum_list_item {
    background-color: #ffffff;
    display: block;
    padding: 20px;
    transition: all .3s ease;
}

.page_nothum_list .page_nothum_list_item .page_nothum_list_item_top {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.page_nothum_list .page_nothum_list_item .page_nothum_list_item_top .catalog {
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .1);
    color: #fff;
    padding: 5px 10px;
    border-radius: 2px;
    color: #337ab7;
}

.page_nothum_list .page_nothum_list_item .page_nothum_list_item_top .year {
    font-size: 16px;
    color: rgba(0, 0, 0, .5);
    letter-spacing: 1px;
    text-align: right;
}

.page_nothum_list .page_nothum_list_item .page_nothum_list_item_top .data {
    font-size: 24px;
    font-weight: 600;
    text-align: right;
    letter-spacing: 1px;
    color: #337ab7;
}

.page_nothum_list .page_nothum_list_item .title {
    font-size: 18px;
    font-weight: 800;
    color: #000000;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding-bottom: 15px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 26px;
    margin-top: 20px;
}

.page_nothum_list .page_nothum_list_item .describe {
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 26px;
    margin-top: 20px;
    color: rgba(0, 0, 0, .5);
    font-size: 14px;
    text-indent: 28px;
}

.page_nothum_list .page_nothum_list_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 23px 90px -5px rgb(29 56 72 / 17%);
}

@media screen and (max-width: 1024px) {
    .page_nothum_list .page_nothum_list_box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 840px) {
    .page_nothum_list .page_nothum_list_box {
        grid-template-columns: repeat(1, 1fr);
    }
}

.hydt {
    background-color: #ffffff;
}

.hydt .page_nothum_list .page_nothum_list_item {
    background-color: #f3f6f9;
}


/* 页面无图列表 结束 */