@charset "utf-8";
/* CSS Document */

.owl-carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

/* display none until init*/
.owl-carousel {
    display: none;
    position: relative;
    width: 100%;
    -ms-touch-action: pan-y;
    -webkit-touch-action: pan-y;
    -moz-touch-action: pan-y;
    -o-touch-action: pan-y;
    touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
    display: none;
    position: relative;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
    float: left;
}

.owl-controls .owl-page, .owl-controls .owl-buttons div {
    cursor: pointer;
}

.owl-controls {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon*/
.grabbing {
    cursor: url(../images/grabbing.png) 8 8, move;
}

/* fix*/
.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
}

.owl-theme .owl-controls {
    /*margin-bottom:20px;*/
    text-align: center;
}

/* Styling Next and Prev buttons*/
.owl-theme .owl-controls .owl-buttons div {
    color: #FFF;
    display: inline-block;
    zoom: 1;*display: inline;
    width: 38px;
    height: 74px;
    /*IE7 life-saver*/
    text-indent: 40px;
    margin-top: -16%;
    z-index: 9;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.owl-theme .owl-controls .owl-buttons div.owl-prev {
    /*background:url(../images/i_pro_left.png) no-repeat;*/
    float: left;
}

.owl-theme .owl-controls .owl-buttons div.owl-prev:hover {
    /*background:url(../images/i_pro_left_on.png) no-repeat;*/
}

.owl-theme .owl-controls .owl-buttons div.owl-next {
    /* background:url(../images/i_pro_right.png) no-repeat;*/
    float: right;
}

.owl-theme .owl-controls .owl-buttons div.owl-next:hover {
    /*background:url(../images/i_pro_right_on.png) no-repeat;*/
}

/* Clickable class fix problem with hover on touch devices*/
/* Use it for non-touch hover action*/
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
    filter: Alpha(Opacity=100);
    /*IE7 fix*/
    opacity: 1;
    text-decoration: none;
}

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
    display: inline-block;
    zoom: 1;*display: inline;
    /*IE7 life-saver*/
    display: none;
}

.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 10px;
    height: 10px;
    margin: 5px 5px;
    /*filter: Alpha(Opacity=50);opacity: 0.5;*/
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #ccc;
}

.owl-theme .owl-controls .owl-page.active span {
    background: #4cb6ed;
}

/* If PaginationNumbers is true 
.owl-theme .owl-controls.clickable .owl-page:hover span*/
.owl-theme .owl-controls .owl-page span.owl-numbers {
    height: auto;
    width: auto;
    color: #FFF;
    padding: 2px 10px;
    font-size: 12px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

/* preloading images*/
.owl-item.loading {
    min-height: 150px;
    background: url(../images/AjaxLoader.gif) no-repeat center center
}

/*合作伙伴*/
.owl-demo6 {
    text-align: center;
    margin-top: 3%;
    margin-bottom: 5%;
}

/*.owl-demo6.owl-carousel .owl-wrapper-outer{ overflow:visible;}*/
/* Styling Next and Prev buttons*/
.owl-demo6.owl-theme .owl-controls .owl-pagination {
    display: none;
}

.owl-demo6.owl-theme .owl-controls .owl-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    height: 0;
    display: none;
}

.owl-demo6.owl-theme .owl-controls .owl-buttons div {
    color: #FFF;
    display: inline-block;
    zoom: 1;*display: inline;
    width: 23px;
    height: 40px;
    /*IE7 life-saver*/
    text-indent: 100px;
    line-height: 40px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-top: -10px;
    /*box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15); border-radius:50%;*/
}

.owl-demo6.owl-theme .owl-controls .owl-buttons div.owl-prev {
    background: url(../images/left.png) center center no-repeat;
    background-size: 100%;
    float: left;
    margin-left: -100px;
}

.owl-demo6.owl-theme .owl-controls .owl-buttons div.owl-prev:hover {
    background-image: url(../images/left_on.png);
    opacity: 0.8;
    filter: Alpha(opacity=80);
}

.owl-demo6.owl-theme .owl-controls .owl-buttons div.owl-next {
    background: url(../images/right.png) center center no-repeat;
    background-size: 100%;
    float: right;
    margin-right: -100px;
}

.owl-demo6.owl-theme .owl-controls .owl-buttons div.owl-next:hover {
    background-image: url(../images/right_on.png);
    opacity: 0.8;
    filter: Alpha(opacity=80);
}

.owl-demo6.owl-theme .owl-controls .owl-page {
    display: inline-block;
}

.owl-demo6 .item {
    margin: 0 3.8%;
}

.owl-demo6 .item .imgs {
    position: relative;
    overflow: hidden;
    padding-top: 54%;
    border-radius: 10px;
}

.owl-demo6 .item .imgs img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    -o-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}

.owl-demo6 .item dd:hover .imgs img {
    /*-webkit-transform:scale(1.1, 1.1); -moz-transform:scale(1.1, 1.1); -o-transform:scale(1.1, 1.1); -ms-transform:scale(1.1, 1.1); transform:scale(1.1, 1.1);*/
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    filter: none;
}

.owl-demo6 .item dd {
    overflow: hidden;
    margin-bottom: 8%;
    /*border:1px solid #d3d4d4;*/
    transition: all 0.3s;
    margin-top: 3px;
}

.owl-demo6 .item dd:hover {
    box-shadow: 0px 4px 8px 0 rgba(151, 151, 151, 0.2);
}

/*荣誉资质*/
.honor {
    margin: 0 auto;
    width: 102%;
    margin-left: -1%;
    text-align: center;
    margin-top: 4%;
    margin-bottom: 6%;
}

