@charset "utf-8";
/* CSS Document */

html,
body,
ul,
li,
ol,
dl,
dd,
dt,
p,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
legend,
img {
    margin: 0;
    padding: 0;
}

fieldset,
img {
    border: none;
}

address,
caption,
cite,
code,
dfn,
th,
var {
    font-style: normal;
    font-weight: normal;
}

ul,
ol {
    list-style: none;
}

input {
    padding-top: 0;
    padding-bottom: 0;
    font-family: -apple-system, BlinkMacSystemFont, SF UI Text, Helvetica Neue, PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Arial, sans-serif;
    background: none;
    border: none;
}

input::-moz-focus-inner {
    border: none;
    padding: 0;
}

select,
input {
    vertical-align: middle;
}

select,
input,
textarea {
    font-size: 12px;
    margin: 0;
}

textarea {
    outline-style: none;
    -webkit-appearance: none;
    appearance: none;
}

textarea {
    resize: none;
}

table {
    border-collapse: collapse;
}

body {
    color: #333;
    font-size: 12px;
    font-family: -apple-system, BlinkMacSystemFont, SF UI Text, Helvetica Neue, PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Arial, sans-serif;;
    background: #fff;
}

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

a:hover {
    color: #2253a4;
    text-decoration: none;
}

.clear {
    clear: both;
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-x-center {
    justify-content: center;
}

.flex-x-between {
    justify-content: space-between;
}

.flex-x-around {
    justify-content: space-around;
}

.flex-x-end {
    justify-content: flex-end;
}

.flex-y-center {
    align-items: center;
}

.flex-y-end {
    align-items: flex-end;
}

.flex-wrap {
    flex-wrap: wrap;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 999;
    border-bottom: solid 1px #e5e5e5;
}

#nav-toggle {
    position: absolute;
    top: -60px;
}

