@import url("../lib/bootstrap4.0/bootstrap.min.css");
@import url("../lib/line-awesome/css/line-awesome.min.css");
@import url("../lib/font-awesome-4.7.0/css/font-awesome.min.css");

body {
    background-color: #fff;
    color: #555;
}

ul,
li,
ol,
dl,
dd,
dt {
    list-style: none;
    margin: 0;
    padding: 0;
}

.la,
.fa,
.iconfont {
    width: 1em;
    height: 1em;
    line-height: 1em;
    display: inline-block;
}

a:link,
a:visited {
    color: #555;
    text-decoration: none;
}

a:hover,
a:active {
    color: #e83e8c;
    text-decoration: none;
}

a.blue:link,
a.blue:visited {
    color: #01491a;
}

a.blue:hover,
a.blue:active {
    color: #e83e8c;
    text-decoration: none;
}

a.red:link,
a.red:visited {
    color: #e83e8c;
}

a.red:hover,
a.red:active {
    color: #e83e8c;
    text-decoration: none;
}

a.green:link,
a.green:visited {
    color: #28a745;
}

a.green:hover,
a.green:active {
    color: #28a745;
    text-decoration: none;
}

a.blod {
    font-weight: 700;
}

:focus {
    outline: none !important;
    box-shadow: none !important;
}

.flex-auto {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
    width: 0;
}

/* 缩略图等比率居中 */
.thumb-center {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    background-color: #fff;
}

.thumb-center img {
    max-width: 100%;
    max-height: 100%;
}

/* 缩略图等比率居中 75% */
.thumb-b-75-center {
    padding-bottom: 75%;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.thumb-b-75-center img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/* 缩略图等比率居中 75% */
.thumb-b-100-center {
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.thumb-b-100-center img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/* 缩略图 */
.thumb img {
    width: 100%;
    height: 100%;
}

/* 图片放大效果 */
.img-scale-big {
    overflow: hidden;
}

.img-scale-big img {
    transition: all .35s ease-in-out;
}

.img-scale-big:hover img {
    transform: scale(1.2);
}

/* 边框 */
.border {
    border-color: #e8e8e8 !important;
}

/* 单行省略号 */
.text-overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-tabs {
    border-bottom: 1px solid #e8e8e8;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border-color: #e8e8e8 #e8e8e8 #fff
}

/* 文章标题前面的点 */
.li_dian {
    position: relative;
    padding-left: 1em;
}

.li_dian::before {
    position: absolute;
    top: 50%;
    left: 5px;
    width: 3px;
    height: 3px;
    content: '';
    background-color: #999;
    margin-top: -1px;
}

.li_dian:hover::before {
    background-color: #e83e8c;
}

/* 文章标题前面的三角形 */
.li_sanjiao {
    position: relative;
    padding-left: 1em;
}

.li_sanjiao::before {
    position: absolute;
    top: 50%;
    left: 5px;
    width: 0;
    height: 0;
    content: '';
    border: 4px solid transparent;
    border-left-color: #999;
    margin-top: -4px;
}

/* 求购图标 */
.li_qiugou {
    position: relative;
    padding-left: 30px;
}

.li_qiugou::before {
    position: absolute;
    top: .5em;
    left: .3em;
    width: 17px;
    height: 17px;
    background-color: #FF9060;
    content: '';
    transform: rotate(45deg);
    color: #fff;
    font-size: 12px;
}

.li_qiugou::after {
    position: absolute;
    top: .5em;
    left: .3em;
    width: 17px;
    height: 17px;
    line-height: 17px;
    text-align: center;
    content: '求';
    color: #fff;
    font-size: 12px;
}

/* 供应图标 */
.li_gongying {
    position: relative;
    padding-left: 30px;
}

.li_gongying::before {
    position: absolute;
    top: .5em;
    left: .3em;
    width: 17px;
    height: 17px;
    background-color: #24284E;
    content: '';
    transform: rotate(45deg);
    color: #fff;
    font-size: 12px;
}

.li_gongying::after {
    position: absolute;
    top: .5em;
    left: .3em;
    width: 17px;
    height: 17px;
    line-height: 17px;
    text-align: center;
    content: '供';
    color: #fff;
    font-size: 12px;
}

/* 分页 */
.pagination3 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    list-style: none;
    border-radius: .25rem;
    width: 100%;
}

.pagination3>li {
    display: inline-block
}

.pagination3>li>a,
.pagination3>li>span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem 1rem;
    margin-left: -1px;
    line-height: 1.5;
    color: #01491a;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #e8e8e8
}

