@charset "utf-8";
/* body {
    height: 9909px;
} */

.color {
    color: #214d98 !important;
}

.bg_color {
    background: #214d98 !important;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul:after,
.ul::after,
ul li::after {
    content: '';
    display: block;
    clear: both;
}

a {
    color: #333;
}

a:hover {
    text-decoration: none;
}

p {
    margin-bottom: 0;
}

/* 浮动 */

.fl {
    float: left;
}

.fr {
    float: right;
}

/* 颜色 */

.color_666 {
    color: #666 !important;
}

.color_999 {
    color: #999 !important;
}

.color_eee {
    color: #eee !important;
}

.color_ddd {
    color: #ddd !important;
}

.color_bbb {
    color: #bbb !important;
}

/* 动画时间 */

.ts-03 {
    transition: all .3s ease;
}

.ts-05 {
    transition: all .5s ease;
}

.ts-1 {
    transition: all 1s ease;
}

/* 文本溢出隐藏 */

.text_p {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.text_2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.text_3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.text_4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

/* 字体  */

.f-impact {
    font-family: Impact;
}

.f-roboto {
    font-family: 'Roboto Condensed';
}

.f-source {
    font-family: 'Source Han Sans CN';
}

/* 字体 大小 */

.f12 {
    font-size: 12px;
}

.f14 {
    font-size: 14px;
}

.f16 {
    font-size: 16px;
}

.f17 {
    font-size: 17px;
}

.f18 {
    font-size: 18px;
}

.f20 {
    font-size: 20px;
}

.f22 {
    font-size: 22px;
}

.f24 {
    font-size: 24px;
}

.f26 {
    font-size: 26px;
}

.f28 {
    font-size: 28px;
}

.f30 {
    font-size: 30px;
}

.f32 {
    font-size: 32px;
}

.f36 {
    font-size: 36px;
}

.f40 {
    font-size: 40px;
}

.f45 {
    font-size: 45px;
}

.more {
    display: inline-block;
    width: 150px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 45px;
    text-decoration: none !important;
    transition: all .3s ease;
}

/*  翻页  */

.fanye {
    margin: 25px auto;
    text-align: center;
}

.fanye a,
.fanye b,
.fanye p {
    margin-right: 3px;
    padding-left: 15px;
    padding-right: 15px;
    display: inline-block;
    border: 1px solid #ddd;
    line-height: 35px;
    color: #999;
    border-radius: 3px;
    font-size: 14px;
    overflow: hidden;
    transition: all .3s ease;
    font-family: 'Roboto Condensed';
}

.fanye b,
.fanye a:hover,
.fanye .cur {
    color: #fff;
    background-color: #214d98;
}

.fanye .pagination {
    display: flex;
    justify-content: center;
}

/* 上下篇 */

.page {
    display: flex;
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #ddd;
}

.page li {
    width: 50%;
    /* font-size: 14px; */
    color: #666;
    line-height: 30px;
}

.page li:last-child {
    text-align: right;
}

.page li a {
    color: #666;
}

.page li:hover a {
    color: #048ABF;
    text-decoration: underline !important;
}

/* 详情/行高/图片宽度/a链接 */

.con_p {
    padding-top: 20px;
    padding-bottom: 20px;
}

.con_p p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.con_p img {
    padding-top: 10px;
    padding-bottom: 10px;
    max-width: 100%;
}

.con_p a {
    padding-bottom: 3px;
    font-weight: bold;
    border-bottom: 1px dashed #048ABF;
}

/* 列表图片高度 */

.img-260 {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.img-300 {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/*  面包屑  */

.crumb {
    line-height: 60px;
    font-size: 14px;
    color: #666;
    background-color: #eee;
}

/* 友情链接 */

.friend_links {
    padding: 20px 0;
    background-color: #eee;
}

.friend_links li {
    font-size: 14px;
    margin-right: 15px;
    display: inline-block;
}

/* 图片点击放大 */

.bigimg {
    /* display: none; */
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.bigimg.on {
    /* display: block; */
    visibility: visible;
    opacity: 1;
}

.bigimg div {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.bigimg div a {
    position: relative;
    display: block;
}

.bigimg div img {
    width: auto;
    height: 90%;
    object-fit: contain;
    /* max-width: 900px; */
    transition: .3s;
    transform: scale(.4);
}

.bigimg.on div img {
    position: relative;
    transform: scale(1);
}

/* .bigimg div img::after {
    content: 'X';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    line-height: 40px;
    color: #fff;
    font-size: 30px;
    font-family: arial;
    text-align: center;
    background-color: rgba(0, 0, 0, .9);
} */

/* ********* 头部 ********* */

/* .head {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    transition: all .5s ease;
} */
.head .m_btn div {
    margin-left: auto;
    width: 30px;
    height: 30px;
    overflow: hidden;
}

.head .m_btn span {
    margin-bottom: 6px;
    display: block;
    width: 100%;
    height: 3px;
    background-color: #555;
    transition: all .3s;
}

.head .top_text {
    background: url(../img/top-textbg.png)no-repeat right;
    color: #fff;
}

.head .top_text a {
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
    color: #fff;
    line-height: 40px;
    font-size: 14px;
}

.head .top_text a:last-child {
    margin-right: 5%;
}

.head.on {
    background-color: rgba(255, 255, 255, .9);
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, .1);
}

/* .head .logo {
    margin-bottom: 20px;
} */

.head.on .logo a img {
    height: 60px;
}

.head .logo a img {
    transition: all .5s ease;
}

.head.on .h-nav .u1>li a {
    color: #333;
}

.head.on .h-nav .u1>li.on {
    border-bottom: 2px solid #004690;
}

.head .row {
    align-items: center;
}

.head .jd a {
    padding-right: 10px;
}

.head .h-nav .u1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    line-height: 40px;
}

.head .h-nav .u1:after {
    display: none;
}

.head .h-nav .u1>li {
    position: relative;
    width: calc(100% / 7);
    text-align: center;
    /* border-bottom: 2px solid transparent; */
}

.head .h-nav .u1>li:hover {
    color: #004690;
}

.head .h-nav .u1>li.on {
    font-weight: bold;
    background-color: #D9001B;
}

.head .h-nav .u1>li.on>a {
    color: #fff;
}

.head .h-nav .u1>li a {
    display: block;
    /* color: #fff; */
    font-size: 16px;
}

.head .h-nav .u1>li>a {
    line-height: 90px;
}

.head .h-nav .u2 {
    box-sizing: border-box;
    position: absolute;
    left: 0;
    z-index: 9;
    width: 100%;
    background-color: #fff;
    transition: all .5s ease;
    transform: translateY(0) scaleY(.1);
    transform-origin: top;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
}

.head .h-nav .u1>li:hover .u2 {
    visibility: visible;
    transform: translateY(0) scaleY(1);
    opacity: 1;
}

.head .h-nav .u2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #004690;
    transition: all .5s;
}

.head .h-nav .u1>li:hover .u2:before {
    width: 100%;
}

.head .h-nav .u2 li {
    /* padding: 3px 5px; */
    text-align: center;
}

.head .h-nav .u2 li a {
    display: inline-block;
    width: 100%;
    color: #333;
    font-size: 14px;
    font-weight: normal;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.head .h-nav .u2 li a:hover {
    background-color: #eee;
}


/* ********* 底部 ********* */

.foot {
    padding-top: 20px;
    color: #fff;
    background-color: #004690;
}

.foot a {
    font-size: 15px;
    color: #fff;
}

.foot a:hover {
    color: #ddd;
    text-decoration: underline;
}

.foot .con a {
    display: block;
    font-size: 15px;
    line-height: 1.8;
}

.foot .con p {
    font-size: 17px;
    font-weight: bold;
    line-height: 40px;
}

.foot .fanwei a {
    display: inline-block;
    width: 48%;
}

.banquan {
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid rgba(255, 255, 255, .3);
    font-size: 12px;
    color: #eee;
    text-align: center;
}

.banquan a {
    font-size: 12px;
}

.banquan span {
    margin-right: 20px;
}

/* QQ悬浮 */

.nav_bar {
    position: fixed;
    right: 0;
    z-index: 999;
    bottom: 15%;
}

.nav_bar li {
    position: relative;
    margin-bottom: 1px;
    width: 70px;
    height: 70px;
    color: #004690;
    /* background-color: #004690; */
}

.nav_bar li .img {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
    cursor: pointer;
    background-color: #ddd;
    border-radius: 3px;
    overflow: hidden;
    transition: all .3s ease-out;
}

.nav_bar li .img:hover {
    color: #fff;
    background-color: #004690;
}

.nav_bar li .img span {
    font-size: 26px;
}

.nav_bar li .img p {
    width: 100%;
    font-size: 14px;
}

.nav_bar li .text {
    position: absolute;
    right: calc(100% + 1px);
    top: 0;
    font-family: Impact;
    width: 100%;
    min-width: 220px;
    color: #fff;
    background-color: #004690;
    line-height: 70px;
    text-align: center;
    font-size: 22px;
    font-weight: lighter;
    visibility: hidden;
    border-radius: 3px;
    overflow: hidden;
}

.nav_bar li .text a {
    font-size: 22px;
}

.nav_bar li:hover .text {
    visibility: visible;
}

/* 其他 */

.m_block {
    display: none;
}

@media(max-width:992px) {
    .f14 {
        font-size: 12px;
    }

    .xinwen .lei a {
        font-size: 14px;
    }

    .f18 {
        font-size: 16px;
    }

    .f20,
    .f22 {
        font-size: 18px;
    }

    .f26 {
        font-size: 20px;
    }

    .f32,
    .f36,
    .h1,
    h1,
    .h3,
    h3 {
        font-size: 22px;
    }

    .f40 {
        font-size: 24px;
    }

    .f45 {
        font-size: 26px;
    }


    .img-300 {
        height: auto;
    }

    .con_p img {
        height: auto !important;
        width: 100% !important;
    }

    .nav_bar {
        display: none;
    }









    .m_block {
        display: block;
    }

    .head .row {
        padding-top: 10px;
        padding-bottom: 10px;
        margin-bottom: 0;
    }

    .head .logo {
        margin-bottom: 0;
    }

    .head .top_text a {
        font-size: 12px;
        line-height: 30px;
    }

    .head .m_btn.on {
        position: relative;
        z-index: 101;
    }

    .head .m_btn.on span:nth-child(1) {
        transform: translate(2px, 15px) rotate(45deg);
    }

    .head .m_btn.on span:nth-child(2) {
        transform: translateX(200px);
    }

    .head .m_btn.on span:nth-child(3) {
        transform: translate(2px, -4px) rotate(-45deg);
    }

    .head .h-nav {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: -100%;
        z-index: 99;
        background-color: #fff;
        transition: all .3s ease-in-out;
    }

    .head .h-nav.on {
        left: 0;
    }

    .head .h-nav .u1 {
        padding-top: 50px;
        padding-left: 15%;
        padding-right: 15%;
    }

    .head .h-nav .u1>li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        text-align: left;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .head .h-nav .u1>li>a {
        line-height: 50px;
        text-align: center;
    }

    .head .h-nav .u2 {
        display: none;
    }
}