@charset "utf-8";

/* CSS Reset */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
a,
code,
em,
img,
q,
small,
strong,
dd,
dl,
dt,
li,
ol,
ul,
fieldset,
form,
label,
table,
tbody,
tr,
th,
td,
input,
textarea,
button,
i,
input,
select,
option,
header,
footer,
main,
article,
section,
aside,
nav {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

i,
em {
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
    font-weight: 500;
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}

a:focus,
a:active,
a:hover {
    outline: none;
}

a img {
    vertical-align: top;
}

a,
img {
    -webkit-touch-callout: none;
}

img {
    border: none;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-overflow-scrolling: touch;
}

/* CSS Reset End */
/* 浮动与清除浮动 */
.fl {
    float: left;
}

.fr {
    float: right;
}

.clearfix {
    zoom: 1;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
    overflow: hidden;
}

/* 页面样式 */
body {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    background-color: #edeff2;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    color: #333;
}

img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
p {
    word-break: break-all;
}

/* 页面样式 */
/* 页头 */
.header {
    position: relative;
    height: .9rem;
    padding: 0 .3rem;
    background-color: #fff;
}

.header .return {
    position: absolute;
    left: .3rem;
    top: 50%;
    display: inline-block;
    width: .45rem;
    height: .45rem;
    margin-top: -0.225rem;
    background: url(../img/return.png) no-repeat center;
    background-size: 100%;
}

.header h1 {
    text-align: center;
    line-height: .9rem;
    font-weight: bold;
    font-size: 18px;
    color: #000;
}

/* banner */
.banner {
    padding: 0 .3rem .4rem;
    margin-bottom: .16rem;
    background-color: #fff;
}

.banner-box {
    position: relative;
    height: 3.88rem;
    overflow: hidden;
}

.banner-box img {
    width: 100%;
    height: 100%;
}

.banner-box:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 23;
    width: 100%;
    height: 1.4rem;
    background: url(../img/shadow.png) no-repeat center;
    background-size: 100%;
}

.banner-text {
    position: absolute;
    left: 0;
    bottom: .2rem;
    z-index: 66;
    width: 100%;
    padding: 0 .2rem;
    line-height: .36rem;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 18px;
    color: #fff;
}

/* 标签导航 */
.nav-tags {
    padding: .3rem .2rem .1rem .3rem;
    margin-bottom: .16rem;
    background-color: #fff;
}

.nav-tags .tag-item {
    display: inline-block;
    height: .6rem;
    line-height: .6rem;
    padding: 0 .25rem;
    margin: 0 .4rem .3rem 0;
    border: 1px solid #cecece;
    border-radius: .3rem;
    background-color: #fff;
    font-size: 15px;
    color: #333;
}

.nav-tags .tag-item.active {
    border: none;
    background-color: #439af8;
    color: #fff;
}

/* 新闻列表 */
.news-list-container {
    padding-top: .4rem;
    margin-bottom: .16rem;
    background-color: #fff;
}

.news-list-container:last-of-type {
    margin-bottom: 0;
}

.news-list-header {
    text-align: center;
}

.news-list-header h3 {
    position: relative;
    display: inline-block;
    line-height: 1;
    font-size: 18px;
    text-align: center;
    color: #000;
}

.news-list-header h3:before,
.news-list-header h3:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -0.4rem;
    display: block;
    width: .2rem;
    height: .02rem;
    background-color: #000;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.news-list-header h3:after {
    left: auto;
    right: -0.4rem;
}

.news-list-item {
    position: relative;
    padding: .37rem .3rem;
    border-bottom: 1px solid #e6e6e6;
}

.news-list-item.item-single-pic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.news-list-item.item-single-pic img {
    width: 2rem;
    height: 1.5rem;
}

.news-list-item.item-single-pic .item-main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: .2rem;
}

.news-list-item.item-many-pics {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.news-list-item.item-many-pics .item-pic-box {
    position: relative;
    width: 2rem;
    height: 1.5rem;
    overflow: hidden;
}

.news-list-item.item-many-pics .item-pic-box img {
    width: 100%;
    height: 100%;
}

.news-list-item.item-many-pics .pics-number {
    position: absolute;
    right: .1rem;
    bottom: .1rem;
    display: inline-block;
    height: .4rem;
    line-height: .4rem;
    padding: 0 .15rem 0 .55rem;
    background-color: #000000;
    font-size: 10px;
    color: #fff;
}

.news-list-item.item-many-pics .pics-number:after {
    content: "";
    position: absolute;
    left: .15rem;
    top: 50%;
    display: block;
    width: .32rem;
    height: .3rem;
    margin-top: -0.15rem;
    background: url(../img/icon_pic.png) no-repeat center;
    background-size: contain;
}

.news-list-item.item-many-pics .item-main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: .2rem;
}

.news-list-item.item-multi-pic img {
    width: 2.16rem;
    height: 1.62rem;
    margin: 0;
}

.news-list-item.item-multi-pic .item-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: .2rem;
}

.news-list-item.item-with-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.news-list-item.item-with-video .item-pic-box {
    position: relative;
    width: 2rem;
    height: 1.5rem;
    overflow: hidden;
}

.news-list-item.item-with-video .item-pic-box img {
    width: 100%;
    height: 100%;
}

.news-list-item.item-with-video .video-duration {
    position: absolute;
    right: .1rem;
    bottom: .1rem;
    display: inline-block;
    height: .4rem;
    line-height: .4rem;
    padding: 0 .15rem 0 .3rem;
    background-color: #000000;
    font-size: 10px;
    color: #fff;
}

.news-list-item.item-with-video .video-duration:after {
    content: "";
    position: absolute;
    left: .15rem;
    top: 50%;
    display: block;
    width: .12rem;
    height: .15rem;
    margin-top: -0.075rem;
    background: url(../img/play.png) no-repeat center;
    background-size: contain;
}

.news-list-item.item-with-video .item-main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: .2rem;
}

.news-list-item .item-info {
    margin-top: .2rem;
    font-size: 12px;
    color: #aaa;
}

.news-list-item .item-tag {
    display: inline-block;
    padding: 0 .11rem;
    margin-right: .07rem;
    border: 1px solid #aaa;
    border-radius: .06rem;
    line-height: .35rem;
}

.news-list-item .item-tag.highlight {
    border-color: #439af8;
    color: #439af8;
}

.news-list-item .item-time {
    line-height: .37rem;
    margin-left: .04rem;
}

.news-list-item h4 {
    line-height: .42rem;
    font-size: 18px;
    color: #000;
}

/* 查看更多 */
.view-more {
    height: 1rem;
    text-align: center;
}

.view-more a {
    display: inline-block;
    margin-top: .3rem;
    padding: .04rem .5rem;
    line-height: .32rem;
    font-size: 15px;
    color: #aaa;
}

.mask {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    top: 0;
    left: 0;
    z-index: 99999;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: none;
}

.mask img {
    width: 100%;
    height: auto;
}

.mask .saveimg {
    padding-top: 10px;
    color: #fff;
    width: 100%;
    text-align: center;
}