.pagination3>li:first-child>a,
.pagination3>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.pagination3>li:last-child>a,
.pagination3>li:last-child>span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.pagination3>li>a:focus,
.pagination3>li>a:hover,
.pagination3>li>span:focus,
.pagination3>li>span:hover {
    z-index: 2;
    color: #01491a;
    background-color: #F7F6FA;
    border-color: #e8e8e8
}

.pagination3>.active>a,
.pagination3>.active>a:focus,
.pagination3>.active>a:hover,
.pagination3>.active>span,
.pagination3>.active>span:focus,
.pagination3>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #014182;
    border-color: #01491a;
}

.pagination3>.disabled>a,
.pagination3>.disabled>a:focus,
.pagination3>.disabled>a:hover,
.pagination3>.disabled>span,
.pagination3>.disabled>span:focus,
.pagination3>.disabled>span:hover {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #e8e8e8
}

.pagination3 li span,
.pagination3 li a {
    font-size: 14px;
}

.pagination3>li.text>span {
    color: #333;
}

.pagination3 li input {
    width: 40px;
    height: 20px;
    line-height: 18px;
    text-align: center;
    outline: none;
    color: #333;
    border: 1px solid #e8e8e8;
    background-color: #fff;
    margin-right: 1em;
}

.pagination3 li i {
    font-style: normal;
    cursor: pointer;
    color: #01491a;
}

.view {
    margin: 0 auto;
}


.view-footer {
    background: #016523;
    color: #fff;
    line-height: 2em;
    overflow: hidden;
    padding: 2em 0;
}

.view-footer .ewm {
    float: left;
    width: 230px;
}

.view-footer .contact {
    float: left;
    width: 570px;
    border-left: 1px dotted #7f7f7f;
    border-right: 1px dotted #7f7f7f;
}

.view-footer .contact p {
    padding: .5em 0 0 2em;
}

.view-footer .b_logo {
    float: right;
    width: 400px;
}

.view-end {
    background: #115599;
    height: 48px;
    line-height: 48px;
    text-align: center;
}

.view-end p {
    color: white;
    margin-bottom: 0;
}

.view-nav ul {
    border: 1px solid #e8e8e8;
    background-color: #f5f5f5;
    font-size: 14px;
    color: #999;
    padding: .75rem 1.25rem;
}

.view-nav ul li {
    padding-right: 1em;
    margin-right: 1em;
    position: relative;
}

.view-nav ul li::after {
    position: absolute;
    top: 15%;
    right: 0;
    bottom: 15%;
    width: 1px;
    height: auto;
    content: '';
    transform: rotate(30deg);
    background-color: #d5d5d5;
}

.view-nav ul> :last-child {
    padding-right: 0;
    margin-right: 0;
}

.view-nav ul> :last-child::after {
    display: none;
}

.view-nav ul li a {
    color: #01491a;
}

.view-nav ul li a:hover,
.view-nav ul li a:active {
    color: #e83e8c;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.top {
    background-color: #F3F3F3;
    border-bottom: 1px solid #e8e8e8;
}

.top-left>li,
.top-right>li {
    display: inline-table;
    padding: .5em 0;
    margin-right: .5em;
    font-size: 14px;
    color: #999;
}

