@charset "utf-8";
.m-btn{
    display: none;
    position: absolute;
    cursor: pointer;
    right:20px;
    top:10px;
    z-index: 2;
}
.m-btn span{
    display: block;
    width:20px;
    height:2px;
    left: 10px;
    top: 15px;
    background:#3b3b3b;
    position: relative;
    -webkit-transition: all 200ms cubic-bezier(.4,0,0,1);
    -o-transition: all 200ms cubic-bezier(.4,0,0,1);
	transition: all 200ms cubic-bezier(.4,0,0,1);
}
.m-btn span::before, .m-btn span::after{
    content:'';
    display: block;
    height:2px;
    width:20px;
    background:#3b3b3b;
    position: absolute;
	left: 0;
    -webkit-transition: all 200ms cubic-bezier(.4,0,0,1);
    -o-transition: all 200ms cubic-bezier(.4,0,0,1);
	transition: all 200ms cubic-bezier(.4,0,0,1);
}
.m-btn span:before {
	top: -8px;
}
.m-btn span:after {
	bottom: -8px;
}
.m-btn.active span {
	background: transparent;
}
.m-btn.active span:before {
    transform: rotate(-48deg) translate(-6px, 5px);
    -webkit-transform: rotate(-48deg) translate(-6px, 5px);
    -o-transform: rotate(-48deg) translate(-6px, 5px);
	width: 24px;
}
.m-btn.active span:after {
    transform: rotate(48deg) translate(-6px, -5px);
    -webkit-transform: rotate(48deg) translate(-6px, -5px);
    -o-transform: rotate(48deg) translate(-6px, -5px);
	width: 24px;
}
@media (max-width: 1199px){
    .ny-header .nav>ul>li{
        padding-left:0;
    }
    .ny-header .language{
        margin:0;
    }
}
@media (max-width: 992px){
    .m-btn{
        display: block;
        width: 30px;
        height: 30px;
    }
}
.main{
    background: #fff;
    padding: 40px 0px;
}
.ny-comm{
    position: relative;
}
.ny-comm .comm-left{
    width: 20%;
    padding: 0px 0px;
    float: left;
}
.ny-comm .comm-right{
    width: 80%;
    padding: 0px 0px 40px 40px;
    background: #fff;
    float: right;
}
.ny-comm .comm-right .product-list{
    width: 100%;
    transition: all 0.3s;
    background-color: #eae8e8;
    margin-bottom: 30px;
}
.ny-comm .comm-right .product-list:hover{
    background-color: #0079c3;
}
.ny-comm .comm-right .product-list img{
    background-color: transparent;
}
.ny-comm .ny-title{
   font-size: 22px;
   padding: 15px 0px;
   font-weight: bold;
   text-transform: uppercase;
}
.ny-comm .ny-title span{
    display: block;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
}
@media(max-width:767px){
    .main {
        padding: 15px 0px;
    }
    .ny-comm .ny-title {
        font-size: 18px;
        padding: 0px 0px;
    }
}
.ny-comm .ny-title ul{
    float: right;
    font-size: 14px;
    font-weight: normal;
}
.ny-comm .ny-title ul li {
    position: relative;
    display: inline-block;
    padding: 0 5px;
    font-size: 14px;
}
.ny-comm .ny-title ul li a{
    color:#76787a;
}
/* 内页banner */
.ny-ban{
    position: relative;
    overflow: hidden;
    min-height: 80px;
}
.ny-ban img{
    width:100%;
}
.ny-ban .ny-title{
    width:100%;
    position: absolute;
    bottom:12%;
    color:#fff;
}
.ny-ban .ny-title h5.cntitle{
    font-size: 40px;
    font-weight: bolder;
    line-height: 1;
}
.ny-ban .ny-title h5.entitle{
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bolder;
}
.ny-ban .ny-title p{
    font-size: 16px;
}
@media(max-width:991px){
    .ny-ban .ny-title h5.cntitle{
        font-size: 22px;
    }
    .ny-ban .ny-title h5.entitle {
        font-size: 18px;
    }
}
/* 当前位置 */
.position{
    position: relative;
    padding: 12px 0px;
    font-size: 16px;
    line-height: 45px;
    border-bottom: 1px solid #e1e1e1;
}
.position span {
    font-weight: bold;
    color: #e60012;
}
.position ul{
    display: flex;
    color: #4c4c4c;
    font-size: 14px;
}
.position ul li{
    background: url(../img/home-icon.png) no-repeat left center;
    padding-left: 30px;
}
.position ul li a:hover{
    font-weight: bold;
}
.position li:last-child a{
    color:#0059c9;
    font-weight: bold;
}
@media (max-width:992px) {
    .position {
        padding: 0;
    }
}
/* 搜索 */
.search .search-box form{
    width:100%;
    height:100%;
}
.search .search-box form input{
    width:100%;
    height: 35px;
    line-height: 35px;
    border:0px solid #ddd;
    background: #f2f2f2;
    padding:0px 20px;
    border-radius: 25px;
}
.search .search-box form input:-moz-placeholder {
    font-size: 14px;
}
.search .search-box form input:-ms-input-placeholder{
    font-size: 14px;
}
.search .search-box form input::-webkit-input-placeholder{
    font-size: 14px;
}
.search .search-box form button{
    background:transparent;
    position: absolute;
    right: 10px;
    top: 0px;
    border:none;
    width:60px;
    color:#363433;
    height:100%;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.search .search-box form button i{
    font-size: 20px;
}
@media (max-width:992px){
    .search{
        height:60px;
    }
    .search .keywords{
        overflow: hidden;
        text-overflow:ellipsis;
        line-height: 60px;
    }
}
/*关于我们*/
.ny-about{
    line-height: 30px;
    margin-bottom: 30px;
}
.ny-about .about-con{
    background: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 2.0;
    padding: 10px 0px;
    display: flex;
    align-items: stretch;
    margin-top: 30px;
}
.about-img{
    width: 55%;
    float: left;
}
.about-img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-text{
    width: 45%;
    float: right;
    background: #0079c3;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.about-title img{
    float: left;
}
.about-title h4{
    color: #fff;
    font-size: 27px;
    font-weight: bold;
}
.about-title p{
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
}
.about-tel{
    margin-top: 20px;
    padding-left: 40px;
    background: url("../img/f-tel.png") no-repeat center left;
}
.about-tel p{
    color: #fff;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 7px;
}
.about-tel strong{
    color: #fff;
    font-size: 26px;
    display: block;
    line-height: 25px;
}
.about-neirong{
    padding-top: 26px;
}
.about-neirong p{
    color: #4c4c4c;
    font-size: 14px;
    line-height: 26px;
}
@media (max-width:992px) {
    .about-tel p {
        font-size: 12px;
        line-height: 1;
        letter-spacing: 4px;
    }
    .about-tel strong {
        font-size: 20px;
        line-height: 1;
    }
}
/* 生产现场 */
.about-case{
    background: #f7f7f7;
    padding: 70px 0;
}
.about-case .ny-title{
    margin-bottom: 30px;
}
.about-case .partner-list .partner-img{
    overflow: hidden;
    height: 25rem;
}
.about-case .partner-list .partner-img img{
    padding: 0;
    transition: all 0.3s;
}
.about-case .partner-list:hover .partner-img img{
    transform: scale(1.04);
    -webkit-transform: scale(1.04);
}
.about-case .partner-list .partner-con{
    background: none;
    background-color: #fff;
}
@media(max-width:991px){
    .ny-about .about-con{
       padding: 0px 0px;
       font-size: 14px;
    }
    .about-img,.about-text{
        width: 100%;
    }
    .about-text{
        padding: 30px 0;
    }
    .about-title {
        width: 80%;
    }
    .about-tel {
        margin-top: 10px;
    }
}
/* 荣誉证书 */
.about-honor{
    background: #f6f6f6;
}
.ny-honor .honor-list img{
    max-width: 100%;
}
.ny-honor .honor-list {
    text-align: center;
}
.ny-honor .honor-list a{
    display: block;
    padding: 8px;
    border: 1px solid #ddd;
    background: #fff;
}
.ny-honor .honor-list p{
    line-height: 1.4;
    overflow: hidden;
    padding: 15px;
    font-size: 14px;
}
/*企业文化*/
.culture-list{
    overflow: hidden;
    background: #f5f5f5;
    margin: 0 0 20px;
}
.culture-box .culture-img img{
    width: 100%;
}
.culture-box .culture-con{
    padding: 5%;
}
.culture-box h3{
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bolder;
}
.culture-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}
.culture-box .culture-zhan{
    counter-reset: number 0;
}
.culture-box .culture-zhan li{
    position: relative;
    margin-bottom: 1px;
    line-height: 1.6;
    font-size: 16px;
    padding: 10px 15px 10px 30px;
}
.culture-box .culture-zhan li:before {
    counter-increment: number 1;
    content: "0"counter(number);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 100%;
    padding-top: 10px;
    vertical-align: middle;
    display: block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
}
/*内页案例*/
.ny-case-list {
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    background: #f6f6f6;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}
.ny-case-list .ny-case-img{
    overflow: hidden;
}
.ny-case-list .ny-case-img img{
    width:100%;
    transition: all 0.3s;
}
.ny-case .ny-case-list:hover .ny-case-img img{
    transform: scale(1.04);
    -webkit-transform: scale(1.04);
}
.ny-case-list p{
    line-height: 48px;
    font-size: 14px;
    color: #595959;
    text-align: center;
}
.modal-content{
    width: 60%;
    left: 25%;
    background: transparent;
    box-shadow: none;
    border: 0;
}
.modal-content .modal-body img{
    width: 100%;
}
.modal.in .modal-dialog {
    top: 20%;
}
@media (max-width:991px){
    .ny-case .ny-case-list {
        margin: 10px 0px;
    }
    .ny-case-list p {
        line-height: 34px;
    }
    .modal-content{
        width: 80%;
        left: 10%;
    }
    .modal.in .modal-dialog {
        top: 30%;
    }
}
/*联系信息*/
.ny-comm .comm-left .cstlayer{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/cptel.jpg) no-repeat 0 0;
    background-size: 100% 100%;
    padding: 25px 0;
}
.ny-comm .comm-left .cstlayer div{
    background: url("../img/f-tel.png") no-repeat 0 center;
}
.ny-comm .comm-left strong{
    color: #fff;
    font-size: 22px;
    display: block;
    padding-left: 40px;
}
.ny-comm .comm-left p{
    color: #fff;
    font-size: 14px;
    padding-left: 40px;
}
.ny-comm .comm-left .comm-more{
  width: 100%;
  height: auto;
}
.ny-comm .comm-left .comm-more p{
  color: #555;
  padding: 13px 0;
  border-bottom: 1px dashed #e1e1e1;
}
.ny-comm .comm-left .ny-nav{
    margin-bottom: 25px;
}
.ny-comm .comm-left .ny-nav li a{
    background: #f0f0f0;
    padding: 10px 30px 10px 25px;
    font-size: 18px;
    display: block;
    margin-bottom: 2px;
    transition: all 0.6s;
}
.ny-comm .comm-left .ny-nav li a i{
    font-size: 20px;
    float: right;
    margin-top: 5px;
}
.ny-comm .comm-left .ny-nav li.active a,.ny-comm .comm-left .ny-nav li a:hover{
    color:#fff;
    background: #e60012;
}
.ny-comm .comm-left ul.subnav{
    padding:0px 0px;
    display: none;
}
.ny-comm .comm-left .ny-nav li.active ul.subnav{
    display: block;
}
.ny-comm .comm-left .ny-nav li.active ul.subnav li a{
    display: block;
    padding: 8px 0px 8px 6px;
    line-height: 1.3;
    font-size: 14px;
    color: #1c1c1c;
    background: #fff;
    margin-bottom: 0px;
}
.ny-comm .comm-left ul.subnav li{
    display: block;
    position: relative;
    margin: 0px 0px;
    border-bottom:1px solid #f0f0f0;
}
.ny-comm .comm-left ul.subnav li:after{
    display: block;
   content: "";
   width: 20px;
   height: 1px;
   margin-bottom: -1px;
}
.ny-comm .comm-left ul.subnav li span{
    display: block;
}
.ny-comm .comm-left .ny-nav li.active ul.subnav li a:hover,.ny-comm .comm-left .ny-nav li.active ul.subnav li.subactive a{
    color: #e60012;
}
@media (max-width:1280px) {
    .ny-comm .comm-left strong {
        font-size: 18px;
    }
}
/*认证*/
.ny-comm .comm-left .left-cer{
    margin-bottom: 10px;
}
.ny-comm .comm-left .left-contact {
    margin-bottom: 40px;
    background: #f9f9f9;
}
.ny-comm .comm-left .left-contact ul{
    padding: 15px;
}
.ny-comm .comm-left .left-contact ul li{
    display: block;
    position: relative;
    line-height: 1.4;
    padding: 6px 0px 6px 2px;
    border-bottom:1px solid #f0f0f0;
}
/*产品列表*/
.product-con{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* 缩略图放大镜 */
#MagnifierWrap2 {
    position: relative;
}
.MagnifierMain {
    position: relative;
    width: 100%;
    font-size: 0;
    text-align: center;
    border: 1px solid #e6e6e6;
}
span.spe_leftBtn, span.spe_rightBtn {
    position: absolute;
    bottom: 0px;
    display: block;
    width: 20px;
    height: 9rem;
    line-height: 9rem;
    text-align: center;
    font-size: 21px;
    font-weight: bold;
    color: #ddd;
    cursor: default;
    background-color: #f9f9f9;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}
span.spe_leftBtn {
    left: 0;
    background: url(../img/p-detail-left.png) no-repeat center;
}
span.spe_rightBtn {
    right: 0;
    background: url(../img/p-detail-right.png) no-repeat center;
}
.spec-items {
    position: relative;
    height: 10rem;
    overflow: hidden;
    padding: 20px 35px 0;
}
.spec-items ul {
    width: 500%;
    position: absolute;
    top: 20px;
    left: 35px;
}
.spec-items li {
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    float: left;
    overflow: hidden;
    margin-right: 5px;
    border: 2px solid #fff;
    font-size: 0;
    cursor: pointer;
}
.spec-items li.on {
    border: 2px solid #268ae7;
}

.ny-product .product-con{
    flex-direction: column;
    align-items: flex-start;
}
.product-con .p-ewm{
    padding-left: 40px;
}
.product-con .title{
    font-size: 20px;
    line-height: 30px;
    color: #333;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 18px 0;
    text-align: left;
}
.product-con .tel {
    margin: 20px 0;
    line-height: 30px;
    font-size: 14px;
    color: #676767;
    padding-left: 40px;
    background: url(../img/h-tel.png) no-repeat center left;
}
.product-con .tel p{
  color: #555555;
  font-size: 16px;
  margin-bottom: -5px;
}
.product-con .tel span{
  font-size:26px;
  color:#0079c3;
  font-weight: bold;
  display: block;
}
.product-con .order-btn a{
    display: block;
    width: 155px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: #237ed2;
    color: #fff;
    font-size: 14px;
    margin-left: 10px;
}
.product-list{
    width: 24%;
    transition: all 0.3s;
    background: #fff url(../img/jia.png) no-repeat right bottom;
}
.product-list:hover{
    background: #0079c3 url(../img/jia-h.png) no-repeat right bottom;
}
.product-list .product-img{
    overflow: hidden;
    padding: 15px;
    padding-bottom: 0;
}
.product-list .product-img img{
    width: 100%;
    background: #fff;
}
.pro-con{
    padding: 15px 15px;
    text-align: center;
    transition: all 0.3s;
}
.product-list:hover .pro-con{
    color: #fff;
}
.product-list .pro-con h5{
    font-size: 16px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2;
}
.product-list:hover{
    box-shadow: 6px 6px 10px 0 rgba(0,0,0,.3);
}
@media (max-width:992px) {
    .product-con {
        flex-wrap: wrap;
    }
    .product-list{
        width: 49%;
        margin-bottom: 20px;
    }
    .product-list .product-img {
        padding: 8px;
        padding-bottom: 0;
    }
    .partner-list .partner-con {
        background: #f8f8f8 url(../img/r-jt.png) no-repeat center right 15px;
        text-indent: 15px;
        padding: 10px 0;
        font-size: 14px;
        text-align: center;
    }
    .product-con .tel p {
        font-size: 14px;
        line-height: 1;
        margin-bottom: 0;
    }
    .product-con .tel span {
        font-size: 22px;
        line-height: 1;
    }
}
/*手机端*/
.ny-comm .m-pro-nav{
    display: none;
}
.ny-comm .m-pro-nav .dropdown .btn{
    width:100%;
    padding:10px 0;
}
.ny-comm .m-pro-nav .dropdown .dropdown-menu{
    width:100%;
    padding:10px 20px;
    height:313px;
    overflow: auto;
}
.ny-comm .m-pro-nav .dropdown .dropdown-menu li{
    padding:8px 10px;
    border-bottom:1px solid #ddd;
}
@media (max-width:991px){
    .ny-comm .about-title,.ny-img .img-con h5{
        font-size: 24px;
    }
    .ny-comm .entitle {
        font-size: 40px;
    }
    .ny-comm .comm-left{
        display: none;
    }
    .ny-comm .comm-right{
        width:100%;
        padding: 0px 0px;
        background: transparent;
    }
    .ny-comm .m-pro-nav{
        display: block;
        margin:0px 0px 20px;
    }
    .pro-con {
        padding: 10px 10px;
    }
    .product-list .pro-con h5 {
        font-size: 14px;
    }
    .product-list .more {
        font-size: 12px;
    }
    .ny-img .img-con {
        position: relative;
        width: 100%;
    }
    .ny-comm-box .comm-right .pname {
        font-size: 20px;
    }
    .ny-pro-list .ny-pro-title {
        font-size: 14px;
        height: auto;
    }
}

/*产品展示详情 */
.product-info h5{
   font-size: 20px;
   margin-bottom: 20px;
}
.product-info .case-img{
    overflow: hidden;
    border: 1px solid #e6e6e6;
    padding: 10px;
    background: #fff;
    text-align: center;
    position: relative;
    transition: all 0.6s;
}
.product-info .case-img img{
    max-width: 100%;
    width: auto;
    transition: all 0.6s;
}
.product-info .case-img:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.product-info-content img{
    margin: 10px auto;
    width: auto;
    max-width: 100%;
}
.product-info-content h3,.product-info-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #031b50;
    margin: 15px 0px;
    overflow: hidden;
}
.product-info-content table{
    width: 100%;
    border: 1px solid #ddd;
}

