@charset "utf-8";

* {
    padding: 0px;
    margin: 0px;
}

body {
    font-size: 14px;
    color: #555;
    font-family: "Microsoft YaHei", Arial, sans-serif;
}

body,
ul,
ol,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
i,
b,
em,
span,
form,
fieldset,
legend,
input,
textarea,
select,
button,
th,
td {
    margin: 0;
    padding: 0;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    list-style: none;
}

input,
select,
button,
textarea {
    font-size: 14px;
    border: 0;
    background: none;
    outline: none;
    vertical-align: middle;
    font-family: "Microsoft YaHei", Arial, sans-serif;
}

button {
    overflow: visible
}

img {
    border: none;
}

li {
    list-style: none;
}

a {
    color: #000;
    text-decoration: none;
    transition: all .5s;
    -webkit-transition: all .5s;
}

a:hover {
    color: #06a;
    text-decoration: none !important;
}

.clear {
    overflow: hidden;
    clear: both;
    height: 0px;
}

.middle {
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 5px;
}

.ds_il {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.jt_ct {
    justify-content: space-between;
}

.jt_cn {
    justify-content: center;
}

.an_tm {
    align-items: center;
}

.an_td {
    align-items: end;
}

.mg_my {
    margin: 0;
}

::placeholder {
    color: #999;
}

@media only screen and (max-width:992px) {
    body {
        font-size: 22px;
    }

    input,
    select,
    button,
    textarea {
        font-size: 22px;
    }

    input,
    textarea {
        -webkit-appearance: none;
        border-radius: 0;
    }

    .container,
    .container-fluid {
        padding: 0 20px;
    }
}

@media only screen and (max-width:640px) {
    html.on {
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }
}

.flow {
    position: fixed;
    top: 0;
    z-index: 9999;
    background: #fff;
    width: 100%;
}


.header {
    width: 100%;
    position: relative;
    padding: 35px 0;
    overflow: hidden;
}

.header .logo {
    width: 640px;
    position: relative;
}

.header .logo img {
    width: 100%;
    height: auto;
    display: block;
}

.header .tel {
    padding-left: 50px;
    background: url(../images/tel.png) no-repeat left center;
}

.header .tel span {
    display: block;
    font-size: 16px;
    color: #555;
    line-height: 20px;
}

.header .tel strong {
    display: block;
    font-size: 24px;
    line-height: 30px;
    color: #06a;
}

.header .an {
    width: 52px;
    height: 32px;
    display: none;
    position: relative;
}

.header .an span {
    width: 52px;
    height: 4px;
    background-color: #333;
    display: block;
    position: absolute;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.header .an span.a1 {
    top: 0;
    left: 0;
}

.header .an span.a2 {
    top: 14px;
    left: 0;
}

.header .an span.a3 {
    top: 28px;
    left: 0;
}

.header .an.n span.a2 {
    display: none;
}

.header .an.n span.a1 {
    top: 10px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.header .an.n span.a3 {
    top: 10px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

@media only screen and (max-width:992px) {
    .header {
        padding: 20px 0;
        overflow: hidden;
    }

    .header .logo {
        width: 490px;
    }

    .header .lg_by {
        display: none;
    }

    .header .tel {
        display: none;
    }

    .header .an {
        display: block;
    }
}

.menu {
    width: 100%;
    background-color: #06a;
    position: relative;
    z-index: 99;
}

.menu .nav ul {
    margin: 0 auto;
}

.menu .nav ul li {
    width: 146px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto;
    position: relative;
}

.menu .nav .y_j {
    position: relative;
}

.menu .nav .y_j i {
    display: none;
}

.menu .nav .y_j a {
    font-size: 16px;
    color: #fff;
    text-align: center;
    display: block;
}

.menu .nav ul li:hover .y_j a {
    background-color: #e6b654;
    font-weight: bold;
}

.menu .nav .e_j {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    position: absolute;
    top: 60px;
    left: 0;
    display: none;
}

.menu .nav ul li:hover .e_j {
    display: block;
}

.menu .nav .e_j a {
    font-size: 14px;
    color: #333;
    line-height: 44px;
    text-align: center;
    border-top: 1px solid #fff;
    display: block;
}

.menu .nav .e_j a:hover {
    background-color: #06a;
    color: #fff;
}

@media only screen and (max-width:992px) {
    .menu {
        width: 100%;
        max-height: calc(100vh - 222px);
        background-color: #fafafa;
        position: absolute;
        top: 222px;
        left: 0;
        overflow: auto;
        display: none;
        z-index: 100;
    }

    .menu .container {
        padding: 0;
    }

    .menu .nav ul {
        margin: 0;
    }

    .menu .nav ul li {
        width: 100%;
        padding: 0 20px;
        height: auto;
        line-height: 90px;
        border-bottom: 1px solid #eee;
    }

    .menu .nav ul li:last-child {
        border-bottom: 0;
    }

    .menu .nav .y_j i {
        width: 70%;
        height: 90px;
        position: absolute;
        top: 0;
        right: 0;
        display: block;
        font-size: 26px;
        line-height: 90px;
        color: #555;
        text-align: right;
    }

    .menu .nav .y_j a {
        font-size: 24px;
        color: #555;
        text-align: left;
    }

    .menu .nav ul li:hover .y_j a {
        background: none;
    }

    .menu .nav ul li.on .y_j a {
        background: none;
    }

    .menu .nav .e_j {
        width: 100%;
        padding-bottom: 25px;
        background: none;
        box-shadow: none;
        position: relative;
        top: auto;
        left: auto;
    }

    .menu .nav ul li:hover .e_j {
        display: none;
    }

    .menu .nav .e_j a {
        font-size: 22px;
        line-height: 56px;
        text-align: left;
        border-top: 0;
    }

    .menu .nav .e_j a:hover {
        color: #333;
    }
}

.inbanner {
    margin-top: 190px
}

@media only screen and (max-width:992px) {
    .inbanner {
        margin-top: 87px;
        width: 100%;
    }

    .inbanner img {
        width: 100%;
    }
}

.pc_ban {
    width: 100%;
    height: 480px;
    position: relative;
    overflow: hidden;
    margin-top: 190px;
}

.pc_ban .swiper-button-prev {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .6);
    left: 0;
    margin-top: -22px;
    opacity: 0;
    text-align: center;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.pc_ban:hover .swiper-button-prev {
    left: 5%;
    opacity: 1;
}

.pc_ban:hover .swiper-button-prev:hover {
    background: #07439d;
}

.pc_ban .swiper-button-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .6);
    right: 0;
    margin-top: -22px;
    opacity: 0;
    text-align: center;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.pc_ban:hover .swiper-button-next {
    right: 5%;
    opacity: 1;
}

.pc_ban:hover .swiper-button-next:hover {
    background: #07439d;
}

.pc_ban .swiper-pagination {
    bottom: 30px;
}

.pc_ban .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.pc_ban i {
    font-size: 26px;
    line-height: 44px;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
}

@media only screen and (max-width:992px) {
    .pc_ban {
        height: 280px;
        min-height: inherit;
        margin-top: 87px;
    }

    .pc_ban .swiper-button-prev {
        display: none;
    }

    .pc_ban .swiper-button-next {
        display: none;
    }

    .pc_ban .swiper-pagination {
        bottom: 10px;
    }
}

.ny_bt {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    background: url(../images/tt.png) no-repeat center;
}

.ny_bt h3 {
    font-size: 36px;
    color: #000;
    font-weight: bold;
    line-height: 44px;
}

.ny_bt p {
    font-size: 20px;
    color: #777;
    line-height: 30px;
    max-width: 880px;
    margin: 0 auto;
    font-weight: bold;
    text-transform: uppercase;
}


@media only screen and (max-width:992px) {
    .ny_bt {
        margin-bottom: 40px;
    }

    .ny_bt h3 {
        font-size: 32px;
        line-height: 40px;
    }

    .ny_bt h4 {
        font-size: 26px;
        line-height: 36px;
    }

    .ny_bt p {
        font-size: 22px;
        line-height: 36px;
    }
}

.gy_nr {
    width: 100%;
    position: relative;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.gy_tp {
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    /* 水平居中 */
    align-items: center;
    /* 垂直居中 */
    height: 29vh;
    /* 根据需要设置高度 */
}

.gy_tp img {
    max-width: 100%;
    height: 100%;
    transition: all 1s;
    -webkit-transition: all 1s;

}

.gy_nr:hover .gy_tp img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.xw_zs:hover .gy_tp img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.yw_zs ul li:hover .gy_tp img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.sy_ss {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    line-height: 46px;
}

.sy_ss .rm_ss {
    width: calc(100% - 320px);
}

.sy_ss .rm_ss span {
    color: #000;
    font-size: 16px;
}

.sy_ss .rm_ss a {
    display: inline-block;
    margin-left: 15px;
    color: #999;
}

.sy_ss .rm_ss a:hover {
    color: #07439d;
}

.sy_ss .ss_nr {
    width: 276px;
    padding-right: 10px;
    border-radius: 3px;
    background-color: #f7f7f7;
    overflow: hidden;
    display: flex;
}

.sy_ss .ss_nr input {
    width: 220px;
    height: 46px;
    padding: 0 15px;
    float: left;
    line-height: 46px;
}

.sy_ss .ss_nr button {
    width: 46px;
    height: 46px;
    background: url(../images/ss.png) no-repeat center / 100% 100%;
    outline: none;
}

@media only screen and (max-width:992px) {
    .sy_ss {
        padding: 25px 0;
        background-color: #f7f7f7;
        line-height: 66px;
    }

    .sy_ss .rm_ss {
        display: none;
    }

    .sy_ss .ss_nr {
        width: 100%;
        background-color: #fff;
        margin: 0 auto;
        border-radius: 5px;
        line-height: 70px;
        overflow: hidden;
    }

    .sy_ss .ss_nr input {
        width: 85%;
        height: 70px;
        padding: 0 20px;
        line-height: 70px;
    }

    .sy_ss .ss_nr button {
        width: 15%;
        height: 70px;
        line-height: 70px;
        background: url(../images/ss.png) no-repeat center / auto 80%;
    }
}

.sy_cp {
    width: 100%;
    padding-top: 100px;
    overflow: hidden;
}

.sy_cp .pl{
    width: 830px;
    height: 50px;
    margin: 0 auto 50px;
}

.sy_cp .pl li{
    width: 148px;
    height: 48px;
    float: left;
    border: #ddd 1px solid;
    transition: ease all .6s;
    margin-right: 20px;
}
.sy_cp .pl li a{
    display: block;
    width: 100%;
    height: 100%;
    line-height: 48px;
    text-align: center;
    font-size: 16px;
    color: #333;
}
.sy_cp .pl li:hover{
    background: #07439d;
    border-color: #07439d;
}
.sy_cp .pl li:hover a{
    color: #fff;
}
.sy_cp .pl li:nth-child(5){
    margin-right: 0;
}

.sy_cp .cp_zs {
    width: 1320px;
    padding-bottom: 70px;
    margin: 0 auto;
    position: relative;
}

.sy_cp .cp_zs .hd {
    position: absolute;
    bottom: 60px;
    width: 90px;
    left: 615px;
}

.sy_cp .cp_zs .hd li {
    width: 10px;
    height: 10px;
    float: left;
    border-radius: 50px;
    background: #999;
    margin-left: 10px;
}

.sy_cp .cp_zs .hd li:first-child {
    margin-left: 0;
}

.sy_cp .cp_zs .hd li.on {
    background: #06a;
}
.sy_cp .cp_zs .bd{
    width: 1300px;
    height: 330px;
    overflow: hidden;
}
.sy_cp .cp_zs .cp_prev{
    position: absolute;
    left: -50px;
    top: 140px;
    width: 30px;
    height: 30px;
    background: url(../images/left.png) no-repeat center;
    background-size: cover;
    cursor: pointer;
    transition: ease all .6s;
}
.sy_cp .cp_zs .cp_prev:hover{
    background: url(../images/left_b.png) no-repeat center;
    background-size: cover;
}
.sy_cp .cp_zs .cp_next{
    position: absolute;
    right: -30px;
    top: 140px;
    width: 30px;
    height: 30px;
    background: url(../images/right.png) no-repeat center;
    background-size: cover;
    cursor: pointer;
    transition: ease all .6s;
}
.sy_cp .cp_zs .cp_next:hover{
    background: url(../images/right_b.png) no-repeat center;
    background-size: cover;
}
.sy_cp .cp_zs .row {
    width: 100%;
    height: 330px;
    overflow: hidden;
    margin: 0 auto;
}

.sy_cp .gy_nr {
    width: 430px;
    height: 300px;
    margin: 0 15px 15px 0;
    border: 1px solid #ddd;
    float: left;
    position: relative;
}

.sy_cp .gy_nr:hover {
    border: 1px solid #07439d;
}

.sy_cp .gy_tp {
    width: 430px;
    height: 300px;
    overflow: hidden;
}

.sy_cp .gy_tp img {
    width: 100%;
    height: 100%;
}

.sy_cp .gy_wz {
    width: 430px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: rgba(0, 0, 0, .6);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: all .5s;
    -webkit-transition: all .5s;
    position: absolute;
    bottom: 0;
    font-size: 24px;
    color: #fff;
}

.sy_cp .gy_nr:hover .gy_wz {
    background-color: #07439d;
    color: #fff;
}

@media only screen and (max-width:992px) {
    .sy_cp {
        padding-top: 60px;
    }

    .sy_cp .cp_zs {
        padding-bottom: 60px;
    }

    .sy_cp .hd {
        padding: 35px 0;
        margin-bottom: 15px;
    }

    .sy_cp .hd a {
        display: none;
    }

    .sy_cp .hd ul li {
        width: 30%;
        margin: 0;
        font-size: 24px;
        line-height: 40px;
    }

    .sy_cp .row {
        margin: 0 -10px;
        width: 90%;
    }

    .sy_cp .gy_nr {
        width: 47%;
        margin: 20px 10px 0;
    }

    .sy_cp .gy_tp {
        width: 100%;
    }

    .sy_cp .gy_wz {
        padding: 15px 10px;
        font-size: 22px;
        line-height: 30px;
        width: 100%;
    }
}

.sy_hz {
    width: 100%;
    padding-top: 20px;
    height: 480px;
    background: url(../images/hz_bg.jpg) no-repeat center;
}

.sy_hz .ny_bt{
    margin-bottom: 20px;
}
.sy_hz .pl{
    width: 320px;
    height: 50px;
    margin: 0 auto 20px;
}

.sy_hz .pl li{
    width: 148px;
    height: 48px;
    float: left;
    border: #ddd 1px solid;
    transition: ease all .6s;
    margin-right:20px;
    background: #fff;
}
.sy_hz .pl li:nth-child(2){
    margin-right:0;
}
.sy_hz .pl li a{
    display: block;
    width: 100%;
    height: 100%;
    line-height: 48px;
    text-align: center;
    font-size: 16px;
    color: #333;
}
.sy_hz .pl li:hover,.sy_hz .pl li.on{
    background: #07439d;
    border-color: #07439d;
}
.sy_hz .pl li:hover a,.sy_hz .pl li.on a{
    color: #fff;
}

.sy_hz .hz_zs {
    width: 885px;
    padding-bottom: 70px;
    /*overflow: hidden;*/
    margin: 0 auto;
    position: relative;
}

.sy_hz .hz_zs .hd {
    position: absolute;
    bottom: 40px;
    width: 120px;
    left: 416px;
}

.sy_hz .hz_zs .hd li {
    width: 10px;
    height: 10px;
    float: left;
    border-radius: 50px;
    background: #999;
    margin-left: 10px;
}

.sy_hz .hz_zs .hd li:first-child {
    margin-left: 0;
}

.sy_hz .hz_zs .hd li.on {
    background: #06a;
}

.sy_hz .hz_zs .zs_prev{
    position: absolute;
    left: -50px;
    top: 105px;
    width: 30px;
    height: 30px;
    background: url(../images/left.png) no-repeat center;
    background-size: cover;
    cursor: pointer;
    transition: ease all .6s;
}
.sy_hz .hz_zs .zs_prev:hover{
    background: url(../images/left_b.png) no-repeat center;
    background-size: cover;
}
.sy_hz .hz_zs .zs_next{
    position: absolute;
    right: -50px;
    top: 105px;
    width: 30px;
    height: 30px;
    background: url(../images/right.png) no-repeat center;
    background-size: cover;
    cursor: pointer;
    transition: ease all .6s;
}
.sy_hz .hz_zs .zs_next:hover{
    background: url(../images/right_b.png) no-repeat center;
    background-size: cover;
}

.sy_hz .hz_zs .bd {
    width: 885px;
    height: 240px;
    overflow: hidden;
}
.sy_hz .hz_zs .row {
    width: 100%;
    height: 240px;
    overflow: hidden;
    margin: 0 auto;
}

.sy_hz .gy_nr {
    width: 285px;
    height: 240px;
    margin-right: 20px;
    float: left;
    position: relative;
    border: 1px solid #ddd;
}

.sy_hz .gy_nr img {
    width: 100%;
    height: 100%;
}

.sy_hz .gy_nr .jgj {
    position: absolute;
    width: 100%;
    height: 40px;
    background: rgba(0, 0, 0, .6);
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 18px;
    bottom: 0;
}


@media only screen and (max-width:992px) {
    .sy_hz {
        padding-top: 60px;
        overflow: hidden;
    }

    .sy_hz .hz_zs {
        padding-bottom: 60px;
    }

    .sy_hz .hd {
        padding: 35px 0;
        margin-bottom: 15px;
    }

    .sy_hz .hd a {
        display: none;
    }

    .sy_hz .hd ul li {
        width: 30%;
        margin: 0;
        font-size: 24px;
        line-height: 40px;
    }

    .sy_hz .row {
        margin: 0 -10px;
        width: 100%;
    }

    .sy_hz .gy_nr {
        width: 23%;
        margin: 20px 10px 0;
    }

    .sy_hz .gy_wz {
        padding: 15px 10px;
        font-size: 22px;
        line-height: 30px;
    }
}

.sy_gg {
    width: 100%;
    height: 442px;
    background: url(../images/gg_bj.jpg) no-repeat center / cover;
    overflow: hidden;
    position: relative;
}

.sy_gg .container {
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 99;
    color: #fff;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.sy_gg .gg_nr {
    width: 30%;
    height: 50%;
    position: absolute;
    right: 15px;
    bottom: 10%;
}

.sy_gg .gg_nr h2 {
    font-size: 18px;
    line-height: 36px;
}

.sy_gg .gg_nr h2 strong {
    font-size: 30px;
}

.sy_gg .gg_nr h3 {
    font-size: 22px;
    line-height: 32px;
    margin: 15px 0 25px;
}

.sy_gg .gg_nr .tel {
    display: flex;
    overflow: hidden;
}

.sy_gg .gg_nr .tel span {
    display: inline-block;
    padding: 0 15px;
    border-radius: 5px 0 0 5px;
    background-color: #e6b654;
    font-size: 18px;
    font-weight: bold;
    line-height: 46px;
}

.sy_gg .gg_nr .tel strong {
    font-size: 22px;
    line-height: 44px;
    padding: 0 25px;
    border: 1px solid #fff;
    border-radius: 0 5px 5px 0;
    border-left: 0;
}

@media only screen and (max-width:992px) {
    .sy_gg {
        height: 280px;
    }

    .sy_gg .gg_nr {
        width: 70%;
        height: 65%;
        position: absolute;
        right: 15%;
        bottom: 5%;
        text-align: center;
    }

    .sy_gg .gg_nr h2 {
        font-size: 22px;
        line-height: 32px;
    }

    .sy_gg .gg_nr h2 strong {
        font-size: 28px;
    }

    .sy_gg .gg_nr h3 {
        font-size: 20px;
        line-height: 28px;
        margin: 10px 0 15px;
    }

    .sy_gg .gg_nr .tel {
        width: 100%;
        justify-content: center;
    }

    .sy_gg .gg_nr .tel span {
        padding: 0 10px;
        font-size: 18px;
        font-weight: normal;
        line-height: 40px;
    }

    .sy_gg .gg_nr .tel strong {
        font-size: 22px;
        line-height: 38px;
        padding: 0 15px;
    }
}

.sy_ys {
    width: 100%;
    height: 720px;
    padding: 50px 0;
    background: url(../images/sy_ys.jpg) no-repeat top center;
    overflow: hidden;
}
.sy_ys .sy_hz{
    background-image: none;
}
.sy_ys .sy_hz .row{
    height: 385px;
}

.sy_ys .sy_hz .hz_zs .ys_prev{
    position: absolute;
    left: -50px;
    top: 160px;
    width: 30px;
    height: 30px;
    background: url(../images/left.png) no-repeat center;
    background-size: cover;
    cursor: pointer;
    transition: ease all .6s;
}
.sy_ys .sy_hz .hz_zs .ys_prev:hover{
    background: url(../images/left_b.png) no-repeat center;
    background-size: cover;
}
.sy_ys .sy_hz .hz_zs .ys_next{
    position: absolute;
    right: -50px;
    top: 160px;
    width: 30px;
    height: 30px;
    background: url(../images/right.png) no-repeat center;
    background-size: cover;
    cursor: pointer;
    transition: ease all .6s;
}
.sy_ys .sy_hz .hz_zs .ys_next:hover{
    background: url(../images/right_b.png) no-repeat center;
    background-size: cover;
}

.sy_ys .sy_hz .hz_zs .bd {
    width: 885px;
    height: 385px;
    overflow: hidden;
}


.sy_ys .sy_hz .gy_nr{
    height: 385px;
}
.sy_ys .sy_hz .gy_nr{
    height: 385px;
}

.sy_ys .ys_nl {
    width: 480px;
    height: 620px;
    float: left;
}

.sy_ys .ys_nl h1 {
    width: 80%;
    color: #000;
    font-weight: bold;
    font-size: 40px;
    line-height: 50px;
    background: url(../images/tts.png) no-repeat center;
    margin-top: 30px;
}

.sy_ys .ys_nl h2 {
    width: 70%;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    margin-top: 10px;
}

.sy_ys .ys_nl li {
    font-size: 24px;
    width: 380px;
    height: 49px;
    border-bottom: 1px #999 solid;
    margin-top: 20px;
    padding-left: 20px;
    transition: ease .6s;
}

.sy_ys .ys_nl li.on,
.sy_ys .ys_nl li:hover {
    width: 480px;
    height: 50px;
    border: none;
    background: #06a;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    color: #fff;
    font-weight: bold;
    line-height: 50px;
    overflow: hidden;
}

.sy_ys .ys_nr {
    position: relative;
    width: 430px;
    height: 620px;
    float: right;
    overflow: hidden;
}

.sy_ys .ys_nr ul {
    height: 100%;
}

.sy_ys .ys_nr li {
    width: 410px;
    height: 580px;
    position: relative;
    box-shadow: 0 0 6px rgba(0, 0, 0, .6);
    border-radius: 30px;
    background: #06a;
    border: 3px #fff solid;
    overflow: hidden;
    margin: 20px;
}

.sy_ys .ys_nr li .nimg,
.sy_ys .ys_nr li .nimg img {
    width: 100%;
    height: 100%;
}

.sy_ys .ys_nr li .nw {
    width: 100%;
    height: 200px;
    padding-top: 80px;
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, #06a, rgba(0, 102, 170, 0));
}

.sy_ys .ys_nr li .nw h1 {
    width: 90%;
    margin: 0 auto;
    line-height: 40px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.sy_ys .ys_nr li .nw p {
    width: 90%;
    margin: 0 auto;
    line-height: 24px;
    font-size: 16px;
    color: #fff;
}


@media only screen and (max-width:992px) {
    .sy_ys {
        padding: 60px 0;
    }

    .sy_ys .ys_nr {
        padding: 2px;
        background-color: #fff;
        border-radius: 30px;
        width: 50%;
        display: none;
    }

    .sy_ys .ys_nr:after {
        display: none;
    }

    .sy_ys .ys_zs {
        width: 46%;
        margin: 0 2%;
    }

    .sy_ys .ys_zs .n_r {
        padding: 15px 0;
    }

    .sy_ys .ys_zs .b_t {
        padding: 0 0 0 66px;
    }

    .sy_ys .ys_zs .b_t h3 {
        font-size: 26px;
        line-height: 56px;
    }

    .sy_ys .ys_zs .b_t h4 {
        display: none;
    }

    .sy_ys .ys_zs .b_t img {
        width: 56px;
        height: 56px;
    }

    .sy_ys .ys_nr li .nw {
        height: 240px;
    }

    .sy_ys .ys_zs p {
        font-size: 20px;
        line-height: 28px;
        min-height: 112px;
    }

    .sy_ys .ys_tp {
        display: none;
    }
}

.sy_yw {
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
}

.sy_yw .hd {
    text-align: center;
    margin-bottom: 50px;
}

.sy_yw .hd ul li {
    width: 200px;
    height: 50px;
    border-radius: 3px;
    background-color: #dedede;
    display: inline-block;
    margin: 0 10px;
    font-size: 18px;
    line-height: 50px;
    cursor: pointer;
    position: relative;
}

.sy_yw .hd ul li.on {
    background-color: #07439d;
    color: #fff;
}

.sy_yw .yw_js {
    position: relative;
}

.sy_yw .zc_nr {
    width: 40%;
    height: calc(100% - 30px);
    background-color: #07439d;
    border-radius: 30px;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
}

.sy_yw .zc_nr h3 {
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    z-index: 99;
    text-align: center;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    bottom: 0;
}

.sy_yw .zc_nr:hover h3 {
    background-color: rgba(7, 67, 157, .7);
}

.sy_yw .zc_nr img {
    width: 100%;
    height: 100%;
}

.sy_yw .zc_nr:hover img {
    transform: scale(1.1);
    transition: all .5s;
    -webkit-transition: all .5s;
}

.sy_yw .yc_nr {
    width: calc(60% - 30px);
    margin-left: calc(40% + 30px);
}

.sy_yw .gy_nr {
    width: calc(50% - 30px);
    height: 265px;
    margin: 0 15px 30px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.sy_yw .gy_wz {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, .7);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.sy_yw .gy_nr:hover .gy_wz {
    background-color: rgba(7, 67, 157, .7);
}

@media only screen and (max-width:992px) {
    .sy_yw {
        padding: 60px 0;
    }

    .sy_yw .hd {
        margin-bottom: 40px;
    }

    .sy_yw .hd ul li {
        width: 30%;
        height: 66px;
        border-radius: 5px;
        margin: 0 1%;
        font-size: 24px;
        line-height: 66px;
    }

    .sy_yw .zc_nr {
        width: 100%;
        height: auto;
        padding: 30px;
        border-radius: 5px;
        position: relative;
        left: auto;
        top: auto;
    }

    .sy_yw .zc_nr h3 {
        margin-bottom: 15px;
    }

    .sy_yw .zc_nr ul li {
        padding-left: 20px;
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .sy_yw .zc_nr ul li:after {
        width: 8px;
        height: 8px;
        top: 11px;
    }

    .sy_yw .zc_nr a {
        width: 160px;
        border-radius: 23px;
        font-size: 22px;
        line-height: 46px;
        margin-top: 20px;
    }

    .sy_yw .yc_nr {
        width: 100%;
        margin-left: 0;
    }

    .sy_yw .row {
        margin: 0 -10px;
    }

    .sy_yw .gy_nr {
        width: calc(50% - 20px);
        margin: 20px 10px 0;
    }

    .sy_yw .gy_wz {
        padding: 15px 10px;
        font-size: 22px;
        line-height: 30px;
    }
}

.swiper-honor {
    width: 100%;

}

.swiper-honor .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    height: 380px;
    overflow: hidden;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transition: 300ms;
    transform: scale(0.8);
}

.swiper-honor .swiper-slide-active,
.swiper-honor .swiper-slide-duplicate-active {
    transform: scale(1);
}

.swiper-honor .swiper-slide .honor {
    height: 100%;
}

.swiper-honor .swiper-slide .honor img {
    width: 100%;
}


@media only screen and (max-width:992px) {}

.sy_gy {
    width: 100%;
    padding: 100px 0;
    background: url(../images/gy_bj.jpg) no-repeat right bottom;
    overflow: hidden;
}

.sy_gy .gy_nr {
    position: relative;
}

.sy_gy .gy_dt {
    width: 600px;
    height: 390px;
    float: left;
    overflow: hidden;
}

.sy_gy .gy_dt img {
    width: 100%;
}

.sy_gy .gy_wz {
    width: 540px;
    float: right;
}

.sy_gy .gy_wz .b_t em {
    margin-bottom: 10px;
    display: inline-block;
}

.sy_gy .gy_wz .b_t h3 {
    font-size: 28px;
    font-weight: bold;
    line-height: 38px;
    color: #000;
}

.sy_gy .gy_wz .t_p {
    margin: 30px 0;
}

.sy_gy .gy_wz .t_p img {
    max-width: 100%;
    height: auto;
    display: block;
}

.sy_gy .gy_wz .w_z {
    font-size: 18px;
    line-height: 36px;
    color: #777;
    margin-bottom: 30px;
    text-align: justify;
    margin-top: 20px;
}

.sy_gy .gy_wz a.a_n {
    display: inline-block;
    padding: 0 10px 0 25px;
    border-radius: 50px;
    line-height: 50px;
    background-color: #07439d;
    color: #fff;
}

.sy_gy .gy_wz a.a_n:hover {
    background-color: #e6b654;
}

.sy_gy .gy_wz a.a_n i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #fff;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
    margin-left: 10px;
    text-align: center;
    font-size: 18px;
    line-height: 34px;
    color: #07439d;
    font-weight: bold;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.sy_gy .gy_wz a.a_n:hover i {
    color: #e6b654;
}

.sy_gy .wrap {
    margin-top: 70px;
    text-align: center;
}

.sy_gy .wrap .s_z {
    margin-bottom: 10px;
    color: #07439d;
    font-size: 18px;
}

.sy_gy .wrap img {
    width: auto;
    height: 46px;
    display: inline-block;
    vertical-align: middle;
}

.sy_gy .wrap b {
    font-size: 50px;
    line-height: 46px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}

.sy_gy .wrap p {
    font-size: 18px;
    color: #777;
}

@media only screen and (max-width:992px) {
    .sy_gy {
        padding: 0 0 60px;
    }

    .sy_gy .gy_dt {
        width: 100%;
        height: 300px;
        position: relative;
        top: auto;
        right: auto;
        border-radius: 0;
    }

    .sy_gy .gy_wz {
        width: 100%;
    }

    .sy_gy .gy_wz .b_t em {
        margin-bottom: 15px;
    }

    .sy_gy .gy_wz .b_t h3 {
        font-size: 36px;
        line-height: 44px;
    }

    .sy_gy .gy_wz .t_p {
        margin: 25px 0;
    }

    .sy_gy .gy_wz .w_z {
        font-size: 22px;
        line-height: 36px;
    }

    .sy_gy .gy_wz a.a_n {
        padding: 0 15px 0 30px;
        border-radius: 60px;
        line-height: 60px;
    }

    .sy_gy .gy_wz a.a_n i {
        width: 40px;
        height: 40px;
        margin-top: -4px;
        margin-left: 15px;
        font-size: 22px;
        line-height: 40px;
    }

    .sy_gy .wrap {
        margin-top: 0;
    }

    .sy_gy .wrap ul li {
        width: 50%;
        margin-top: 40px;
    }

    .sy_gy .wrap .s_z {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .sy_gy .wrap p {
        font-size: 22px;
    }
}

.sy_xw {
    width: 100%;
    padding: 100px 0;
    background-color: #f7f7f7;
    overflow: hidden;
}
.sy_xw .pl{
    width: 320px;
    height: 50px;
    margin: 0 auto 50px;
}

.sy_xw .pl li{
    width: 148px;
    height: 48px;
    float: left;
    border: #ddd 1px solid;
    transition: ease all .6s;
    margin-right:20px;
}
.sy_xw .pl li:nth-child(2){
    margin-right:0;
}
.sy_xw .pl li a{
    display: block;
    width: 100%;
    height: 100%;
    line-height: 48px;
    text-align: center;
    font-size: 16px;
    color: #333;
}
.sy_xw .pl li:hover,.sy_xw .pl li.on{
    background: #07439d;
    border-color: #07439d;
}
.sy_xw .pl li:hover a,.sy_xw .pl li.on a{
    color: #fff;
}


.sy_xw .xw_nr {
    width: 47%;
    float: left;
}

.sy_xw .b_t {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.sy_xw .l_m {
    font-size: 26px;
    font-weight: bold;
    color: #000;
    line-height: 36px;
}

.sy_xw .b_t a {
    font-size: 16px;
    color: #777;
}

.sy_xw .b_t a:hover {
    color: #07439d;
}

.sy_xw .n_r {
    height: 430px;
    position: relative;
}

.sy_xw .n_r .t_q {
    width: 100%;
    height: 100%;
    margin-bottom: 15px;
}

.sy_xw .n_r .t_q img {
    width: 100%;
    height: 100%;
}

.sy_xw .n_r .w_z {
    width: 100%;
    font-size: 18px;
    color: #fff;
    line-height: 50px;
    background: rgba(0, 0, 0, .5);
    padding-left: 10px;
    position: absolute;
    bottom: 0;
    z-index: 99;
}

.sy_xw .xw_nl {
    width: 50%;
    float: right;
}

.sy_xw .gy_nr {
    margin-bottom: 20px;
}

.sy_xw .gy_nr:last-child {
    margin-bottom: 0;
}

.sy_xw .gy_wz {
    width: 100%;
}

.sy_xw .gy_wz h3 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 6px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    float: left;
}

.sy_xw .gy_wz h3 span {
    color: #e6b654;
    margin-right: 10px;
}

.sy_xw .gy_wz p {
    font-size: 15px;
    color: #777;
    line-height: 26px;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    float: right;
}

@media only screen and (max-width:992px) {
    .sy_xw {
        padding: 60px 0 30px;
    }

    .sy_xw .xw_nr {
        width: 100%;
        margin-bottom: 40px;
    }

    .sy_xw .xw_nl {
        width: 100%;
    }

    .sy_xw .b_t {
        display: none;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .sy_xw .l_m {
        font-size: 28px;
        line-height: 40px;
    }

    .sy_xw .b_t a {
        font-size: 22px;
    }

    .sy_xw .n_r {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .sy_xw .n_r .t_q {
        margin-bottom: 25px;
    }

    .sy_xw .n_r .s_j {
        width: 180px;
        padding: 50px 10px;
        font-size: 22px;
        line-height: 36px;
    }

    .sy_xw .n_r .s_j strong {
        font-size: 28px;
        line-height: 40px;
    }

    .sy_xw .n_r .w_z {
        width: 100%;
    }

    .sy_xw .n_r .w_z h3 {
        font-size: 26px;
        line-height: 40px;
        margin-bottom: 10px;
    }

    .sy_xw .n_r .w_z p {
        font-size: 22px;
        line-height: 32px;
    }

    .sy_xw .n_r .r_q {
        width: 160px;
    }

    .sy_xw .gy_nr {
        margin-bottom: 30px;
    }

    .sy_xw .gy_wz h3 {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 10px;
    }

    .sy_xw .gy_wz p {
        font-size: 20px;
        line-height: 30px;
    }
}

.flink {
    width: 100%;
    height: 80px;
    background: #eee;
}

.flink h1 {
    width: 120px;
    height: 100%;
    font-size: 20px;
    font-weight: bold;
    color: #07439d;
    line-height: 80px;
    text-align: center;
    float: left;
}

.flink .alist {
    width: 1050px;
    height: 80px;
    float: right;
}

.flink .alist a {
    padding: 0 20px;
    line-height: 80px;
    color: #333;
}



.ny_bn {
    width: 100%;
    height: 80px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.ny_bn .container {
    position: absolute;
    top: 55%;
    left: 50%;
    z-index: 99;
    color: #fff;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.ny_bn .bn_lm {
    position: relative;
    width: 680px;
    margin: 28px auto 0;
}

.ny_bn .bn_lm ul {
    margin: 0 auto;
    border-bottom: #07439d 2px solid;
}

/*.ny_bn .bn_lm ul li {
    margin: 0 8px;
}*/

.ny_bn .bn_lm ul li a {
    min-width: 120px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    color: #07439d;
    display: block;
    border-radius: 8px 8px 0 0;
}

.ny_bn .bn_lm ul li:hover a {
    background-color: #07439d;
    color: #fff;
}

.ny_bn .bn_lm ul li.on a {
    background-color: #07439d;
    color: #fff;
}

@media only screen and (max-width:992px) {
    .ny_bn {
        height: 160px;
        text-align: center;
    }

    .ny_bn .container {
        top: 50%;
    }

    .ny_bn .bn_lm {
        width: 100%;
    }

    .ny_bn .bn_lm ul li {
        width: 30%;
    }
}


.Lside {
    width: 244px;
    float: left;
    margin-right: 30px;
    border-right: #eee 1px solid;
}

.Lside h2 {
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: url(../images/lside.jpg) no-repeat left center;
    color: #06a;
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    border-bottom: #ddd 1px dashed;
}

.Lside h2 .quan {
    width: 16px;
    height: 16px;
    border: 3px #06a solid;
    border-radius: 50%;
    float: right;
    margin-top: 20px;
    margin-right: -8px;
    background: #fff;
}

.iauth {
    background: #fff;
    margin-bottom: 30px;
}

.iauth li {
    border-bottom: 1px dashed #ddd;
    line-height: 50px;
}

.iauth li:last-child {
    border: none;
}

.iauth li a {
    color: #666;
    text-align: center;
    width: 100%;
    display: block;
    font-size: 14px;
}

.iauth li a .yuan {
    width: 14px;
    height: 14px;
    border: 3px #ddd solid;
    border-radius: 50%;
    float: right;
    margin-top: 20px;
    margin-right: -8px;
    background: #fff;
}

.iauth li.act a .yuan {
    border: 3px #06a solid;
}

.iauth li.act a {
    color: #06a;
    font-weight: bold;
    font-size: 16px;
}

.Lside h3 {
    width: 100%;
    height: 40px;
    line-height: 40px;
    background-color: #efefef;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-indent: 1.2em;
    background-image: url(../images/11.jpg);
    background-repeat: no-repeat;
    background-position: left top;
}

.Lside h3 a {
    float: right;
    font-size: 14px;
    color: #666666;
    padding-right: 13px;
}

.subList {
    border: 1px solid #e5e5e5;
    margin: 10px 0;
}


.ab_js {
    width: 100%;
    padding: 120px 0;
    min-height: 700px;
    background: url(../images/ab_bj.jpg) no-repeat bottom center / cover;
    overflow: hidden;
    position: relative;
}

.ab_js .by_tp {
    width: 40%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.ab_js .by_tp img {
    width: 100%;
    height: auto;
    display: block;
}

.ab_js .container {
    position: relative;
    z-index: 9;
}

.ab_js .ab_bt {
    width: 400px;
}

.ab_js .ab_bt h3 {
    font-size: 30px;
    color: #000;
    font-weight: bold;
    line-height: 38px;
}

.ab_js .ab_bt h4 {
    font-size: 36px;
    color: #000;
    font-weight: bold;
    line-height: 46px;
    text-transform: uppercase;
}

.ab_js .ab_bt h5 {
    font-size: 22px;
    color: #555;
    line-height: 30px;
    margin-top: 15px;
}

.ab_js .ab_wz {
    width: calc(100% - 500px);
    font-size: 14px;
    line-height: 40px;
}

@media only screen and (max-width:992px) {
    .ab_js {
        padding: 60px 0;
        min-height: inherit;
    }

    .ab_js .by_tp {
        display: none;
    }

    .ab_js .ab_bt {
        width: 100%;
        margin-bottom: 35px;
    }

    .ab_js .ab_bt h3 {
        font-size: 38px;
        line-height: 50px;
    }

    .ab_js .ab_bt h4 {
        font-size: 30px;
        line-height: 40px;
    }

    .ab_js .ab_bt h5 {
        font-size: 26px;
        line-height: 38px;
    }

    .ab_js .ab_wz {
        width: 100%;
        font-size: 22px;
        line-height: 40px;
    }
}

.ab_wh {
    width: 100%;
    padding: 120px 0;
    background: url(../images/wh_bj.jpg) no-repeat top center / cover;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.ab_wh .ny_bt h3 {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
    line-height: 44px;
    margin-bottom: 5px;
}

.ab_wh .ny_bt h4 {
    font-size: 24px;
    color: #fff;
    line-height: 32px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ab_wh .ny_bt p {
    font-size: 20px;
    color: rgba(255, 255, 255, .6);
    line-height: 30px;
}

.ab_wh .wh_zs ul li {
    width: calc(25% - 30px);
    padding: 60px 25px;
    background-color: #fff;
    margin: 0 15px;
}

.ab_wh .wh_zs .t_b {
    width: 90px;
    margin: 0 auto 20px;
}

.ab_wh .wh_zs .t_b img {
    width: 100%;
    height: auto;
    display: block;
}

.ab_wh .wh_zs h2 {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.ab_wh .wh_zs p {
    font-size: 15px;
    line-height: 28px;
    color: #777;
}

@media only screen and (max-width:992px) {
    .ab_wh {
        padding: 60px 0 40px;
    }

    .ab_wh .ny_bt h3 {
        font-size: 38px;
        line-height: 50px;
    }

    .ab_wh .ny_bt p {
        font-size: 22px;
        line-height: 36px;
    }

    .ab_wh .wh_zs ul {
        margin: 0 -10px;
    }

    .ab_wh .wh_zs ul li {
        width: calc(50% - 20px);
        padding: 40px 15px;
        margin: 0 10px 20px;
    }

    .ab_wh .wh_zs h2 {
        font-size: 28px;
    }

    .ab_wh .wh_zs p {
        font-size: 20px;
        line-height: 34px;
    }
}

.ab_ry {
    width: 100%;
    padding: 120px 0 70px;
    background: url(../images/ry_bj.jpg) no-repeat bottom center / 100% auto;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.ab_ry .swiper-ry {
    padding-bottom: 80px;
    padding-top: 30px;
}

.ab_ry .swiper-slide {
    width: 24%;
    transform: scale(.8);
    -webkit-transform: scale(.8);
    transition: all .5s;
    -webkit-transition: all .5s;
}

.ab_ry .swiper-slide-active {
    transform: scale(1);
    -webkit-transform: scale(1);
}

.ab_ry .swiper-pagination {
    bottom: 0;
    line-height: 44px;
    font-size: 20px;
}

.ab_ry .swiper-pagination span.swiper-pagination-current {
    color: #07439d;
}

.ab_ry .swiper-button-prev {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #07439d;
    background: #fff;
    left: 50%;
    margin-left: -90px;
    top: auto;
    bottom: 0;
    margin-top: 0;
    text-align: center;
    color: #07439d;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.ab_ry .swiper-button-prev:hover {
    background: #07439d;
    color: #fff;
}

.ab_ry .swiper-button-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #07439d;
    background: #fff;
    right: 50%;
    margin-right: -90px;
    top: auto;
    bottom: 0;
    margin-top: 0;
    text-align: center;
    color: #07439d;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.ab_ry .swiper-button-next:hover {
    background: #07439d;
    color: #fff;
}

.ab_ry i {
    font-size: 26px;
    line-height: 44px;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
}

.ab_ry img {
    width: 100%;
    height: auto;
    display: block;
}

.ab_ry .swiper-slide-active img {
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.ab_ry p {
    font-size: 18px;
    color: #000;
    line-height: 28px;
    margin-top: 15px;
}

@media only screen and (max-width:992px) {
    .ab_ry {
        padding: 60px 0;
    }

    .ab_ry .swiper-ry {
        padding-bottom: 70px;
    }

    .ab_ry .swiper-slide {
        width: 60%;
    }

    .ab_ry .swiper-pagination {
        line-height: 44px;
        font-size: 26px;
    }
}

.ab_hb {
    width: 100%;
    padding: 120px 0;
    background: url(../images/hb_bj.jpg) no-repeat bottom center / cover;
    overflow: hidden;
    position: relative;
}

.ab_hb .swiper-kh {
    padding-bottom: 30px;
}

.ab_hb .swiper-pagination {
    bottom: 0;
}

.ab_hb .swiper-pagination-bullet {
    width: 30px;
    height: 6px;
    border-radius: 2px;
}

.ab_hb img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    margin: 20px 0;
}

@media only screen and (max-width:992px) {
    .ab_hb {
        padding: 60px 0;
    }

    .ab_hb img {
        margin: 15px 0;
    }
}

.yw_lb {
    width: 1200px;
    margin: 0 auto;;
    padding: 40px 0;
    overflow: hidden;
}

.yw_lb .yw_dz {
    width: 100%;
    padding: 50px;
    background-color: #f7f7f7;
    margin-bottom: 50px;
}

.yw_lb .dz_ys {
    width: 50%;
    min-width: 560px;
    margin-bottom: 20px;
}

.yw_lb .dz_ys ul li {
    width: calc(50% - 30px);
    margin: 0 15px 15px;
    background-color: #07439d;
    border-radius: 23px;
    padding: 10px;
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    text-align: center;
}

.yw_lb .dz_bt {
    font-size: 26px;
    font-weight: bold;
    line-height: 40px;
    color: #07439d;
    margin-bottom: 15px;
}

.yw_lb .yw_bt {
    padding-left: 30px;
    font-size: 26px;
    font-weight: bold;
    line-height: 40px;
    color: #07439d;
    position: relative;
}

.yw_lb .yw_bt:after {
    width: 6px;
    height: 26px;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -11px;
    background-color: #07439d;
    content: "";
}

.yw_lb .yw_zs ul {
    margin: 0 -20px;
}

.yw_lb .yw_zs ul li {
    width: calc(33.33333333% - 40px);
    margin: 40px 20px 0;
    border-radius: 5px;
    overflow: hidden;
}

.yw_lb .gy_wz {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    background-color: #ddd;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.yw_lb .yw_zs ul li:hover .gy_wz {
    background-color: #07439d;
    color: #fff;
}

@media only screen and (max-width:992px) {
    .yw_lb {
        padding: 60px 0;
    }

    .yw_lb .yw_dz {
        padding: 30px;
        margin-bottom: 40px;
    }

    .yw_lb .dz_ys {
        width: 100%;
        min-width: 100%;
        margin-bottom: 10px;
    }

    .yw_lb .dz_ys ul {
        margin: 0;
    }

    .yw_lb .dz_ys ul li {
        width: 100%;
        margin: 0 0 20px;
        border-radius: 24px;
        font-size: 22px;
        line-height: 28px;
    }

    .yw_lb .dz_bt {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .yw_lb .yw_bt {
        padding-left: 20px;
        font-size: 28px;
    }

    .yw_lb .yw_bt:after {
        height: 28px;
        margin-top: -10px;
    }

    .yw_lb .yw_zs ul {
        margin: 0 -10px;
    }

    .yw_lb .yw_zs ul li {
        width: calc(50% - 20px);
        margin: 20px 10px 0;
    }

    .yw_lb .gy_wz {
        padding: 15px;
        font-size: 22px;
        line-height: 32px;
    }
}

.xw_tj {
    width: 100%;
    padding: 80px 0 50px;
    overflow: hidden;
}

.xw_tj .swiper-xw {
    padding-bottom: 40px;
}

.xw_tj .swiper-pagination {
    bottom: 0;
}

.xw_tj .gy_tp {
    width: 44%;
    height: 360px;
}

.xw_tj .gy_wz {
    width: 53%;
    padding-bottom: 80px;
    position: relative;
}

.xw_tj .gy_wz h3 {
    font-size: 26px;
    font-weight: bold;
    line-height: 40px;
    margin-bottom: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.xw_tj .gy_wz p {
    font-size: 16px;
    color: #777;
    line-height: 30px;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.xw_tj .gy_wz .z_d {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    font-size: 16px;
    line-height: 50px;
}

.xw_tj .gy_wz .a_n {
    display: inline-block;
    padding: 0 10px 0 25px;
    border-radius: 50px;
    background-color: #07439d;
    color: #fff;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.xw_tj .gy_wz .a_n:hover {
    background-color: #e6b654;
}

.xw_tj .gy_wz .a_n i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #fff;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
    margin-left: 10px;
    text-align: center;
    font-size: 18px;
    line-height: 34px;
    color: #07439d;
    font-weight: bold;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.xw_tj .gy_wz .a_n:hover i {
    color: #e6b654;
}

@media only screen and (max-width:992px) {
    .xw_tj {
        padding: 60px 0 40px;
    }

    .xw_tj .swiper-xw {
        padding-bottom: 30px;
    }

    .xw_tj .gy_tp {
        width: 100%;
        margin-bottom: 15px;
    }

    .xw_tj .gy_wz {
        width: 100%;
        padding-bottom: 0;
    }

    .xw_tj .gy_wz h3 {
        font-size: 28px
    }

    .xw_tj .gy_wz p {
        font-size: 22px;
        line-height: 36px;
    }

    .xw_tj .gy_wz .z_d {
        position: relative;
        bottom: auto;
        left: auto;
        font-size: 22px;
        line-height: 60px;
        margin-top: 25px;
        flex-direction: row-reverse;
    }

    .xw_tj .gy_wz a.a_n {
        padding: 0 15px 0 30px;
        border-radius: 60px;
        line-height: 60px;
    }

    .xw_tj .gy_wz a.a_n i {
        width: 40px;
        height: 40px;
        margin-top: -4px;
        margin-left: 15px;
        font-size: 22px;
        line-height: 40px;
    }
}

.xw_lb {
    width: 100%;
    padding-bottom: 80px;
    overflow: hidden;
}

.xw_lb .xw_zs {
    transition: all .5s;
    -webkit-transition: all .5s;
}

.xw_lb .xw_zs:hover {
    background-color: #07439d;
}

.xw_lb .xw_zs a {
    border-bottom: 1px solid #ddd;
    padding: 30px 0;
}

.xw_lb .gy_tp {
    width: 280px;
}

.xw_lb .gy_wz {
    width: calc(100% - 540px);
}

.xw_lb .gy_wz h3 {
    font-size: 22px;
    color: #000;
    font-weight: bold;
    line-height: 30px;
    margin-bottom: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.xw_lb .xw_zs:hover .gy_wz h3 {
    color: #fff;
}

.xw_lb .gy_wz p {
    font-size: 15px;
    color: #777;
    line-height: 26px;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.xw_lb .xw_zs:hover .gy_wz p {
    color: #fff;
}

.xw_lb .r_q {
    width: 160px;
    padding: 35px 20px;
    border: 2px solid #eee;
    font-size: 18px;
    line-height: 26px;
    color: #777;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.xw_lb .xw_zs:hover .r_q {
    color: #fff;
}

.xw_lb .r_q strong {
    font-size: 34px;
    color: #000;
    line-height: 40px;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.xw_lb .xw_zs:hover .r_q strong {
    color: #fff;
}

@media only screen and (max-width:992px) {
    .xw_lb {
        padding-bottom: 60px;
    }

    .xw_lb .xw_zs a {
        flex-direction: column-reverse;
    }

    .xw_lb .gy_tp {
        width: 100%;
        margin-bottom: 20px;
    }

    .xw_lb .gy_wz {
        width: 100%;
    }

    .xw_lb .gy_wz h3 {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 15px;
    }

    .xw_lb .gy_wz p {
        font-size: 22px;
        line-height: 38px;
    }

    .xw_lb .r_q {
        width: 100%;
        padding: 0;
        border: 0;
        font-size: 22px;
        line-height: 32px;
        margin-top: 15px;
    }

    .xw_lb .r_q strong {
        font-size: 22px;
        line-height: 32px;
        color: #777;
        font-weight: normal;
        position: relative;
        padding-right: 10px;
    }

    .xw_lb .r_q strong:after {
        width: 7px;
        height: 1px;
        background-color: #777;
        position: absolute;
        top: 16px;
        right: -2px;
        content: "";
    }

    .xw_lb .r_q br {
        display: none;
    }
}

.yema {
    margin-top: 50px;
    text-align: center;
}

.yema ul li {
    display: inline-block;
    margin: 0 2px;
}

.yema ul li a {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    background-color: #fff;
    border: 1px solid #ddd;
    font-size: 16px;
    line-height: 38px;
    text-align: center;
    color: #333;
    display: block;
}

.yema ul li a:hover {
    background-color: #07439d;
    border: 1px solid #07439d;
    color: #fff;
}

.yema ul li a.on {
    background-color: #07439d;
    border: 1px solid #07439d;
    color: #fff;
}

.yema ul li i {
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
    font-size: 20px;
    font-weight: bold;
}

@media only screen and (max-width:992px) {
    .yema {
        margin-top: 30px;
    }

    .yema ul li {
        display: inline-block;
        margin: 2px;
    }

    .yema ul li a {
        width: 52px;
        height: 52px;
        font-size: 22px;
        line-height: 50px;
    }
}

.footer2{
    width: 100%;
    height: 360px;
    margin: 0 auto;
    background: #333;
}
.footer2 .ftop{
    width: 100%;
    height: 60px;
    background: #06a;
}
.footer2 .ftop ul{
    width: 1200px;
    height: 60px;
    margin: 0 auto;
}
.footer2 .ftop li{
    float: left;
    width: 100px;
    height: 60px;
    text-align: center;
}
.footer2 .ftop li a{
    color: #fff;
    font-size: 16px;
    line-height: 60px;
}
.footer2 .ftop li:nth-child(7),
.footer2 .ftop li:nth-child(8){
    width: 300px;
}


.footer2 .flan {
    width: 1200px;
    height: 240px;
    margin: 0 auto;
}
.footer2 .flan ul{
    width: 100px;
    height: 240px;
    float: left;
}
.footer2 .flan .lowhight{
    width: 300px;
}
.footer2 .flan li{
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
}
.footer2 .flan li a{
    color: #999;
    font-size: 14px;
}
.footer2 .fbq{
    width: 100%;
    height: 60px;
    text-align: center;
    font-size: 14px;
    line-height: 60px;
    color: #666;
}
.footer2 .fbq a{
    font-size: 14px;
    line-height: 60px;
    color: #666;
}

/*底部*/
.footer {
    width: 100%;
    background: url(../images/ft_bj.jpg) no-repeat center / cover;
    font-size: 14px;
    line-height: 26px;
    color: #fff;
}

.footer a {
    color: #fff;
    display: inline-block;
}

.footer a:hover {
    color: rgba(255, 255, 255, .6);
}

.footer .ft_hd {
    padding: 20px 0;
}

.footer {
    width: 100%;
    background: url(../images/ft_bj.jpg) no-repeat center / cover;
    font-size: 14px;
    line-height: 26px;
    color: #fff;
}

.footer a {
    color: #fff;
    display: inline-block;
}

.footer a:hover {
    color: rgba(255, 255, 255, .6);
}

.footer .ft_hd {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    line-height: 30px;
}

.footer .ft_hd .z_c ul {
    margin-left: 210px;
}

.footer .ft_hd .z_c ul li {
    margin-right: 30px;
    font-size: 16px;
    line-height: 30px;
}

.footer .ft_hd .y_c ul li {
    margin-left: 30px;
    cursor: pointer;
    position: relative;
}

.footer .ft_hd .y_c i {
    font-size: 30px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
}

.footer .ft_hd .ewm {
    width: 130px;
    padding: 5px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #ccc;
    position: absolute;
    top: 40px;
    left: 50%;
    margin-left: -65px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transition: all .5s;
    -webkit-transition: all .5s;
}

.footer .ft_hd .y_c ul li:hover .ewm {
    opacity: 1;
    visibility: inherit;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

.footer .ft_hd .ewm:before {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 8px solid #fff;
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    margin-left: -10px;
}

.footer .ft_hd img {
    width: 100%;
    height: auto;
    display: block;
}

.footer .ft_lx {
    padding: 20px 0;
    height: 170px;
}

.footer .ft_lx .flogo {
    float: left;
    width: 220px;
    height: 130px;
    margin-right: 80px;
}

.footer .ft_lx .fitem {
    float: left;
    width: 200px;
}


.footer .ft_lx .fitem h1 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    line-height: 30px;
}

.footer .ft_lx .fitem:nth-child(4) {
    margin-right: 70px;
}

.footer .ft_lx .fitem:nth-child(4) p {
    float: left;
    margin-right: 60px;
}

.footer .cl {
    clear: both;
}

@media only screen and (max-width:992px) {
    .footer {
        font-size: 20px;
        line-height: 34px;
        text-align: center;
    }

    .footer .ft_hd {
        padding: 35px 0;
        line-height: 36px;
    }

    .footer .ft_hd .z_c {
        display: none;
    }

    .footer .ft_hd .y_c {
        width: 100%;
        text-align: center;
    }

    .footer .ft_hd .y_c ul {
        justify-content: center;
    }

    .footer .ft_hd .y_c ul li {
        margin: 0 20px;
        display: inline-block;
    }

    .footer .ft_hd .y_c i {
        font-size: 44px;
    }

    .footer .ft_hd .ewm {
        width: 120px;
        top: 50px;
        margin-left: -60px;
    }

    .footer .ft_lx {
        padding: 35px 0;
    }

    .footer .ft_lx .fitem {
        display: none;
    }

    .footer .ft_lx .fitem:nth-child(5) {
        display: block;
        width: 300px;
    }

    .footer .ft_lx ul li {
        font-size: 20px;
        line-height: 36px;
    }

    .footer .ft_lx i {
        font-size: 32px;
        line-height: 36px;
    }

    .footer .ft_lx i.icon-dianhua_ {
        font-size: 28px;
    }

    .footer .ft_lx i.icon-youxiang {
        font-size: 30px;
    }
}

.banquan {
    width: 100%;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .6);
}

.banquan span {
    padding: 0 6px;
}

@media only screen and (max-width:992px) {
    .banquan {
        padding: 25px 0;
        font-size: 20px;
        line-height: 36px;
        text-align: center;
    }

    .banquan .z_c {
        width: 100%;
    }

    .banquan .y_c {
        width: 100%;
    }
}

.ny_lx {
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
}

.ny_lx .row {
    margin: 0;
    justify-content: space-between;
}

.ny_lx .b_t {
    margin-bottom: 35px;
}

.ny_lx .b_t h3 {
    font-size: 26px;
    font-weight: bold;
    color: #000;
    line-height: 36px;
    margin-bottom: 5px;
}

.ny_lx .b_t p {
    color: #aaa;
    line-height: 26px;
}

.ny_lx .lx_nr {
    width: 400px;
}

.ny_lx .lx_nr .x_b {
    font-size: 16px;
    color: #999;
    margin-bottom: 5px;
}

.ny_lx .lx_nr .n_r {
    line-height: 32px;
}

.ny_lx .lx_nr .x_x strong {
    font-size: 30px;
    color: #06a;
    display: block;
    margin-bottom: 10px;
}

.ny_lx .lx_nr .w_m {
    width: 120px;
    text-align: center;
    margin-top: 15px;
}

.ny_lx .lx_nr .w_m img {
    width: 100%;
    height: auto;
    border: 1px solid #eee;
}

.ny_lx .lx_nr .w_m p {
    margin-top: 5px;
    line-height: 18px;
}

.ny_lx .lx_bd {
    width: calc(100% - 460px);
}

.ny_lx .lx_bd .b_d ul {
    margin: 0 -10px;
}

.ny_lx .lx_bd .b_d ul li {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
    position: relative;
}

.ny_lx .lx_bd .b_d ul li.q_b {
    width: calc(100% - 20px);
}

.ny_lx .lx_bd .b_d input {
    width: 100%;
    height: 56px;
    background-color: #f7f7f7;
    border-radius: 3px;
    padding: 0 15px;
    line-height: 56px;
    color: #333;
    display: block;
}

.ny_lx .lx_bd .b_d input::placeholder {
    color: #999;
}

.ny_lx .lx_bd .b_d textarea {
    width: 100%;
    height: 134px;
    background-color: #f7f7f7;
    border-radius: 3px;
    padding: 15px;
    line-height: 26px;
    color: #333;
    resize: none;
    display: block;
}

.ny_lx .lx_bd .b_d textarea::placeholder {
    color: #999;
}

.ny_lx .lx_bd .b_d button {
    width: 140px;
    height: 46px;
    border-radius: 3px;
    background-color: #06a;
    font-size: 15px;
    line-height: 46px;
    color: #fff;
    margin-top: 20px;
    margin-right: 15px;
    outline: none;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.ny_lx .lx_bd .b_d button:hover {
    background-color: #06a;
}

.ny_lx .lx_bd .b_d button.c_z {
    background-color: #888;
}

.ny_lx .lx_bd .b_d button.c_z:hover {
    background-color: #06a;
}

.ny_lx .lx_bd .e_j {
    width: 100%;
    padding: 20px;
    position: absolute;
    top: 61px;
    left: 0;
    background-color: #fff;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .05);
    z-index: 99;
    display: none;
}

.ny_lx .lx_bd .e_j span {
    display: block;
    line-height: 36px;
    cursor: pointer;
}

.ny_lx .map {
    width: 100%;
    height: 400px;
    margin-top: 50px;
    background-position: center;
    background-repeat: no-repeat;
}

@media only screen and (max-width:1100px) {
    .ny_lx {
        padding: 60px 0;
    }

    .ny_lx .b_t {
        margin-bottom: 30px;
    }

    .ny_lx .b_t h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .ny_lx .b_t p {
        color: #aaa;
        line-height: 24px;
    }

    .ny_lx .lx_nr {
        width: 360px;
    }

    .ny_lx .lx_nr .x_x strong {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .ny_lx .lx_bd {
        width: calc(100% - 390px);
    }

    .ny_lx .lx_bd .b_d ul li {
        position: relative;
    }

    .ny_lx .lx_bd .b_d input {
        height: 53px;
        line-height: 52px;
    }

    .ny_lx .lx_bd .b_d textarea {
        line-height: 24px;
    }

    .ny_lx .lx_bd .b_d button {
        width: 120px;
        height: 40px;
        line-height: 40px;
        margin-top: 15px;
    }

    .ny_lx .map {
        height: 300px;
        margin-top: 40px;
    }
}

@media only screen and (max-width:768px) {
    .ny_lx {
        padding: 40px 0;
    }

    .ny_lx .b_t {
        margin-bottom: 15px;
    }

    .ny_lx .b_t h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .ny_lx .lx_nr {
        width: 100%;
        margin-bottom: 35px;
    }

    .ny_lx .lx_nr .x_x ul li {
        margin-top: 20px;
        font-size: 14px;
        line-height: 26px;
    }

    .ny_lx .lx_bd {
        width: 100%;
    }

    .ny_lx .lx_bd .b_d ul li {
        width: 100%;
    }

    .ny_lx .lx_bd .b_d input {
        height: 53px;
        line-height: 52px;
    }

    .ny_lx .lx_bd .b_d textarea {
        line-height: 24px;
    }

    .ny_lx .lx_bd .b_d button {
        width: 120px;
        height: 38px;
        line-height: 38px;
        margin-top: 15px;
    }

    .ny_lx .map {
        height: 200px;
        margin-top: 35px;
    }
}

.xw_xq .b_t {
    font-size: 22px;
    line-height: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.xw_xq .x_x {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 35px;
}

.xw_xq .x_x span {
    margin-right: 20px;
    display: inline-block;
}

.xw_xq .n_r {
    line-height: 30px;
}

.xw_xq .n_r strong {
    font-size: 18px;
    color: #000;
    line-height: 28px;
}

.xw_xq .n_r img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.xw_xq .f_y {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    color: #999;
    line-height: 32px;
}

@media only screen and (max-width:1100px) {
    .xw_xq .b_t {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .xw_xq .x_x {
        margin-bottom: 30px;
    }

    .xw_xq .n_r {
        line-height: 28px;
    }

    .xw_xq .f_y {
        margin-top: 30px;
        padding-top: 25px;
    }
}

@media only screen and (max-width:640px) {
    .xw_xq .b_t {
        font-size: 20px;
        line-height: 30px;
    }

    .xw_xq .x_x {
        margin-bottom: 20px;
    }

    .xw_xq .x_x .y_c {
        margin-top: 5px;
    }

    .xw_xq .x_x .y_c a {
        margin: 0 7px 0 0;
    }
}

.ny_nr {
    width: 100%;
    padding: 50px 0 70px;
    overflow: hidden;
}

.ny_nr .row {
    margin: 0;
    justify-content: space-between;
}

.ny_nr .dq_wz {
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
    margin-bottom: 35px;
    overflow: hidden;
}

.ny_nr .dq_wz .b_t {
    font-size: 22px;
    line-height: 32px;
    font-weight: bold;
    color: #06a;
    padding-left: 15px;
    position: relative;
}

.ny_nr .yc_nr .dq_wz .b_t:after {
    width: 4px;
    height: 22px;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -11px;
    content: "";
    background-color: #06a;
}

.ny_nr .xq_nr .yy_xq {
    margin-bottom: 50px;
}

.ny_nr .xq_nr:last-child {
    margin-bottom: 0;
}

.ny_nr .xq_nr .row {
    margin: 0 -20px;
}

.ny_nr .xq_nr .b_t {
    font-size: 26px;
    font-weight: bold;
    line-height: 40px;
    color: #000;
    margin-bottom: 15px;
}

.ny_nr .xq_nr .l_m {
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.ny_nr .xq_nr .l_m span {
    display: inline-block;
    min-width: 130px;
    height: 46px;
    background-color: #06a;
    padding: 0 20px;
    font-size: 18px;
    line-height: 46px;
    text-align: center;
    color: #fff;
    font-weight: bold;
}

.ny_nr .xq_nr .j_s {
    line-height: 28px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.ny_nr .xq_nr .w_z {
    line-height: 26px;
}

.ny_nr .xq_nr .w_z img {
    max-width: 100%;
}

.ny_nr .xq_nr .w_z strong {
    font-size: 18px;
    line-height: 32px;
    font-weight: bold;
    color: #000;
    display: inline-block;
    margin-bottom: 6px;
}

.ny_nr .xq_nr .w_z ul li {
    margin-bottom: 8px;
}

.ny_nr .xq_nr .w_z ul li span {
    color: #999;
}

.ny_nr .xq_nr .c_z {
    margin-top: 20px;
}

.ny_nr .xq_nr .c_z a {
    display: inline-block;
    margin-right: 20px;
    width: 126px;
    height: 46px;
    border: 1px solid #06a;
    background-color: #06a;
    border-radius: 3px;
    font-size: 15px;
    line-height: 44px;
    color: #fff;
    text-align: center;
}

.ny_nr .xq_nr .c_z a:hover {
    border: 1px solid #06a;
    background-color: #06a;
}

.ny_nr .xq_nr .c_z a.lx_hq {
    background: none;
    color: #06a;
}

.ny_nr .xq_nr .c_z a.lx_hq:hover {
    border: 1px solid #06a;
    background-color: #06a;
    color: #fff;
}

.ny_nr .xq_nr table {
    border: 1px solid #eee;
    background-color: #fff;
    border-collapse: collapse;
}

.ny_nr .xq_nr table tr:nth-child(2n) {
    background-color: #f7f7f7;
}

.ny_nr .xq_nr table th {
    background-color: #06a;
    padding: 15px;
    color: #fff;
    font-weight: normal;
    text-align: center;
}

.ny_nr .xq_nr table td {
    padding: 15px;
    color: #333;
    text-align: center;
}

.ny_nr .xq_nr .cp_dt {
    width: calc(46% - 40px);
    margin: 0 20px;
}

.ny_nr .xq_nr .cp_dt img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    display: block;
}

.ny_nr .xq_nr .cp_cs {
    width: calc(54% - 40px);
    margin: 0 20px;
}

@media only screen and (max-width:1100px) {
    .ny_nr {
        padding: 50px 0 60px;
    }

    .ny_nr .dq_wz {
        margin-bottom: 25px;
    }

    .ny_nr .dq_wz .b_t {
        font-size: 17px;
    }

    .ny_nr .xq_nr .yy_xq {
        margin-bottom: 35px;
    }

    .ny_nr .xq_nr .yy_xq:last-child {
        margin-bottom: 0;
    }

    .ny_nr .xq_nr .row {
        margin: 0 -15px;
    }

    .ny_nr .xq_nr .b_t {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 10px;
    }

    .ny_nr .xq_nr .l_m {
        margin-bottom: 20px;
    }

    .ny_nr .xq_nr .l_m span {
        min-width: 120px;
        height: 40px;
        padding: 0 15px;
        font-size: 17px;
        line-height: 40px;
    }

    .ny_nr .xq_nr .j_s {
        line-height: 26px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .ny_nr .xq_nr .w_z {
        line-height: 24px;
    }

    .ny_nr .xq_nr .w_z strong {
        font-size: 17px;
        line-height: 28px;
    }

    .ny_nr .xq_nr .c_z {
        margin-top: 15px;
    }

    .ny_nr .xq_nr .c_z a {
        margin-right: 15px;
        width: 115px;
        height: 40px;
        font-size: 14px;
        line-height: 38px;
    }

    .ny_nr .xq_nr table td {
        padding: 10px;
    }

    .ny_nr .xq_nr .cp_dt {
        width: calc(50% - 30px);
        margin: 0 15px;
    }

    .ny_nr .xq_nr .cp_dt img {
        width: 100%;
        height: auto;
        border: 1px solid #ddd;
        display: block;
    }

    .ny_nr .xq_nr .cp_cs {
        width: calc(50% - 30px);
        margin: 0 15px;
    }
}

@media only screen and (max-width:768px) {
    .ny_nr {
        padding: 40px 0;
    }

    .ny_nr .xq_nr .cp_dt {
        width: calc(100% - 40px);
        margin: 0 15px 20px;
    }

    .ny_nr .xq_nr .cp_cs {
        width: calc(100% - 40px);
        margin: 0 15px;
    }
}

@media only screen and (max-width:640px) {
    .ny_nr .xq_nr .b_t {
        font-size: 20px;
        line-height: 30px;
    }

    .ny_nr .xq_nr table td:first-child {
        width: 25%;
    }
}