.top-left>li:last-child,
.top-right>li:last-child {
    margin-right: 0;
}

.top em,
.top i {
    font-style: normal;
}

.top .datetime {
    color: #01491a;
}

.header {
    padding: 1em 0;
}

.header .phone h4 {
    color: #b20000;
    margin: 0;
}

.header .phone h5 {
    font-size: 16px;
    margin: 0;
    color: #999;
}

.header .countr a {
    color: #999;
    padding-right: 1em;
}

.header .countr img {
    width: 40px;
    height: 30px;
}

/* 头部导航 */
.menu {
    background: #115599;
    height: 48px;
}

nav {
    text-align: center;
}

.menu .main {
    display: flex;
    justify-content: center;
    width: 1200px;
}

.menu .main li {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
}

.menu .main a {
    color: #ffe;
    display: block;
    padding: 12px 0;
}

.menu .main a:hover {
    background-color: #ff9900;
}

.menu .main .drop li {
    opacity: 0;
    transform-origin: top center;
}

.menu .main .drop li a {
    background-color: rgba(23, 23, 50, 0.7);
    padding: 10px 0;
}

/*------------- menu6 animation -------------------*/
.menu .main ul.drop.menu_child {
    position: relative;
    z-index: 99;
}

.menu .main li:hover .menu_child li:first-of-type {
    animation: menu_child 0.3s ease-in-out forwards;
    animation-delay: 0.2s;
}

.menu .main li:hover .menu_child li:nth-of-type(2) {
    animation: menu_child 0.3s ease-in-out forwards;
    animation-delay: 0.4s;
}

.menu .main li:hover .menu_child li:nth-of-type(3) {
    animation: menu_child 0.3s ease-in-out forwards;
    animation-delay: 0.6s;
}

.menu .main li:hover .menu_child li:last-of-type {
    animation: menu_child 0.3s ease-in-out forwards;
    animation-delay: 0.8s;
}

