﻿/* 新闻页样式表 */
body {
    background: #f0f7ff;
}
::-webkit-scrollbar {
    display: none;
}
.footer-none {
    display: none;
}
.icon-none {
    display: none;
}
.news-page {
    font-size: .14rem;
    overflow: hidden;
}
.news-tab {
    position: fixed;
    top: .44rem;
    width: 100%;
    height: .5rem;
    z-index: 999;
    background: #fff;
}
.news-tab-ul {
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 100%;
}
.news-tab-ul li {
    width: 33.33%;
    height: 100%;
    text-align: center;
    font-size: .16rem;
}
.add-background {
    background: var(--theme--color);
    color: #fff;
}
.add-none {
    display: none;
}
.news-tab-li  {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    line-height: .25rem;
    justify-content:center;
}
.news-tab-ul li img {
    display: inline-block;
    width: .25rem;
    height: .25rem;
    margin: 0 .03rem 0 0;
}


/* 内容 */
.contents {
    width: 94%;
    margin: .6rem auto .2rem;
    -webkit-overflow-scrolling: touch;
}
.news-wrap,
.case-wrap,
.updata-wrap {
    width: 100%;
    overflow-y: scroll;
    background: #fff;
}
.content-son {
    box-sizing: border-box;
    width: 90%;
    height: .65rem;
    margin: 0 auto;
    border-bottom: .01rem solid #ccc;
    /* .01rem solid #ccc var(--box--shadow)  */
}
.content-son:last-child {
    border-bottom: none;
}
.content-son-title {
    width: 100%;
    font-size: .16rem;
    line-height: .3rem;
    padding-top: .1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.content-son-time {
    font-size: .12rem;
    color: #999;
}

.nomore {
    width: 100%;
    line-height: .36rem;
    text-align: center;
    font-size: .12rem;
    background: #eee;
    color: var(--content--text--color);
}

/* 遮罩层 */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: #fff;
    /*background: rgba(0,0,0,.6)*/
}
#preloader_1 {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 0 1.7rem;
}

#preloader_1 span {
    display: block;
    bottom: 0px;
    width: 9px;
    height: 5px;
    background: var(--rest--color);
    position: absolute;
    animation: preloader_1 1.5s infinite ease-in-out;
}

    #preloader_1 span:nth-child(2) {
        left: 11px;
        animation-delay: .2s;
    }

    #preloader_1 span:nth-child(3) {
        left: 22px;
        animation-delay: .4s;
    }

    #preloader_1 span:nth-child(4) {
        left: 33px;
        animation-delay: .6s;
    }

    #preloader_1 span:nth-child(5) {
        left: 44px;
        animation-delay: .8s;
    }

@keyframes preloader_1 {
    0% {
        height: 5px;
        transform: translateY(0px);
        background: var(--rest--color);
    }

    25% {
        height: 30px;
        transform: translateY(15px);
        background: var(--theme--color);
    }

    50% {
        height: 5px;
        transform: translateY(0px);
        background: var(--rest--color);
    }

    100% {
        height: 5px;
        transform: translateY(0px);
        background: var(--rest--color);
    }
}

