/* 公共部分*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
input,
textarea,
p {
    padding: 0;
    margin: 0;
}

li {
    list-style-type: none;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
}

input,
img {
    border: 0;
}

input {
    outline: none;
    padding-left: 10px;
}

body {
    min-width: 1400px;
    background-color: #F6F6F6;
}

/* header部分 */
header {
    background-color: #2F68C8;
}

.header {
    width: 1400px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search_text {
    width: 200px;
    height: 30px;
    border-radius: 15px 15px;
}
.search_logo {
    width: 20px;
    height: 20px;
    background: url("../img/search_logo.png") no-repeat top center;
    background-size: 100% 100%;
    margin-left: -29px;
    margin-bottom: -7px;
    /* margin-top: 0; */
    /* padding-bottom: -20px; */
}

/* nav部分 */
nav {
    background-color: #fff;
}

.nav {
    width: 1200px;
    height: 50px;
    line-height: 50px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

.nav li a{
    display: block;
    padding: 0 20px;
    font-size: 18px;
    color: #0A3783;
}
.nav li a:hover {
    color:#fff;
    background-color: #0A3783;
}

/* banner部分 */
.banner {
    width: 1400px;
    margin: 30px auto;
}

.banner img {
    width: 1400px;
}

/* 文章部分 */
.content {
    background-color: #fff;
}
.content .title {
    margin-top: 20px;
}
.content .title img {
    width: 400px;
}
.content>div {
    width: 1400px;
    margin: 0 auto;
    padding-bottom: 50px;
    /* height: 800px; */
    display: flex;
    justify-content: space-between;
}

/* .content .article ul{ */
    /* width: 300px; */
    /* margin: 0 auto; */
/* } */


.content .article ul li{
    /* margin: 20px auto; */
    height: 60px;
    line-height: 60px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #B9B9B9;
    /* list-style-type: square; */
    /* color: #0C49B1; */
}
.content .square {
    display: inline-block;
    background-color: #0C49B1;
    width: 8px;
    height: 8px;
    margin: 0 15px;
}
.content .date {
    /* margin-left: auto; */
    /* text-align: right; */
    color: #ABABAB;
}

/* footer部分 */
footer {
    height: 150px;
    background-color: #2F68C8;
    line-height: 80px;
}

footer p {
    color: #fff;
    text-align: center;
}