@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    list-style: none;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

a {
    color: #000;
    text-decoration: none;
    outline: none;
}

a:hover {
    color: #000;
    text-decoration: underline;
    outline: none;
}

i {
    font-style: normal;
    font-weight: normal;
}

html,
body {
    position: relative;
    background: #f7f3cb;
}

body {
    *cursor: default;
    overflow: hidden;
    overflow-y: auto;
    font: 100%/1.5 Tahoma, Helvetica, Arial, "Microsoft YaHei", STXihei, SimSun, sans-serif;
    color: #333;
    background: url("../images/top_bg2.jpg") no-repeat center top;
    background-size: 100%;
}


/* 自适应框架（设计图宽度） */

body {
    max-width: 19.2rem;
    margin: 0 auto;
}

body * {
    max-width: 19.2rem;
}

header,
main,
footer {
    width: 100%;
    margin: 0.3rem auto;
    clear: both;
}

header {
    height: 5.7rem;
}

main {
    width: 12rem;
    background: #fff;
    border-radius: 10px;
}

footer {
    padding: 20px;
}


/* 新闻列表 */

#newslist {
    margin: 0 auto;
    width: 90%;
    overflow: hidden;
}

#newslist ul {
    margin: 0.15rem 0;
    font-size: 0.26rem;
    line-height: 0.5rem;
    border-bottom: 1px solid #efefef;
    overflow: hidden;
    clear: both;
}

#newslist .nav_t,
#newslist .nav_t a {
    color: #999;
}

#newslist .list_txt dt {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0.1rem 0;
}

#newslist .list_txt a {
    color: #333;
}

#newslist .list_txt i {
    font-style: normal;
    color: #999;
    white-space: nowrap;
}

#newslist .list_pic {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}

#newslist .list_pic a {
    width: 24.5%;
    margin: 0.04rem 0;
    position: relative;
}

#newslist .list_pic a h1 {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 0.2rem;
    line-height: 0.35rem;
}

#newslist .list_pic img {
    width: 100%;
    height: 100%;
}


/* 内容页 */

#content {
    margin: 0 auto;
    width: 90%;
    overflow: hidden;
}

#content ul {
    margin: 0.15rem auto;
    font-size: 0.2rem;
    line-height: 0.35rem;
    overflow: hidden;
    clear: both;
}

#content .nav_t,
#content .nav_t a {
    color: #999;
}

#content .con_t {
    text-align: center;
}

#content .con_t h1 {
    font-size: 0.3rem;
    line-height: 0.5rem;
    font-weight: normal;
    clear: both;
}

#content .con_t p {
    color: #999;
}

#content .con_m p {
    margin: 0.2rem 0;
}

#content .con_m p img {
    width: 100%;
    height: auto;
}


/* 分页 */

#pagenum {
    padding: 3px;
    margin: 3px;
    text-align: center;
    font-size: 12px;
    font-family: Helvetica, "Microsoft YaHei", Arial, sans-serif;
}

#pagenum a {
    border: #ddd 1px solid;
    padding: 2px 5px;
    margin-right: 2px;
    color: #aaa;
    text-decoration: none;
}

#pagenum a:hover {
    border: #a0a0a0 1px solid;
    padding: 2px 5px;
    margin-right: 2px;
}

#pagenum a:active {
    border: #a0a0a0 1px solid;
    padding: 2px 5px;
    margin-right: 2px;
}

#pagenum a.current {
    border: #e0e0e0 1px solid;
    padding: 2px 5px;
    margin-right: 2px;
    font-weight: bold;
    color: #aaa;
    background-color: #f0f0f0;
}

#pagenum span.disabled {
    border: #f3f3f3 1px solid;
    padding: 2px 5px;
    margin-right: 2px;
    color: #ccc;
}


/* 移动端自适应 */

@media screen and (max-width: 720px) {
    body {
        background: #e0edf8 url(../images/top_bg_m.jpg) no-repeat center top;
        background-size: 100%;
    }
    body {
        max-width: 7.2rem;
        margin: 0 auto;
    }
    body * {
        max-width: 7.2rem;
    }
    header {
        height: 2.4rem;
    }
    main {
        width: 94%;
    }
    #newslist ul {
        font-size: 0.3rem;
    }
    #content ul {
        font-size: 0.3rem;
        line-height: 0.5rem;
    }
    #content .con_t h1 {
        font-size: 0.4rem;
        line-height: 0.6rem;
    }
}