.icon-burger {
    display: none;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.icon-burger .line {
    width: 30px;
    height: 5px;
    background-color: #2253a4;
    margin: 5px;
    border-radius: 3px;
    transition: all 0.5s ease-in-out;
}

.banner {
    width: 100%;
}

.banner img {
    display: block;
    width: 100%;
}

.paginate {
    margin-top: 25px;
}

.paginate a {
    display: block;
    width: 100%;
    height: 100%;
}

.paginate a:hover,
.paginate a.cur {
    color: #fff;
    background-color: #01509f;
}

.paginate .pagination{
    display: flex;
}

.paginate .pagination li{
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: solid 1px #eee;
    font-size: 14px;
    text-align: center;
    margin: 0 2px;
}

.paginate .pagination li.disabled span{
    color: #999;
}

.paginate .pagination li.active{
    background-color: #01509f;
    color: #fff;
}

.paginate > span{
    margin-left: 5px;
    font-size: 14px;
    color: #666;
}

.breadcrumb{
    font-size: 14px;
}

.breadcrumb span{
    color: #2253a4;
}

.footer dl dd a{
    color: #fff;
}
.footer dl dd a:hover{
    text-decoration: underline;
}

.footer {
    width: 100%;
    background-color: #01509f;
}

.footer dl{
    margin-top: 40px;
}

.footer .ewm{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer .ewm dt{
    margin-top: 10px;
    width: 140px;
    text-align: center;
}

.footer p a{
    color: #fff;
}
.footer p a:hover{
    text-decoration: underline;
}

@media screen and (min-width: 1400px) {

    .header,
    .custom {
        height: 100px;
    }

    .container {
        width: 1200px;
        margin: 0 auto;
    }

    .nav {
        flex: 1;
    }

    .nav a {
        font-size: 18px;
        margin-left: 90px;
        display: block;
        height: 100px;
        line-height: 100px;
    }

    .nav a.cur {
        color: #2253a4;
        border-bottom: solid 2px #2253a4;
    }

    .footer .container {
        height: 290px;
    }

    .footer p {
        height: 60px;
        line-height: 60px;
        text-align: center;
        font-size: 12px;
        color: #fff;
        border-top: solid 1px #fff;
    }

    .footer dl {
        width: 220px;
    }

    .footer dl dt {
        font-size: 18px;
        color: #fff;
        margin-bottom: 30px;
    }

    .footer dl dd {
        font-size: 14px;
        color: #fff;
        margin-top: 5px;
        line-height: 1.4;
    }
}

@media screen and (min-width: 1200px) and (max-width:1399px) {

    .header,
    .custom {
        height: 80px;
    }

    .container {
        width: 1000px;
        margin: 0 auto;
    }

    .nav {
        flex: 1;
    }

    .nav a {
        font-size: 16px;
        margin-left: 70px;
        display: block;
        height: 80px;
        line-height: 80px;
    }

    .nav a.cur {
        color: #2253a4;
        border-bottom: solid 2px #2253a4;
    }

    .footer .container {
        height: 290px;
    }

    .footer p {
        height: 60px;
        line-height: 60px;
        text-align: center;
        font-size: 12px;
        color: #fff;
        border-top: solid 1px #fff;
    }

    .footer dl {
        width: 180px;
    }

    .footer dl dt {
        font-size: 16px;
        color: #fff;
        margin-bottom: 20px;
    }

    .footer dl dd {
        font-size: 12px;
        color: #fff;
        margin-top: 5px;
    }
}

@media screen and (min-width: 992px) and (max-width:1199px) {

    .header,
    .custom {
        height: 80px;
    }

    .container {
        width: 960px;
        margin: 0 auto;
    }

    .nav {
        flex: 1;
    }

    .nav a {
        font-size: 16px;
        margin-left: 50px;
        display: block;
        height: 80px;
        line-height: 80px;
    }

    .nav a.cur {
        color: #2253a4;
        border-bottom: solid 2px #2253a4;
    }

    .footer .container {
        height: 290px;
    }

    .footer p {
        height: 60px;
        line-height: 60px;
        text-align: center;
        font-size: 12px;
        color: #fff;
        border-top: solid 1px #fff;
    }

    .footer dl {
        width: 150px;
    }

    .footer dl dt {
        font-size: 16px;
        color: #fff;
        margin-bottom: 30px;
    }

    .footer dl dd {
        font-size: 12px;
        color: #fff;
        margin-top: 5px;
    }
}

@media screen and (min-width: 768px) and (max-width:991px) {

    .header,
    .custom {
        height: 60px;
    }

    .container {
        width: 720px;
        margin: 0 auto;
    }

    .nav {
        flex: 1;
    }

    .nav a {
        font-size: 16px;
        margin-left: 35px;
        display: block;
        height: 60px;
        line-height: 60px;
    }

    .nav a.cur {
        color: #2253a4;
        border-bottom: solid 2px #2253a4;
    }

    .footer .container {
        height: 290px;
    }

    .footer .logo {
        width: 160px;
    }

    .footer .ewm {
        width: 100px;
    }

    .footer p {
        height: 60px;
        line-height: 60px;
        text-align: center;
        font-size: 12px;
        color: #fff;
        border-top: solid 1px #fff;
    }

    .footer dl {
        width: 120px;
    }

    .footer dl dt {
        font-size: 16px;
        color: #fff;
        margin-bottom: 30px;
    }

    .footer dl dd {
        font-size: 12px;
        color: #fff;
        margin-top: 5px;
    }
}

@media screen and (max-width: 767px) {

    .header,
    .custom {
        height: 60px;
    }

    .header img {
        margin-left: 20px;
        width: 100px;
        height: 26px;;
    }

    .nav {
        float: none;
        position: fixed;
        z-index: 9;
        left: 0;
        right: 0;
        top: 60px;
        bottom: 100%;
        width: auto;
        height: auto;
        flex-direction: column;
        justify-content: space-evenly;
        background-color: rgba(0, 0, 0, 0.8);
        overflow: hidden;
        transition: all 0.5s ease-in-out;
    }

    .nav a {
        font-size: 20px;
        text-align: center;
        color: #fff;
    }

    .header :checked~.nav {
        bottom: 0;
    }

    .icon-burger {
        display: block;
    }

    .header :checked~.icon-burger .line:nth-child(1) {
        transform: translateY(10px) rotate(225deg);
    }

    .header :checked~.icon-burger .line:nth-child(3) {
        transform: translateY(-10px) rotate(-225deg);
    }

    .header :checked~.icon-burger .line:nth-child(2) {
        opacity: 0;
    }

    .footer .container {
        height: 100px;
        display: flex;
        justify-content: center;
    }

    .footer p {
        height: 60px;
        line-height: 60px;
        text-align: center;
        font-size: 12px;
        color: #fff;
        border-top: solid 1px #fff;
    }

    .footer dl {
        width: 180px;
        display: none;
    }

    .footer dl dt {
        font-size: 16px;
        color: #fff;
        margin-bottom: 20px;
    }

    .footer dl dd {
        font-size: 12px;
        color: #fff;
        margin-top: 5px;
    }
    
    h2{
        font-size: 24px !important;
    }
    
    h3{
        font-size: 16px !important;
        margin-top: 10px !important;
    }
}