body,
html,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
header,
menu,
section,
p,
input,
td,
th,
ins {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: #333;
}

img {
    vertical-align: top;
    max-width: 100%;
}

ul,
li {
    list-style: none;
}

button {
    outline: none;
    border: none;
}
.wraper {
    width: 1000px;
    margin: 0 auto;
}
/* 头部 */
.header {
    text-align: center;
    background-image: url(/images/header_bg.png);
    background-size: 100% 100%;
    padding: 120px 0;
}
/* 全局导航 */
.nav {
    background: #1675c7;
    font-size: 20px;
    color: #fff;
}
.nav .wraper {
    display: flex;
    justify-content: space-between;
    align-content: center;
}
.nav a,
.nav span {
    color: #fff;
    font-weight: bold;
}
.nav a {
    flex: 1;
    text-align: center;
    box-shadow: -1px 0 0 #0362b3;
    text-decoration: none;
    font-family: 'Microsoft Yahei';
}
.nav a:last-child {
    box-shadow:
        -1px 0 0 #0362b3,
        1px 0 0 #0362b3;
}
.nav a:hover {
    background-color: #0362b3;
}
.nav span {
    display: block;
    padding: 16px;
}
/* 面包屑导航 */
#position {
    background: none;
    border: none;
    margin: 0;
    width: 100%;
    padding: 10px 0;
    box-sizing: border-box;
    font-size: 17px;
    font-family: "Microsoft Yahei";
    color: #555;
    float: none;
    background-color: #f3f3f3;
}
#position a {
    background: none;
    color: #555;
    padding: 0;
}
/* 栏目列表 */
.catname {
    border-bottom: 3px solid #f5f5f5;
    font-size: 20px;
    margin-top: 20px;
}
.catname span {
    color: #a00;
    padding: 8px 1px;
    background-color: #f5f5f5;
    font-family: 'Microsoft Yahei';
    font-weight: bold;
    display: inline-block;
    border-bottom: 3px solid #c50707;
    margin-bottom: -3px;
}
.pagelist {
    background: #fff;
    padding: 0 0 25px;
    font-size: 18px;
}
.pagelist li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}
.pagelist li::before {
    content: "";
    display: inline-block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #9ab3b7;
    margin-right: 10px;
}
.pagelist li:hover::before {
    background-color: #fff;
}
.pagelist li:nth-child(5n + 1) {
    margin-top: 20px;
}
.pagelist li:nth-child(5n) {
    border-bottom: none;
}
.pagelist li:hover {
    transform: scale(1.03);
    padding: 15px;
    background: #1675c7;
}
.pagelist li .date {
    font-size: 16px;
    float: right;
    color: #888;
}
.pagelist li:hover a, .pagelist li:hover .date {
    color: #fff;
}
.pagelist a {
    color: #333;
}
/* 文章详情 */
.article {
    margin-bottom: 40px;
    min-height: 500px;
}
.article h1 {
    font-size: 30px;
    text-align: center;
    padding: 30px;
    color: #116dba;
}
.article .info {
    font-size: 15px;
    text-align: center;
    padding-bottom: 20px;
    color: #666;
    border-bottom: 1px solid #eee;
}
.article .info span:first-child {
    margin-right: 15px;
}
.article .content {
    padding: 15px;
    text-align: center;
}
.article .content,
.article .content p {
    font-size: 18px;
    line-height: 1.8em;
}
.article .content img, .article .content video {
    max-width: 100%;
    height: auto!important;
    margin: 0 auto;
}
.article .content p {
    margin: 20px;
    text-align: justify;
    color: #333;
}
.article .content span, .article .content div {
    text-align: justify;
}
/* 全局分页 */
#pages {
    font-size: 17px;
    margin: 15px 0;
    text-align: center;
}
#pages a {
    display: inline-block;
    line-height: 22px;
    background: #ededed;
    text-align: center;
    color: #333;
    padding: 3px 10px;
    /*border-radius: 5px;*/
    border: none;
    cursor: pointer;
}
#pages span {
    display: inline-block;
    background: #1675c7;
    color: #fff;
    padding: 3px 10px;
    /*border-radius: 5px;*/
    border: none;
}
/* 尾部 */
.footer {
    font-size: 15px;
    background: #2f3b49;
    text-align: center;
    line-height: 2em;
    padding: 30px 0 10px;
}
.footer p,
.footer a {
    color: #fff;
}

@media only screen and (max-width: 768px) {
    body {
        width: 100%;
    }
    .wraper {
        width: 100%;
    }
    .header {
        padding: 50px 20px;
    }
    .nav {
        display: none;
    }
    .catname {
        padding: 0 20px;
    }
    .pagelist {
        padding: 0 20px;
    }
    .pagelist li {
        text-align: justify;
    }
    .pagelist .date {
        display: none;
    }
    .article h1 {
        padding: 15px;
        font-size: 22px;
    }
    #pages a {
        display: none;
    }
    #pages a.a1 {
        display: inline-block;
    }
    .footer {
        padding: 20px 15px 10px;
    }
}