/*.honor.owl-carousel .owl-wrapper-outer{ overflow:visible;}*/
/* Styling Next and Prev buttons*/
.honor.owl-theme .owl-controls .owl-pagination {
}

.honor.owl-theme .owl-controls .owl-page {
    display: inline-block;
    zoom: 1;*display: inline;
    /*IE7 life-saver*/
    margin-top: 30px;
}

.honor.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 16px;
    height: 16px;
    margin: 10px 5px;
    /*filter: Alpha(Opacity=50);opacity: 0.5;*/
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #e5e5e5;
}

.honor.owl-theme .owl-controls .owl-page.active span {
    background: #0047ba;
}

.honor.owl-theme .owl-controls .owl-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    height: 0;
    display: none;
}

.honor.owl-theme .owl-controls .owl-buttons div {
    color: #FFF;
    display: inline-block;
    zoom: 1;*display: inline;
    width: 18px;
    height: 29px;
    /*IE7 life-saver*/
    text-indent: 100px;
    line-height: 40px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-top: -35px;
    /*box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15); border-radius:50%;*/
}

.honor.owl-theme .owl-controls .owl-buttons div.owl-prev {
    background: url(../images/left.png) center center no-repeat;
    background-size: 100%;
    float: left;
    margin-left: -52px;
}

.honor.owl-theme .owl-controls .owl-buttons div.owl-prev:hover {
    background-image: url(../images/left_on.png);
    opacity: 0.8;
    filter: Alpha(opacity=80);
}

.honor.owl-theme .owl-controls .owl-buttons div.owl-next {
    background: url(../images/right.png) center center no-repeat;
    background-size: 100%;
    float: right;
    margin-right: -52px;
}

.honor.owl-theme .owl-controls .owl-buttons div.owl-next:hover {
    background-image: url(../images/right_on.png);
    opacity: 0.8;
    filter: Alpha(opacity=80);
}

.honor.owl-theme .owl-controls .owl-page {
    display: inline-block;
}

.honor .item {
    margin: 0 4%;
}

.honor .item .imgs {
    overflow: hidden;
    position: relative;
    padding-top: 140%;
}

.honor .item .imgs img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    -o-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
    /*-webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%);-o-filter: grayscale(100%); filter: grayscale(100%); filter: gray;*/
}

.honor .item dd:hover .imgs img {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    /*-webkit-filter: grayscale(0%); -moz-filter: grayscale(0%); -ms-filter: grayscale(0%);-o-filter: grayscale(0%); filter: grayscale(0%); filter:none;*/
}

.honor .item dd {
    background: #fff;
    border: 5px solid #fff;
    border-radius: 4px;
    overflow: hidden;
    overflow: hidden;
}

.honor .item dd .h3 {
    font-weight: normal;
    overflow: hidden;
    height: 30px;
    line-height: 30px;
    color: #000000;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 4%;
}

.honor .item dd:hover {
    /*-webkit-box-shadow: 0 5px 25px rgba(0,0,0,0.1); box-shadow: 0 5px 25px rgba(0,0,0,0.1);*/
    /*border-color:#0047ba;*/
}

.honor .item dd:hover .h3 {
    color: #008cd6;
}

/*历程2*/
#owl-demo8 {
    text-align: center;
    margin-top: 2.4%;
    margin-bottom: 6%;
}

#owl-demo8 .owl-item.loading {
    min-height: 80px;
}

#owl-demo8.owl-theme .owl-controls {
    top: 0;
    height: 0;
    z-index: 1;
}

#owl-demo8.owl-theme .owl-controls .owl-buttons {
    position: absolute;
    bottom: 0%;
    width: 100%;
    height: 0;
    display: none;
}

#owl-demo8.owl-theme .owl-controls .owl-buttons div {
    color: #FFF;
    display: inline-block;
    zoom: 1;*display: inline;
    width: 15px;
    height: 25px;
    /*IE7 life-saver*/
    text-indent: 60px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-top: -73px;
}

#owl-demo8.owl-theme .owl-controls .owl-buttons div.owl-prev {
    background: url(../images/left2.png) center bottom no-repeat;
    float: left;
    margin-left: 0;
    background-size: 100% 100%;
}

#owl-demo8.owl-theme .owl-controls .owl-buttons div.owl-prev:hover {
    transition: all 0.3s;
    /*filter: Alpha(Opacity=80);opacity: 0.8;*/
}

#owl-demo8.owl-theme .owl-controls .owl-buttons div.owl-prev.disabled {
    background: none;
}

#owl-demo8.owl-theme .owl-controls .owl-buttons div.owl-next {
    background: url(../images/right2.png) center bottom no-repeat;
    float: right;
    margin-right: 0;
    background-size: 100% 100%;
}

#owl-demo8.owl-theme .owl-controls .owl-buttons div.owl-next.disabled {
    background: none;
}

#owl-demo8.owl-theme .owl-controls .owl-buttons div.owl-next:hover {
    transition: all 0.3s;
    filter: Alpha(Opacity=80);
    opacity: 0.8;
}

#owl-demo8 .item {
    margin: 0px 0px;
}

#owl-demo8 .item dd {
    width: 100%;
    margin: 0 auto;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

#owl-demo8 .item dd:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0px;
    border-bottom: 1px solid #000;
    bottom: 60px;
    left: 0px;
}

#owl-demo8 .item dd:hover {
    transition: all 0.3s;
    filter: Alpha(Opacity=80);
    opacity: 0.8;
}

#owl-demo8 .item dd .years {
    color: #666666;
    height: 60px;
    line-height: 48px;
    margin-top: 48px;
    padding-top: 12px;
    position: relative;
    text-align: center;
    cursor: pointer;
}