@keyframes menu_child {
    0% {
        opacity: 0;
        transform: scale(2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.white-mode {
    text-decoration: none;
    padding: 7px 10px;
    background-color: #122;
    border-radius: 3px;
    color: #fff;
    transition: 0.35s ease-in-out;
    position: absolute;
    left: 15px;
    bottom: 15px;
    font-family: sans-serif;
}

.white-mode:hover {
    background-color: #fff;
    color: #122;
}

/* 页尾样式 */
.layer-footer {
    width: 1200px;
    margin: 0 auto;
    font-size: 14px;
}

.layer-footer p {
    margin: 0;
}

/* 方框样式 */

.card-blue {
    border-color: #115599;
}

.card-blue .card-header {
    background-color: #115599;
    color: #fff;
}

.card-blue .card-header-more {
    font-size: 12px;
    color: #fff;
}

.card-blue .card-header-more i {
    width: 1em;
    height: 1em;
}

.card-blue .card-header-more:hover,
.card-blue .card-header-more:hover i {
    color: #DCEDFF;
}

.card-red {
    border-color: #dc3545;
}

.card-red .card-header {
    background-color: #dc3545;
    color: #fff;
}

.card-red .card-header-more {
    font-size: 12px;
    color: #fff;
}

.card-red .card-header-more i {
    width: 1em;
    height: 1em;
}

.card-red .card-header-more:hover,
.card-red .card-header-more:hover i {
    color: #FAE3E5;
}

.card-green {
    border-color: #03553a;
}

.card-gray {
    border: 1px solid rgba(0, 0, 0, .125);
}

.card-green .card-header {
    background-color: #03553a;
    color: #fff;
}

.card-green .card-header-more {
    font-size: 12px;
    color: #fff;
}

.card-green .card-header-more i {
    width: 1em;
    height: 1em;
}

.card-green .card-header-more:hover,
.card-green .card-header-more:hover i {
    color: #FAE3E5;
}

.card-info {
    border-color: #17a2b8;
}

.card-info .card-header {
    background-color: #17a2b8;
    color: #fff;
}

.card-info .card-header-more {
    font-size: 12px;
    color: #fff;
}

.card-info .card-header-more i {
    width: 1em;
    height: 1em;
}

.card-info .card-header-more:hover,
.card-info .card-header-more:hover i {
    color: #DFF2F5;
}

.card-pink {
    border-color: #e83e8c;
}

.card-pink .card-header {
    background-color: #e83e8c;
    color: #fff;
}

.card-pink .card-header-more {
    font-size: 12px;
    color: #fff;
}

.card-pink .card-header-more i {
    width: 1em;
    height: 1em;
}

.card-pink .card-header-more:hover,
.card-pink .card-header-more:hover i {
    color: #FCE4EF;
}

/* 幻灯片效果 */
.swiper {
    max-height: 600px;
    background-color: #efefef;
    position: relative;
    z-index: 1;
}

.swiper .swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative
}

.swiper .swiper-wrapper,
.swiper .swiper-container .swiper-wrapper .swiper-slide {
    width: inherit;
    height: inherit;
    text-align: center;
    background-color: #efefef;
}

.swiper .swiper-wrapper {
    display: flex;
}

.swiper .swiper-container .swiper-slide>img {
    max-width: 100%;
    max-height: 100%
}

.swiper .swiper-pagination-bullet {
    background-color: #fff;
    width: 12px;
    height: 12px;
    opacity: .5;
}

.swiper .swiper-pagination-bullet-active {
    background-color: #ff6600;
    opacity: 1;
}

.swiper .ban_t {
    position: absolute;
    top: 100px;
    left: 20%;
}

/* 头部幻灯片效果 */
.header-swiper .swiper-wrapper .swiper-slide {
    transform: translate3d(0px, 0px, 0px);
    opacity: 0;
}

/* 一行2个广告位 */
.baner-2 .row {
    margin-left: -0.5em;
    margin-right: -0.5em;
}

.baner-2 .row [class*=col] {
    padding-left: 0.5em;
    padding-right: 0.5em;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
    width: 0;
}

.baner-2 .row [class*=col]:nth-child(n+3) {
    margin-top: 1em;
}

.baner-2 .row [class*=col] a {
    display: block;
}

.baner-2 .row [class*=col] img {
    width: 100%;
    height: auto;
    border: 1px solid #e8e8e8;
}

/* 一行5个广告位 */
.baner-5 .row {
    margin-left: -0.5em;
    margin-right: -0.5em;
}

.baner-5 .row [class*=col] {
    padding-left: 0.5em;
    padding-right: 0.5em;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
    width: 0;
}

.baner-5 .row [class*=col]:nth-child(n+6) {
    margin-top: 1em;
}

.baner-5 .row [class*=col] a {
    display: block;
}

.baner-5 .row [class*=col] img {
    width: 100%;
    height: auto;
    border: 1px solid #e8e8e8;
}

/* banner浮动 */
.header-swiper .slick-slide .content {
    display: none;
}

.header-swiper .slick-active .content {
    display: block;
}

.header-swiper .content {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 100%;
}

.header-swiper .content div.left {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
    padding-right: 6%;
}

.header-swiper .content div.left h2 {
    font-size: 50px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    line-height: 50px;
}

.header-swiper .content div.left h2 small {
    font-size: 30px;
    color: white;
    display: block;
    font-weight: normal;
}

.header-swiper .content div.left h2 em {
    color: #fc5b4d;
}

.header-swiper .content div.left p {
    font-size: 14px;
    color: white;
    line-height: 25px;
    padding-top: 15px;
    padding-bottom: 50px;
}

.header-swiper .content div.left a {
    font-size: 16px;
    color: white;
    padding: 15px 30px;
    display: inline-block;
    margin-right: 15px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.header-swiper .content div.left a i {
    display: inline-block;
    float: right;
}

.header-swiper .content div.left a.more1,
.header-swiper .content div.left a:hover {
    border-color: #fc5b4d;
    color: #fc5b4d;
}

.header-swiper .content div.right {
    width: 50%;
    padding-left: 20px;
    margin-left: -5px;
    display: inline-block;
    vertical-align: middle;
}

/* 搜索 */
.header .new_search .input-group {
    position: relative;
}

.header .new_search .form-control {
    width: 220px;
    outline: 0;
    border: 2px solid transparent;
    border-color: #036b1e;
    border-right: 0;
    padding-left: 2.5em;
    font-size: 14px;
}

.header .new_search .input-group-append {
    margin-left: 0;
}

.header .new_search .la {
    position: absolute;
    top: 50%;
    left: .2em;
    font-size: 1.8em;
    margin-top: -.4em;
    color: #036b1e;
    z-index: 3;
    font-weight: 500;
    transform: rotateY(180deg);
}

.header .btn {
    border: 3px solid transparent;
    padding-left: 1.5em;
    padding-right: 1.5em;
    color: #fff !important;
    border-color: #036b1e;
    background-color: #036b1e;
}

.hot_search ul {
    width: 100%;
}

.hot_search ul li {
    text-align: center;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
}

.hot_search a {
    color: #ff7e00;
}

/* banner */
.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

#banner .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    color: transparent;
    border: none;
    z-index: 1;
    outline: none;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

#banner .slick-arrow:hover {
    background-color: #fc5b4d;
}

#banner .slick-prev {
    background: url("../../img/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
    left: 15px;
}

#banner .slick-next {
    background: url("../../img/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
    right: 15px;
}

#banner ul.slick-dots {
    position: absolute;
    bottom: 5%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

#banner ul.slick-dots li {
    width: 15px;
    height: 15px;
    display: inline-block;
    margin: 0 5px;
    border-radius: 100%;
    opacity: 0.6;
    background-color: #fff;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    cursor: pointer;
}

#banner ul.slick-dots li button {
    display: none;
}

