﻿/**暂无数据**/
.dataempty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.2rem;
    text-align: center;
}

    .dataempty .emptyicon {
        width: 0.8rem;
        height: 0.8rem;
        color: #cccccc;
        margin-bottom: 0.16rem;
    }

    .dataempty .emptytext {
        font-size: 0.16rem;
        color: #999999;
        line-height: 1.6;
    }
    /*****/
.newslist{
    width:94%;
    margin:0.1rem auto;
}
    .newslist .news-header {
        padding-bottom: 0.1rem;
        border-bottom: 2px solid #0a2463;
        position: relative;
        margin-bottom:0.1rem;
    }
        .newslist .news-header h2 {
            color: #0a2463;
            font-size: 0.2rem;
            margin:0px;
            padding:0px;
        }
        .newslist .news-header p {
            color: #6c757d;
            line-height:0.2rem;
            margin:0px;
            margin-top:0.1rem;
            padding:0px;
        }
    .newslist .news-item {
        display: block;
        background-color: #FFF;
        border-radius: 0.06rem;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
        margin-bottom:0.2rem;
    }
        .newslist .news-item img {
            display: block;
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            object-position: top;
        }
    .newslist .news-content {
        padding:0 0.1rem;
    }
    .newslist .news-meta {
        line-height: 0.3rem;
        display: flex;
        align-items: center;
        color: #6c757d;
        font-size: 0.12rem;
    }
        .newslist .news-meta span{
            margin-right:0.05rem;
        }
        .newslist .news-meta i {
            margin-right: 0.04rem;
        }
    .newslist .news-content h3 {
        margin:0px;
        padding:0px;
        font-size:0.16rem;
        line-height:1.5
    }
    .newslist .news-content p {
        margin: 0px;
        padding: 0px;
        height:0.4rem;
        line-height:0.2rem;
        margin:0.1rem 0;
    }
/*****/
.newsitem{
    width:94%;
    margin:0 auto;
}
    /* 新闻头部信息 */
    .newsitem .news-detail-header {
        padding-top: 0.2rem;
        margin-bottom: 0.3rem;
        border-bottom: 1px solid #e0e0e0;
    }

    .newsitem .news-detail-title {
        color: #0a2463;
        font-size: 0.16rem;
        line-height: 1.3;
        margin-bottom: 0.2rem;
    }

    .newsitem .news-detail-meta {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 0.1rem;
    }

    .newsitem .news-detail-category {
        background-color: rgba(10, 36, 99, 0.1);
        color: #0a2463;
        padding: 0.05rem 0.15rem;
        border-radius: 4px;
        font-size: 0.14rem;
        font-weight: 600;
        margin-right: 0.2rem;
    }

    .newsitem .news-detail-date, .newsitem .news-detail-views, .newsitem .news-detail-author {
        color: #6c757d;
        font-size: 0.14rem;
        margin-right: 0.2rem;
        display: flex;
        align-items: center;
    }

        .newsitem .news-detail-date i, .newsitem .news-detail-views i, .newsitem .news-detail-author i {
            margin-right: 0.05rem;
        }

    /* 新闻内容 */
    .newsitem .news-detail-content {
        font-size: 0.16rem;
        line-height: 1.8;
    }

        .newsitem .news-detail-content h2, .newsitem .news-detail-content h3 {
            color: #0a2463;
            margin: 0.3rem 0 0.15rem;
            font-size: 0.18rem;
        }

        .newsitem .news-detail-content p {
            margin-bottom: 0.2rem;
            text-indent: 2em;
            font-size:0.14rem;
        }

        .newsitem .news-detail-content ul, .newsitem .news-detail-content ol {
            margin: 0.2rem 0 0.2rem 0.3rem;
        }

        .newsitem .news-detail-content li {
            margin-bottom: 0.1rem;
        }


        .newsitem .news-detail-content img {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 4px;
            margin: 0.2rem 0;
        }


    /* 新闻标签 */
    .newsitem .news-detail-tags {
        display: flex;
        flex-wrap: wrap;
        margin: 0.4rem 0 0.3rem;
        padding-top: 20px;
        border-top: 1px solid #e0e0e0;
    }

    .newsitem .news-detail-tags-title {
        color: #0a2463;
        font-weight: 600;
        margin-right: 0.15rem;
        line-height: 2;
    }

    .newsitem .news-tag {
        background-color: rgba(10, 36, 99, 0.1);
        color: #0a2463;
        padding: 0.05rem 0.15rem;
        border-radius: 4px;
        font-size: 0.14rem;
        margin-right: 0.1rem;
        margin-bottom: 0.1rem;
        transition: all 0.3s;
    }

        .newsitem .news-tag:hover {
            background-color: #0a2463;
            color: white;
        }
    /* 导航按钮 */
    .newsitem .news-navigation {
        padding-top: 0.1rem;
        border-top: 1px solid #e0e0e0;
    }
        .newsitem .news-navigation a{
            display:block;
            margin-bottom:0.1rem
        }
        .newsitem .news-nav-btn {
            display: flex;
            align-items: center;
            color: #0a2463;
            font-weight: 600;
            transition: all 0.3s;
        }

        .newsitem .news-nav-btn:hover {
            color: #f97316;
        }

        .newsitem .news-nav-btn.prev i {
            margin-right: 0.1rem;
        }

        .newsitem .news-nav-btn.next i {
            margin-left: 0.1rem;
        }

        .newsitem .news-nav-btn.disabled {
            color: #6c757d;
            cursor: not-allowed;
        }

            .newsitem .news-nav-btn.disabled:hover {
                color: #6c757d;
            }
.back-to-list{
    position:fixed;
    right:0px;
    top:70%;
    display:block;
    background-color:#F50;
    border-radius:4px 0 0 4px;
    padding:0.1rem;
}
    .back-to-list a {
        display:block;
        color: #FFF !important;
    }