/*全局样式*/
@charset "utf-8";

html {
    overflow-x:hidden;
}
body,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
dl,
dd,
form,
fieldset,
legend,
input,
textarea,
select {
    margin: 0;
    padding: 0
}
body {
    font: 14px "微软雅黑", "Arial Narrow", HELVETICA;
    color: #000;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    min-width: 320px;
}
input:required,
textarea:required {
    outline: 0 none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none !important;
}
a {
    text-decoration: none !important;
    cursor: pointer !important;
    color: #000;
}
a:focus {
    outline: none;
}
ul {
    margin: 0;
}
li {
    list-style: none;
}
.container-fluid {
    max-width: 1310px !important;
}
.tr {
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s
}
.tr2 {
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

header .top{
    background:#232323;
    height:40px;
}
header .top h5{
    height:40px;
    line-height:40px;
    font-size:12px;
    color:#888;
    border-right:1px solid #0b0b0b;
    padding-right:20px;
}
header .top .phone{
    height:40px;
    line-height:40px;
    font-size:12px;
    color:#888;
    background:url(../images/icon1.png) no-repeat 20px center;
    padding-left:50px;
    border-left:1px solid #353535;
}
header .top form{
    margin-top:5px;
}
header .top form input{
    width:250px;
    height:30px;
    border:none;
    padding:0 10px;
}
header .top form button{
    width:45px;
    height:30px;
    background:#0167b7 url(../images/icon2.png) no-repeat center center;
    border:none;
    transition:all .3s;
}
header .top form button:hover{
    background-color:#1580d4;
}

.logo-box .logo{
    height:140px;
    line-height:140px;
    max-width:30%;
}
.logo-box .logo img{
    max-width:100%;
    max-height:90%;
}

/*PC端导航*/
nav {
    width:70%;
    padding-left:100px;
}
nav a {
    color: #000 !important;
    font-size:15px;
}
/*一级导航*/
nav ul li{
    float: left;
    width:16.66%;
    text-align: center;
    position: relative;
    line-height:140px;
}
nav ul li::before,
nav ul li:first-child::after{
    content:"";
    width:1px;
    height:15px;
    border-left:1px dashed #d2d2d2;
    position:absolute;
    top:50%;
    right:0;
    transform:translateY(-50%);
}
nav ul li:first-child::after{
    right:auto;
    left:0;
}
nav ul li a {
    display: block;
    position: relative;
}
nav ul li a::before,
nav ul li a::after {
    content: "";
    width: 60%;
    height: 3px;
    background: #0267b5;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .3s;
}
nav ul li a::after{
   width:21%;
   background:#f08300;
}
nav ul li a:hover,
nav ul li a.active{
    font-weight:bold;
    color:#0267b5 !important;
}
nav ul li a:hover::before,
nav ul li a.active::before,
nav ul li a:hover::after,
nav ul li a.active::after{
    opacity:1;
}
/*二级导航*/
nav ul li ul {
    position: absolute;
    display: none;
    left: 0;
    top: 100%;
    z-index: 100;
    width: 100%;
}
nav ul li ul li{
    float: none;
    width: 100%;
    line-height: 35px;
    background: #fff;
    padding: 0;
}
nav ul li ul li::before,
nav ul li ul li a::before,
nav ul li ul li a::after,
nav ul li ul li::after{
    display:none !important;
}
nav ul li ul li a{
    font-size:14px;
    padding:0 5px;
}
nav ul li:hover ul {
    display:block;
}

/*banner轮播*/
.banner{
    position: relative;
    overflow: hidden;
}
.banner .swiper-slide .img{
    height:450px;
}
.banner .but{
    width:50px;
    height:50px;
    background:#0168b7;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    left:-50px;
    margin-top:-25px;
    transition:all .3s;
}
.banner .swiper-button-next{
    left:auto;
    right:-50px;
}
.banner:hover .swiper-button-prev{
    left:10px;
}
.banner:hover .swiper-button-next{
    right:10px;
}
.banner .swiper-pagination{
    position:absolute;
    width:100%;
    bottom:10px;
    left:0;
}
.banner .swiper-pagination-bullet{
    width:10px;
    height:10px;
    margin:0 5px;
    background-color:#fff;
    opacity:1;
}
.banner .swiper-pagination-bullet-active{
    background-color:#0168b7;
}

.main1{
    padding:60px 0;
    background:url(../images/bg1.jpg) no-repeat center center/cover;
}
.news1{
    display:block;
    background:#fff;
    border:1px solid #e7e7e7;
    text-align:center;
    box-shadow:15px 15px 8px rgba(0, 0, 0, .1);
    padding:30px 30px 50px;
    position: relative;
}
.news1::before{
    content:"";
    width:30px;
    height:2px;
    background:#0168b7;
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
}
.news1 .imgbox{
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.news1 .imgbox img{
    max-height:90%;
    transition:all .3s;
}
.news1 .imgbox .icon2{
    display:none;
}
.news1 h5{
    font-size:20px;
    font-weight:bold;
    color:#000;
    line-height:30px;
    margin:20px 0 15px;
}
.news1 .text{
    font-size:13px;
    color:#555;
    line-height:21px;
    height:42px;
    overflow:auto;
}
.news1:hover{
    border-color:#0168b7;
    box-shadow:15px 15px 8px rgba(1, 104, 183, .1);
}
.news1:hover .imgbox .icon1{
    display:none;
}
.news1:hover .imgbox .icon2{
    display:inline;
}
.news1:hover h5{
    color:#0168b7;
}

.title1{
    margin:60px 0 40px;
    text-align:center;
    overflow: hidden;
}
.title1 h5{
    font-size:30px;
}
.title1 p{
    font-size:12px;
    color:#777;
    font-weight:lighter;
    display:inline-block;
    position: relative;
    margin:10px 0 15px;
}
.title1 p::before,
.title1 p::after{
    content:"";
    width:170px;
    height:2px;
    background:#0168b7;
    position:absolute;
    top:50%;
    right:100%;
    margin-right:20px;
    transform:translateY(-50%);
}
.title1 p::after{
    right:auto;
    left:100%;
    margin:0 0 0 20px;
}
.title1 .text{
    color:#555;
    line-height:1.5;
}


.zxal{
    padding-bottom:50px;
}
.zxal .title1{
    margin-top:0;
}
.zxal-con{
    position:relative;
}
.zxal-con .but{
    width:50px;
    height:50px;
    border:1px solid #777;
    background:url(../images/jt1.png) no-repeat center center;
    left:-100px;
    margin-top:-25px;
}
.zxal-con .swiper-button-next{
    transform:rotateY(180deg);
    left:auto;
    right:-100px;
}
.zxal-con .but:hover{
    background:#0168b7 url(../images/jt1-2.png) no-repeat center center;
    border-color:#0168b7;
}
.zxal .swiper-container{
    padding:0 10px 10px;
    margin:0 -10px;
}
.news2{
    display:block;
    border:1px solid #e7e7e7;
    padding:9px 9px 0;
    box-shadow:5px 5px 10px rgba(0, 0, 0, .1);
}
.news2 .top{
    position: relative;
    overflow: hidden;
}
.news2 .imgbox{
    display:block;
    overflow: hidden;
}
.news2 .mask{
    position:absolute;
    width:100%;
    height:100%;
    top:-100%;
    left:0;
    background:rgba(0, 0, 0, .8);
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    transition:all .3s;
}
.news2 .mask>div{
    width:100%;
    padding:0 20px;
}
.news2 .mask h5{
    font-size:21px;
    line-height:30px;
    color:#fff;
    font-weight:bold;
}
.news2 .mask p{
    font-size:11px;
    color:rgba(255, 255, 255, .3);
    margin-top:5px;
}
.news2 .mask .text{
    font-size:13px;
    line-height:25px;
    color:#c0c0c0;
    height:75px;
    margin:15px 0;
    overflow: hidden;
}
.news2 .mask ul li{
    width:50%;
    border:1px solid #fff;
}
.news2 .mask ul li:first-child{
    border-right:none;
}
.news2 .mask ul li a{
    display:block;
    line-height:36px;
    color:#fff;
    transition:all .3s;
}
.news2 .mask ul li a:hover{
    background:#fff;
    color:#010101;
}
.news2 .text-box{
    display:block;
    padding:20px 40px 20px 10px;
    position:relative;
}
.news2 .text-box::before{
    content:"+";
    width:34px;
    height:34px;
    background:#efefef;
    font-size:16px;
    color:#000;
    text-align:center;
    line-height:34px;
    position:absolute;
    top:50%;
    right:10px;
    transform:translateY(-50%);
    transition:all .3s;
}
.news2 .text-box h5{
    font-size:17px;
    font-weight:bold;
    line-height:25px;
    color:#000;
}
.news2 .text-box p{
    font-size:10px;
    color:#b1b1b1;
    line-height:25px;
}
.news2:hover{
    border-color:#0168b7;
    box-shadow:5px 5px 10px rgba(1, 104, 183, .1);
}
.news2:hover .mask{
    top:0;
}
.news2 .text-box:hover::before{
    background:#f08300;
    color:#fff;
}
.news2 .text-box:hover h5{
    color:#0168b7;
}

/* 维修案例 */
.wxal{
    background:url(../images/bg2.jpg) center center/cover;
    padding-bottom:60px;
}
.wxal .title1 h5{
    color:#fff;
}
.wxal .title1 p{
    color:rgba(255, 255, 255, .3)
}
.wxal .title1 p::before,
.wxal .title1 p::after{
    background:#ff9601;
}
.wxal .title1 .text{
    color:rgba(255, 255, 255, .7)
}
.wxal-con{
    padding:0 20px;
}
.news3{
    display:block;
    background:#fff;
}
.news3 .list{
    width:50%;
    position: relative;
    overflow: hidden;
}
.news3 .text-box{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    padding:0 30px;
    display:flex;
    align-items:center;
}
.news3 .text-box h5{
    color:#000;
    font-size:21px;
    font-weight:bold;
    line-height:30px;
    position:relative;
    padding-bottom:12px;
}
.news3 .text-box h5::before{
    content:"";
    width:18px;
    height:3px;
    background:#0356c4;
    position:absolute;
    bottom:0;
    left:0;
}
.news3 .text-box .text{
    color:#333;
    line-height:24px;
    height:72px;
    overflow: hidden;
    margin:15px 0;
}
.news3 .text-box b{
    display:block;
    width:76px;
    line-height:26px;
    border:1px solid #e3e3e3;
    border-radius:30px;
    text-align:center;
    font-size:13px;
    color:#000;
    font-weight:normal;
    box-shadow:3px 3px 5px rgba(0, 0, 0, .1);
    transition:all .3s;
}
.news3 .text-box b img{
    margin-left:5px;
    position:relative;
    top:-2px;
}
.news3:hover .img{
    transform:scale(1.1);
}
.news3:hover .text-box h5{
    color:#0356c4;
}
.news3:hover .text-box b{
    color:#0356c4;
    border-color:#0356c4;
}
.wxal .swiper-slide:nth-child(2n+2) .news3 .list:first-child{
    float:right !important;
}

/* 新闻资讯 */
.xwzx{
    padding-bottom:50px;
    background-color:#f3f3f5 !important;
    background:url(../images/bg3.jpg) no-repeat 0 center,url(../images/bg4.jpg) no-repeat right center;
}
.xwzx .swiper-container{
    padding:0 10px 10px 10px;
    margin:0 -10px;
}
.news4{
    display:block;
    background:#fff;
    border:1px solid #e7e7e7;
    box-shadow:5px 5px 10px rgba(0, 0, 0, .1);
}
.news4 .top{
    padding:9px 9px 0;
}
.news4 .imgbox{
    overflow: hidden;
}
.news4 .text-box{
    padding:0 20px;
}
.news4 .text-1{
    padding:15px 0;
    border-bottom:1px solid #e7e7e7;
}
.news4 h5{
    font-size:17px;
    font-weight:bold;
    color:#000;
}
.news4 p{
    font-size:12px;
    color:#888;
    margin-top:5px;
}
.news4 .text-2{
    font-size:13px;
    color:#353535;
    line-height:22px;
    height:66px;
    overflow: hidden;
    margin:15px 0;
}
.news4 .bottom{
    color:#000;
    text-align:center;
    line-height:40px;
    border-top:1px solid #e7e7e7;
}
.news4 .bottom img{
    margin-left:2px;
}
.news4 .bottom .icon2{
    display:none;
}
.news4:hover{
    border-color:#0168b7;
    box-shadow:5px 5px 10px rgba(1, 104, 183, .1);
}
.news4:hover .img{
    transform:scale(1.1);
}
.news4:hover h5{
    color:#0168b7;
}
.news4:hover .bottom{
    background:#0168b7;
    color:#fff;
}
.news4:hover .bottom .icon1{
    display:none;
}
.news4:hover .bottom .icon2{
    display:inline;
}

/* 公司简介 */
.gsjj{
    padding-bottom:60px;
}
.gsjj .text-box .title{
    position:relative;
    padding-left:54px;
}
.gsjj .text-box .title::before{
    content:"";
    width:38px;
    height:38px;
    background:#0168b7;
    position:absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
}
.gsjj .text-box .title h5{
    font-size:25px;
    font-weight:bold;
}
.gsjj .text-box .title p{
    font-size:10px;
    color:#777;
    font-weight:lighter;
    margin-top:5px;
}
.gsjj .text-box .text{
    line-height:30px;
    height:180px;
    margin:20px 0;
    overflow: hidden;
}
.gsjj .text-box a{
    display:block;
    width:124px;
    line-height:38px;
    background:#000;
    font-size:14px;
    color:#fff;
    text-align:center;
    transition:all .3s;
}
.gsjj .text-box a:hover{
    background:#0168b7;
    color:#fff;
}
.gsjj .con2{
    padding-right:20px;
}
.gsjj .con2 a{
    display:block;
    position: relative;
}
.gsjj .con2 a::before{
    content:"";
    width:100%;
    height:100%;
    border:3px solid #0168b7;
    position:absolute;
    top:20px;
    left:20px;
}
.gsjj .con2 a .imgbox{
    overflow: hidden;
    position:relative;
}
.gsjj .con2 a:hover .img{
    transform:scale(1.1);
}

/* 在线留言 */
.zxly{
    background:url(../images/bg5.jpg) center center/cover;
    padding:60px 0;
}
.zxly .title{
    margin-bottom:30px;
}
.zxly .title h5{
    font-size:25px;
    font-weight:bold;
    color:#fff;
}
.zxly .title p{
    font-size:12px;
    margin-top:5px;
    font-weight:lighter;
    color:#fff;
}
.zxly form ul{
    margin:0 -3px;
}
.zxly form ul li{
    width:25%;
    padding:0 3px;
}
.zxly form input{
    width:100%;
    height:55px;
    background:#fff;
    padding:0 45px 0 20px;
    border:none;
}
.zxly form button{
    width:100%;
    height:55px;
    background:#f08300;
    border:none;
    color:#fff;
    font-size:16px;
    font-weight:bold;
    transition:all .3s;
}
.zxly form button img{
    margin-left:20px;
}
.zxly form button:hover{
    background:#bd6f12;
}

.news5 {
    display: block;
    border: 1px solid #e9e9e9;
    padding: 18px;
    background: #fff;
    margin-bottom: 30px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .1);
}
.news5 .imgbox {
    width: 245px;
    height: 209px;
    overflow: hidden;
}
.news5 .imgbox .img {
    width: 100%;
    height: 100%;
}
.news5 .text_box {
    padding: 10px 0 0 266px;
}
.news5 h5 {
    font-size: 18px;
    font-weight: bold;
    color: #2a2a2a;
    line-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-height: initial
}
.news5 p {
    color: #a8a8a8;
    margin-top: 10px;
}
.news5 .text {
    line-height: 24px;
    color: #797979;
    height: 72px;
    overflow: hidden;
    margin: 15px 0;
}
.news5 b {
    display: block;
    width: 93px;
    line-height: 29px;
    border: 1px solid #d4d4d4;
    color: #333;
    border-radius: 30px;
    font-weight: normal;
    text-align: center;
}
.news5 b img{
    position:relative;
    top:-1.5px;
}
.news5 b img.img-2{
    display:none;
}
.news5:hover .img{
    transform:scale(1.1);
}
.news5:hover h5{
    color:#f08300;
}
.news5:hover b{
    background:#f08300;
    border-color:#f08300;
    color:#fff;
}
.news5:hover b .img-1{
    display:none;
}
.news5:hover b .img-2{
    display:inline;
}

/* footer */
footer {
    background: #f5f5f5;
}
footer ul {
    padding: 50px 0;
    margin: 0 -20px;
}
footer ul li {
    padding: 0 20px;
}
footer ul li:nth-child(1) {
    width: 50%;
}
footer ul li:nth-child(1) dl{
    width: 25%;
}
footer ul li:nth-child(1) dl dt {
    color: #000;
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
    font-size: 16px;
}
footer ul li:nth-child(1) dl dt:before {
    content: "";
    width: 20px;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity:.2;
}
footer ul li:nth-child(1) dl dd a {
    font-size: 12px;
    color: rgba(0, 0, 0, .5);
    line-height: 28px;
    transition: all .3s;
}
footer ul li:nth-child(1) dl dd a:hover {
    color: #eb9112;
}
footer ul li:nth-child(2) {
    width: 30%;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    text-align: center
}
footer ul li:nth-child(2) .con {
    display: inline-block;
    text-align: left;
}
footer ul li:nth-child(2) h4 {
    font-size: 34px;
    font-family:"Impact";
    font-weight: bold;
    color: #000;
}
footer ul li:nth-child(2) h5 {
    font-size: 12px;
    color: #000;
    margin-top: 20px;
}
footer ul li:nth-child(2) p {
    font-size: 11px;
    color: rgba(0, 0, 0, .5);
}
footer ul li:nth-child(2) .text {
    line-height: 24px;
    color: rgba(0, 0, 0, .5);
    margin-top: 10px;
}
footer ul li:nth-child(3) {
    width: 20%;
    text-align: right;
}
footer ul li:nth-child(3) .weixin {
    display: inline-block;
    text-align: left;
}
footer ul li:nth-child(3) .weixin img {
    width: 140px;
    height: 140px;
    border: 5px solid #ccc;
}
footer ul li:nth-child(3) .weixin p {
    color: #000;
    margin-top: 5px;
}
footer .bottom {
    background: #0168b7;
    padding: 20px 0;
    text-align: center;
    color: #fff;
}
footer .bottom a{
    color: #fff;
    transition: all .3s;
}
footer .bottom a:hover {
    color: #eb9112 !important;
}

.zxly-ny.zxly{
    background:none;
    padding:0 !important;
}
.zxly-ny form ul li{
    width:100%;
    margin-bottom:10px;
}
.zxly-ny form input{
    border:1px solid #ccc;
}

/*内页左侧*/
.neiye {
    padding: 30px 0;
}

.neiye .title4 {
    background: #0168b7;
    position: relative;
    line-height: 45px;
    border-top:5px solid #004286;
}

.neiye .title4 h5 {
    line-height: 80px;
    padding-left: 26px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.neiye .title4 h5 .span2 {
    font-size: 13px;
    margin-left: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: normal;
}

.neiye .title4 .span3 {
    position: absolute;
    top: 0;
    line-height: 45px;
    right: 15px;
    color: #fff;
    font-size: 18px;
}

.neiye .title4 i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.neiye .nav_box {
    margin-bottom: 17px;
}

.neiye .nav_box .nav1 {
    padding: 3px 0;
}

.neiye .nav_box .nav2 {
    display: block;
    line-height: 44px;
    background: #fff;
    border: 1px solid #e5e5e5;
    margin-bottom: 2px;
    padding: 1px;
    transition:all .3s;
}

.neiye .nav_box .nav2 .con {
    background: #e5e5e5;
    padding: 0 5px 0 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition:all .3s;
}

.neiye .nav_box .nav2 .span4 {
    width: 16px;
    height: 16px;
    line-height: 18px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    font-size: 10px;
    margin-right: 20px;
    transition: all .3s;
    background: #fff;
    color: #000;
}

.neiye .nav_box .nav2:hover,
.neiye .nav_box .nav2.active {
    border-color: #f08300;
}

.neiye .nav_box .nav2:hover .con,
.neiye .nav_box .nav2.active .con {
    color: #fff;
    background: #f08300;
}
.neiye .nav_box .nav2:hover .span4,
.neiye .nav_box .nav2.active .span4 {
    background: #fff;
    color: #000;
}
.neiye .nav1 ul {
    display: none;
    padding: 0 30px;
}
.neiye .nav1 ul.ul1 {
    display: block;
}
.neiye .nav1 ul li a {
    display: block;
    line-height: 40px;
    color: #444;
    position: relative;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}
.neiye .nav1 ul li a .span5 {
    margin-right: 5px;
    display: inline-block;
    width: 8px;
    height: 8px;
    position: relative;
}
.neiye .nav1 ul li a .span5:before {
    content: "-";
    position: absolute;
    top: -3px;
    left: 0;
    line-height: 8px;
    font-size: 20px;
}
.neiye .nav1 ul li a:hover,
.neiye .nav1 ul li a.active {
    color: #db9d3f;
}
.neiye .nav1 ul li a:hover .span5:before,
.neiye .nav1 ul li a.active .span5:before {
    content: "+";
    left: -2px;
}
.neiye .lxfs .title4{
    border:none;
}
.neiye .lxfs .con {
    border: 1px solid #e5e5e5;
    margin-top: 3px;
}
.neiye .lxfs .phone {
    padding: 20px;
    background: url(../images/icon3-2.png) no-repeat 20px center;
    padding-left: 60px;
    border-bottom: 1px solid #e5e5e5;
}
.neiye .lxfs .phone h5 {
    font-size: 24px;
    font-weight: bold;
    color: #0168b7;
}
.neiye .lxfs .text {
    padding: 15px;
    line-height: 28px;
    color:#464646;
}
.neiye .lxfs .text b{
    font-size:15px;
    color:#000;
}
.neiye .lxfs .weixin {
    border: 1px solid #d9d9d9;
    width: 130px;
    height: 130px;
    background: #fff;
    padding: 10px;
    margin: 20px auto 0;
}
.neiye .lxfs .weixin img {
    width: 100%;
    height: 100%;
}
.neiye .title5 {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.neiye .title5 h5 {
    font-size: 18px;
    color: #333;
    font-weight: bold;
}
.neiye .title5 p {
    font-size: 13px;
    color: #777;
}
.neiye .title5 p a {
    color: #777;
}
.neiye .title5 p a:hover {
    color: #f08300;
}
.neiye .title5 p span {
    color: #f08300;
}

.cp-ny{
    padding:0 5px;
}
.cp-ny .col-md-4{
    padding:0;
}
.cp-ny .news2{
    margin:0 10px 20px;
}


/*详情页*/
.xqy .title {
    text-align: center;
    margin-bottom: 20px;
}
.xqy .title h5 {
    font-size: 16px;
    font-weight: bold;
}
.xqy .title p {
    color: #999;
    text-align: center;
    line-height: 40px;
    border-bottom: 1px dashed #999;
}
.xqy .con {
    line-height: 25px;
}
.xqy .con img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

/*微信弹窗*/
.weixin_popup {
    position: fixed;
    top: 50%;
    left: 50%;
    border: 1px solid #ccc;
    padding: 30px 30px 0 30px;
    text-align: center;
    background: #fff;
    transform: scale(0);
    margin: -116px 0 0 -106px;
    z-index: 5000;
}
.weixin_popup.active {
    transform: scale(1);
    transition: transform .3s;
}
.weixin_popup i {
    color: #999;
    position: absolute;
    top: 5px;
    right: 5px;
    transform: rotate(45deg);
    font-size: 20px;
    cursor: pointer;
}
.weixin_popup i:hover {
    color: red;
}
.weixin_popup img {
    width: 150px;
    height: 150px;
}
.weixin_popup p {
    line-height: 30px;
}


/* 右侧悬浮 */
.suspend_nav{
    background: #0168b7;
    width: 52px;
    position: fixed;
    bottom:50px;
    right: 10px;
    text-align: center;
    z-index: 5000;
    border: 1px solid rgba(255, 255, 255, 0.7);
}
.suspend_nav .list {
    height: 50px;
    color: #fff;
    padding-top: 6px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.suspend_nav .list:last-child {
    border: none;
}
.suspend_nav .list:before {
    content: "";
    width: 100%;
    height: 100%;
    top: -50px;
    right: 0;
    background: #064473;
    position: absolute;
    transform: rotate(0);
    transition: all .3s;
}
.suspend_nav .list i {
    display: block;
    transition: all .3s;
    position: relative;
    z-index: 2;
}
.suspend_nav .list p {
    position: relative;
    z-index: 2;
}
.suspend_nav .top {
    padding: 0;
    line-height: 50px;
    height: 0;
    overflow: hidden;
    opacity: 0;
}
.suspend_nav .top:after {
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    bottom: 0;
    left: 0;
}
.suspend_nav .top.active {
    height: 50px;
    opacity: 1;
}
.suspend_nav .top i {
    font-size: 25px;
}
.suspend_nav .on-off {
    padding: 0;
    line-height: 50px;
}
.suspend_nav .on-off.active i {
    transform: rotate(135deg);
}
.suspend_nav .list:hover {
    color: #fff;
}
.suspend_nav .list:hover:before {
    top: 0;
    transform: rotate(90deg);
}
.suspend_nav ul li {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.suspend_nav ul li .list {
    border: none;
}
.suspend_nav ul li .weixin {
    position: absolute;
    right: 65px;
    bottom: 0;
    border: 1px solid #0168b7;
    transform: scale(0);
    transform-origin: 100% 100%;
    transition: all .3s;
    padding-bottom: 10px;
    background: #fff;
    padding: 5px;
}
.suspend_nav ul li .weixin:before {
    content: "";
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid #0168b7;
    position: absolute;
    bottom: 0;
    left: 100%;
    transition: all .5s;
}
.suspend_nav ul li .weixin img {
    width: 150px;
    height: 150px;
}
.suspend_nav ul li:hover .weixin {
    transform: scale(1);
}
.suspend_nav ul li:hover .weixin:before {
    bottom: 18px;
}
.suspend_nav ul li .popup {
    position: absolute;
    min-width: 200px;
    min-height: 200%;
    top: 0;
    right: 100%;
    border: 1px solid #0168b7;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0168b7;
    color: #fff;
    visibility: hidden;
    transition: all .3s;
    opacity: 0;
    padding: 0 15px;
}
.suspend_nav ul li .popup:before {
    content: "";
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 0 solid #0168b7;
    position: absolute;
    top: 0;
    left: 100%;
    transition: top .5s;
}
.suspend_nav ul li .popup p {
    font-size: 16px;
}
.suspend_nav ul li .popup h5 {
    font-size: 20px;
    margin-top: 5px;
}
.suspend_nav ul li .popup a {
    font-size: 20px;
    color: #fff;
    display: inline-block;
    margin-top: 5px;
}
.suspend_nav ul li:hover .popup {
    visibility: visible;
    right: 65px;
    opacity: 1;
}
.suspend_nav ul li:hover .popup:before {
    top: 18px;
    border-left-width: 10px;
}


/*移动端底部热点*/
.bottom_link {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background: #0168b7;
    text-align: center;
    z-index: 5000;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.bottom_link ul li {
    width: 33.33%;
    height: 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.bottom_link ul li:last-child {
    border: none;
}

.bottom_link ul li a {
    display: block;
    color: #fff;
    font-size: 16px;
    padding-top: 5px;
    position: relative;
}

.bottom_link ul li a i {
    display: block;
    height: 20px;
}

.bottom_link ul li:last-child a i {
    font-size: 20px;
    position: relative;
    top: -1px;
}


/*媒体查询开始*/
@media (max-width:1480px){
    .zxal-con .but{
        display:none;
    }
}
@media (max-width:1440px){
    .xwzx{
        background:#f3f3f5;
    }
}
@media (max-width:1199px){
    .news1{
        padding:20px 10px 40px;
    }
    .news1::before{
        bottom:20px;
    }
    .main1 .row{
        padding:0 5px;
    }
    .main1 .row .col-md-3{
        padding:0 10px;
    }
    .wxal-con{
        padding:0 10px;
    }
}
@media (max-width:991px){
    header .sjdnav {
        display: none;
        width: 150px;
        height: auto;
        position: absolute;
        right: 0;
        top: 100px;
        z-index: 2000;
    }
    header .sjdnav ul {
        padding: 0;
        margin: 0;
    }
    header .sjdnav li {
        display: block;
        padding: 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        background: #0168b7;
    }
    header .sjdnav li:last-child {
        border: none;
    }
    header .sjdnav li a {
        display: block;
        color: #fff;
        line-height: 40px;
        font-size: 16px;
    }
    header .ydd_btn {
        width: 40px;
        cursor: pointer;
        position: absolute;
        z-index: 2000;
        top: 35px;
        right: 15px;
    }
    header .ydd_btn span {
        display: block;
        width: 100%;
        height: 8px;
        background: #0168b7;
    }
    header .ydd_btn span.span02 {
        margin: 5px 0;
    }
    header .ydd_btn.click span {
        background: #0168b7;
    }
    header .ydd_btn.click span.span01 {
        transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        position: relative;
        top: 8px;
        margin-top: 0px;
    }
    header .ydd_btn.click span.span02 {
        margin: 0.5px 0;
    }
    header .ydd_btn.click span.span03 {
        transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        position: relative;
        top: -8px;
        margin-top: 0px;
    }
    header .ydd_btn.click span.span02 {
        width: 0;
        filter: alpha(opacity=0);
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
    }
    .neiye .title4 {
        border:none;
    }
    .neiye .title4 .span1 {
        display: none;
    }
    .neiye .title4 h5 {
        padding-left: 15px;
        line-height: 45px;
    }
    .neiye .title4 h5 .span2 {
        display: none;
    }
    .neiye .nav_box .nav2 {
        text-align: center;
        line-height: 38px;
    }
    .neiye .nav_box .nav2 .con {
        padding: 0 5px;
    }
    .neiye .nav_box .nav2 .span4 {
        display: none;
    }
    .neiye .nav1 ul.ul1 {
        display: none;
    }
    .neiye .nav1 ul li a {
        text-align: center;
        padding: 0 5px;
    }
    .neiye .nav1 ul li a .span5 {
        display: none;
    }
    .neiye .nav_box {
        margin-bottom: 20px;
    }
    .neiye {
        padding: 20px 0;
    }
    .logo-box{
        height:auto;
    }
    .logo-box .logo{
        height:100px;
        line-height:100px;
        max-width:60%;
    }
    footer ul {
        padding: 30px 0;
    }
    footer ul li {
        width: 100% !important;
    }
    footer ul li:nth-child(1) {
        margin: 30px 0;
        text-align: center;
    }
    footer ul li:nth-child(1) dl dt:before {
        left: 50%;
        margin-left: -10px;
    }
    footer ul li:nth-child(3) {
        text-align: center;
        margin-top: 20px;
    }
    footer ul li:nth-child(3) .weixin {
        text-align: center;
    }
    footer ul li:nth-child(2) .con {
        text-align: center;
    }
    .news3 .text-box{
        padding:0 10px;
    }
    .news3 .text-box .text{
        height:48px;
        margin:10px 0;
    }
    .gsjj .text-box .text{
        height:auto;
        max-height:180px;
    }
    .gsjj .con2{
        margin-top:20px;
        padding-right:0;
    }
    .gsjj .con2 a::before{
        display:none;
    }
}

@media (max-width:767px) {
    body {
        padding-bottom: 50px;
    }
    header .sjdnav {
        top: 80px;
    }
    header .ydd_btn {
        width: 35px;
        top: 30px;
    }
    header .ydd_btn span {
        height: 4px;
    }
    header .ydd_btn span.span02 {
        margin: 3px 0;
    }
    header .ydd_btn.click span.span02 {
        margin: 4px 0;
    }
    .news5 {
        padding:5px;
        margin-bottom:15px;
    }
    .news5 .imgbox{
        width: 120px;
        height: 90px;
    }
    .news5 .text_box {
        padding: 0 0 0 130px;
    }
    .news5 h5 {
        font-size: 16px;
    }
    .news5 p {
        margin-top: 0;
        font-size: 12px;
    }
    .news5 .text {
        line-height: 20px;
        height: 40px;
        margin: 5px 0;
        font-size: 13px;
    }
    .news5 b{
        display:none;
    }
    .cp-ny{
        padding:0 10px;
    }
    .logo-box .logo{
        height:80px;
        line-height:80px;
    }
    footer ul li:nth-child(2) h4 {
        font-size: 25px;
    }
    .banner .swiper-pagination{
        bottom:3px;
    }
    .banner .swiper-pagination-bullet{
        width:7px;
        height:7px;
        margin:0 3px;
    }
    .main1{
        padding:30px 0 20px;
    }
    .main1 .row{
        padding:0 10px;
    }
    .main1 .row .col-md-3{
        padding:0 5px;
    }
    .news1{
        margin-bottom:10px;
        padding: 10px 5px 30px;
        box-shadow:none;
    }
    .news1 h5{
        font-size:16px;
        line-height:25px;
        margin:10px 0;
    }
    .news1::before{
        bottom:15px;
    }
    .news1 .imgbox{
        height:50px;
    }
    .title1{
        margin:30px 0;
    }
    .title1 h5{
        font-size:20px;
    }
    .title1 p{
        margin-bottom:10px;
    }
    .news2 .mask{
        display:none;
    }
    .news2 .text-box{
        padding:10px 40px 10px 0;
    }
    .news2 .text-box h5{
        font-size:16px;
    }
    .zxal{
        padding-bottom:20px;
    }
    .news3 .text-box h5{
        font-size:16px;
        line-height:25px;
    }
    .wxal{
        padding-bottom:30px;
    }
    .xwzx{
        padding-bottom:20px;
    }
    .news4{
        box-shadow:none;
    }
    .news4 .text-box{
        padding:0;
    }
    .news4 h5{
        font-size:16px;
    }
    .news4 .text-1{
        padding:10px 0;
    }
    .news4 .text-2{
        margin:10px 0;
        height:44px;
    }
    .news4 .top{
        padding:5px 5px 0;
    }
    .news4 .bottom{
        line-height:35px;
    }
    .gsjj .text-box .title h5{
        font-size:18px;
    }
    .gsjj .text-box .title p{
        font-size:9px;
    }
    .gsjj .text-box .text{
        margin:10px 0;
        line-height:25px;
        max-height:150px;
    }
    .gsjj{
        padding-bottom:30px;
    }
    .zxly{
        padding:30px 0 20px;
    }
    .zxly form ul li{
        width:100%;
        margin-bottom:10px;
    }
    .zxly form input{
        height:40px;
        padding:0 10px;
    }
    .zxly form button{
        height:40px;
    }
    .zxly .title h5{
        font-size:20px;
    }
    .cp-ny .news2{
        margin:0 5px 10px;
    }
}

@media (max-width:479px) {
    header .ydd_btn {
        width: 25px;
        top: 21px;
    }
    header .sjdnav {
        top: 60px;
    }
    .logo-box .logo{
        height:60px;
        line-height:60px;
    }
    .news2{
        padding:5px 5px 0;
    }
    .news2 .text-box{
        padding-right:0;
    }
    .news2 .text-box::before{
        display:none;
    }
    .news3 .text-box .text{
        font-size:12px;
        line-height:18px;
        height:36px;
        margin:5px 0;
    }
    .news3 .text-box h5{
        padding-bottom:5px;
    }
    .news3 .text-box b{
        line-height:25px;
        font-size:12px;
    }
    .gsjj .text-box .title{
        padding:0;
    }
    .gsjj .text-box .title::before{
        display:none;
    }
}