@charset "utf-8";
.fl {
    float: left;
}

.fr {
    float: right;
}


/* 鼠标箭头 */

.jiantou {
    cursor: default;
}


/* 背景主体颜色 */

body {
    background-color: #fff;
    color: #444444;
    font-size: 16px;
}

a {
    font-size: 16px;
    color: #444444;
}

a:hover {
    color: #1a94d7;
}


/* 图片对齐 */

i {
    display: inline-block;
    vertical-align: middle;
}

.container {
    padding: 0;
    margin: auto;
}


/* 单一版心媒体查询修改最大最小宽度 */

@media screen and (min-width: 1400px) {
    .container {
        max-width: 80%;
    }
}

@media screen and (min-width: 1920px) {
    .container {
        max-width: 65%;
    }
}

@media screen and (max-width: 768px) {
    .container,
    .container-md,
    .container-sm {
        max-width: 100%;
    }
    .container {
        padding: 0 30px;
    }
}


/* 公共部分样式开始 */

.head {
    height: 110px;
    background-color: #fff;
}

.headbox {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 110px;
    background-color: #fff;
    padding: 0 4%;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}

.headbox .headboxlogo {
    display: flex;
    align-items: center;
}

.headboxlogo_img img {
    width: 50px;
}

.headboxlogo_h {
    font-size: 22px;
    color: #333333;
    margin-left: 8px;
}

.headboxnav {
    display: flex;
}

.headboxnav_item {
    position: relative;
    display: flex;
}

.headboxnav_itemxl {
    position: absolute;
    left: -20px;
    top: 100%;
    background-color: #fff;
    width: calc(100% + 40px);
    border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -ms-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
    overflow: hidden;
    display: none;
}

.headnavxl_box {
    background-color: #fff;
    box-shadow: inset 0px 15px 6px -15px rgb(0 0 0 / 25%);
}

.headnavxl_box {
    padding: 20px 15px;
}

.headnavxl_box>a {
    display: block;
    text-align: center;
    padding: 5px 0;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.headnavxl_box>a:hover {
    color: #1a94d7;
    padding-left: 5px;
}

.headboxnav_item .headboxnav_itema {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 30px;
    color: #555;
}

.headboxnav_item .headboxnav_itema:hover {
    color: #1a94d7;
}

.headboxnav_item .headboxnav_itema.on {
    color: #1a94d7;
}

.headboxnav_item .headboxnav_itema::after {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    top: 50%;
    width: 1px;
    height: 12px;
    background-color: #cccccc;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 4;
}

.headboxnav_item:first-child .headboxnav_itema::after {
    display: none;
}

.headboxr {
    display: flex;
    align-items: center;
}

.headboxr_ss i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #cccccc;
    cursor: pointer;
}

.headboxr_ss {
    position: relative;
}

