@charset "utf-8";
:root {
    --main-bg-color: #f5f5f5;
    --color-blue: #0a347f;
    --color-blue2: #03122c;
    --color-yellow: #f8b600;
    --color-white: #fff;
}


/* CSS Document */

body,
ul,
ol,
dl,
li,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
input {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
b {
    font-size: 100%;
    font-weight: normal;
    font-family: "Microsoft YaHei";
}

img {
    border: none;
    display: block;
}

input,
button,
textarea,
select {
    *font-size: 100%;
    border: none;
}

html {
    font: 14px/24px Microsoft YaHei, SimSun, Arial;
}

body {
    background: #fff;
    color: #333;
}

ul,
li {
    list-style: none;
    padding: 0;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #0a347f;
}

div,
p,
ul,
li,
section,
aside,
ol {
    box-sizing: border-box;
}

.flex {
    display: flex;
}

header,
.header {
    background-color: #0a347f;
    z-index: 999;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.navbar {
    height: 99px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar_logo img {
    width: 220px;
}

.navbar nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.navbar nav p {
    display: flex;
    align-items: center;
    color: #f8b600;
    font-size: 30px;
    margin-bottom: 10px;
}

.navbar nav p img {
    margin-right: 5px;
}

.navbar_ul {
    width: 800px;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.navbar_ul li {
    font-size: 18px;
    display: flex;
}

.navbar_ul li a {
    color: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 30px;
    padding: 0 5px;
}

.navbar_ul li.active {
    font-weight: bold;
    border-bottom: 3px solid #f8b600;
}

.navbar_ul li.active a {
    color: #f8b600;
}

@media (max-width: 1280px) {
    .container {
        width: 950px;
    }
    .navbar_ul {
        width: 650px;
    }
}

footer {
    background-color: #0a347f;
    color: #fff;
    padding-bottom: 78px;
}

footer a {
    color: #fff;
}

.foot_box {
    width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 50px 0 30px;
    align-items: center;
}

.bot_a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    line-height: 70px;
}

.bot_a img {
    margin-right: 20px;
}

.bot_b {
    width: 100%;
    line-height: 90px;
    align-items: center;
    border-bottom: 2px #fff solid;
    display: flex;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 40px;
}

.bot_b a {
    position: relative;
    padding: 0 20px;
}

.bot_b a::after {
    position: absolute;
    top: 36px;
    right: 0;
    width: 1px;
    height: 20px;
    background-color: #fff;
    content: "";
}

.bot_b a:last-child::after {
    display: none;
}

.bot_c {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    line-height: 28px;
}

.bot_c img {
    margin-right: 30px;
}

.bot_c b {
    font-size: 22px;
}

.bot_fix {
    background-color: rgba(3, 18, 44, 0.8);
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    height: 78px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.bot_fix img {
    position: relative;
    width: 138px;
    height: 132px;
    z-index: 10;
}

.bot_fix form {
    position: relative;
    z-index: 9;
    margin-left: -25px;
    display: flex;
    height: 78px;
    align-items: center;
}

.bot_fix input {
    margin-right: 10px;
    box-sizing: border-box;
    width: 300px;
    height: 60px;
    border: 0;
    border-radius: 8px;
    padding: 0 20px;
    font-size: 18px;
}

.bot_fix button {
    box-sizing: border-box;
    width: 160px;
    height: 60px;
    border: 0;
    border-radius: 8px;
    font-size: 22px;
    background-color: #f8b600;
    color: #fff;
}

.banner_box {
    height: 430px;
    box-sizing: border-box;
    padding-top: 280px;
    background-size: auto 100%;
    background-position: center center;
    background-repeat: no-repeat;
    font-size: 50px;
}

.banner_box .container {
    color: #fff;
    letter-spacing: 0.3rem;
    text-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);
}

.banner_new {
    background-image: url(../images/banner_news.jpg);
}