#owl-demo8 .item dd .years b {
    font-size: 20px;
    font-weight: bold;
    margin-right: 5px;
    font-family: Arial;
    transition: all 0.3s;
}

#owl-demo8 .item dd .years:after {
    content: "";
    position: absolute;
    width: 19px;
    height: 58px;
    background: #010101;
    top: -48px;
    left: 50%;
    margin-left: -10px;
    background: url(../images/about_pic3.png) center bottom no-repeat;
    background-size: 100% 100%;
    z-index: 1;
    transition: all 0.3s;
}

#owl-demo8 .owl-item.psel .item dd .years {
    color: #0047ba;
    line-height: 60px;
}

#owl-demo8 .owl-item.psel .item dd .years:after {
    background-image: url(../images/about_pic3_on.png);
}

#owl-demo8 .owl-item.psel .item dd .years b {
    font-size: 32px;
}

/*公司风采*/
.fcpic {
    margin: 0 auto;
    text-align: center;
    margin-top: 5%;
    margin-bottom: 7%;
    width: 100%;
}

/*.fcpic.owl-carousel .owl-wrapper-outer{ overflow:visible;}*/
/* Styling Next and Prev buttons*/
.fcpic.owl-theme .owl-controls .owl-pagination {
    display: none;
}

/* Styling Pagination*/
.fcpic.owl-theme .owl-controls .owl-page {
    display: inline-block;
    zoom: 1;*display: inline;
    /*IE7 life-saver*/
    margin-top: 42px;
}

.fcpic.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 10px;
    height: 10px;
    margin: 10px 4px;
    /*filter: Alpha(Opacity=50);opacity: 0.5;*/
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #c3c3c3;
}

.fcpic.owl-theme .owl-controls .owl-page.active span {
    background: #1a77b6;
}

.fcpic.owl-theme .owl-controls .owl-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    height: 0;
}

.fcpic.owl-theme .owl-controls .owl-buttons div {
    color: #FFF;
    display: inline-block;
    zoom: 1;*display: inline;
    width: 60px;
    height: 60px;
    /*IE7 life-saver*/
    text-indent: 100px;
    line-height: 60px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-top: -30px;
    /*box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15); */
    border-radius: 50%;
}

.fcpic.owl-theme .owl-controls .owl-buttons div.owl-prev {
    background: url(../images/left.png) rgba(0,29,231,0.1) center center no-repeat;
    background-size: 100%;
    float: left;
    margin-left: -90px;
}

.fcpic.owl-theme .owl-controls .owl-buttons div.owl-prev:hover {
    /*background-image:url(../images/left_on.png);opacity:0.8;filter:Alpha(opacity=80);*/
    background-color: #0047ba;
}

.fcpic.owl-theme .owl-controls .owl-buttons div.owl-next {
    background: url(../images/right.png) rgba(0,29,231,0.1) center center no-repeat;
    background-size: 100%;
    float: right;
    margin-right: -90px;
}

.fcpic.owl-theme .owl-controls .owl-buttons div.owl-next:hover {
    /*background-image:url(../images/right_on.png);opacity:0.8;filter:Alpha(opacity=80);*/
    background-color: #0047ba;
}

.fcpic.owl-theme .owl-controls .owl-page {
    display: inline-block;
}

.fcpic .item {
    margin: 0 2%;
}

.fcpic .item .imgs {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
    margin-bottom: 4%;
    border-radius: 10px;
}

.fcpic .item .imgs img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    -o-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
    /* -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%);-o-filter: grayscale(100%); filter: grayscale(100%); filter: gray;*/
}

.fcpic .item dd .imgs:hover img {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    /*-webkit-filter: grayscale(0%); -moz-filter: grayscale(0%); -ms-filter: grayscale(0%);-o-filter: grayscale(0%); filter: grayscale(0%); filter:none;*/
}

.fcpic .item dd {
    /*float:left; width:32.33%; margin-right:1.5%;*/
}

/*.fcpic .item dd:nth-child(3n+0){ margin-right:0;}*/
.fcpic .item dd.bgs2 .imgs {
    padding-top: 124%;
}

/*产品详细*/
#owl-demo6 {
    width: calc(100% - 120px);
    width: -webkit-calc(100% - 120px);
    width: -moz-calc(100% - 120px);
    margin: 0 auto;
    text-align: center;
}

#owl-demo6 .owl-item.loading {
    min-height: 35px;
}

#owl-demo6.owl-theme .owl-controls {
    top: 0;
    height: 0;
}

#owl-demo6.owl-theme .owl-controls .owl-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0px;
    height: 0;
}

#owl-demo6.owl-theme .owl-controls .owl-buttons div {
    color: #FFF;
    display: inline-block;
    zoom: 1;*display: inline;
    width: 60px;
    height: 100px;
    /*IE7 life-saver*/
    text-indent: 60px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-top: -50px;
}

#owl-demo6.owl-theme .owl-controls .owl-buttons div.owl-prev {
    background: url(../images/left2.png) #f7f7f7 center center no-repeat;
    background-size: 16px 30px;
    float: left;
    margin-left: -60px;
}

#owl-demo6.owl-theme .owl-controls .owl-buttons div.owl-prev:hover {
    background-image: url(../images/left2_on.png);
    background-color: #0047ba;
}

#owl-demo6.owl-theme .owl-controls .owl-buttons div.owl-next {
    background: url(../images/right2.png) #f7f7f7 center center no-repeat;
    background-size: 16px 30px;
    float: right;
    margin-right: -60px;
}

#owl-demo6.owl-theme .owl-controls .owl-buttons div.owl-next:hover {
    background-image: url(../images/right2_on.png);
    background-color: #0047ba;
}