#banner ul.slick-dots li.slick-active {
    background-color: #fc5b4d;
}

#banner .slick-slide .content {
    display: none;
}

#banner .slick-active .content {
    display: block;
}

#banner li {
    position: relative;
}

#banner li .content {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 100%;
}

#banner li .content div.left {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
    padding-right: 6%;
}

#banner li .content div.left h2 {
    font-size: 50px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    line-height: 50px;
}

#banner li .content div.left h2 small {
    font-size: 30px;
    color: white;
    display: block;
    font-weight: normal;
}

#banner li .content div.left h2 em {
    color: #fc5b4d;
}

#banner li .content div.left p {
    font-size: 16px;
    color: #010101;
    line-height: 25px;
    padding-top: 15px;
    padding-bottom: 50px;
}

#banner li .content div.left a {
    font-size: 16px;
    color: white;
    padding: 15px 30px;
    display: inline-block;
    margin-right: 15px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

#banner li .content div.left a i {
    display: inline-block;
    float: right;
}

#banner li .content div.left a.more1,
#banner li .content div.left a:hover {
    border-color: #004ba0;
    color: #004ba0;
}

#banner li .content div.right {
    width: 50%;
    padding-left: 20px;
    margin-left: -5px;
    display: inline-block;
    vertical-align: middle;
}

/* 底 */
.footer {
    background: #014182;
    color: #fff;
    line-height: 1.8;
    font-size: 14px;
    margin-top: 20px;
    padding-bottom: 28px;
    overflow: hidden;
}
.s {
    background: url(../../img/tip.png) no-repeat;
}
.footer a {
    color: #badcee;
}

.bt_subnav {
    height: 74px;
    border-bottom: 1px solid #000;
    margin-top: 10px;
}

.bt_subnav .tel {
    color: #fff;
    margin-top: 12px;
    background-position: left -195px;
    float: right;
}
.tel {
    margin-left: 65px;
    padding-left: 60px;
    margin-top: 28px;
    width: 230px;
    height: 56px;
    background-position: -353px top;
}


