/*聚诚在线（jc128.net）安全--简单--易用*/
body{
    font-family: "Microsoft YaHei","微软雅黑",Helvetica,"Hiragino Sans GB",Arial,sans-serif;
    font-size: 14px;
    line-height: 14px;
    background-repeat: repeat;
	color: #333;
}

::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 5px;
    z-index: 10000;
    /*高宽分别对应横竖滚动条的尺寸*/
    /*height: 5px;*/
}
::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    background-color: #ccc;
    /*background-image: -webkit-linear-gradient(45deg, rgba(255, 93, 143, 1) 25%, transparent 25%, transparent 50%, rgba(255, 93, 143, 1) 50%, rgba(255, 93, 143, 1) 75%, transparent 75%, transparent);*/
}
::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #fff;
}

.section::-webkit-scrollbar{
    display: none;
}
.maimg img{
    max-width: 100%;
    height: auto;
}

/*返回顶部*/
.totop{
    position: fixed;
    right: 30px;
    bottom: 60px;
    z-index: 3000;
    width: 58px;
    height: 58px;
    border-radius: 58px;
    background: #fff; 
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1); 
    cursor: pointer;
    color:#999;
    transition: all 0.5s;
    display: none;
}
.totop span{
    width: 58px;
    height: 58px;
    border-radius: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.totop:hover{
    background: #006fc6;
    color:#fff;
}
.fgdiv{
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 65%;
    background: #fff;
}
.fdimg{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* ----------------------------------------------------------------
    通用
-----------------------------------------------------------------*/
button:focus,div:focus,span:focus,input:focus{outline:0;}

a{
    color: #333;
}

a, a:hover, a:focus{
    text-decoration: none;
}

a:hover, a:focus{
    color: #006fc6;
}

ul,p{
    margin-bottom: 0px;
}

p{
    line-height: 24px;
    word-break: break-all;
}

h6{
    line-height: 28px;
}

h3{
    line-height: 46px;
}

.pem{
    text-indent: 2em;
}

.font14{
    font-size: 14px;
}

.text_999{
    color: #999;
}
.text-primary{
    color: #0070ee;
}

.no_padding{
    padding: 0px;
}
.no_padding_left{
    padding-left: 0px;
}
.no_padding_right{
    padding-right: 0px;
}
.pb-6{
    padding-bottom: 88px;
}
.pt-6{
    padding-top: 88px;
}
.mb-6{
    margin-bottom: 88px;
}
.mt-6{
    margin-top: 88px;
}

.no_margin{
    margin: 0px;
}

/* ----------------------------------------------------------------
    首页
----------------------------------------------------------------- */
/*nav*/
.nav_min{
    background: #fff;
    padding: 0px;
    box-shadow: 0px 0px 15px rgba(153, 153, 153, 0.1);
}
.nav_min .container-fluid{
    padding: 0px 48px;
}
.navbar-brand{
    padding-top: 15px;
    padding-bottom: 15px;
    width: 248px;
    height: 66px;
    background: url(../img/logo.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.5s;
    margin-right: 88px;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding: 37px 0px;
    margin: 0px 24px;
    position: relative;
}
.nav_min .navbar-nav .nav-link{
    color: #000;
    transition: all 0.5s;
}
.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .active>.nav-link{
    color: #006fc6;
}
.nav-link:before{
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    background: #006fc6;
    height: 3px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.nav-link:hover:before,.active .nav-link,.navbar-light .navbar-nav .active>.nav-link:before{
    left: 0%;
    right: 0%;
}

.navbar-toggler{
    border: none;
    padding: 6px 10px 10px 10px;
    margin: 13px 5px;
}
.navbar-toggler .icon-bar{
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background: #000;
    margin-top: 4px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

/* ANIMATED X */
.navbar-toggler .icon-bar:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(-45deg);
    -ms-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
}

.navbar-toggler .icon-bar:nth-of-type(2) {
    opacity: 0;
}

.navbar-toggler .icon-bar:nth-of-type(3) {
    -webkit-transform: translateY(-6px) rotate(45deg);
    -ms-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
}

/* ANIMATED X COLLAPSED */
.navbar-toggler.collapsed .icon-bar:nth-of-type(1) {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.navbar-toggler.collapsed .icon-bar:nth-of-type(2) {
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .icon-bar:nth-of-type(3) {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.top_xiala{
    position: relative;
}
.top_xiala .dropdown-menu{
    right: auto;
    left: 0;
    min-width: 100%;
    width: 240px;
    background: #fff;
    margin-top: 0px;
    z-index: 1000;
    padding: 0px 0px 0px 0px;
    box-shadow: 0px 5px 5px rgba(153,153,153,0.1);
    border-radius: 0px;
    border: none;
    border-top: 1px solid #f5f5f5;
    animation: xianladonghua 0.5s;
    -moz-animation: xianladonghua 0.5s; /* Firefox */
}
@keyframes xianladonghua
{
    0%   {
        margin-top: 20px;
        opacity: 0;
    }
    100% {
        margin-top: 0px;
        opacity: 1;
    }
}
@-moz-keyframes xianladonghua /* Firefox */
{
    0%   {
        margin-top: 20px;
        opacity: 0;
    }
    100% {
        margin-top: 0px;
        opacity: 1;
    }
}
@media (min-width: 1200px){
    .top_xiala:hover .dropdown-menu{
        display: block;
        transition: all .5s;
    }
}
.top_xiala .dropdown-menu a{
    display: block;
    padding: 20px 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px solid #f5f5f5;
    transition: all .5s;
    transition: padding 0.5s;
}
.top_xiala .dropdown-menu a:hover{
    background: #006fc6;
    color: #fff;
    padding: 20px 20px;
    border-bottom: 1px solid #006fc6;
}

.top_xiala .dropdown-toggle{
    display: none;
    position: absolute;
    top: 8px;
    right: 15px;
    border: none;
    border-radius: 0px;
    padding: 13px 18px;
    z-index: 1000;
    background: #eee;
    color: #999;
    border-radius: 50px;
}
.top_xiala .dropdown-toggle::after{
    content: none;
}
@media (max-width: 1200px){
    .top_xiala .dropdown-toggle{
        display: block;
    }
}
.show>.dropdown-toggle:focus{
    transform:rotate(180deg);
    background: #155798;
    color: #fff;
}

.sousuokuang{
    position: absolute;
    left: 0px;
    top: 100%;
    width: 100%;
}
.sousuokuang .card{
    padding-top: 200px;
    padding-bottom: 200px;
}
.navbar .container_style{
    display: block;
}
.sousuo_group{
    position: relative;
}
.sousuo_group:before{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 2px;
    background: #006fc6;
}
.sousuo_control{
    box-shadow: none;
    border: none;
    background: none;
    border-radius: 0px;
    padding: 15px 30px;
    height: 78px;
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
}
.sousuo_control:hover{
    border: none;
}
.search_anniu_top{
    display: inline-block;
    width: 58px;
    height: 58px;
    border: none;
    position: relative;
    background: #fff;
}
.search_anniu_top:before{
    content: "";
    position: absolute;
    margin: auto;
    top: 14px;
    right: 0;
    bottom: 0;
    left: 14px;
    width: 10px;
    height: 2px;
    background: #666;
    transform: rotate(45deg);
    transition: all .5s;
}
.search_anniu_top:after {
    content: "";
    position: absolute;
    margin: auto;
    top: -4px;
    right: 4px;
    bottom: 0;
    left: 0px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #666;
    transition: all .5s;
}
.search_anniu_top2{
    width: 78px;
    height: 76px;
}
.search_anniu_top2:before{
    background: #000;
}
.search_anniu_top2:after{
    border: 2px solid #000;
}

.search_anniu2{
    display: inline-block; 
    width: 78px;
    height: 78px;
    line-height: 78px;
    border-left: none;
    padding: 0px;
    border-radius: 0px;
    position: relative;
    transition: all .5s;
}
.search_anniu2:before{
    content: "";
    position: absolute;
    top: 38px;
    left: 20px;
    width: 38px;
    height: 2px;
    background: #000;
    transform: rotate(45deg);
}
.search_anniu2:after{
    content: "";
    position: absolute;
    top: 38px;
    left: 20px;
    width: 38px;
    height: 2px;
    background: #000;
    transform: rotate(-45deg);
}
.search_anniu2:hover{
    transform: rotate(180deg);
}

.nav_min:hover .search_anniu_top:hover:before{
    background: #006fc6;
}
.nav_min:hover .search_anniu_top:hover:after{
    border: 2px solid #006fc6;
}

.yuyan{
    margin-left: 24px;
}
.yuyan .list-inline-item:not(:last-child){
    margin-right: 0px;
}
.yuyan li{
    margin: 0px 4px;
}
.yuyan li a{
    opacity: 0.7;
}
.yuyan .active a{
    opacity: 1;
}

.nav_min:hover{
    box-shadow: 0px 0px 15px rgba(153, 153, 153, 0.1);
}

@media (min-width:1200px) {
    .nav_container {
        max-width: 1400px
    }
}

/*banner*/
.swiper_height{
    height: 87px;
}
.banner{
    height: 470px;
}

.banner .swiper-wrapper .swiper-slide{
    background-size: cover!important;
    background-position: center!important;
    background-repeat: no-repeat!important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 15px;
}
.banner .swiper-wrapper .swiper-slide div{
    transform:translateX(400px);
    opacity:0;
    transition:all .8s;
}
.banner .swiper-wrapper .ani-slide div{
    transform:translateX(0);
    opacity:1;
}

.banner .swiper-pagination-bullet{
    width: 48px;
    height: 3px;
    background: #fff;
    opacity: 0.5;
    position: relative;
    border-radius: 0px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.banner>.swiper-pagination-bullets{
    bottom: 48px;
}
.banner .swiper-pagination-bullet-active{
    opacity: 1;
}
.banner>.swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0px 6px;
}

.banner .swiper-button-next,.banner .swiper-button-prev{
    width: 48px;
    height: 48px; 
    background: rgba(0,111,198,0.3);
    border-radius: 50px;
    transition: background 0.5s,opacity 0.5s;
    -webkit-transition: background 0.5s,opacity 0.5s; /* Safari */
}
.banner .swiper-button-prev{
    left: 30px;
    opacity: 1;
    margin-top: -24px;
}
.banner .swiper-button-next{
    right: 30px;
    opacity: 1;
    margin-top: -24px;
}
.banner:hover .swiper-button-prev{
    opacity: 1;
}
.banner:hover .swiper-button-next{
    opacity: 1;
}
.banner .swiper-button-prev:after,.banner .swiper-button-next:after{
    color: #fff;
    font-size: 18px;
}
.banner .swiper-button-prev:hover:after,.banner .swiper-button-next:hover:after{
    color: #fff;
}
.banner .swiper-button-next:hover,.banner .swiper-button-prev:hover{
    background: rgba(2,108,228,1);
}

/*zhuti*/
.fangda{
    overflow: hidden;
}
.fangda img{
    transition:all 0.5s ease-out; 
}
.fangda:hover img{
    transform:scale(1.1);
}

.gengduo{
    border:2px solid #fff;
    background: #fff;
    color: #000;
    padding: 12px 48px;
}
.gengduo:hover {
    color: #fff;
    background-color: #006fc6;
    border-color: #006fc6;
}
.gengduo i{
    position: relative;
    left: 0px;
    transition: left 0.5s;
    -webkit-transition: left 0.5s; /* Safari */
}
.gengduo:hover i{
    left: 15px;
}

.hvr-float {
    display: block;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    transition: box-shadow 0.5s,transform 0.5s;
    -webkit-transition: box-shadow 0.5s,transform 0.5s; /* Safari */
}
.hvr-float:hover, .hvr-float:focus, .hvr-float:active {
    -webkit-transform:translateY(-8px);
    transform:translateY(-8px);
    box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.3);
}

.zhuti_sousuo{
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
}
.zhuti_sousuo:before{
    content: none;
}

.sousuo_style{
    display: inline-block;
    width: 88px;
    height: 76px;
    position: relative;
    overflow: hidden;
    border: none;
    background: #fff;
}
.sousuo_style:before{
    content: "";
    position: absolute;
    margin: auto;
    top: 14px;
    right: 0;
    bottom: 0;
    left: 14px;
    width: 10px;
    height: 2px;
    background: #000;
    transform: rotate(45deg);
    transition: all .5s;
}
.sousuo_style:after {
    content: "";
    position: absolute;
    margin: auto;
    top: -4px;
    right: 4px;
    bottom: 0;
    left: 0px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #000;
    transition: all .5s;
}
.sousuo_style:hover:before{
    background: #006fc6;
}
.sousuo_style:hover:after{
    border: 2px solid #006fc6;
}

/* box */
.demo1{
    display: flex;
    flex-direction: row;
}
.demo1{
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
    background: url(../img/demo1.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    height: 428px;
    overflow: hidden;
}
.tab_menu{
    width: 198px;
    background: #f5f5f5;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.tab_menu p a{
    border-top: 1px solid #eee;
    padding: 20px 15px;
    display: block;
}
.tab_menu::-webkit-scrollbar {
    /*滚动条整体样式*/
    height: 0px;
    z-index: 10000;
    /*高宽分别对应横竖滚动条的尺寸*/
    /*height: 5px;*/
}
.tab_menu li{
    cursor:pointer;
    margin: 0px;
}
.tab_menu li{
    color:#666;
    text-decoration:none;
    display: block;
    padding: 20px 10px 20px 55px;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.tab_menu .tab_menu_li:before{
    content: "";
    position: absolute;
    left: 15px;
    top: 13px;
    width: 28px;
    height: 28px;
}
.tab_menu .tab_menu_tb1:before{
    background: url(../img/tab_menu_tb1.png) center no-repeat;
}
.tab_menu .tab_menu_tb2:before{
    background: url(../img/tab_menu_tb2.png) center no-repeat;
}
.tab_menu .tab_menu_tb3:before{
    background: url(../img/tab_menu_tb3.png) center no-repeat;
}
.tab_menu .tab_menu_tb4:before{
    background: url(../img/tab_menu_tb4.png) center no-repeat;
}
.tab_menu .tab_menu_tb5:before{
    background: url(../img/tab_menu_tb5.png) center no-repeat;
}
.tab_menu .tab_menu_tb1.current:before{
    background: url(../img/tab_menu_tb1_1.png) center no-repeat;
}
.tab_menu .tab_menu_tb2.current:before{
    background: url(../img/tab_menu_tb2_1.png) center no-repeat;
}
.tab_menu .tab_menu_tb3.current:before{
    background: url(../img/tab_menu_tb3_1.png) center no-repeat;
}
.tab_menu .tab_menu_tb4.current:before{
    background: url(../img/tab_menu_tb4_1.png) center no-repeat;
}
.tab_menu .tab_menu_tb5.current:before{
    background: url(../img/tab_menu_tb5_1.png) center no-repeat;
}

.tab_menu .tab_right_tb1:before{
    background: url(../img/tab_right_tb1.png) center no-repeat;
}
.tab_menu .tab_right_tb2:before{
    background: url(../img/tab_right_tb2.png) center no-repeat;
}
.tab_menu .tab_right_tb3:before{
    background: url(../img/tab_right_tb3.png) center no-repeat;
}
.tab_menu .tab_right_tb4:before{
    background: url(../img/tab_right_tb4.png) center no-repeat;
}
.tab_menu .tab_right_tb5:before{
    background: url(../img/tab_right_tb5.png) center no-repeat;
}
.tab_menu .tab_right_tb1.current:before{
    background: url(../img/tab_right_tb1_1.png) center no-repeat;
}
.tab_menu .tab_right_tb2.current:before{
    background: url(../img/tab_right_tb2_1.png) center no-repeat;
}
.tab_menu .tab_right_tb3.current:before{
    background: url(../img/tab_right_tb3_1.png) center no-repeat;
}
.tab_menu .tab_right_tb4.current:before{
    background: url(../img/tab_right_tb4_1.png) center no-repeat;
}
.tab_menu .tab_right_tb5.current:before{
    background: url(../img/tab_right_tb5_1.png) center no-repeat;
}
.tab_menu li.current{
    color:#006fc6;
    background: #fff;
}
.tab_box{
    width: auto;
}
.tab_box .hide{
    display:none;
}
.tab_box h4{
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 24px;
    margin-bottom: 16px;
    margin-top: 8px;
}
.tab_box ul li a{
    line-height: 36px;
    color: #666;
    overflow: hidden;
    display: -webkit-box; 
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 1; 
    word-break: break-all;
}
.tab_box ul li a i{
    color: #999;
}
.tab_box ul li a:hover{
    color: #006fc6;
}

.demo2{
    display: flex;
    flex-direction: row;
}
.demo2{
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
    background: url(../img/demo1.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    height: 428px;
    overflow: hidden;
}

.index_news_style .fangda img{
    height: 240px;
    object-fit: cover;
}
.index_news_style:hover .fangda img{
    transform:scale(1.1);
}
.index_news_style h6{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    padding-top: 14px;
}
.index_news_style p{
    padding-top: 14px;
    margin-top: 15px;
}

.float_news{
    position: absolute;
    top: 0px;
    left: 0px;
    color: #fff;
    display: inline-block;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.5);
}
.news_ul{
    padding-top: 58px!important;
    position: relative;
}
.news_ul li{
    margin-bottom: 28px;
}
.news_ul li p{
    margin-top: 12px;
}

/*bottom*/
.bottom_bg{
    background: #fff;
}
.di_nav_media{
    border-bottom: 1px solid #eee;
    padding: 36px 0px;
}
.di_nav_media ul li a{
    display: inline-block;
    line-height: 42px;
    font-size: 16px;
    margin-right: 38px;
}
.di_logo{
    margin-right: 86px;
}

.di_media .media{
    margin-bottom: 10px;
}
.di_media .media i{
    width: 24px;
    height: 24px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    margin-right: 15px;
}

/* ----------------------------------------------------------------
    产品分类
----------------------------------------------------------------- */
.product_nr_bg{
    background: url(../img/product_nr_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 285px;
    display: flex;
    align-items: center;
}

.di_sustain_contact{
    border-top: 1px solid #eee;
}
.product_hr{
    border-color: #eee;
}

.product_media{
    padding: 60px 80px;
}
.product_media img{
    width: 88px;
    height: 88px;
    object-fit: contain;
    margin-right: 78px;
}

.product_zhuti{
    padding: 42px 60px;
}

.product_tab_menu{
    width: 278px;
}
.precon{
    white-space: pre-wrap; /* css-3 */
    white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
    font-family: "Microsoft YaHei","微软雅黑",Helvetica,"Hiragino Sans GB",Arial,sans-serif;
    font-size: 14px;
    line-height: 26px;
}
.precon.shsj{
    text-indent: 2em;
}

.pt_ds_style{
    padding: 30px;
}
.pt_ds_bt{
    line-height: 32px;
    padding-left: 42px;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 18px;
    margin-bottom: 24px;
}
.pt_ds_bt:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 32px;
    height: 32px;
    background: url(../img/pt_ds_bt1.png) center no-repeat;
}
.pt_ds_tabs{
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 20px;
}
.pt_ds_tabs .but{
    display: inline-block;
    padding: 18px 24px;
    border: none;
    background: none;
}
.pt_ds_tabs .active{
    background: #f5f5f5;
}
/*.pt_ds_tabs_nr p{
    margin-bottom: 18px;
}*/
.pt_ds_tabs_nr ul li{
    font-size: 18px;
    line-height: 32px;
    margin-right: 58px!important;
}

.pt_ds_bt2:before{
    background: url(../img/pt_ds_bt2.png) center no-repeat;
}

.pt_ds_download{
    display: inline-block;
    background: #006fc6;
    color: #fff;
    padding: 16px 24px;
}
.pt_ds_download:hover{
    color: #fff;
    background: #0064b3;
}
.lbbox{
    display: block;
    overflow: hidden;
    color: #4591e7;
}
.lbbox ul{
    margin:0;
    padding: 0;
}
.lbbox ul li{
    line-height: 23px;
    margin-right: 0 !important;
    font-size: 14px;
    list-style: none;
}
.lbbox ul li a{
    color: #4591e7;
}
.pt_ds_table{
    width: 1110px;
    overflow: hidden;
}
.pt_ds_table thead{
    display: table;
    width: 100%;
    table-layout: fixed;
}
.pt_ds_table tbody{
    display: block;
    height: 415px;
    overflow-y: auto;
    overflow-x: hidden;
    min-width: 100%;
}
.pt_ds_table thead th{
    border-bottom-width: 1px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 5px;
    line-height: 18px;
    vertical-align: inherit;
}
.pt_ds_table tr{
    display: table;
    width: 1110px;
    table-layout: fixed;
}
/*.pt_ds_table thead th:first-child{*/
/*    text-align: left;*/
/*}*/
.pt_ds_table td{
    text-align: center;
    padding: 12px 5px;
    min-width: 70px;
    border-top: none;
}
.pt_ds_table thead th:first-child {
    width: 120px;
}
.pt_ds_table td:first-child {
    width: 120px;
}
/*.pt_ds_table td:first-child{*/
/*    text-align: left;*/
/*}*/

.apply_style h6{
    border-bottom: 1px solid #f9f9f9;
    line-height: 28px;
    padding: 18px 30px 18px 76px;
    position: relative;
}

.apply_style h6:before{
    content: "";
    position: absolute;
    left: 30px;
    top: 18px;
    width: 28px;
    height: 28px;
}
.apply_style ul{
    padding: 15px 30px;
}
.apply_style ul li a{
    display: block;
    line-height: 36px;
    color: #666;
}
.apply_style ul li a i{
    color: #999;
}
.apply_style ul li a:hover{
    color: #006fc6;
}

.apply_style1 h6:before{
    background: url(../img/tab_right_tb1_1.png) center no-repeat;
}
.apply_style2 h6:before{
    background: url(../img/tab_right_tb2_1.png) center no-repeat;
}
.apply_style3 h6:before{
    background: url(../img/tab_right_tb3_1.png) center no-repeat;
}
.apply_style4 h6:before{
    background: url(../img/tab_right_tb4_1.png) center no-repeat;
}
.apply_style5 h6:before{
    background: url(../img/tab_right_tb5_1.png) center no-repeat;
}

.pt_ds_bt3:before{
    background: url(../img/pt_ds_bt3.png) center no-repeat;
}
.pt_ds_bt4:before{
    background: url(../img/pt_ds_bt4.png) center no-repeat;
}
.ay_ds_ul ul li{
    line-height: 36px;
}

.sustain_nav{
    background: #eee;
    padding: 15px 0px;
}
.sustain_nav li a{
    display: block;
    padding: 24px 38px;
    font-size: 16px;
    position: relative;
}
.sustain_nav .active a{
    background: #fff;
}
.sustain_nav .active a:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 5px;
    height: 100%;
    background: #0471c7;
}

.sustain_style h5{
    margin-top: 12px;
    padding-bottom: 24px;
    margin-bottom: 18px;
    border-bottom: 1px solid #f5f5f5;
}
.sustain_style ul li a{
    display: block;
    line-height: 36px;
    color: #666;
}
.sustain_style ul li a:hover{
    color: #0471c7;
}
.fwul li{
    width: 50%;
    float: left;
}

/* ----------------------------------------------------------------
    响应
----------------------------------------------------------------- */
.nav-scroller{
    position: relative;
    z-index: 2;
    height: 68px;
    overflow-y: hidden;
}
.nav-scroller:before{
    content: "";
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background: #eee;
}
.nav-scroller .nav{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.nav-scroller .nav a{
    display: block;
    padding: 28px 0px;
    margin-right: 48px;
    font-size: 18px;
    position: relative;
    color: #999;
}
.nav-scroller .nav .active{
    color: #006fc6;
}
.nav-scroller .nav .active:before{
    content: "";
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 4px;
    background: #006fc6;
}
.nav-scroller .nav a:hover{
    color: #006fc6;
}

.pagination{
    margin: 0px 0px 0px 0px;
}
.pagination a{
    display: inline-block;
    background: #f5f5f5;
    color: #000;
    margin: 0px 8px;
    padding: 18px 22px;
    border: none;
}
.pagination a:hover,.pagination a.page-num-current{
    background: #006fc6;
    color: #fff;
}
.pagination a:first-child{
    border-radius: 0px;
}
.pagination a:last-child{
    border-radius: 0px;
}

/* ----------------------------------------------------------------
    新闻详情页
----------------------------------------------------------------- */
.seardiv{
    display: block;
    overflow: hidden;
    padding:0 10px;
    line-height: 50px;
    background: #fff;
    font-size: 16px;
    border-bottom: 1px dashed #cccccc;
}
.seardiv a{
    float: left;
    font-size: 16px;
}
.seardiv span{
    float: right;
}

.ny_nav{
    margin-top: 98px;
}
.news_right{
    padding-bottom: 20px;
}
.news_right h5{
    padding: 24px 24px;
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 20px;
}
.news_right li a{
    display: block;
    padding: 10px 24px;
}

.news_right .badge{
    width: 24px;
    height: 24px;
    line-height: 18px;
    border-radius: 24px;
    color: #212529;
    background-color: #f8f9fa;
}
.news_right .badge1{
    color: #fff;
    background-color: #dc3545;
}
.news_right .badge2{
    color: #fff;
    background-color: #ffc107;
}
.news_right .badge3{
    color: #fff;
    background-color: #6c757d;
}

.news_ty{   
    padding: 0px 30px;
}
.news_ty li a{
    display: block;
    border-bottom: 1px solid #f5f5f5;
    position: relative; 
    padding: 18px 60px 18px 0px;
}
.news_ty li a .news_ty_xiazai{
    position: absolute;
    right: 0px;
    top: 42px;
    color: #999;
}
.news_ty li a:hover .news_ty_xiazai{
    color: #006fc6;
}

/* ----------------------------------------------------------------
    关于我们
----------------------------------------------------------------- */
.contact_form .form-control{
    border-color: #eee;
    padding: 12px 18px;
}
.form_input_height{
    height: 58px;
}
.contact_form .form-group .input-group .form-control{
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.contact_form .form-group .input-group .input-group-text{
    background: none;
    border-color: #eee;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    padding: 0px;
}

.gengduo_contact{
    border:2px solid #000;
    background: #fff;
    color: #000;
    padding: 14px 60px;
}
.gengduo_contact:hover{
    color: #fff;
    background-color: #006fc6;
    border-color: #006fc6;
}

.join_style .card{
    border: none;
    margin-bottom: 32px;
}
.join_style .card-header{
    background: #fff;
    padding: 0px;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}
.join_style .card-header a{
    display: block;
    padding: 30px 60px 30px 30px;
}
.join_style .card-header h5{
    margin-bottom: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.join_style .card-header ul li{
    font-size: 14px;
    color: #999;
}
.bottom_xiala2:after{
    content: '-';
    display: inline-block;
    text-align: center; 
    color: #fff;
    font-size: 20px;
}
.collapsed .bottom_xiala2:after{
    content: '+';
    display: inline-block;
}
.bottom_xiala2{
    position: absolute;
    right: 30px;
    top: 44px;
    width: 28px;
    height: 28px;
    line-height: 16px;
    border-radius: 28px;
    background: #006fc6;
    text-align: center; 
}
.join_style .card-body{
    padding: 0px 30px 48px 30px;
}
.join_style .card-body h5{
    margin: 48px 0px 24px 0px;
}
.join_style .card-body ul li{
    line-height: 24px;
    color: #999;
}

.sustain_nav{
    position: sticky;
    top: 114px;
}

/* ----------------------------------------------------------------
    响应
----------------------------------------------------------------- */
.md_sousuo{
    display: none;
}
@media (max-width: 1500px){
    .navbar-expand-lg .navbar-nav .nav-link{
        margin: 0px 15px;
    }
}

@media (max-width: 1200px){
    .top_xiala{
        position: relative;
    }
    .nav_min{
        background: #fff;
        border-bottom: #f5f5f5;
    }
    .navbar-brand{
        width: 148px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        margin: 0px 15px;
    }
    .nav_min .navbar-nav .nav-link{
        color: #000;
    }
    .navbar-expand-lg .navbar-nav .nav-link{
        padding: 21px 0px;
        border-bottom: 1px solid #f5f5f5;
    }
    .md_collapse{
        border-top: 1px solid #eee;
        height: 530px;
        overflow-y: auto;
    }
    .md_collapse::-webkit-scrollbar{
        display: none;
    }
    .top_xiala .dropdown-menu{
        background: #f9f9f9;
    }
    .top_xiala .dropdown-menu a{
        display: block;
        text-align: left;
        margin: 0px;
        padding: 15px 15px;
        border-bottom: 1px solid #eee;
    }
    .yuyan{
        display: block;
        margin: 22px 14px;
    }
    .yuyan li a{
        color: #000;
    }
    .pc_sousuo{
        display: none;
    }
    .md_sousuo{
        display: block;
        width: 100%;
        padding: 0px 15px;
        margin-bottom: 18px;
    }
}
@media (max-width: 900px){
    .pb-6{
        padding-bottom: 68px;
    }
    .pt-6{
        padding-top: 68px;
    }
    .mb-6{
        margin-bottom: 68px;
    }
    .mt-6{
        margin-top: 68px;
    }

    .di_nav_media{
        flex-direction: column;
    }
    .di_nav_media ul{
        margin-top: 24px;
    } 
}

@media (max-width: 768px){
    .banner{
        height: 388px;
    }
    .banner h2{
        font-size: 24px;
    }

    .demo1,.demo2{
        height: auto;
        flex-direction: column;
    }
    .tab_menu{
        width: 100%;
    }

    .product_nr_bg{
        height: 288px;
    }
    .product_media{
        padding: 30px 30px;
    }
    .product_media img{
        margin-right: 30px;
    }
    
    .tab_menu{
        padding-top: 0px;
        position: relative;
        z-index: 2;
        height: 118px;
        overflow-y: hidden;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        margin-top: -1px;
        overflow-x: auto;
        text-align: center;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    .tab_menu li{
        display: inline-block;
    }
    .product_tab_menu{
        height: 54px;
    }
    .product_zhuti{
        padding: 30px;
    }
    .fwul li{
        width: 100%;
    }
}