#owl-demo6 .item {
    margin: 0px 5px;
}

#owl-demo6 .item img {
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
}

/*#owl-demo6 .item dd:after{ content:""; position:absolute; width:100%; height:100%; top:0; left:0; background:rgba(0,0,0,0.3);}*/
#owl-demo6 .item dd {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid #e6e6e6;
    padding-top: 65%;
    margin-top: 1px;
}

#qywh .item dd:Hover {
    border: 1px solid #e80618;
}

/*#owl-demo6 .item .psel:after{ background:none;}*/
#owl-demo6 .item .psel {
    border: 2px solid #e80618;
    margin-top: 0;
}

#owl-demo6 .item dd .h4 {
    font-weight: normal;
    font-size: 12px;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 24px;
    line-height: 24px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    text-align: center;
}

#owl-demo6 .item .psel .h4 {
    background: #f49500;
}

/*产品中心*/
.owl-demo7 {
    width: 102%;
    margin-left: -1%;
    margin: 0 auto;
    margin-top: 2%;
    text-align: center;
    margin-bottom: 4%;
}

/*.owl-demo7.owl-carousel .owl-wrapper-outer{ overflow:visible;}*/
/* Styling Next and Prev buttons*/
.owl-demo7.owl-theme .owl-controls .owl-pagination {
    display: none;
}

.owl-demo7.owl-theme .owl-controls .owl-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    height: 0;
    display: none;
}

.owl-demo7.owl-theme .owl-controls .owl-buttons div {
    color: #FFF;
    display: inline-block;
    zoom: 1;*display: inline;
    width: 23px;
    height: 41px;
    /*IE7 life-saver*/
    text-indent: 100px;
    line-height: 40px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-top: -20px;
    /*box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15); border-radius:50%;*/
}

.owl-demo7.owl-theme .owl-controls .owl-buttons div.owl-prev {
    background: url(../images/left.png) center center no-repeat;
    background-size: 100%;
    float: left;
    margin-left: -110px;
}

.owl-demo7.owl-theme .owl-controls .owl-buttons div.owl-prev:hover {
    background-image: url(../images/left_on.png);
    opacity: 0.8;
    filter: Alpha(opacity=80);
}

.owl-demo7.owl-theme .owl-controls .owl-buttons div.owl-next {
    background: url(../images/right.png) center center no-repeat;
    background-size: 100%;
    float: right;
    margin-right: -110px;
}

.owl-demo7.owl-theme .owl-controls .owl-buttons div.owl-next:hover {
    background-image: url(../images/right_on.png);
    opacity: 0.8;
    filter: Alpha(opacity=80);
}

.owl-demo7.owl-theme .owl-controls .owl-page {
    display: inline-block;
}

.owl-demo7 .item {
    margin: 0 2.5%;
}

.owl-demo7 .item .imgs {
    position: relative;
    overflow: hidden;
    padding-top: 48%;
}

.owl-demo7 .item .imgs img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    -o-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
    /*-webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%);-o-filter: grayscale(100%); filter: grayscale(100%); filter: gray;*/
}

.owl-demo7 .item dd:hover .imgs img {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    /*-webkit-filter: grayscale(0%); -moz-filter: grayscale(0%); -ms-filter: grayscale(0%);-o-filter: grayscale(0%); filter: grayscale(0%); filter:none;*/
}

.owl-demo7 .item dd {
    position: relative;
    margin-top: 3%;
    margin-bottom: 5%;
}

.owl-demo7 .item dd .boxs2 {
    background: #fff;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s;
}

.owl-demo7 .item dd .boxs2:hover {
    box-shadow: 2px 2px 10px rgba(0,0,0,0.15);
}

.owl-demo7 .item dd .boxs2 .txts {
    position: absolute;
    width: 53.33%;
    right: 0;
    top: 0;
    height: 100%;
    background: #f7f7f7;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: left;
}

.owl-demo7 .item dd .boxs2 .imgs {
    float: left;
    position: relative;
    padding-top: 48%;
    transition: all 0.3s;
    width: 48%;
}

.owl-demo7 .item dd .boxs2 .imgs img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    -o-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
    /*-webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%);-o-filter: grayscale(100%); filter: grayscale(100%); filter: gray;*/
}

.owl-demo7 .item dd .boxs2:hover .imgs img {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    /*-webkit-filter: grayscale(0%); -moz-filter: grayscale(0%); -ms-filter: grayscale(0%);-o-filter: grayscale(0%); filter: grayscale(0%); filter:none;*/
}

.owl-demo7 .item dd .boxs2 .boxs {
    margin: 0 auto;
    position: relative;
    width: 90%;
    max-width: 310px;
    text-align: left;
}

.owl-demo7 .item dd .boxs2 .label {
    display: block;
    text-align: left;
    height: 24px;
    line-height: 24px;
    color: #333333;
    font-size: 18px;
    transition: all 0.3s;
}

.owl-demo7 .item dd .boxs2 .h3 {
    font-weight: bold;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    color: #333333;
    transition: all 0.3s;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.owl-demo7 .item dd .boxs2:hover .h3 {
    color: #d10000;
}

.owl-demo7 .item dd .boxs2 .p {
    color: #666666;
    font-size: 16px;
    line-height: 32px;
    height: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-top: 13px;
}

.owl-demo7 .item dd .boxs2 .o_more.rbtn {
    margin-top: 29px;
    color: #999;
    border: 1px solid #ccc;
}

.owl-demo7 .item dd .boxs2 .o_more.rbtn:hover {
    color: #fff;
}

/*关于图片*/
.gywm {
    margin: 0 auto;
    width: 102%;
    margin-left: -1%;
    text-align: center;
    margin-top: 6%;
    margin-bottom: 6%;
}

.gywm.owl-theme .owl-controls .owl-pagination {
}

.gywm.owl-theme .owl-controls .owl-page {
    display: inline-block;
    zoom: 1;*display: inline;
    margin-top: 30px;
}

.gywm.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 16px;
    height: 16px;
    margin: 10px 5px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #e5e5e5;
}

