﻿:root {
    --top-banner-height: 7rem;
}

/*@media (min-width: 1600px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl .container-xxxl {
        max-width: 1320px;
    }
}
*/

.top-banner .logo {
    background-size: auto 7rem;
}
/*
.document-nav {
    color: #696974;
}

    .document-nav .breadcrumb-item + .breadcrumb-item::before {
        color: #D6D6D6;
    }

    .document-nav a, .document-nav a:link {
        font-size: 1rem;
        text-decoration: none;
        color: #002046;
    }*/

.list-title {
    font-size: 1.5rem;
    line-height: 3rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: #2b2b2b;
    font-weight: 600;
}


.news-list {
}

    .news-list a, .news-list a:link {
        text-decoration: none;
        display: flex;
        height: 100%;
    }

    .news-list .item {
        border-bottom: 1px solid #d9d9d9;
        text-decoration: none;
        margin-bottom: 1rem;
    }
        .news-list .item .item-container {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .news-list .item .img-container {
            position: relative;
            display: inline-block;
        }

            .news-list .item .img-container::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0,0,0,0.3); /* 30%透明度黑色遮罩 */
                opacity: 0;
                transition: opacity 0.3s;
            }

        .news-list .item:hover .img-container::after {
            opacity: 1;
        }



        .news-list .item .desc {
            color: #2b2b2b;
            line-height: 1.8rem;
            font-size: 0.9rem;
            padding-top: 0.1rem;
            padding-bottom: 0.1rem;
            display: flex;
            height: 100%;
            flex-direction: column;
            flex-wrap: nowrap;
            justify-content: space-between;
        }

            .news-list .item .desc .title {
            }

            .news-list .item .desc .date {
                font-size: 0.7rem;
                color:#999;
            }

        .news-list .item:hover {
            /*border-bottom: 1px solid #004BA3;*/
        }

            .news-list .item:hover .desc .title {
                color: #004BA3;
            }

            .news-list .item:hover .desc .date {
                color: #004BA3;
            }

.news-pages {
    max-width: 58rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

    .news-pages a, .news-pages a:link {
        text-decoration: none;
        color: #666;
    }

    .news-pages .current, .news-pages .current:link {
        color: #004BA3;
    }

.hvr-underline-from-left:before {
    background: #004BA3;
    height:1px;
}