.headboxrdw {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 5;
    opacity: 0;
    width: 0;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.headboxr_ss.on .headboxrdw {
    width: 284px;
    opacity: 1;
}

.headboxr .headboxr_tel {
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.headboxr_tel i {
    font-size: 30px;
    color: #cccccc;
}

.headboxr_tel span {
    margin-left: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1a94d7;
}


/* 底部 */

.foot {
    background-color: #333333;
}

.foot_t {
    padding: 100px 0 100px;
}

.foot_tbox {
    display: flex;
    justify-content: space-between;
}

.foot_nav {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.foot_navitemt .foot_navitemta {
    font-size: 18px;
    color: #fff;
}

.foot_navitemb {
    margin-top: 10px;
}

.foot_navitemb .foot_navitemba {
    display: block;
    padding: 4px 0;
    font-size: 14px;
    color: #b5b5b5;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.foot_navitemb .foot_navitemba:hover {
    color: #fff;
    transform: translateX(3px);
    -webkit-transform: translateX(3px);
    -moz-transform: translateX(3px);
    -ms-transform: translateX(3px);
    -o-transform: translateX(3px);
}

.foot_zx {
    margin: 0 120px;
}

.foot_zxbt {
    font-size: 14px;
    color: #b5b5b5;
}

.foot_zx .foot_zxbta {
    font-size: 28px;
    line-height: 1.2;
    color: #fff;
}

.foot_zx .foot_zxa {
    margin-top: 8px;
    display: flex;
    align-items: center;
}

.foot_zxa span {
    font-size: 14px;
    color: #b5b5b5;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.foot_zxa:hover span {
    color: #fff;
}

.foot_zxa i {
    margin-right: 8px;
    font-size: 16px;
    color: #fff;
}

.foot_wximg {
    width: 110px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
}

.foot_wx img {
    width: 100%;
}

.foot_b {
    border-top: 1px solid #3d3d3d;
}

.foot_bbox {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
}

.foot_bboxl,
.foot_bboxl .foot_bboxla,
.foot_bboxr,
.foot_bboxr .foot_bboxra {
    font-size: 14px;
    color: #797979;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.foot_bboxl .foot_bboxla:hover,
.foot_bboxr .foot_bboxra:hover {
    color: #fff;
}

.foot_title {
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.12);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.foot_title>a {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.foot_title>a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 45px;
    background-color: #d1d1d1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.foot_title>a:last-child::after {
    display: none;
}

.foot_title_item {
    display: flex;
    align-items: center;
}

.foot_title_itemi {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.foot_title_itemi i {
    font-size: 60px;
    color: #1a94d7;
}

.foot_title_itemtxt {
    margin-left: 25px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.foot_title_itemtxt p {
    font-family: 'ProximaNova-Semibold';
    font-size: 20px;
    color: #333;
}

.foot_title_itemtxt span {
    font-size: 14px;
    color: #333;
}

.foot_title>a:hover .foot_title_itemi {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.foot_title>a:hover .foot_title_itemtxt {
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
}


/* 内页背景 */

.nybg {
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.nybgt {
    height: 250px;
}

.nybgt_txt {
    width: 100%;
}

.nybgt_txth {
    font-family: 'ProximaNova-Bold';
    text-transform: capitalize;
    word-break: break-all;
    font-size: 36px;
    color: #fff;
}

.nybgt_txtx {
    margin-top: -5px;
    width: 80px;
    height: 1px;
    background-color: #1a94d7;
}

.nybgb {
    background-color: rgba(0, 0, 0, 0.2);
}

.nybgbbig {
    height: 50px;
}

.nymbx {
    overflow-x: auto;
    white-space: normal;
    width: 100%;
    display: flex;
}

.nymbx>a {
    color: #fff;
    text-transform: capitalize;
    flex-shrink: 0;
    font-size: 14px;
}

.nymbx>a:hover {
    color: #1a94d7;
}

.nymbx>i {
    color: #fff;
    flex-shrink: 0;
    margin: 0 8px;
    margin-top: 2px;
    font-size: 12px;
}

.nymbx::-webkit-scrollbar {
    display: none;
}

.nymbx {
    scrollbar-width: none;
}

.nymbx {
    -ms-overflow-style: none;
}


/* 翻页 */

.nycqlbrbox_fy {
    margin: 30px 0 30px;
}

.lbbox .nycqlbrbox_fy {
    margin: 30px 0 60px;
}

.nyfybox {
    display: flex;
}

.nyfybox .nyfyboxa_big {
    width: 100px;
    height: 40px;
    background-color: #f1f1f1;
    line-height: 40px;
    text-align: center;
    font-size: 15px;
    color: #333;
}

.nyfybox .nyfyboxa_min {
    width: 40px;
    height: 40px;
    background-color: #f1f1f1;
    line-height: 38px;
    text-align: center;
    margin: 0 5px;
    border: 1px solid #f1f1f1;
    font-size: 15px;
    color: #333;
}

.nyfybox .nyfyboxa_min.on {
    background-color: #fff;
    border: 1px solid #1a94d7;
    color: #1a94d7;
}

.nyfybox .nyfyboxa_min:hover {
    background-color: #fff;
    border: 1px solid #1a94d7;
    color: #1a94d7;
}


/* 内页其他引导 */

.nyqtyd {
    margin-top: 20px;
}

.nyqtyd {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.nyqtyd .nyqtyda {
    width: 49%;
    margin-right: 2%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.nyqtyd .nyqtyda:nth-child(2n) {
    margin-right: 0;
}

.nyqtyda img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nyqtydadw {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'ProximaNova-Bold';
    text-transform: capitalize;
    font-size: 36px;
    color: #fff;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.nyqtyd .nyqtyda:hover .nyqtydadw {
    background-color: rgba(26, 148, 215, .9);
}


/* 内页新闻 */

.nyxw {
    margin-top: 80px;
    border-top: 1px solid #d9d9d9;
}

.nyxw .gsrytitle {
    margin-top: 40px;
}

.nyxwct {
    margin-top: 30px;
}

.nyxwct .nyxwcta {
    display: flex;
    height: 160px;
    border: 1px solid #e6e6e6;
    margin-bottom: 20px;
}

.nyxwct .nyxwcta:last-child {
    margin-bottom: 0;
}

.nyxwcta_img {
    width: 25%;
    height: 100%;
    overflow: hidden;
}

.nyxwcta_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.nyxwcta_txt {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.nyxwcta_txtboxh {
    width: 100%;
    font-family: 'ProximaNova-Semibold';
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.nyxwcta_txtboxp {
    margin-top: 10px;
    word-break: break-all;
    color: #888;
    line-height: 22px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 14px;
}

.nyxwcta_sj {
    width: auto;
    padding: 0 70px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nyxwcta_sjbox {
    text-align: center;
}

.nyxwcta_sjbox p {
    font-family: 'ProximaNova-Semibold';
    font-size: 30px;
    color: #d1d1d1;
}

.nyxwcta_sjbox span {
    padding-top: 15px;
    font-family: 'ProximaNova-Semibold';
    font-size: 20px;
    color: #d1d1d1;
}

.nyxwct .nyxwcta:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.nyxwct .nyxwcta:hover .nyxwcta_txtboxh {
    padding-left: 5px;
}


/* 内页分类切换 */

.nyflqh {
    margin-top: 50px;
}

.nyflqhbox {
    display: flex;
    justify-content: center;
}

.nyflqhbox .nyflqha {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    font-size: 20px;
    color: #333;
    position: relative;
}

.nyflqhadw {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    display: none;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.nyflqhbox .nyflqha:hover {
    background-color: #efefef;
    color: #222;
}

.nyflqhbox .nyflqha.on {
    background-color: #1a94d7;
    color: #fff;
}

.nyflqhbox .nyflqha.on .nyflqhadw {
    display: block;
}


/* 数值 */

.shuzhi_item {
    padding: 50px 0;
    display: flex;
    justify-content: center;
    position: relative;
}

.shuzhi_item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 22px;
    background-color: #d9d9d9;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.shuzhi_item:last-child::before {
    display: none;
}

.shuzhi_itembox {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shuzhi_itembox i {
    font-size: 24px;
    color: #bebebe;
}

.shuzhi_itembox span {
    margin-left: 8px;
    font-size: 20px;
}

.foot {
    margin-top: 55px;
}

.sybx .foot {
    margin-top: 0;
}

.mbnav {
    height: 100%;
    width: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mbnav i {
    font-size: 26px;
}

.a_txt {
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 0px;
    height: 0px;
    overflow: hidden;
    z-index: 10000
}

.a_txt .div1 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #1a94d7;
    filter: alpha(opacity=0);
    opacity: 0;
    left: 0px;
    top: 0px;
    z-index: 1
}

.a_txt .div2 {
    position: absolute;
    width: 20%;
    left: 0px;
    top: 2%;
    z-index: 100;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0
}

.a_txt .div3 {
    position: absolute;
    width: 80%;
    right: 0px;
    top: 0px;
    background: #fff;
    height: 100%;
    z-index: 100;
    right: -80%
}

.a_txt .div3 ul {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 30px;
}

.a_txt .div3 ul li {
    border-bottom: 1px solid #e9e9e9;
}

.mblink_item {
    display: flex;
}

.mblink_itema {
    height: 60px;
    display: flex;
    align-items: center;
    flex: 1;
    font-size: 16px;
    color: #333;
}

.mblink_itematxt {
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.mblink_itemi {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    font-weight: 700;
}

.a_txt2 {
    display: none;
    padding-bottom: 30px;
}

.a_txt2 a {
    padding: 0 20px;
    font-size: 14px;
    display: block;
    height: 36px;
    line-height: 36px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.a_closed img {
    margin-right: 20px;
    display: inline-block;
}

.nycqlbrbox_fy {
    margin: 50px 0 0px;
}

.mbtbbox {
    position: fixed;
    bottom: 50px;
    right: 15px;
    display: none;
    z-index: 50;
}

.mbtbbox_zd {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.mbtbbox_zd i {
    display: none;
    font-size: 36px;
    color: #1a94d7;
    opacity: .85;
    cursor: pointer;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.mbtbbox_zd:first-child i {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
}

@media (max-width: 1450px) {
    /* 头部 */
    .headboxnav_item .headboxnav_itema {
        padding: 0 20px;
    }
    .headboxr .headboxr_tel {
        margin-left: 25px;
    }
    .head,
    .headbox {
        height: 95px;
    }
    /* 底部 */
    .foot_t {
        padding: 80px 0 80px;
    }
    .foot_bbox {
        padding: 15px 0;
    }
    /* 内页背景 */
    .nybg {
        height: 260px;
    }
    .nybgt {
        height: 210px;
    }
    .nybgt_txth {
        font-size: 30px;
    }
    /* fenye  */
    .lbbox .nycqlbrbox_fy {
        margin: 30px 0 60px;
    }
    /* 内页引导 */
    .nyqtydadw {
        font-size: 30px
    }
    .nyqtyd .nyqtyda {
        height: 260px;
    }
}

@media (max-width: 1200px) {
    /* 头部 */
    .head,
    .headbox {
        height: 85px;
    }
    .headboxlogo_h {
        font-size: 20px;
    }
    .headboxr_tel span {
        font-size: 16px;
    }
    .headboxnav_item .headboxnav_itema {
        padding: 0 15px;
        font-size: 14px;
    }
    .headboxr_tel i {
        font-size: 24px;
    }
    .headboxr .headboxr_tel {
        margin-left: 20px;
    }
    /* 尾部 */
    .foot_t {
        padding: 60px 0;
    }
    .foot_navitemt .foot_navitemta {
        font-size: 16px;
    }
    .foot_navitemb .foot_navitemba {
        font-size: 12px;
    }
    .foot_zx {
        margin: 0 60px;
    }
    .foot_zx .foot_zxbta {
        font-size: 24px;
    }
    .foot_zxa span {
        font-size: 12px;
    }
    .foot_bboxl,
    .foot_bboxl .foot_bboxla,
    .foot_bboxr,
    .foot_bboxr .foot_bboxra {
        font-size: 12px;
    }
    .foot_bbox {
        padding: 12px 0;
    }
    /* 内页背景 */
    .nybgt_txth {
        font-size: 26px;
    }
    .nybg {
        height: 220px;
    }
    .nybgt {
        height: 170px;
    }
    /* 内页其他引导 */
    .nyqtyd .nyqtyda {
        height: 240px;
    }
}

@media (max-width: 992px) {
    .mbtbbox {
        display: block;
    }
    .mbnav {
        display: flex;
    }
    .headboxr_ss,
    .headboxr .headboxr_tel {
        display: none;
    }
    .head,
    .headbox {
        height: 75px;
    }
    .headboxlogo_img img {
        width: 42px;
    }
    .container,
    .container-md,
    .container-sm {
        max-width: 90%;
    }
    .headbox {
        padding: 0 15px;
    }
    /* 尾部 */
    .foot_t {
        padding: 50px 0;
    }
    .foot_wx {
        display: none;
    }
    .foot_zx {
        margin: 0;
        margin-left: 40px;
    }
    .foot_bboxr {
        display: none;
    }
    .foot_bbox {
        justify-content: center;
    }
    /* 分页 */
    .lbbox .nycqlbrbox_fy {
        margin: 30px 0 20px
    }
    /* 内页背景 */
    .nybgt_txth {
        font-size: 22px;
    }
    .nybg {
        height: 200px;
    }
    .nybgt {
        height: 150px;
    }
    .cndns-right {
        display: none;
    }
    .nyqtyd .nyqtyda {
        height: 200px;
    }
    .nyqtydadw {
        font-size: 20px;
    }
    .nyqtyd {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    /* 头部 */
    .headboxnav {
        display: none;
    }
    .head,
    .headbox {
        height: 68px;
    }
    .headboxlogo_img img {
        width: 40px;
    }
    .container,
    .container-md,
    .container-sm {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 30px;
    }
    .sybx .container {
        padding: 0 15px;
    }
    /* 尾部 */
    .foot_zx {
        display: none;
    }
    .foot_navitemt .foot_navitemta {
        font-size: 14px;
    }
    .foot_t {
        padding: 45px 0;
    }
    .foot_navitemb {
        margin-top: 6px;
    }
    .foot_bboxl {
        text-align: center;
    }
    /* 分页 */
    .nycqlbrbox_fy {
        display: flex;
        justify-content: center;
    }
    .nyfyboxa_big {
        display: none;
    }
    /* 内页背景 */
    .nybgb {
        background: #1a94d7
    }
    .nybgt_txth {
        font-size: 32px;
    }
    .nybg {
        height: 40px;
        background: #1a94d7
    }
    .nybgt {
        display: none;
    }
    .nybgbbig {
        height: 40px;
    }
    /* 面包屑 */
    .nymbx>a {
        font-size: 12px;
    }
    .nymbx>i {
        color: #fff;
        flex-shrink: 0;
        margin: 0 4px;
        font-size: 12px;
    }
    .nyqtydadw {
        font-size: 26px;
    }
    .nyqtyd .nyqtyda {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
        height: 160px;
    }
    .lbbox .nycqlbrbox_fy {
        margin: 10px 0;
    }
    .nyflqh {
        margin-top: 40px;
    }
    .nyflqhbox .nyflqha {
        font-size: 16px;
    }
}

#baguetteBox-overlay .full-image figcaption {
    line-height: 2.6;
}

.nycqlbrbox_titletssbox {
    display: flex;
    border: 2px solid #1a94d7;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
}

.nycqlbrbox_titletssbox_sr {
    height: 38px;
    line-height: 38px;
    width: 230px;
    border: 0;
    padding-left: 15px;
    font-size: 14px;
}

.nycqlbrbox_titletssbox_tj {
    height: 38px;
    line-height: 38px;
    width: 50px;
    /*    border: 0;*/
    background-color: #1a94d7;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid #1a94d7;
}

.nycqlbrbox_titletssbox_sr::-webkit-input-placeholder {
    font-size: 16px;
    color: #999;
}

.nycqlbrbox_titletssbox_sr::-moz-placeholder {
    font-size: 16px;
    color: #999;
}

.nycqlbrbox_titletssbox_sr:-moz-placeholder {
    font-size: 16px;
    color: #999;
}

.nycqlbrbox_titletssbox_sr:-ms-input-placeholder {
    font-size: 16px;
    color: #999;
}

.nycqlbrbox_titleb {
    padding: 15px 0 25px;
    line-height: 24px;
    color: #666;
    word-break: break-all;
    /*    border-bottom: 1px solid #d9d9d9;*/
}

.bcyd {
    padding: 10px 0;
    display: flex;
    justify-content: center;
    display: none;
}

.bcyd .swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
}

.bcyd .swiper-pagination span {
    width: 8px;
    height: 8px;
    background-color: #ddd;
    opacity: 1;
    margin: 0 5px;
    outline: none;
}

.bcyd span.swiper-pagination-bullet-active {
    background-color: #1a94d7;
}