.gywm.owl-theme .owl-controls .owl-page.active span {
    background: #0047ba;
}

.gywm.owl-theme .owl-controls .owl-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    height: 0;
    display: none;
}

.gywm.owl-theme .owl-controls .owl-buttons div {
    color: #FFF;
    display: inline-block;
    zoom: 1;*display: inline;
    width: 18px;
    height: 29px;
    text-indent: 100px;
    line-height: 40px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-top: -35px;
}

.gywm.owl-theme .owl-controls .owl-buttons div.owl-prev {
    background: url(../images/left.png) center center no-repeat;
    background-size: 100%;
    float: left;
    margin-left: -52px;
}

.gywm.owl-theme .owl-controls .owl-buttons div.owl-prev:hover {
    background-image: url(../images/left_on.png);
    opacity: 0.8;
    filter: Alpha(opacity=80);
}

.gywm.owl-theme .owl-controls .owl-buttons div.owl-next {
    background: url(../images/right.png) center center no-repeat;
    background-size: 100%;
    float: right;
    margin-right: -52px;
}

.gywm.owl-theme .owl-controls .owl-buttons div.owl-next:hover {
    background-image: url(../images/right_on.png);
    opacity: 0.8;
    filter: Alpha(opacity=80);
}

.gywm.owl-theme .owl-controls .owl-page {
    display: inline-block;
}

.gywm .item {
    margin: 0 2%;
}

.gywm .item dd {
    overflow: hidden;
    position: relative;
}

.gywm .item dd .imgs {
    overflow: hidden;
    position: relative;
    padding-top: 59.04%;
    border-radius: 10px;
}

.gywm .item dd .imgs img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.gywm .item dd .imgs:hover img {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.gywm .item dd .txts {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    transition: all 0.3s;
}

.gywm .item dd .txts .h3 {
    font-weight: normal;
    max-width: 440px;
    text-align: right;
    width: 94%;
    margin: 0 auto;
    height: 60px;
    line-height: 60px;
    overflow: hidden;
    font-size: 20px;
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*产品特性*/
.owl-demo11 {
    margin: 0 auto;
    text-align: center;
    margin-top: 3%;
    margin-bottom: 6%;
}

/*.owl-demo11.owl-carousel .owl-wrapper-outer{ overflow:visible;}*/
/* Styling Next and Prev buttons*/
.owl-demo11.owl-theme .owl-controls .owl-pagination {
    display: none;
}

.owl-demo11.owl-theme .owl-controls .owl-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    height: 0;
    display: none;
}

.owl-demo11.owl-theme .owl-controls .owl-buttons div {
    color: #FFF;
    display: inline-block;
    zoom: 1;*display: inline;
    width: 23px;
    height: 41px;
    /*IE7 life-saver*/
    text-indent: 100px;
    line-height: 40px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-top: -20px;
    /*box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15); border-radius:50%;*/
}

.owl-demo11.owl-theme .owl-controls .owl-buttons div.owl-prev {
    background: url(../images/left.png) center center no-repeat;
    background-size: 100%;
    float: left;
    margin-left: -110px;
}

.owl-demo11.owl-theme .owl-controls .owl-buttons div.owl-prev:hover {
    background-image: url(../images/left_on.png);
    opacity: 0.8;
    filter: Alpha(opacity=80);
}

.owl-demo11.owl-theme .owl-controls .owl-buttons div.owl-next {
    background: url(../images/right.png) center center no-repeat;
    background-size: 100%;
    float: right;
    margin-right: -110px;
}

.owl-demo11.owl-theme .owl-controls .owl-buttons div.owl-next:hover {
    background-image: url(../images/right_on.png);
    opacity: 0.8;
    filter: Alpha(opacity=80);
}

.owl-demo11.owl-theme .owl-controls .owl-page {
    display: inline-block;
}

.owl-demo11 .item {
    margin: 0 0%;
}

.owl-demo11 .item .imgs {
    position: relative;
    overflow: hidden;
    padding-top: 158px;
    width: 194px;
    margin: 0 auto;
}

.owl-demo11 .item .imgs img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    -o-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
}

/*.owl-demo11 .item dd:hover .imgs img{-webkit-transform:scale(1.1, 1.1); -moz-transform:scale(1.1, 1.1); -o-transform:scale(1.1, 1.1); -ms-transform:scale(1.1, 1.1); transform:scale(1.1, 1.1);}*/
.owl-demo11 .item dd {
    transition: all 0.3s;
    position: relative;
}

.owl-demo11 .item dd .txts {
    width: 94%;
    max-width: 320px;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
}

.owl-demo11 .item dd .h3 {
    font-weight: normal;
    overflow: hidden;
    line-height: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #333333;
    font-size: 18px;
    transition: all 0.3s;
}

.owl-demo11 .item dd:hover {
    transform: translate(0%, -3px);
}

.owl-demo11 .item dd:hover .h3 {
    color: #008cd6;
}

.owl-demo11 .item dd .p {
    color: #999999;
    line-height: 24px;
    overflow: hidden;
    font-size: 14px;
}

/*应用场景*/
.owl-demo12 {
    margin: 0 auto;
    text-align: center;
    margin-top: 3%;
    margin-bottom: 6%;
}

