/* 头部 */
.header {
    height: 144px;
    line-height: 144px;
    background: url(../images/header-bg.png) no-repeat center top;
}

.header .logo {
    width: 365px;
    font-size: 0;
}

.header .logo img {
    width: 100%;
}

.header .right {
    margin-top: 50px;
}

.header .right .search {
    height: 40px;
    line-height: 40px;
    margin-top: 1px;
    border-radius: 1px;
}

.header .right .search form {
    height: 100%;
    font-size: 0;
    background: #fff;
}

.header .right .search input,
.header .right .search button {
    height: 40px;
    line-height: 40px;
    border: none;
}

.header .right .search input {
    width: 189px;
    padding-left: 15px;
    color: #aeaeae;
}

.header .right .search button {
    width: 40px;
    padding: 0;
    cursor: pointer;
    background: #fff;
}

.header .right a {
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin-left: 16px;
    border-radius: 3px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    background-color: #076cdb !important;
}

.header .right a:hover {
    background-color: #013776 !important;
}

.header .right .menu {
    float: left;
    display: none;
    cursor: pointer;
    margin-left: 16px;
    margin-top: 5px;
}

@media screen and (max-width: 1200px) {
    .header .layout {
        padding: 0 30px;
    }
}

@media screen and (max-width: 1024px) {
    .header .layout .right .wechat {
        margin-right: 0;
    }

    .header .layout .right .search {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .header .layout {
        padding: 0 20px;
    }

    .header .layout .logo {
        width: 300px;
    }
}

@media screen and (max-width: 500px) {
    .header {
        height: 100px;
        line-height: 100px;
    }

    .header .layout {
        padding: 0 10px;
    }

    .header .layout .logo {
        width: 200px;
    }

    .header .layout .right {
        margin-top: 35px;
    }

    .header .layout .right a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin-left: 10px;
        font-size: 16px;
    }

    .header .layout .right .menu {
        width: 30px;
        margin-left: 10px;
        margin-top: 0;
    }
}

/* 导航 */
.nav {
    background-color: #013776;
}

.nav .layout ul li {
    float: left;
    position: relative;
    z-index: 20;
}

.nav .layout ul li>a {
    display: block;
    padding: 0 34.5px;
    color: #fff;
    font-size: 18px;
    line-height: 59px;
    text-align: center;
}

.nav .layout ul li:first-child a {
    padding-left: 0;
    background-color: #013776 !important;
}

.nav .layout ul li:nth-child(4) .dropdown a:last-child {
    display: inline-block;
    max-width: 141px;
    padding: 10px 5px;
    line-height: 24px;
    font-size: 12px;
    word-break: break-all;
}

.nav .layout ul li:hover {
    background-color: #044998;
}

.nav .layout ul li .dropdown {
    display: none;
    width: 100%;
    overflow-y: hidden;
    position: absolute;
    left: 0;
    top: 59px;
    background-color: rgba(13, 58, 113, 0.95);
    text-align: center;
}

.nav .layout ul li .dropdown a {
    display: block;
    width: 100%;
    font-size: 14px;
    color: #fff;
    line-height: 52px;
    padding: 0 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.nav .layout ul li .dropdown a:hover {
    color: #013776;
    background-color: #fff;
}

/* 移动端导航 */
.mnav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    display: none;
}

.mnav .contentct {
    float: left;
    width: 40%;
    height: 100%;
    background: #196bb8;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.mnav .contentct .nav_item {
    display: inline-block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-decoration: none;
}

.mnav .contentct .nav_item:hover {
    background: #003f88;
    -webkit-box-shadow: 8px 8px 10px #000;
    box-shadow: 8px 8px 10px #000;
}

.mnav .contentct .nav_item:hover .item_down {
    display: block;
}

.mnav .contentct .nav_item a {
    color: #fff;
    text-decoration: none;
}

.mnav .contentct .nav_item .item_down {
    display: none;
    padding-bottom: 10px;
    font-size: 14px;
}

.mnav .contentct .nav_item .item_down a {
    display: block;
    padding-left: 40px;
}

.mnav .contentct .nav_item .item_down a:hover {
    background: #003f88;
    -webkit-box-shadow: 8px 8px 10px #000;
    box-shadow: 8px 8px 10px #000;
}

.mnav .contentct .nav_item .item_down:after {
    content: "";
    height: 0;
    clear: both;
    overflow: hidden;
    display: block;
    visibility: hidden;
}

.mnav .contentbl {
    float: left;
    width: 60%;
    height: 100%;
    background: #333;
    opacity: 0.2;
    filter: alpha(opacity=20);
}

@media screen and (max-width: 1220px) {
    .nav .layout {
        max-width: 1024px;
    }

    .nav .layout ul li>a {
        padding: 0 21px;
        font-size: 18px;
    }

    .nav .layout ul li:first-child a {
        padding: 0 21px;
    }
}

@media screen and (max-width: 1023px) {
    .header .layout .right .menu {
        display: block;
    }

    .nav {
        height: 2px;
    }

    .nav .layout ul {
        display: none;
    }
}

