/*公用样式*/
@charset "utf-8";
/* CSS Document */
body,ul,ol,li,p,h1,h2,h3,h4,h5,h6,form,fieldset,table,td,img,div,dl,dt,dd,input{
    margin:0;padding:0;}
body{
    font-size:14px;
    font-family: "微软雅黑";
    /*行高*/
    /*line-height: 30px;*/
    color:#666666;
}
*, *:before, *:after {
    box-sizing: inherit;
}
/*去除点击后出现蓝色边框*/
:focus {/*for IE*/
    outline:none;
}
::-moz-focus-inner {/*for mozilla 表单出现虚线*/
    border-color: transparent;
}
/*把内填充和边框绘制在已经决定的宽度中*/
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
/*vertical-align: middle  解决图片底部有留白问题 因为img对齐为baseline*/
img{border:none;vertical-align: middle}
li{list-style:none;}
button{outline:none;border:0;}
input,select,textarea{outline:none;border: none;background: none;}
textarea{resize:none;}
a{text-decoration:none;color: #665565;}
.fl{float:left;}
.fr{float:right;}
.clearFix:after {
    content: "\0020";
    display: block;
    height: 0;
    clear: both;
}
.clearFix{
    zoom: 1;
}
.maxWidth{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 10px;
}
/*去除谷歌浏览器自动填充的背景与颜色*/
input:-webkit-autofill{
    -webkit-box-shadow:0 0 0 1000px #fff inset;
    -webkit-text-fill-color:#666;
}
/*index*/
/*header*/
.header{
    width:100%;
}
.header>a{
    display: block;
    height:90px;
    line-height:90px;
}
.header>a:nth-child(2){
    height:24px;
    margin-top:35px;
    line-height:24px;
    padding-left:25px;
    border-left:1px solid #ccc;
}
.header>a>img{
    vertical-align: middle;
}
.header>ul>li{
    float: left;
    margin-right:28px;
    position: relative;
}
.header>ul>li>a{
    display: block;
    font-size:14px;
    height:90px;
    line-height:90px;
    border-top:4px solid #fff;
}
.header>ul>li>.on,.header>ul>li:hover >a{
    color:#1c85c4;
    border-top:4px solid #1c85c4;
}
.header>ul>li>ul{
    position: absolute;
    display: none;
    height:0;
    background: #fff;
    width:80px;
    z-index: 20;
    padding:5px 0;
    left:50%;
    margin-left:-40px;
}
.header>ul>li>ul>li{
    height:30px;
    text-align: center;
}
.header>ul>li>ul>li>a{
    display: block;
    width:100%;
    height:30px;
    line-height:30px;
}
.header>ul>li>ul>li:hover >a{
    color:#fff;
    background: #1c85c4;
}
.headerBtn{
    width:50px;
    height:35px;
    border:1px solid #e6e6e6;
    border-radius: 5px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-top:28px;
    display:none;
}
.iconBtn{
    display:block;
    width:30px;
    height:2px;
    background: #1c85c4;
    margin:6px 10px 0;
}
/*banner*/
.swiper-container{
    width:100%;
}
.swiper-wrapper>a{
    position: relative;
    z-index:2;
}
.swiper-wrapper>a>img{
    width:100%;
}
.bannerTxt{
    position: absolute;
    top:50%;
    left:50%;
    margin-top:-45px;
    margin-left:-197px;
    z-index: 10;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.bannerTxt>h3{
    font-size:34px;
    color:#fff;
    font-weight: normal;
    height:34px;
    line-height:34px;
    margin-bottom:30px;
}
.bannerTxt>p{
    font-size:26px;
    height:26px;
    line-height:26px;
    color:#fff;
    text-indent: 30px;
}
.swiper-container-horizontal>.swiper-pagination-bullets{
    bottom:30px;
}
.swiper-pagination-bullet{
    background:none;
    opacity: 1;
    width:14px;
    height:14px;
    border:2px solid #fff;
}
.swiper-pagination-bullet-active{
    background: #fff;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
    margin:0 10px;
}
/*product*/
.indexProduct{
    width:100%;
    margin-top:60px;
    margin-bottom:50px;
    position: relative;
}
.swiper-slide>a{
    display: block;
    width:100%;
}
.swiper-slide>a>.productBox{
    width:100%;
    overflow: hidden;
}
.swiper-slide>a>.productBox>img{
    width: 100%;
    -webkit-transition:transform 0.3s ease;
    -moz-transition:transform 0.3s ease;
    -o-transition:transform 0.3s ease;
    transition:transform 0.3s ease;
}
.swiper-slide>a:hover >.productBox>img{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.swiper-slide>a>h3{
    width:100%;
    height:35px;
    line-height:35px;
    font-size:16px;
    color:#1c85c4;
    padding:0 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.swiper-slide>a>p{
    width:100%;
    height:26px;
    line-height:26px;
    font-size:14px;
    color:#1c85c4;
    text-indent: 20px;
    position: relative;
}
.swiper-slide>a>p:after{
    content: url("../images/productLeft.png");
    position: absolute;
    top:2px;
    left:60px;
}
.swiper-button-prev{
    left:35px;
    width:30px;
    height:30px;
    margin-top:-15px;
    background:url("../images/swiper_button_002.png") no-repeat;
    background-position: 0,0;
    z-index: 10;
}
.swiper-button-next{
    right:35px;
    width:30px;
    height:30px;
    margin-top:-15px;
    background:url("../images/swiper_button_002.png") no-repeat;
    background-position: -41px,0;
    z-index: 10;
}
.swiper-button-disabled{
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}
/*indexAbout*/
.aboutBg{
    width:100%;
    background:url("../images/aboutBg.jpg") no-repeat center center;
}
.aboutBg>h3{
    display:block;
    text-align: center;
    font-weight: normal;
    padding:60px 0 80px;
    font-size:32px;
}
.indexAbout{
    padding-bottom:90px;
}
.indexAboutLeft{
    width:50%;
}
.indexAboutLeft>img{
    width:90%;
    -webkit-box-shadow: 2px 1px 2px 2px #ccc;
    -moz-box-shadow: 2px 1px 2px 2px #ccc;
    box-shadow: 2px 1px 2px 2px #ccc;
}
.indexAboutRight{
    width:50%;
}
.indexAboutRight>h3{
    margin-top:10px;
    color:#1c85c4;
    font-size:20px;
    vertical-align: bottom;
    font-weight: normal;
}
.indexAboutRight>h3>span{
    font-size:42px;
    margin-left:5px;
}
.indexAboutRight>p{
    width:100%!important;
    font-size:14px;
    line-height:30px;
    margin-top:15px;
}
.indexAboutRight>a{
    display:block;
    width:230px;
    height:50px;
    border:2px solid #1c85c4;
    background: #fff;
    color:#1c85c4;
    font-size:14px;
    line-height:50px;
    text-align: center;
    margin-top:25px;
    border-radius: 20px;
}
/*indexNews*/
.indexNews{
    margin-top:80px;
    margin-bottom:60px;
}
.indexNews>h3{
    font-size:32px;
    font-weight: normal;
    text-align: center;
    margin-bottom:35px;
}
.indexNews>ul{
    width:100%;
}
.indexNews>ul>li{
    float: left;
    width:48%;
    border-top:1px solid #e6e6e6;
}
.indexNews>ul>li:nth-child(2){
    float: right;
}
.indexNews>ul>li:nth-child(3){
    border-bottom:1px solid #e6e6e6;
}
.indexNews>ul>li:nth-child(4){
    float: right;
    border-bottom:1px solid #e6e6e6;
}
.indexNews>ul>li>a{
    display:block;
    width:100%;
    height:100px;
    position: relative;
}
.newsDate{
    position: absolute;
    width:65px;
    height:60px;
    border-right:1px solid #e6e6e6;
    left:20px;
    top:20px;
}
.newsDate>p{
    font-size:14px;
    color:#1c85c4;
    text-align: center;
    line-height:26px;
    margin-top:5px;
}
.newsDate>span{
    display:block;
    font-size:18px;
    color:#1c85c4;
    text-align: center;
    line-height:26px;
}
.newsTil{
    width:100%;
    padding-left:100px;
    line-height:100px;
    padding-right:20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size:18px;
    font-weight: normal;
}
.indexNews>ul>li>a:hover{
    background:#1c85c4;
    color:#fff;
}
.indexNews>ul>li>a:hover .newsDate>p,.indexNews>ul>li>a:hover .newsDate>span{
    color:#fff;
}
/*indexProductClass*/
.indexProductClass{
    margin-top:15px;
    margin-bottom:60px;
}
.indexProductClass>h3{
    width:100%;
    font-size:32px;
    text-align: center;
    padding-bottom:35px;
    border-bottom:1px solid #e6e6e6;
    font-weight: normal;
}
.indexProductClass>ul{
    width:100%;
    margin-top:60px;
}
.indexProductClass>ul>li{
    float: left;
    width:32%;
    margin-right:2%;
}
.indexProductClass>ul>li:last-child{
    margin-right:0;
}
.indexProductClass>ul>li:hover{
    -webkit-box-shadow: 2px 2px 4px 2px #e1e1e1;
    -moz-box-shadow: 2px 2px 4px 2px #e1e1e1;
    box-shadow: 2px 2px 4px 2px #e1e1e1;
}
.indexProductClass>ul>li>a{
    display:block;
    width:100%;
    position: relative;
}
.productClassTop{
    width:100%;
    overflow: hidden;
}
.productClassTop>img{
    width:100%;
    -webkit-transition:transform 0.3s ease;
    -moz-transition:transform 0.3s ease;
    -o-transition:transform 0.3s ease;
    transition:transform 0.3s ease;
}
.indexProductClass>ul>li:hover .productClassTop>img{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.productClassDown{
    width:100%;
    padding:0 20px 30px;
    position: relative;
}
.top{
    position: absolute;
    width:20px;
    height:20px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    left:50%;
    margin-left:-10px;
    margin-top:-40px;
}
.productClassDown>h3{
    font-size:20px;
    text-align: center;
    font-weight: normal;
    margin:30px 0 20px;
}
.indexProductClass>ul>li>a:hover .productClassDown>h3,.indexProductClass>ul>li>a:hover .productClassDown>p{
    color:#1c85c4;
}
.productClassDown>p{
    font-size:14px;
    text-align: center;
    line-height:28px;
    height:56px;
    overflow: hidden;
}
/*logoTop*/
.logoTop>li{
    float: left;
    width:23%;
    border-top:3px solid #e6e6e6;
    margin-right:2%;
}
.logoTop>li:last-child{
    margin-right:0;
}
.logoTop>li>a{
    display:block;
    width:100%;
    height:100px;
    position: relative;
}
.logoTopLeft{
    position: absolute;
    overflow: hidden;
}
.logoTopLeft>img{
    width:100%;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}
.logoTop>li:nth-child(1)>a>.logoTopLeft{
    width:52px;
    height:44px;
    margin:28px 9px;
}
.logoTop>li:nth-child(1)>a:hover .logoTopLeft>img{
    -webkit-transform: translateY(-44px);
    -moz-transform: translateY(-44px);
    -ms-transform: translateY(-44px);
    -o-transform: translateY(-44px);
    transform: translateY(-44px);
}
.logoTop>li:nth-child(2)>a>.logoTopLeft{
    width:48px;
    height:52px;
    margin:24px 11px;
}
.logoTop>li:nth-child(2)>a:hover .logoTopLeft>img{
    -webkit-transform: translateY(-52px);
    -moz-transform: translateY(-52px);
    -ms-transform: translateY(-52px);
    -o-transform: translateY(-52px);
    transform: translateY(-52px);
}
.logoTop>li:nth-child(3)>a>.logoTopLeft{
    width:58px;
    height:58px;
    margin:23px 6px;
}
.logoTop>li:nth-child(3)>a:hover .logoTopLeft>img{
    -webkit-transform: translateY(-58px);
    -moz-transform: translateY(-58px);
    -ms-transform: translateY(-58px);
    -o-transform: translateY(-58px);
    transform: translateY(-58px);
}
.logoTop>li:nth-child(4)>a>.logoTopLeft{
    width:60px;
    height:48px;
    margin:24px 5px;
}
.logoTop>li:nth-child(4)>a>.logoTopLeft>img{
    margin-top:2px;
}
.logoTop>li:nth-child(4)>a:hover .logoTopLeft>img{
    -webkit-transform: translateY(-48px);
    -moz-transform: translateY(-48px);
    -ms-transform: translateY(-48px);
    -o-transform: translateY(-48px);
    transform: translateY(-48px);
}
.logoTopRight{
    width:100%;
    height:100px;
    padding-left:75px;
}
.logoTopRight>h3{
    width:100%;
    margin-top:30px;
    font-size:16px;
    line-height:16px;
    margin-bottom:10px;
}
.logoTopRight>p{
    width:100%;
    font-size:14px;
    line-height:20px;
    height:40px;
    overflow: hidden;
}
.logoTop>li>a:hover .logoTopRight>h3{
    color:#1c85c4;
}
/*footer*/
.footerBg{
    margin-top:50px;
    width:100%;
    background: #1c85c4;
}
.footerLeft>ul{
    margin-top:30px;
    margin-bottom:15px;
}
.footerLeft>ul>li{
    float: left;
    color:#fff;
    margin-right:30px;
    line-height:20px;
    font-size:14px;
}
.copy{
    font-size:14px;
    line-height:26px;
    padding-bottom:20px;
    color:#fff;
}
.copy>span{
    margin-left:20px;
}
.footerRight{
    width:240px;
    margin-top:35px;
}
.bdsharebuttonbox>span{
    display: block;
    color:#fff;
    margin-right:5px;
    height:40px;
    line-height:40px;
}
.bdshare-button-style0-16 a{
    width:40px!important;
    height:40px!important;
    margin:0 3px!important;
    padding:0!important;
}
.bdshare-button-style0-16 .bds_sqq{
    background:url("../images/qq.png") no-repeat center center;
    background-position: 0!important;
}
.bdshare-button-style0-16 .bds_tsina{
    background:url("../images/sina.png") no-repeat center center;
    background-position: 0!important;
}
.bdshare-button-style0-16 .bds_weixin{
    background:url("../images/wechat.png") no-repeat center center;
    background-position: 0!important;
}
/*products*/
.ny-banner{
    width:100%;
    position: relative;
}
.ny-banner>img{
    width:100%;
}
.bannerText{
    position: absolute;
    left:50%;
    top:50%;
    margin-top:-23px;
    margin-left:-140px;
}
.bannerText>h3{
    color:#fff;
    font-size:35px;
    font-weight: normal;
}
.title{
    height:80px;
    margin-top:20px;
}
.title>h3{
    height:80px;
    line-height:80px;
    font-size:26px;
    font-weight: normal;
}
.title>div{
    height:80px;
    line-height:80px;
    font-size:14px;
}
.products{
    margin-top:15px;
    position: relative;
}
.productLeft{
    position: absolute;
    width:270px;
}
.productLeft>h3{
    color:#fff;
    height:46px;
    line-height:46px;
    width:100%;
    text-indent: 35px;
    font-size:20px;
    font-weight: normal;
    background: #1c85c4;
}
.productLeft>ul{
    width:100%;
}
.productLeft>ul>li{
    width:100%;
    margin:5px 0;
}
.productLeft>ul>li>a{
    display: block;
    width:100%;
    height:30px;
    line-height:30px;
    padding-left:40px;
    font-size:16px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.productLeft>ul>li>a:before{
    content: url("../images/one.png");
    position: absolute;
    left:25px;
}
.productLeft>ul>.on>a,.productLeft>ul>li:hover >a{
    color:#fff;
    background: #1c85c4;
}
.productLeft>ul>.on>a:before,.productLeft>ul>li:hover >a:before{
    content: url("../images/one1.png");
    position: absolute;
    left:25px;
}
.productLeft>ul>li>ul{
    width:100%;
    display: none;
    height:0;
}
.productLeft>ul>li>ul>li{
    width:100%;
}
.productLeft>ul>li>ul>li>a{
    display: block;
    width:100%;
    height:28px;
    line-height:28px;
    padding-left:50px;
    font-size:14px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.productLeft>ul>li>ul>li>a:before{
    content: url("../images/two.png");
    position: absolute;
    left:35px;
}
.productLeft>ul>.on>ul{
    display:block;
    height:auto;
}
.productRight{
    width:100%;
    padding-left:285px;
    min-height:350px;
    line-height:26px;
    font-size:14px;
}
.productRight>.productCont{
    width:100%;
    min-height:350px;
}
.productRight>.productCont>li{
    float: left;
    width:32%;
    margin-right:2%;
}
.productRight>.productCont>li:nth-child(3n){
    margin-right:0;
}
.productRight>.productCont>li>a{
    display:block;
    width:100%;
}
.productBox{
    width:100%;
    overflow: hidden;
}
.productBox>img{
    width:100%;
    -webkit-transition:transform 0.3s ease;
    -moz-transition:transform 0.3s ease;
    -o-transition:transform 0.3s ease;
    transition:transform 0.3s ease;
}
.productRight>.productCont>li:hover >a>h3{
    color:#1c85c4;
}
.productRight>.productCont>li:hover .productBox>img{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.productCont>li>a>h3{
    width:100%;
    margin:10px 0;
    height:30px;
    line-height:30px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size:16px;
    font-weight: normal;
}
.pager{
   text-align: center;
    margin:20px 0;
}
.pager>li{
    display: inline-block;
    margin:10px 2px 0;
}
.pager>li>a{
    display: block;
    padding:1px 8px;
    background:#e6e6e6;
    line-height:26px;
}
.pager>li>.on,.pager>li:hover >a{
    color:#fff;
    background: #1c85c4;
}
.Cont{
    width:100%;
    min-height:350px;
}
.Cont video,.Cont audio,.Cont img{
    max-width:100%;
}
.ny-pager{
    width:100%;
    margin:20px 0;
    height:41px;
}
.ny-pager>a{
    display: block;
    float: left;
    width:50%;
    line-height:30px;
    font-size:14px;
    padding-top:10px;
    border-top:1px solid #e6e6e6;
    text-align: center;
}
.newsCont{
    width:100%;
    min-height:300px;
    border-top:1px solid #e6e6e6;
}
.newsCont>li{
    position: relative;
    width:100%;
}
.newsCont>li>a{
    display: block;
    border-bottom:1px solid #e6e6e6;
}
.newsCont>li>a:hover{
    background:#1c85c4;
    color:#fff;
}
.newsCont>li>a:hover .newsDate>p,.newsCont>li>a:hover .newsDate>span{
    color:#fff;
}
.newsdCont{
    width:100%;
    min-height:300px;
}
.newsdCont>h3{
    font-size:18px;
    line-height:26px;
    text-align: center;
    padding-bottom:30px;
}
.newsdCont>p{
    font-size:16px;
    text-align: center;
}
.newsdCont>p>span{
    margin-right:20px;
}
.newsdCont>p>span:nth-child(2){
    color:red;
}
.newsdContent{
    min-height:300px;
}
.newsdContent video,.newsdContent audio,.newsdContent img{
    max-width:100%;
}
.new-pager{
    margin:20px 0;
    border-top:1px solid #e6e6e6;
}
.new-pager>a{
    display: block;
    width:100%;
    padding:0 20px;
    line-height:30px;
    font-size:14px;
    margin:10px 0;
}
/*最小为1300px宽度时*/
@media screen and (min-width: 1300px){
    .swiper-button-prev{
        margin-left:50%;
        left:-645px;
    }
    .swiper-button-next{
        margin-right:50%;
        right:-645px;
    }
}
/*最小为768px宽度时*/
@media screen and (min-width: 768px){
    #myNav{
        display: block!important;
    }
}
/*最大为850px宽度时*/
@media screen and (max-width: 850px){
    .swiper-button-prev{
        left:5px;
    }
    .swiper-button-next{
       right:5px;
    }
    .indexAboutLeft{
        margin-top:60px;
    }
    .footerLeft{
        float: none;
    }
    .footerLeft>ul{
        margin:0;
        padding-top:25px;
        padding-bottom:10px;
    }
    .copy{
        padding-bottom:10px;
    }
    .footerRight{
        float: none;
        margin-top:0;
        height:60px;
    }
    .productRight>.productCont>li{
        width:49%;
    }
    .productRight>.productCont>li:nth-child(3n){
        margin-right:2%;
    }
    .productRight>.productCont>li:nth-child(2n){
        margin-right:0;
    }
}

/*最大为768px宽度时*/
@media screen and (max-width: 768px){
    .headerBtn{
        display:block;
        margin-left:20px;
    }
    .header>ul{
        display:none;
        height:0;
        width:100%;
    }
    .header>ul>li{
        width:100%;
    }
    .header>ul>li>a{
        height:35px;
        line-height:35px;
        border-top:0;
        text-indent: 20px;
        border-bottom:1px solid #e6e6e6;
    }
    .header>ul>li>.on{
        border-bottom:1px solid #1c85c4;
        border-top:0;
    }
    .header>ul>li>a:hover{
        border-top:0;
    }
    .header>ul>li>ul{
        width:100%;
        position: relative;
    }
    .header>ul>li>ul{
        width:100%;
        left:0;
        margin-left:0;
    }
    .header>ul>li>ul>li{
        text-align: left;
        text-indent: 40px;
        width:100%;
        border-bottom:1px dotted #e6e6e6;
    }
    /*banner*/
    .bannerTxt{
        margin-left:-143px;
        margin-top:-32px;
    }
    .bannerTxt>h3{
        font-size:26px;
        height:26px;
        margin-bottom:15px;
    }
    .bannerTxt>p{
        font-size:16px;
        height:16px;
        line-height:16px;
        text-indent: 40px;
    }
    .swiper-container-horizontal>.swiper-pagination-bullets{
        bottom:10px;
    }
    .indexProduct{
        margin-top:45px;
        margin-bottom:40px;
    }
    .aboutBg{
        background-size: cover;
    }
    .aboutBg>h3{
        padding:35px 0 45px;
        font-size:26px;
    }
    .indexAboutLeft{
        float: none;
        width:100%;
        margin-top:0;
    }
    .indexAboutLeft>img{
        margin:0 5%;
    }
    .indexAboutRight{
        float: none;
        width:100%;
        padding:0 20px;
    }
    .indexAbout{
        padding-bottom:45px;
    }
    .indexNews{
        margin-top:45px;
        margin-bottom:35px;
    }
    .indexNews>h3{
        font-size:26px;
    }
    .indexNews>ul{
        border-bottom:1px solid #e6e6e6;
    }
    .indexNews>ul>li{
        float: right;
        width:100%;
        margin-right:0;
        border-bottom:0;
    }
    .indexProductClass>h3{
        font-size:26px;
        padding-bottom:25px;
    }
    .indexProductClass{
        margin-bottom:30px;
    }
    .indexProductClass>ul{
        margin-top:45px;
    }
    .indexProductClass>ul>li{
        float: none;
        width:100%;
        margin-right:0;
        margin-top:15px;
    }
    .logoTop>li{
        float: none;
        width:100%;
        margin-right:0;
    }
    .footerBg{
        margin-top:35px;
    }
    .header>a{
        height:70px;
        line-height:70px;
    }
    .headerBtn{
        margin-top:18px;
    }
    /*product*/
    .ny-banner{
        width:100%;
        height:180px;
        overflow: hidden;
    }
    .ny-banner>img{
        position: absolute;
        width:1267px;
        height:315px;
        left:50%;
        margin-left:-633px;
    }
    .bannerText{
        margin-left:-112px;
        margin-top:-18px;
    }
    .bannerText>h3{
        font-size:28px;
    }
    .title{
        height:60px;
        margin-top:10px;
    }
    .title>h3{
        height:60px;
        line-height:60px;
        font-size:22px;
    }
    .title>div{
        height:60px;
        line-height:60px;
        font-size:14px;
    }
    .productLeft{
        position: relative;
        width:100%;
    }
    .productRight{
        margin-top:15px;
        padding-left:0;
    }
    .newsCont>li>a{
        height:80px;
    }
    .newsDate{
        top:10px;
    }
    .newsTil{
        line-height:80px;
        font-size:16px;
    }
    .header>ul>li:hover >a{
        border-top:0;
    }
}
/*最大为620px宽度时*/
@media screen and (max-width: 620px){
    .footerLeft>ul{
        padding-bottom:0;
    }
    .footerLeft>ul>li{
        float: none;
        line-height:26px;
    }
    .copy>span{
        display:block;
        margin-left:0;
    }
}
/*最大为500px宽度时*/
@media screen and (max-width: 500px){
    .productRight>.productCont>li{
        width:100%;
        margin-right:0;
    }
}