/*.owl-demo11.owl-carousel .owl-wrapper-outer{ overflow:visible;}*/
/* Styling Next and Prev buttons*/
.owl-demo12.owl-theme .owl-controls .owl-pagination {
    display: none;
}

.owl-demo12.owl-theme .owl-controls .owl-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    height: 0;
    display: none;
}

.owl-demo12.owl-theme .owl-controls .owl-buttons div {
    color: #FFF;
    display: inline-block;
    zoom: 1;*display: inline;
    width: 23px;
    height: 41px;
    /*IE7 life-saver*/
    text-indent: 100px;
    line-height: 40px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-top: -20px;
    /*box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15); border-radius:50%;*/
}

.owl-demo12.owl-theme .owl-controls .owl-buttons div.owl-prev {
    background: url(../images/left.png) center center no-repeat;
    background-size: 100%;
    float: left;
    margin-left: -110px;
}

.owl-demo12.owl-theme .owl-controls .owl-buttons div.owl-prev:hover {
    background-image: url(../images/left_on.png);
    opacity: 0.8;
    filter: Alpha(opacity=80);
}

.owl-demo12.owl-theme .owl-controls .owl-buttons div.owl-next {
    background: url(../images/right.png) center center no-repeat;
    background-size: 100%;
    float: right;
    margin-right: -110px;
}

.owl-demo12.owl-theme .owl-controls .owl-buttons div.owl-next:hover {
    background-image: url(../images/right_on.png);
    opacity: 0.8;
    filter: Alpha(opacity=80);
}

.owl-demo12.owl-theme .owl-controls .owl-page {
    display: inline-block;
}

.owl-demo12 .item {
    margin: 0 3%;
}

.owl-demo12 .item .imgs {
    position: relative;
    overflow: hidden;
    padding-top: 63%;
}

.owl-demo12 .item .imgs img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    -o-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
}

.owl-demo12 .item dd:hover .imgs img {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.owl-demo12 .item dd {
    transition: all 0.3s;
    position: relative;
}

.owl-demo12 .item dd .h3 {
    font-weight: normal;
    overflow: hidden;
    line-height: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #333333;
    font-size: 15px;
    transition: all 0.3s;
}

.owl-demo12 .item dd:hover .h3 {
    color: #008cd6;
}

/*企业文化*/
.qywh {
    margin: 0 auto;
    width: 102%;
    margin-left: -1%;
    text-align: center;
    margin-top: 3%;
}

/*.qywh.owl-carousel .owl-wrapper-outer{ overflow:visible;}*/
/* Styling Next and Prev buttons*/
.qywh.owl-theme .owl-controls .owl-pagination {
}

.qywh.owl-theme .owl-controls .owl-page {
    display: inline-block;
    zoom: 1;*display: inline;
    /*IE7 life-saver*/
    margin-top: 30px;
}

.qywh.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 12px;
    height: 12px;
    margin: 10px 5px;
    /*filter: Alpha(Opacity=50);opacity: 0.5;*/
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #e5e5e5;
}

.qywh.owl-theme .owl-controls .owl-page.active span {
    background: #0047ba;
}

.qywh.owl-theme .owl-controls .owl-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    height: 0;
    display: none;
}

.qywh.owl-theme .owl-controls .owl-buttons div {
    color: #FFF;
    display: inline-block;
    zoom: 1;*display: inline;
    width: 18px;
    height: 29px;
    /*IE7 life-saver*/
    text-indent: 100px;
    line-height: 40px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-top: -35px;
    /*box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15); border-radius:50%;*/
}

.qywh.owl-theme .owl-controls .owl-buttons div.owl-prev {
    background: url(../images/left.png) center center no-repeat;
    background-size: 100%;
    float: left;
    margin-left: -52px;
}

.qywh.owl-theme .owl-controls .owl-buttons div.owl-prev:hover {
    background-image: url(../images/left_on.png);
    opacity: 0.8;
    filter: Alpha(opacity=80);
}

.qywh.owl-theme .owl-controls .owl-buttons div.owl-next {
    background: url(../images/right.png) center center no-repeat;
    background-size: 100%;
    float: right;
    margin-right: -52px;
}

.qywh.owl-theme .owl-controls .owl-buttons div.owl-next:hover {
    background-image: url(../images/right_on.png);
    opacity: 0.8;
    filter: Alpha(opacity=80);
}

.qywh.owl-theme .owl-controls .owl-page {
    display: inline-block;
}

.qywh .item {
    margin: 0 4%;
}

.qywh .item .imgs {
    overflow: hidden;
    position: relative;
    padding-top: 66.8%;
}

.qywh .item .imgs img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    -o-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
    /*-webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%);-o-filter: grayscale(100%); filter: grayscale(100%); filter: gray;*/
}

.qywh .item dd:hover .imgs img {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    /*-webkit-filter: grayscale(0%); -moz-filter: grayscale(0%); -ms-filter: grayscale(0%);-o-filter: grayscale(0%); filter: grayscale(0%); filter:none;*/
}

.qywh .item dd {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
}

.qywh .item dd .txts {
    overflow: hidden;
    width: 96%;
    margin: 0 auto;
    max-width: 296px;
    margin-top: 4%;
    margin-bottom: 8%;
}

.qywh .item dd .txts .h3 {
    font-weight: bold;
    overflow: hidden;
    line-height: 52px;
    height: 52px;
    color: #333333;
    white-space: nowrap;
    text-overflow: ellipsis;
	font-size:24px;
}