@media screen and (max-width: 500px) {

    .mnav .contentct,
    .mnav .contentbl {
        width: 50%;
    }
}

/* 页脚 */
.footer {
    width: 100%;
    background: #003f88;
    color: #fff;
    font-size: 14px;
    /* 站点访问次数 */
}

.footer .footer_container {
    width: 100%;
    border-bottom: 1px solid #3c73b2;
}

.footer .footer_container .footer_top {
    max-width: 1200px;
    height: 193px;
    margin: 0 auto;
}

.footer .footer_container .footer_top .line {
    float: left;
}

.footer .footer_container .footer_top .logo {
    float: left;
    width: 423px;
    height: 193px;
    position: relative;
}

.footer .footer_container .footer_top .logo img {
    width: 365px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.footer .footer_container .footer_top .contact {
    float: left;
    width: 453px;
    height: 193px;
    line-height: 28px;
    background: url(../images/logo-bg.png) no-repeat;
    background-position: center top -16px;
}

.footer .footer_container .footer_top .contact .info {
    margin-left: 70px;
    padding-left: 40px;
    background: no-repeat left center;
}

.footer .footer_container .footer_top .contact .info:first-child {
    margin-top: 36px;
}

.footer .footer_container .footer_top .links {
    float: left;
    width: 322px;
    height: 193px;
    position: relative;
}

.footer .footer_container .footer_top .links .links_btn {
    float: right;
    width: 260px;
    height: 35px;
    line-height: 35px;
    margin-top: 20px;
    background-color: #fff;
    position: relative;
    cursor: pointer;
    border-radius: 1px;
    /* &:first-child {
                          margin-top: 29px;
                      }*/
}

.footer .footer_container .footer_top .links .links_btn .left {
    color: #000;
    padding-left: 10px;
}

.footer .footer_container .footer_top .links .links_btn img {
    margin-top: 16px;
    margin-right: 10px;
}

.footer .footer_container .footer_top .links .links_btn .links_item {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    max-height: 204px;
    background: #fff;
    border-top: 1px solid #eee;
    overflow: auto;
    display: none;
    z-index: 20;
}

.footer .footer_container .footer_top .links .links_btn .links_item a {
    display: block;
    height: 35px;
    line-height: 35px;
    text-align: center;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid #eee;
    padding: 0 10px;
    box-sizing: border-box;
}

.footer .copyright {
    line-height: 25px;
    padding: 11.5px 0;
    text-align: center;
}

.footer .copyright a {
    color: #88abda;
}

.footer .copyright a:hover {
    text-decoration: none;
}

.footer .copyright .space {
    padding: 0 10px;
}

.footer .siteCounter8 {
    display: inline;
}

.footer .siteCounter8 span {
    margin: 0;
    border-radius: none;
    color: #FFFFFF;
    background-image: none;
    padding: 0;
}

@media screen and (max-width: 1220px) {
    .footer .footer_container .footer_top {
        height: 160px;
    }

    .footer .footer_container .footer_top .logo,
    .footer .footer_container .footer_top .contact,
    .footer .footer_container .footer_top .links,
    .footer .footer_container .footer_top .line {
        height: 160px;
    }

    .footer .footer_container .footer_top .logo {
        width: 33%;
    }

    .footer .footer_container .footer_top .logo img {
        width: 90%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .footer .footer_container .footer_top .contact {
        width: 33%;
    }

    .footer .footer_container .footer_top .contact .info {
        margin-left: 50px;
    }

    .footer .footer_container .footer_top .contact .info:first-child {
        margin-top: 25px;
    }

    .footer .footer_container .footer_top .links {
        width: 31%;
    }

    .footer .footer_container .footer_top .links .links_btn {
        float: none;
        margin: 0 auto;
        margin-top: 15px;
    }
}

@media screen and (max-width: 1024px) {
    .footer .footer_container .footer_top {
        height: auto;
    }

    .footer .footer_container .footer_top .logo,
    .footer .footer_container .footer_top .contact,
    .footer .footer_container .footer_top .links {
        float: none;
        width: 375px;
        margin: 0 auto;
    }

    .footer .footer_container .footer_top .line {
        display: none;
    }

    .footer .copyright {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 768px) {

    .footer .footer_container .footer_top .logo,
    .footer .footer_container .footer_top .contact {
        height: 130px;
    }

    .footer .footer_container .footer_top .contact {
        background-size: contain;
    }

    .footer .footer_container .footer_top .contact .info:first-child {
        margin-top: 10px;
    }

    .footer .copyright i {
        display: block;
    }
}

@media screen and (max-width: 500px) {

    .footer .footer_container .footer_top .logo,
    .footer .footer_container .footer_top .contact {
        height: 120px;
    }

    .footer .footer_container .footer_top .contact .info {
        margin-left: 40px;
    }

    .footer .footer_container .footer_top .contact .info:first-child {
        margin-top: 5px;
    }
}