.subnav {
    width: 860px;
    float: left;
}

.subnav a {
    padding: 0 10px;
    color: #fff;
    height: 74px;
    line-height: 74px;
    font-size: 16px;
}

.subnav a.index {
    padding-left: 0;
}

.subnav a:hover {
    font-weight: bold;
}

.footer2 {
    border-top: 1px solid #0055aa;
}

.footer .zhong {
    color: #fff;
    padding-top: 34px;
    float: left;
}

.ilink {
    margin-top: 80px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.ilink .zi {
    line-height: 30px;
}

.ilink span {
    display: inline-block;
    line-height: 1.6;
    float: left;
    margin-right: 48px;
}

.ilink span em {
    font-style: normal;
    text-transform: uppercase;
    font-size: 15px;
}

.ilink span b {
    display: block;
    font-size: 26px;
}

.ilink a {
    display: inline-block;
    font-size: 16px;
    margin: 20px 0 20px 20px;
}

.logo_b {
    background-position: right bottom;
    max-width: 300px;
    height: 74px;
}

.logo_b img {
    max-width: 300px;
    display: block;
}
.copyright {
    float: left;
    line-height: 26px;
    width: 680px;
    margin-top: 10px;
}
.Telephone {
    font-size: 24px;
    line-height: 24px;
}
.codex {
    width: 177px;
    margin-top: 26px;
    float: right;
}


#footer .f-center {
    padding: 40px 0px 35px;
    border-bottom: solid 1px #545759;
    position: relative;
	background:#115599;
  }
  #footer .f-center .container{
    background: url(../../img/map.png) center right no-repeat;
  }
  #footer .f-center .link-box {
    display: inline-block;
    width: 15%;
    vertical-align: top;
    padding-top: 15px;
    margin-top: 15px;
  }
  #footer .f-center .ewm-box{
    width: 10%;
  }
  
  #footer .f-center .link-box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
  }
  #footer .f-center .link-box .bor {
    display: inline-block;
    width: 35px;
    border-top: solid 2px #1980e8;
    margin-bottom: 15px;
  }
  #footer .f-center .link-box a {
    display: block;
    color: #aab8db;
    margin-bottom: 10px;
  }
  #footer .f-center .link-box a:hover {
    color: #fff;
  }
  #footer .f-center .link-box h2 {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
  }
  #footer .f-center .con-box {
    width: 25%;
    padding-right: 30px;
    padding-top: 0px;
  }
  #footer .f-center .con-box .logo {
    margin-bottom: 25px;
  }
  #footer .f-center .con-box .text a {
    padding-left: 27px;
  }
  #footer .f-center .con-box .text a:nth-child(1) {
    background: url("../../img/foo1.png") no-repeat left;
  }
  #footer .f-center .con-box .text a:nth-child(2) {
    background: url("../../img/foo2.png") no-repeat left;
  }
  #footer .f-center .con-box .text a:nth-child(3) {
    background: url("../../img/foo3.png") no-repeat left;
  }
  #footer .f-center .con-box .text a:nth-child(4) {
    background: url("../../img/foo3.png") no-repeat left;
  }
  #footer .f-center .con-box .text a:nth-child(5) {
    background: url("../../img/foo5.png") no-repeat left;
  }
  #footer .f-center .daoh-box {
    border-left: solid 1px #1980e8;
    padding-left: 35px;
  }
  #footer .f-center .hover-top {
    cursor: pointer;
    position: absolute;
    right: 65px;
    top: 160px;
  }
  #footer .f-bottom {
    background-color: #292d30;
  }
  #footer .f-bottom a {
    line-height: 50px;
    color: #949698;
    display: inline-block;
    margin: 0px 10px;
  }
  #footer .f-bottom a:hover {
    color: #fff;
  }