.news-head {
    position: relative;
    width: 7.5rem;
    height: 2.5rem;
    background: url(/static/m/img/news_head.png);
    background-size: 100%;
    font-size: .3rem;
}
.news-head h2 {
    position: absolute;
    width: 2rem;
    height: .4rem;
    line-height: .4rem;
    top: 0;
    bottom: .5rem;
    left: 0;
    right: 0;
    margin: auto;
    color: #fff;
    text-align: center;
    font-size: .4rem
}

.news-head h2::before {
    position: absolute;
    content: '';
    width: .7rem;
    height: 2px;
    left: -.7rem;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

.news-head h2::after {
    position: absolute;
    content: '';
    width: .7rem;
    height: 2px;
    right: -.7rem;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}
.news-head-nav {
    position: absolute;
    width: 6.89rem;
    height: .96rem;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: -.48rem;
    background: #fff;
    color: #333;
    box-shadow: 0 7px 30px #d1d1d1;
    white-space: nowrap;
}
.news-head-nav a {
    display: inline-block;
    width: 3.445rem;
    height: .96rem;
    line-height: .96rem;
    text-align: center;
}
.news-head-nav .active {
    background: #00a2ff;
    color: #fff;
}

.news-list {
    padding: .5rem 0;
    background: #fff;
}
.news-list .item {
    display: block;
    position: relative;
    width: 7.5rem;
    height: 2.82rem;
    border-bottom: 1px solid #eee;
    padding: .5rem 2.5rem .5rem .3rem;
}
.news-list .item .tit {
    line-height: .5rem;
    font-size: .3rem;
    font-weight: bold;
}
.news-list .item .desc {
    display: -webkit-box;
    height: .8rem;
    line-height: .4rem;
    font-size: .25rem;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-list .item .date {
    margin-top: .2rem;
    font-size: .2rem;
    color: #999;
}
.news-list .item img {
    position: absolute;
    right: .3rem;
    top: .5rem;
    width: 2.16rem;
    height: 1.89rem;
}
.staff-list {
    padding: 1rem .3rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.staff-list .item{
    position: relative;
    display: inline-block;
    width: 3.4rem;
    margin-bottom: .2rem;
    padding: 3rem 0 .3rem 0;
    background: #fff;
}

.staff-list .item img{
    position: absolute;
    top: 0;
    left: 0;
    width: 3.4rem;
    height: 3rem;
}

.staff-list .item h3{
    padding: .1rem;
    font-weight: bold;
    font-size: .3rem;
    line-height: .4rem;
}

.img-mask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
}
.img-mask img {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translate(0,-50%);
}