.qywh .item dd .txts .p2 {
    color: #666666;
    font-size: 16px;
    line-height: 32px;
    height: 64px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 1560px) {
    /*合作伙伴*/ .owl-demo6.owl-theme .owl-controls .owl-buttons div.owl-prev {
        margin-left:-40px;
    }

    .owl-demo6.owl-theme .owl-controls .owl-buttons div.owl-next {
        margin-right: -40px;
    }

    /*荣誉资质*/
    .honor.owl-theme .owl-controls .owl-buttons div.owl-prev {
        margin-left: -20px;
    }

    .honor.owl-theme .owl-controls .owl-buttons div.owl-next {
        margin-right: -20px;
    }
}

@media screen and (max-width: 1440px) {
    /*合作伙伴*/ .owl-demo6.owl-theme .owl-controls .owl-buttons div.owl-prev {
        margin-left:10px;
    }

    .owl-demo6.owl-theme .owl-controls .owl-buttons div.owl-next {
        margin-right: 10px;
    }

    /*荣誉资质*/
    .honor.owl-theme .owl-controls .owl-buttons div.owl-prev {
        margin-left: -10px;
    }

    .honor.owl-theme .owl-controls .owl-buttons div.owl-next {
        margin-right: -10px;
    }

    /*公司风采*/
    .fcpic.owl-theme .owl-controls .owl-buttons div.owl-prev {
        margin-left: -30px;
    }

    .fcpic.owl-theme .owl-controls .owl-buttons div.owl-next {
        margin-right: -30px;
    }

    /*产品详细*/
    #owl-demo6 {
        width: calc(100% - 80px);
        width: -webkit-calc(100% - 80px);
        width: -moz-calc(100% - 80px);
    }

    #owl-demo6.owl-theme .owl-controls .owl-buttons div {
        height: 88px;
        margin-top: -44px;
        width: 40px;
    }

    #owl-demo6.owl-theme .owl-controls .owl-buttons div.owl-prev {
        margin-left: -40px;
    }

    #owl-demo6.owl-theme .owl-controls .owl-buttons div.owl-next {
        margin-right: -40px;
    }
}

@media screen and (max-width: 1360px) {
    /*产品中心*/ .owl-demo7 .item dd .boxs2 .label {
        font-size:16px;
    }

    .owl-demo7 .item dd .boxs2 .p {
        font-size: 15px;
        line-height: 26px;
        height: 78px;
        margin-top: 10px;
    }

    .owl-demo7 .item dd .boxs2 .o_more.rbtn {
        margin-top: 5%;
    }
}

@media screen and (max-width: 1200px) {
    /*荣誉资质*/ .honor .item dd .h3 {
        height:60px;
        line-height: 60px;
    }

    /*公司风采*/
    .fcpic.owl-theme .owl-controls .owl-buttons div.owl-prev {
        margin-left: -10px;
    }

    .fcpic.owl-theme .owl-controls .owl-buttons div.owl-next {
        margin-right: -10px;
    }

    /*产品详细*/
    #owl-demo6 {
        width: calc(100% - 50px);
        width: -webkit-calc(100% - 50px);
        width: -moz-calc(100% - 50px);
    }

    #owl-demo6.owl-theme .owl-controls .owl-buttons {
        display: block;
    }

    #owl-demo6.owl-theme .owl-controls .owl-buttons div {
        width: 25px;
        height: 66px;
        margin-top: -33px;
    }

    #owl-demo6.owl-theme .owl-controls .owl-buttons div.owl-prev {
        margin-left: -25px;
    }

    #owl-demo6.owl-theme .owl-controls .owl-buttons div.owl-next {
        margin-right: -25px;
    }

    /*产品中心*/
    .owl-demo7 .item dd .boxs2 .o_more.rbtn {
        display: none;
    }
}

@media screen and (max-width: 960px) {
    /*荣誉资质*/ .honor .item dd .h3 {
        height:50px;
        line-height: 50px;
        font-size: 14px;
    }

    /*历程2*/
    #owl-demo8 .item dd .years b {
        font-size: 18px;
    }

    #owl-demo8 .owl-item.psel .item dd .years b {
        font-size: 28px;
    }

    /*公司风采*/
    .fcpic.owl-theme .owl-controls .owl-buttons div {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }

    /*产品详细*/
    #owl-demo6.owl-theme .owl-controls .owl-buttons div {
        height: 60px;
        margin-top: -30px;
        background-color: #fff;
    }

    #owl-demo6.owl-theme .owl-controls .owl-buttons div.owl-prev:hover {
        background-image: url(../images/left2.png);
        background-color: #fff;
    }

    #owl-demo6.owl-theme .owl-controls .owl-buttons div.owl-next:hover {
        background-image: url(../images/right2.png);
        background-color: #fff;
    }

    /*产品中心*/
    .owl-demo7 .item dd .boxs2 .h3 {
        height: 36px;
        line-height: 36px;
    }

    .owl-demo7 .item dd .boxs2 .label {
        font-size: 15px;
    }

    .owl-demo7 .item dd .boxs2 .p {
        font-size: 14px;
        line-height: 24px;
        height: 72px;
        margin-top: 8px;
    }

    /*关于我们*/
    .gywm .item dd .txts .h3 {
        height: 50px;
        line-height: 50px;
        font-size: 16px;
    }

    /*产品特性*/
    .owl-demo11 .item dd .h3 {
        font-size: 17px;
        line-height: 26px;
    }

    .owl-demo11 .item dd .p {
        font-size: 13px;
    }

    /*应用场景*/
    .owl-demo12 .item dd .h3 {
        font-size: 14px;
        line-height: 26px;
    }

    /*企业文化*/
    .qywh .item dd .txts .p2 {
        font-size: 15px;
        line-height: 28px;
        height: 56px;
    }

    .qywh .item dd .txts .h3 {
        height: 44px;
        line-height: 44px;
    }
}