/*上一页下一页*/
.pre-next{
    font-size: 14px;
    line-height: 1.6;
    margin-top: 30px;
    padding:  0 15px;
}
.pre-next span{
    font-weight: bold;
}
.product_back{
    padding: 30px 0px;
    border-bottom: 2px solid #e1e1e1;
}
@media(max-width:991px){
    .pre-next .text-right{
        text-align: left;
    }
}
/*相关产品*/
.ny-product .comm-right .related_product .product-list{
    background: none;
    background-color: #fff;
}
.ny-product .comm-right .related_product .product-list:hover{
    border-bottom: 1px solid #0059c9;
    background: none;
    background-color: #fff;
    box-shadow: none;
}
.related_product .product-list .product-img a{
    display: inline-block;
    overflow: hidden;
}
.related_product .product-list:hover .product-img a{
    transition: all 0.3s;
    transform: scale(1.04);
    -webkit-transform: scale(1.04);
}
.related_product .product-list:hover a{
    color: #0079c3;
}
.related-title{
    font-weight: bold;
    font-size: 18px;
    color: #0058b1;
    line-height: 60px;
    margin-bottom: 20px;
    height: 59px;
    border-bottom: 1px solid #ededed;
}
.related-title span{
    display: block;
    font-weight: bolder;
    font-size: 30px;
}
@media(max-width:512px){
    .related-title{
        font-size: 20px;
    }
}
/* 新闻 */
.news-box{
    display: flex;
    flex-wrap: wrap;
}
.news-t{
    width: 32%;
    margin: 0 1.3% 30px 0;
    border-bottom: 1px solid #eee;
}
.news-t:hover{
    border-bottom: 1px solid #0058b1;
}
.news-t .news-img{
    width: 100%;
    overflow: hidden;
}
.news-t .news-img img{
    transition: all 0.3s;
}
.news-t:hover .news-img img{
    transform: scale(1.04);
    -webkit-transform: scale(1.04);
}
.news-t .news-con{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}
.news-t .news-con h3,.ny-news-content h3{
    color: #555;
    font-size: 16px;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}