@media screen and (max-width: 780px) {
    /*产品中心*/ .owl-demo7 .item dd .boxs2 .h3 {
        height:30px;
        line-height: 30px;
    }

    .owl-demo7 .item dd .boxs2 .label {
        font-size: 14px;
    }

    .owl-demo7 .item dd .boxs2 .p {
        font-size: 13px;
        line-height: 22px;
        height: 66px;
        margin-top: 6px;
    }
}

@media screen and (max-width: 640px) {
    /*合作伙伴*/ .owl-demo6.owl-theme .owl-controls .owl-buttons div {
        width:18px;
        height: 31px;
        margin-top: -15px;
    }

    .owl-demo6 .item {
        margin: 0 2%;
    }

    .owl-demo6 .item dd {
        margin-bottom: 4%;
    }

    /*历程2*/
    #owl-demo8 .item dd .years b {
        font-size: 16px;
    }

    #owl-demo8 .owl-item.psel .item dd .years b {
        font-size: 24px;
    }

    #owl-demo8 .owl-item .item dd .years {
        height: 50px;
        line-height: 38px;
    }

    #owl-demo8 .owl-item.psel .item dd .years {
        line-height: 50px;
    }

    #owl-demo8 .item dd .years:after {
        top: -58px;
    }

    /*公司风采*/
    .fcpic {
        margin-bottom: 40px;
    }

    .fcpic.owl-theme .owl-controls .owl-page {
        margin-top: 28px;
    }

    .fcpic.owl-theme .owl-controls .owl-page span {
        width: 10px;
        height: 10px;
        margin: 10px 4px;
    }

    .fcpic.owl-theme .owl-controls .owl-buttons div.owl-prev {
        margin-left: -5px;
    }

    .fcpic.owl-theme .owl-controls .owl-buttons div.owl-next {
        margin-right: -5px;
    }

    /*.fcpic .item dd{ border-width:4px;}*/
    /*产品详细*/
    #owl-demo6 {
        width: calc(100% - 40px);
        width: -webkit-calc(100% - 40px);
        width: -moz-calc(100% - 40px);
    }

    #owl-demo6.owl-theme .owl-controls .owl-buttons div {
        width: 20px;
        height: 40px;
        margin-top: -20px;
        background-size: 10px 20px;
    }

    #owl-demo6.owl-theme .owl-controls .owl-buttons div.owl-prev {
        background-size: 10px 20px;
        margin-left: -20px;
    }

    #owl-demo6.owl-theme .owl-controls .owl-buttons div.owl-next {
        background-size: 10px 20px;
        margin-right: -20px;
    }

    /*关于我们*/
    .gywm .item dd .txts .h3 {
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }

    /*产品特性*/
    .owl-demo11 .item .imgs {
        width: 150px;
        padding-top: 122px;
    }

    /*企业文化*/
    .qywh .item dd .txts {
        margin-bottom: 10%;
    }

    .qywh .item dd .txts .p2 {
        font-size: 14px;
        line-height: 26px;
        height: 52px;
    }
}

@media screen and (max-width: 500px) {
}

@media screen and (max-width: 480px) {
    /*荣誉资质*/ .honor.owl-theme .owl-controls .owl-buttons div {
        width:15px;
        height: 25px;
        margin-top: -28px;
    }

    .honor.owl-theme .owl-controls .owl-buttons div.owl-prev {
        margin-left: -5px;
    }

    .honor.owl-theme .owl-controls .owl-buttons div.owl-next {
        margin-right: -5px;
    }

    .honor.owl-theme .owl-controls .owl-page {
        margin-top: 25px;
    }

    .honor.owl-theme .owl-controls .owl-page span {
        width: 12px;
        height: 12px;
    }

    .honor .item dd .h3 {
        font-size: 13px;
        height: 40px;
        line-height: 40px;
    }

    .honor .item {
        margin: 0 3%;
    }

    /*历程2*/
    #owl-demo8.owl-theme .owl-controls .owl-buttons div {
        width: 12px;
        height: 20px;
        margin-top: -70px;
    }

    /*公司风采*/
    .fcpic {
        margin-bottom: 20px;
    }

    .fcpic.owl-theme .owl-controls .owl-page {
        margin-top: 15px;
    }

    .fcpic.owl-theme .owl-controls .owl-buttons div {
        width: 30px;
        height: 30px;
        margin-top: -15px;
    }

    /*关于我们*/
    .gywm.owl-theme .owl-controls .owl-page {
        margin-top: 25px;
    }

    .gywm.owl-theme .owl-controls .owl-page span {
        width: 12px;
        height: 12px;
    }

    .gywm .item dd .txts .h3 {
        height: 30px;
        line-height: 30px;
        font-size: 13px;
    }

    /*产品特性*/
    .owl-demo11 {
        margin-top: 4%;
    }

    .owl-demo11 .item .imgs {
        width: 130px;
        padding-top: 106px;
    }

    .owl-demo11 .item dd .h3 {
        font-size: 15px;
        line-height: 22px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .owl-demo11 .item dd .p {
        font-size: 12px;
        line-height: 22px;
    }

    /*应用场景*/
    .owl-demo12 {
        margin-top: 4%;
    }

    .owl-demo12 .item dd .h3 {
        font-size: 13px;
        line-height: 22px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    /*企业文化*/
    .qywh {
        margin-top: 5%;
    }

    .qywh .item {
        margin: 0 3%;
    }

    .qywh .item dd .txts .p2 {
        font-size: 13px;
        line-height: 22px;
        height: 44px;
        margin-top: 1%;
    }

    .qywh .item dd .txts .h3 {
        height: 32px;
        line-height: 32px;
		font-size: 16px;
    }
}

@media screen and (max-width: 380px) {
}