.news-t:hover .news-con h3{
    color: #0079c3;
}
.news-t .news-con p,.ny-news-content p{
    font-size: 14px;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.news1-time{
    line-height: 1.1;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
    color: #999;
}
.news1-time span{
    display: block;
    float: right;
    font-size: 14px;
    color: #0058b1;
}
.ny-news .ny-news-list {
    width: 100%;
    padding: 20px 0;
    margin-bottom: 15px;
    transition: all .5s;
    -o-transition: all .5s;
    -webkit-transition: all .5s;
    border-bottom: 1px solid #eee;
}
.ny-news .ny-news-list a{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ny-news .ny-news-list .ny-news-img{
    width: 25%;
}
.ny-news .ny-news-list .ny-news-img img{
    width:100%;
}
.ny-news-content{
    width: 73%;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}
    .ny-news-content h3{
    border: 0;
}
.ny-news-content p{
    border: 0;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
}
.ny-news-content .news1-time{
    border: 0;
    padding: 0;
}
@media (max-width:991px){
    .ny-news .ny-news-list .ny-news-img{
        padding-right:0;
    }
    .ny-news .ny-news-list .ny-news-content .ny-news-title p{
        width:100%;
        font-size: 16px;
    }
    .ny-news .ny-news-list .ny-news-content .ny-news-title span{
        display: block;
        width:100%;
        text-align: left;
    }
    .ny-news .ny-news-list .ny-news-content .ny-news-intro{
        width:100%;
    }
    .news-t {
        width: 100%;
        margin: 0 0 20px 0;
    }
    .news-t .news-con h3, .ny-news-content h3 {
        padding: 0 0 5px 0;
        margin-bottom: 0px;
    }
    .news1-time {
        line-height: 1;
        margin-top: 5px;
    }
}

/* 新闻 */
.ny-news-info{
    padding: 20px 0;
    width:  100%;
    margin: 0px auto;
}
.ny-comm .news-info-title{
    padding-bottom: 16px;
    border-bottom: 1px dashed #e0e0e0;
    margin-bottom: 35px;
}
.ny-comm .news-info-title h3{
    font-size: 20px;
    color: #323232;
    line-height: 24px;
    font-weight: bold;
    margin: 0 0 10px;
}
.ny-comm .news-info-title p{
    font-size: 13px;
    color: #999999;
    line-height: 20px;
}
.news-detail {
    padding: 0 15px 30px;
}
.news-detail .news-detail-img {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 30px 0;
}
.news-detail p{
    font-size: 14px;
    color: #595959;
    line-height: 24px;
    text-align: justify;
    text-align-last: left;
}
@media (max-width:991px){
    .ny-news-info{
        padding: 0 ;
        width: 100%;
    }
    .ny-comm .news-info-title {
        margin-bottom: 25px;
    }
    .ny-news-info .news-info-title p{
        font-size: 14px;
        line-height: 16px;
    }
    .ny-comm .news-info-title h3 {
        font-size: 18px;
        line-height: 22px;
    }
    .news-detail {
        padding: 0 0 30px;
    }
}
/* 新闻详情 */
.ny-news{
    background: #f7f7f7;
}
.ny-news .news-content{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.news-left,.news-right{
    background: #fff;
    padding: 20px;
}
.news-left{
    width: 73%;
}
.news-right{
    width: 25%;
}
.news-right .title{
    color: #0079c3;
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0;
}
.news-right .title:after {
    display: block;
    content: '';
    width: 40px;
    height: 4px;
    background: #0079c3;
    margin-top: 10px;
}
.news-right li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.news-right li:hover {
    padding: 15px 0;
    border-bottom: 1px solid #0058b1;
}
.news-right li .li-img{
    width: 100%;
    overflow: hidden;
}
.news-right li:hover img{
    transition: all 0.3s;
    transform: scale(1.04);
    -webkit-transform: scale(1.04);
}
.news-right li h3{
    color: #555;
    padding: 20px 20px 10px;
    font-size: 15px;
    font-weight: bold;
}
.news-right li:hover h3{
    color: #0079c3;
}
.news-right li p{
    font-size: 14px;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    padding-bottom: 1px solid #eee;
}
@media (max-width:992px) {
    .news-right {
        display: none;
    }
    .news-left {
        width: 100%;
    }
}
/*技术实力*/
.partner-er{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.partner-er .partner-list{
    width: 24%;
    margin: 0 1.3% 25px 0;
    overflow: hidden;
}
.partner-er .partner-list:nth-child(4n){
    margin-right: 0;
}
@media(max-width:992px){
    .partner-er .partner-list{
        width: 49%;
        margin: 0 2% 15px 0;
    }
    .partner-er .partner-list:nth-child(2n){
        margin-right: 0;
    }
}
/* 在线留言 */
.contact{
    display: flex;
    padding: 20px 0;
    align-items: stretch;
    justify-content: space-between;
    overflow: hidden;
    flex-wrap: wrap;
}
.message,.contact-img {
    width: 48%;
}
.contact-img {
    background: url(../img/mes1.jpg) no-repeat center center;
}
.message h3{
    color: #333;
    font-size: 34px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 38px;
}
.message h3.ll{
    margin-bottom: 20px;
}
.message .row{
    margin: 0;
}
.message .form-control{
    padding: 26px 15px;
    margin-bottom:10px;
    border-radius: 0;
    border: 0;
    border: 1px solid #e0dfdf;
}
.message .form-control1{
    padding: 15px;
    min-height: 120px;
    border: 1px solid #e0dfdf;
}
.message .col-sm-6,.message .col-sm-12 {
    padding: 0 5px;
}
.message .message-btn button{
    width:100%;
    height:50px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 0;
    border: 0;
    background: #65c8d3;
}
.message .message-btn button:hover{
    background: #0079c3;
}
.yzm{
    display: flex;
    align-items: stretch;
    margin-bottom: 10px;
}
.yzm .form-control{
    margin-bottom: 0;
}
.yzm-l{
    width: calc(50% - 5px);
    margin-right: 10px;
}
.yzm-r img{
    height: 100%;
}
@media (max-width:992px) {
    .message, .contact-img {
        width: 100%;
    }
    .message h3{
        font-size: 20px;
        line-height: 24px;
    }
}
/* 搜索页面 */
.ny-search .ny-search-box {
    margin-top: 50px;
}
@media(max-width:767px){
    .contact .contact-title{
        font-size: 18px;
    }
    .messsage{
        margin-top: 20px;
    }
}
/*联系我们*/
.info-contact{
    margin-top: 30px;
    width: 100%;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.contact-list{
    width: 35%;
    background: #0079c3;
    padding: 60px 30px;
    position: relative;
    float: left;
    display: flex;
    flex-direction: column;
}
.contact-con{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.info-contact .contact-con{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.contact-con ul{
    width: 100%;
}
.contact-title img{
    float: left;
}
.contact-title h4{
    color: #fff;
    font-size: 19px;
    font-weight: bold;
    padding-top: 5px;
}
.contact-title p{
    color: #fff;
    font-size: 12.5px;
    text-transform: uppercase;
}
.contact-list ul {
    margin: 25px 0;
}
.contact-list ul li{
    color: #ffffff;
    font-size: 14px;
    line-height: 25px;
}
.contact-map{
    width: 65%;
}
@media (max-width:992px) {
    .contact-con {
        align-items: flex-start;
    }
    .contact-list,.contact-map {
        width: 100%;
    }
    .contact-list {
        padding: 30px 15px;
    }
    .contact-title h4{
        font-size: 16px;
    }
    .contact-title p{
        font-size: 12px;
    }
    .contact-list ul {
        margin: 15px 0;
    }
}
/* 放大镜 */
.event1 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 998;
}
.mask {
    width: 50%;
    height: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}
.big {
    width: 100%;
    height: 100%;
    position: absolute;
    top: -1px;
    left: 105%;
    border: 1px solid #ccc;
    overflow: hidden;
    z-index: 998;
    display: none;
    background: white;
}
.big img {
    width: 200%;
    max-width: 200%;
    height: 200%;
    position: absolute;
    left: 0;
    top: 0;
}
.map .BMapLabel{
    border: 0 !important;
    padding: 0 !important;
}
.map img{
    width: auto;
    max-width: none;
}
.event1:hover + .big,.event1:hover ~ .mask {
    display: block;
}