/*聚诚在线（jc128.net）安全--简单--易用*/
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100;
  src: url(../fonts/montserrat-thin.eot);
  src: url(../fonts/montserrat-thin.eot) format('embedded-opentype'),
       url(../fonts/montserrat-thin.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  src: url(../fonts/montserrat-extralight.eot);
  src: url(../fonts/montserrat-extralight.eot) format('embedded-opentype'),
       url(../fonts/montserrat-extralight.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/montserrat-light.eot);
  src: url(../fonts/montserrat-light.eot) format('embedded-opentype'),
       url(../fonts/montserrat-light.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/montserrat-regular.eot);
  src: url(../fonts/montserrat-regular.eot) format('embedded-opentype'),
       url(../fonts/montserrat-regular.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/montserrat-medium.eot);
  src: url(../fonts/montserrat-medium.eot) format('embedded-opentype'),
       url(../fonts/montserrat-medium.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/montserrat-semibold.eot);
  src: url(../fonts/montserrat-semibold.eot) format('embedded-opentype'),
       url(../fonts/montserrat-semibold.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/montserrat-bold.eot);
  src: url(../fonts/montserrat-bold.eot) format('embedded-opentype'),
       url(../fonts/montserrat-bold.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/montserrat-extrabold.eot);
  src: url(../fonts/montserrat-extrabold.eot) format('embedded-opentype'),
       url(../fonts/montserrat-extrabold.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  src: url(../fonts/montserrat-black.eot);
  src: url(../fonts/montserrat-black.eot) format('embedded-opentype'),
       url(../fonts/montserrat-black.ttf) format('truetype');
}
body{
    /*font-family: Arial,"Microsoft YaHei","微软雅黑",Helvetica,"Hiragino Sans GB",sans-serif;*/
    font-family:'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 14px;
    background-repeat: repeat;
	color: #333;
}
.bdfont{
    font-family: 微软雅黑 light;
}

::-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;
}

/*返回顶部*/
.right_xf{
    position: fixed;
    right: 15px;
    bottom: 50%;
    z-index: 1000;
    margin-bottom: -150px;
}
.right_xf .box_touying{
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    background: #f5f5f5;
    border-radius: 5px;
}
.right_xf li a{
    display: inline-block;
    width: 66px;
    height: 66px;
    color:#999;
    border-radius: 5px;
    background: #fff;
    margin: 1px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    font-size: 12px;
}
.right_xf li a img{
    width: 100%;
    height: 24px;
    object-fit: contain;
}
.right_xf li a:hover{
    color: #4c6aff;
}

.right_xf li,.erweima{
    position: relative;
}
.right_xf .menu,.erweima .menu{
    display: none;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 66px;
    margin-top: 0px;
    z-index: 1000;
    padding-right: 10px;
    min-width: 220px;
    height: auto; 
    animation: kefu_style_donghua 0.5s;
    -moz-animation: kefu_style_donghua 0.5s;
}
.right_xf .menu:before,.erweima .menu:before{
    content: "";
    position: absolute;
    right: -10px;
    top: 20px;
    width: 0px;
    height: 0px;
    border: 10px solid;
    border-color:transparent transparent transparent #fff;
}
.right_xf .menu ul{
    background: #fff;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}
@keyframes kefu_style_donghua
{
    0%   {
        margin-top: 20px;
        opacity: 0;
    }
    100% {
        margin-top: 0px;
        opacity: 1;
    }
}
@-moz-keyframes kefu_style_donghua /* Firefox */
{
    0%   {
        margin-top: 20px;
        opacity: 0;
    }
    100% {
        margin-top: 0px;
        opacity: 1;
    }
}
.right_xf li:hover .menu,.erweima:hover .menu{
    display: block;
    transition: all .5s;
}

.right_xf .menu ul li{
    line-height: 36px;
}

/*返回顶部*/
.totop{
    position: fixed;
    right: 15px;
    z-index: 3000;
    bottom: 40px;
    width: 58px;
    height: 58px;
    border-radius: 58px;
    line-height: 66px;
    text-align: center;
    background: #fff; 
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1); 
    cursor: pointer;
    color:#999;
    display: none;
    transition: all 0.5s;
}
.totop:hover{
    background: #0071bc;
    color:#fff;
}

@media (max-width: 900px){
    .right_xf{
        display: none!important;
    }
    .totop{
        display: none!important;
    }
}

/* ----------------------------------------------------------------
    通用
-----------------------------------------------------------------*/
button:focus,div:focus,span:focus,input:focus{outline:0;}

a{
    color: #000;
}

a, a:hover, a:focus{
    text-decoration: none;
}

a:hover, a:focus{
    color: #0071bc;
}

ul,p{
    margin-bottom: 0px;
}

p{
    line-height: 24px;
}

h6{
    line-height: 32px;
}
.h6{
    line-height: 28px;
}

h3{
    line-height: 46px;
}

.pem{
    text-indent: 2em;
}

.font14{
    font-size: 14px;
}
.font16{
    font-size: 16px;
    line-height: 30px;
}
.font18{
    font-size: 18px;
}
.text_666{
    color: #666;
}
.text_999{
    color: #999;
}
.text-primary{
    color: #0071bc!important;
}

.bg_f5f5f5{
    background: #f5f5f5;
}
.bg-primary{
    background: #2b61a9!important;
}

.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;
}

.pc_cr{
    max-width: 1400px;
}

/* ----------------------------------------------------------------
    首页
----------------------------------------------------------------- */
/*nav*/
.pc_top_nav{
    width: 100%;
    padding: 5px 80px;
    display: flex;
    align-items: center;
}
.pc_top_media{
    border-left: 1px solid #eee;
    padding-top: 8px;
    padding-bottom: 8px;
}
.pc_top_media2{
    background: #333333;
    padding: 20px 25px;
    transition: all 0.5s;
}
.pc_top_media2:hover{
    background: #0071bc;
}
@media (max-width: 1200px){
    .md_none{
        display: none;
    }
}

.nav_min{
    padding: 0px 80px;
    border: none;
    background: #0071bc;
}
.navbar-brand{
    padding-top: 5px;
    padding-bottom: 5px;
    transition: all 0.5s;
    margin-right: 22px;
}
.navbar-brand img{
    max-height: 78px;
}
.fooimg img{
    height: 50px;
}
@media (min-width: 1200px){
    .pc_logo{
        display: none;
    }
}

.navbar-expand-lg .navbar-nav .nav-item{
    margin: 0px;
}
.navbar-expand-lg .navbar-nav .nav-link{
    padding: 23px 0px;
    margin-right: 60px;
    position: relative;
}
.nav_min .navbar-nav .nav-link{
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
    font-weight: 700;
    text-transform: uppercase;
}
.nav_min .navbar-nav .top_xiala .nav-link{
    padding-right: 20px;
}
.nav_min .navbar-nav .nav-link span{
    color: #fff;
    position: absolute;
    right: 0px;
}
.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link:hover span,.nav_min .navbar-nav .active span{
    color: #F3AD2A;
}
.nav-link:before{
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    background: #F3AD2A;
    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;
}
.active .nav-link,.navbar-light .navbar-nav .active>.nav-link:before,.nav-link:hover:before{
    left: 0%;
    right: 0%;
}

.navbar-toggler{
    border: none;
    padding: 6px 10px 10px 10px;
    margin: 13px 0px 13px 5px;
}
.navbar-toggler .icon-bar{
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background: #fff;
    margin-top: 4px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.nav_style.fixTop {
    position: fixed;
    z-index: 1001;
    left: 0px;
    top: 0px;
    width: 100%;
}

.fixxm-top{
    height: 62px;
    display: none;
}

/* 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: 0px;
    z-index: 1000;
    padding: 0px 0px 0px 0px;
    box-shadow: 0px 3px 10px rgba(153,153,153,0.1);
    border-radius: 0px;
    border: none;
    animation: xianladonghua 0.5s;
    -moz-animation: xianladonghua 0.5s; /* Firefox */
}

.top_xiala2{
    position: static;
}
.top_xiala2 .dropdown-menu{
    right: auto;
    left: 0;
    min-width: 100%;
    background: #fff;
    margin: 0px;
    z-index: 1000;
    padding: 0px 0px 0px 0px;
    box-shadow: 0px 10px 30px rgba(153,153,153,0.2);
    border-radius: 0px;
    border: none;
    animation: xianladonghua 0.5s;
    -moz-animation: xianladonghua 0.5s; /* Firefox */
}
.top_xiala2 .dropdown-menu .container-fluid{
    display: block;
    padding: 0px 80px;
}

@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{
    padding: 18px 15px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all .5s;
    border-bottom: 1px solid #f9f9f9;
}
.top_xiala .dropdown-menu a:hover{
    color: #0071bc;
    padding: 18px 20px;
}

.nav_products{
    border: 1px solid #f5f5f5;
    padding: 20px;
}
.nav_products_img img{
    width: 100%;
    height: 240px;
    padding: 20px;
    object-fit: contain;
}
.top_xiala .dropdown-menu .nav_products ul li a{
    padding: 18px 0px;
    border: none;
}
.top_xiala .dropdown-menu .nav_products ul li a:hover{
    color: #0071bc;
    padding: 18px 5px;
}

.top_xiala .dropdown-toggle{
    display: none;
    position: absolute;
    top: 8px;
    right: 0px;
    border: none;
    border-radius: 0px;
    padding: 8px 13px;
    z-index: 1000;
    background: #eee;
    color: #999;
    border-radius: 50px;
    transform:rotate(0deg);
    transition: 0.5s;
}
.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: #0071bc;
    color: #fff;
}

.search_anniu_top{
    display: inline-block;
    width: 58px;
    height: 60px;
    border: none;
    position: relative;
    background: none;
}
.search_anniu_top:before{
    content: "";
    position: absolute;
    margin: auto;
    top: 15px;
    right: 0;
    bottom: 0;
    left: 15px;
    width: 8px;
    height: 2px;
    background: #fff;
    transform: rotate(45deg);
    transition: all .5s;
}
.search_anniu_top:after{
    content: "";
    position: absolute;
    margin: auto;
    top: -4px;
    right: 4px;
    bottom: 0;
    left: 0px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #fff;
    transition: all .5s;
}
.search_anniu_top2:before{
    background: #666;
}
.search_anniu_top2:after{
    border: 2px solid #666;
}
.search_anniu_top2{
    margin-top: 5px;
}

.search_anniu_top:hover:before{
    background: #71c6ff;
}
.search_anniu_top:hover:after{
    border: 2px solid #71c6ff;
}

.sousuokuang{
    position: absolute;
    left: 0px;
    top: 100%;
    width: 100%;
    box-shadow: 0px 5px 5px rgba(153, 153, 153, 0.1);
    background: #f9f9f9;
    z-index: 2000;
}
.sousuokuang .container{
    display: block;
}
.container_style{
    padding-top: 0px;
    padding-bottom: 0px;
}
.sousuo_group{
    position: relative;
}
.sousuo_control{
    box-shadow: none;
    border: none;
    background: none;
    border-radius: 0px;
    padding: 15px 15px;
    height: 68px;
    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_anniu2{
    display: inline-block; 
    width: 58px;
    height: 58px;
    line-height: 58px;
    border-left: none;
    padding: 0px;
    border-radius: 0px;
    position: relative;
    transition: all .5s;
    margin-top: 5px;
}
.search_anniu2:before{
    content: "";
    position: absolute;
    top: 28px;
    left: 16px;
    width: 28px;
    height: 2px;
    background: #000;
    transform: rotate(45deg);
}
.search_anniu2:after{
    content: "";
    position: absolute;
    top: 28px;
    left: 16px;
    width: 28px;
    height: 2px;
    background: #000;
    transform: rotate(-45deg);
}
.search_anniu2:hover{
    transform: rotate(180deg);
}

/*banner*/
.banner{
    height: 688px;
}

.banner .swiper-wrapper .swiper-slide h1{
    font-size: 60px;
}

.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;
}
.banner .swiper-pagination-bullet{
    width: 38px;
    height: 4px;
    background: #fff;
    opacity: 0.5;
    position: relative;
    border-radius: 0px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.banner>.swiper-pagination-bullets{
    bottom: 25px;
}
.banner .swiper-pagination-bullet-active{
    width: 68px;
    opacity: 1;
}
.banner>.swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0px 6px;
}

.banner .swiper-button-next,.banner .swiper-button-prev{
    width: 50px;
    height: 50px; 
    background: rgba(0,0,0,0.2);
    border-radius: 50px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.banner .swiper-button-prev{
    left: 30px;
    opacity: 1;
    margin-top: -25px;
}
.banner .swiper-button-next{
    right: 30px;
    opacity: 1;
    margin-top: -25px;
}
.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(0,113,188,1);
}

.banner .swiper-slide .pc_cr{
    transform:translateX(400px);
    opacity:0;
    transition:all 1s;
}
.banner .ani-slide .pc_cr{
    transform:translateX(0);
    opacity:1;
}

/*主体*/
.fangda{
    overflow: hidden;
}
.fangda img{
    transition:all 0.5s ease-out; 
}
.fangda:hover img{
    transform:scale(1.1);
}
.card:hover .fangda img{
    transform:scale(1.1);
}

.gengduo{
    border:2px solid #0071bc;
    background: #0071bc;
    color: #fff;
    position: relative;
    font-size: 16px;
    display: inline-block;
    padding: 12px 38px;
}
.gengduo:hover {
    color: #fff;
    background-color: #0063a4;
    border-color: #0063a4;
}

.index_bt{
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}
.index_bt:before{
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -29px;
    bottom: 0px;
    width: 58px;
    height: 2px;
    background: #0071bc;
    transition:all 1s;
}
.index_bt2:before{
    background: #fff;
}
.index_bt3:before{
    left: 0px;
    margin-left: 0px;
}

.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 5px 15px -5px rgba(0, 0, 0, 0.3);
}

.about_p p{
   /* margin-bottom: 24px;*/
}
.products_card .card-img-overlay{
    padding: 48px;
    display: flex;
    align-items: flex-end;
    transition:all 1s;
}
.products_card .card-img-overlay .index_bt{
    width: 100%;
}
.products_card:hover .card-img-overlay .index_bt:before{
    width: 100%;
}
.products_card .card-img-overlay:hover{
    background: rgba(0, 0, 0, 0.5);
}

.solutions_card .card-img-overlay{
    background: rgba(0, 0, 0, 0.5);
    transition: 0.5s;
    display: flex;
    align-items: flex-end;
}
.solutions_card:hover .card-img-overlay{
    background: rgba(0, 0, 0, 0.2);
}

.solutions_card .card-img-overlay h5{
    display: inline-block;
}
.solutions_card .card-img-overlay{
    padding: 38px;
}

.index_guanggao{
    background: url(../img/index_guanggao.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference_guojia{
    position: relative;
}
.reference_guojia .rq{
    width: 84px;
    height: 72px;
    background: #0071bc;
    padding: 8px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.reference_guojia .rq p{
    line-height: 20px;
}

.news_card .card-body p{
}

.newsimg{
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 80%;
    background: #fff;
}
.fdimg {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition:all 0.5s ease-out; 
}
.newsimg:hover .fdimg{
    transform:scale(1.1);
}

/*bottom*/
@media (min-width: 900px) {
    .collapse_block{
        display: block!important;
    }
}
.wap1200{display: block;}
.wap900{display: none;}
@media (max-width: 900px){
    .collapse1{
            display: none;
    }
    .collapse1.in{
            display: block;
    }
    .wap1200{display: none;}
    .wap900{display: block;}
}
@media (max-width: 900px){
    .bottom_xiala:after{
        content: none;
    }
    .bottom_xiala:before{
        content: "";
        position: absolute;
        right: 0px;
        top: 28px;
        width: 16px;
        height: 2px;
        background: #999;
        text-align: center;
    }
    .collapsed .bottom_xiala:after{
        content: "";
        position: absolute;
        right: 7px;
        top: 21px;
        width: 2px;
        height: 16px;
        background: #999;
        text-align: center;
    }
    .collapsed .bottom_xiala:before{
        content: "";
        position: absolute;
        right: 0px;
        top: 28px;
        width: 16px;
        height: 2px;
        background: #999;
        text-align: center;
    }
}

.bottom_bg{
    border-top: 1px solid #ddd;
    padding-top: 50px;
    background: #00162F;
    color: #c0c4c6;
}

.bottom_ul{
    padding-bottom: 28px;
}
.bottom_ul .bottom_bt a{
    margin: 0px;
    padding: 0px 0px 0px 0px;
    font-size: 18px;
    position: relative;
    color: #fff;
}
.bottom_ul .bottom_bt{
    margin-bottom: 0px;
}
.bottom_ul .card{
    background: none;
    padding: 15px 0px;
}
.bottom_ul .card a{
    display: block;
    line-height: 36px;
    font-size: 14px;
    color: #c0c4c6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bottom_ul .card a.text_999{
    color: #999;
}
.bottom_ul .card a:hover{
    color: #0071bc;
}

.di_dizhi .media i{
    width: 32px;
    height: 32px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0c4c6;
}
/*.di_dizhi .media{*/
/*    margin-bottom: 5px;*/
/*}*/

.di_beian{
    padding-top: 6px;
    padding-bottom: 25px;
}

.di_input{
    border: none;
    height: 48px;
    border-radius: 0px;
    background: #f9f9f9;
}
.di_button{
    background: #1b9ce5;
    border: 2px solid #1b9ce5;
    padding: 10px 24px;
    color: #fff;
    border-radius: 0px;
}

.di_media .media{
    margin-bottom: 8px;
}
.di_media .media i{
    width: 30px;
    height: 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    background: #eee;
    font-size: 14px;
}
.di_media .media:hover i{
    background: #0071bc;
    color: #fff;
    transition: all 0.3s;
}

.di_ul li{
    line-height: 28px;
    margin-bottom: 8px;
}

.di_input{
    border: none;
    height: 48px;
    border-radius: 0px;
    background: #f9f9f9;
}
.di_button{
    background: #2b61a9;
    border: 2px solid #2b61a9;
    padding: 10px 24px;
    color: #fff;
    border-radius: 0px;
}
.fdb a:hover{
    text-decoration: underline;
}
/* ----------------------------------------------------------------
    联系我们
----------------------------------------------------------------- */
.service_png{
    box-shadow: 0px 5px 15px rgba(51, 51, 51, 0.1);
}
.service_png .index_service_png{
    padding: 38px 0px 42px 0px;
}
.service_png .index_service_png img{
    width: 68px;
    height: 68px;
    border-radius: 68px;
    object-fit: contain;
}

.contact_form .form-control{
    border: none;
    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 #0071bc;
    background: #0071bc;
    color: #fff;
    padding: 14px 60px;
    border-radius: 50px;
    display: block;
    width: 100%;
}
.gengduo_contact:hover{
    color: #fff;
    background-color: #0066aa;
    border-color: #0066aa;
}

/* ----------------------------------------------------------------
    About us
----------------------------------------------------------------- */
.about_banner{
    background: url(../img/about_banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_style1{
    padding-top: 148px;
}
.about_style_float{
    width: 920px;
    padding: 48px;
    position: absolute;
    top: 0px;
    left: 15px;
    background: #0071bc;
}

.about_png{
    background: #fff;
    padding: 30px;
    box-shadow: 0px 5px 15px rgba(204, 204, 204, 0.5);
}
.about_png img{
    width: 88px;
    height: 88px;
    object-fit: contain;
    margin: 5px 0px 35px 0px;
}

.about_why .card-body img{
    width: 68px;
    height: 68px;
    object-fit: contain;
    margin-bottom: 24px;
}
.about_choo{
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
}
.about_choo .card-body{
    padding: 1px 30px 48px 30px;
}
.about_choo .card-body img{
    width: 58px;
    height: 58px;
    object-fit: contain;
    margin: 52px 0px 40px 0px;
}

/* ----------------------------------------------------------------
    Products
----------------------------------------------------------------- */
.products_banner{
    background: url(../img/products_banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products_card2 .card-img-overlay{
    padding: 30px;
}

.nav_bottom{
    position: relative;
    background: #fff;
}
.nav_bottom:before{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background: #eee;
}
.products_nav_swiper .swiper-wrapper .swiper-slide{
    width: auto;
}
.products_nav_swiper .swiper-wrapper .swiper-slide a{
    font-size: 16px;
    display: block;
    padding: 22px 0px;
    position: relative;
    color: #999;
}
.products_nav_swiper .swiper-wrapper .active a,.products_nav_swiper .swiper-wrapper .swiper-slide a:hover{
    color: #0071bc;
}
.products_nav_swiper .swiper-wrapper .active a:before{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 3px;
    background: #0071bc;
}
.products_nav_bottom:before{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background: #eee;
}

.products_nav_swiper .swiper-button-next{
    width: 38px;
    height: 78px; 
    background: rgba(204,204,204,1);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.products_nav_swiper .swiper-button-next{
    right: 0px;
    margin-top: -39px;
}
.products_nav_swiper .swiper-button-next:after{
    color: #fff;
    font-size: 18px;
}
.products_nav_swiper .swiper-button-next:hover:after{
    color: #fff;
}
.products_nav_swiper .swiper-button-next:hover{ 
    background: rgba(228,6,20,1);
}

.products_card_img img{
    width: 100%;
    height: 280px;
    object-fit: contain;
    padding: 24px;
}

.pagination{
    margin: 0px 0px 0px 0px;
}
.pagination a{
    background: #fff;
    color: #000;
    margin: 0px 8px;
    padding: 12px 16px;
    border: 1px solid #eee;
}
.pagination a:hover,.pagination a.page-num-current{
    background: #0071bc;
    color: #fff;
    border: 1px solid #0071bc;
}
.pagination a:first-child{
    border-radius: 0px;
}
.pagination a:last-child{
    border-radius: 0px;
}

.banner_details{
    height: 588px;
}

.banner_details .swiper-wrapper .swiper-slide h1{
    font-size: 72px;
}

.banner_details .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;
}
.banner_details .swiper-pagination-bullet{
    width: 38px;
    height: 4px;
    background: #000;
    opacity: 0.3;
    position: relative;
    border-radius: 0px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.banner_details>.swiper-pagination-bullets{
    bottom: 30px;
}
.banner_details .swiper-pagination-bullet-active{
    width: 68px;
    opacity: 1;
}
.banner_details>.swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0px 6px;
}

.banner_details .swiper-button-next,.banner_details .swiper-button-prev{
    width: 50px;
    height: 50px; 
    background: rgba(0,0,0,0.2);
    border-radius: 50px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.banner_details .swiper-button-prev{
    left: 30px;
    opacity: 1;
    margin-top: -25px;
}
.banner_details .swiper-button-next{
    right: 30px;
    opacity: 1;
    margin-top: -25px;
}
.banner_details .swiper-button-prev:after,.banner_details .swiper-button-next:after{
    color: #fff;
    font-size: 18px;
}
.banner_details .swiper-button-prev:hover:after,.banner_details .swiper-button-next:hover:after{
    color: #fff;
}
.banner_details .swiper-button-next:hover,.banner_details .swiper-button-prev:hover{
    background: rgba(0,113,188,1);
}

.banner_details .swiper-slide .pc_cr{
    transform:translateX(400px);
    opacity:0;
    transition:all 1s;
}
.banner_details .ani-slide .pc_cr{
    transform:translateX(0);
    opacity:1;
}

.ps_lt_ds_nav_border{
    border-bottom: 1px solid #eee;
}
.ps_lt_ds_nav{
    display: flex;
    align-items: center;
}
.ps_lt_ds_nav h5{
    padding: 18px 0px;
}
.ps_lt_ds_nav ul li a{
    display: inline-block;
    margin: 23px 0px 23px 50px;
    font-size: 16px;
    color: #666;
}
.ps_lt_ds_nav ul li a:hover{
    color: #0071bc;
}
.ps_lt_ds_nav ul li.active a{
    color: #0071bc;
}

.ps_lt_ds_style1{
    border-bottom: 1px solid #eee;
}
.ps_lt_ds_style_ul li{
    position: relative;
    padding-left: 22px;
    margin-bottom: 24px;
}
.ps_lt_ds_style_ul li:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background: #999;
}

.ps_lt_ds_table tbody tr td{
    padding: 18px;
}

.information_ul li{
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    border: 1px solid #eee;
    padding: 24px 130px 24px 24px;
    position: relative;
    line-height: 24px;
    background: #fff;
}
.information_ul li a{
    position: absolute;
    right: 12px;
    top: 18px;
    padding: 12px;
}


.pdeload .download {
    background: url(../img/download_bg.jpg) no-repeat #c5000a;
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    text-align: center;
    color: #fff;
}
.pdeload .download .title {
    height: 158px;
    line-height: 158px;
    font-size: 48px;
    border-bottom: solid 1px #d74d54;
}
.pdeload .download .file {
    height: 130px;
    line-height: 130px;
    font-size: 24px;
}
.pdeload .download .file a {
    font-size: 24px;
    color: #fff;
}
.pdeload .download .file img {
    vertical-align: middle;
    margin: -4px 18px 0 0;
}

/* ----------------------------------------------------------------
    Products
----------------------------------------------------------------- */
.solutions_banner{
    background: url(../img/solutions_banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ----------------------------------------------------------------
    support
----------------------------------------------------------------- */
.support_banner{
    background: url(../img/support_banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.st_faqs_list{
    border-bottom: 1px solid #eee;
}
.st_faqs_list .ny_nav_a{
    padding: 20px 40px 20px 54px;
    line-height: 38px;
    display: block;
    font-size: 16px;
    border-top: 1px solid #eee;
    position: relative;
}

.st_faqs_list .ny_nav_a .wh{
    display: inline-block;
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 38px;
    border-radius: 38px;
    background: #0071bc;
    color: #fff;
    margin-right: 16px;
    position: absolute;
    left: 0px;
    top: 20px;
}
.st_faqs_list_nr{
    padding: 18px 0px 38px 54px;
}

.st_faqs_list .ny_nav_a .jiahao{
    position: absolute;
    top: 24px;
    right: 0px;
    width: 29px;
    height: 29px;
}
.st_faqs_list .ny_nav_a .jiahao:before{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: 0px;
    margin-top: -8px;
    width: 1px;
    height: 17px;
    background: #ccc;
    transform: rotate(90deg);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.st_faqs_list .ny_nav_a .jiahao:after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -8px;
    margin-top: 0px;
    width: 17px;
    height: 1px;
    background: #ccc;
}
.st_faqs_list .collapsed .jiahao:before{
    transform:rotate(0deg);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.news_ds_p p{
    /*margin-bottom: 18px;
    line-height: 28px;*/
}
.jjfimg{
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 80%;
    background: #fff;
}
.jjfimg:hover .fdimg{
    transform:scale(1.1);
}

/* ----------------------------------------------------------------
    Contact US
----------------------------------------------------------------- */
.contact_banner{
    
}

.ct_us_card{
    background: #0071bc;
    margin-top: -108px;
}
.ct_us_card .card-body{
    padding: 68px 30px 58px 30px;
}

.ct_us_card2{
    background: #5a5f48;
}
.ct_us_card3{
    background: #94595b;
}

.ct_us_bg{
    background: url(../img/ct_us_bg.jpg);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 370px;
}

.ct_us_right .card-body{
    padding: 68px 58px;
}
.ct_us_left{
    padding: 68px 58px;
}
.ct_us_left .media{
    margin-bottom: 68px;
}

#db-cookie{
    background: #fff;
    box-shadow: 0 2px 7px rgb(0 0 0 / 10%);
    padding: 25px;
    width: 310px;
    position: fixed;
    left: 20px;
    bottom: 20px;
    font-size: 14px;
    color: #666;
    max-height: 999px;
    min-height: 30px;
    z-index: 9999;
}
#db-cookie a{
    text-decoration: underline;
    color: #666;
}
#db-cookie .dbty{
    padding: 5px 30px;
    margin-top: 15px;
    width: 100%;
    color: #666;
}
#db-cookie .dbty1,#db-cookie .dbty:hover{
    background: #0071bc;
    color: #fff;
}

/* ----------------------------------------------------------------
    响应
----------------------------------------------------------------- */
@media (max-width: 1500px){
    .nav_min{
        padding: 0px 15px;
    }
    .pc_top_nav{
        padding: 11px 15px;
    }
}

@media (max-width: 1200px){
    .top_xiala .dropdown-toggle {
        display: none;
    }
}
@media (max-width: 1199px){
    .navbar-brand{
        margin-right: 0px;
        padding: 5px 15px;
    }
    .navbar-brand img{
        height: 38px;
        object-fit: contain;
    }
    .yuyan_top_xiala .nav-link{
        padding: 20px 0px 20px 0px;
    }
    .nav_min{
        padding: 0px;
        display: flex;
        justify-content: flex-start;
    }
    .nav_min .md_sousuo_container{
        display: block;
    }
    .search_anniu_top{
        width: 58px;
        height: 60px;
    }
    .md_search_anniu_top{
        margin-top: 5px;
    }
    .yuyan_top_xiala{
        margin-right: 0px;
    }
    .md_sousuo{
        position: absolute;
        right: 0px;
        top: 0px;
    }

    .md_yuyan{
        position: absolute;
        right: 15px;
        top: 20px;
    }
    .yuyan_top_xiala{
        position: absolute;
        right: 48px;
    }

    .md_collapse{
        border-top: 1px solid #008ae5;
    }
    .md_collapse .navbar-nav{
        padding: 0px 15px;
    }
    .navbar-expand-lg .navbar-nav .nav-item{
        margin: 0px;
    }
    .navbar-expand-lg .navbar-nav .nav-link{
        padding: 22px 0px;
    }
    .top_xiala{
        position: relative;
    }
    .nav_min .navbar-nav .nav-link{
        font-size: 16px;
        font-weight: normal;
    }

    .products_right_top .form-control{
        width: 150px;
    }

    .index_products{
        padding-left: 15px;
        padding-right: 15px;
    }
    .search_anniu_top{
        margin-top: 0px;
    }
    .md_search_anniu_top{
        margin-top: 5px;
    }

    .pc_top_nav{
        padding: 0;
    }
    .md_logo{
        text-align: center  ;
    }
    .nav_min .navbar-nav .nav-link span{
        display: none;
    }
    .top_xiala2 .dropdown-menu .container-fluid{
        padding: 0px 15px;
    }
    .navbar-light .navbar-nav .show>.nav-link{
        color: #fff;
    }
}
@media (max-width: 900px){
    .pb-6{
        padding-bottom: 68px;
    }
    .pt-6{
        padding-top: 68px;
    }
    .mb-6{
        margin-bottom: 68px;
    }
    .mt-6{
        margin-top: 68px;
    }

    .bottom_bg{
        padding-top: 24px;
    }
    .bottom_beian{
        margin-top: 24px;
    }
    .bottom_ul{
        padding-bottom: 0px;
    }
    .bottom_ul .bottom_bt{
        margin-bottom: 0px;
    }
    .bottom_ul .bottom_bt a,.md_bottom_bt a{
        height: 58px;
        line-height: 58px;
        padding: 0px;
        font-size: 16px;
        border-top: 1px solid #eee;
    }
    .di_socialize{
        margin-top: 24px;
        font-size: 16px;
    }
    .bottom_beian{
        border-top: none;
        padding: 24px 0px 24px 0px;
        margin-top: 0px;
    }
    .bottom_ul .card{
        padding: 15px 0px;
    }
    .di_beian{
        margin-top: 0px;
    }

    .banner{
        height: 488px;
    }
    .ps_ds_ul{
        padding: 0px 15px;
    }
    .md_top{
        margin: 10px 0px;
    }

    .ix_about_right{
        padding: 38px 0px;
    }
    .ix_about_left{
        padding: 38px 30px;
    }
    .ix_about_right{
        height: auto;
    }
    .ix_about_right h6{
        font-size: 14px;
    }
    .ix_about_right{
        border-top: 1px solid rgba(255, 255, 255, 0.5);
        border-bottom: none;
    }
    .ix_about_right3{
        border-left: none;
    }
    .subMenu .inner .subNavBtn{
        margin-right: 30px;
    }
    .ix_about_right h1 strong{
        font-size: 30px;
    }

    .banner_details{
        height: auto;
    }
    .ct_us_card{
        margin-top: 24px;
    }
    .ct_us_bg{
        background-size: cover;
        padding-top: 88px;
    }
    .about_style_float{
        position: static;
        width: 100%;
    }
    .about_style1{
        padding-top: 0px;
    }
}

@media (max-width: 768px){
    .banner h3{
        font-size: 20px;
        line-height: 32px;
    }

    .banner .swiper-wrapper .swiper-slide h1{
        font-size: 38px;
    }
    .banner .swiper-button-prev{
        left: 15px;
    }
    .banner .swiper-button-next{
        right: 15px;
    }
    .banner>.swiper-pagination-bullets{
        bottom: 7px;
    }

    .support_banner,.solutions_banner,.products_banner,.about_banner{
        height: 150px;
    }

    .ps_lt_ds_nav{
        align-items: flex-start;
        flex-direction: column;
    }
    .ps_lt_ds_nav ul li a{
        margin: 5px 10px 25px 0px;
    }

    .ct_us_left{
        padding: 38px 30px 0px 30px;
    }
    .ct_us_right .card-body{
        padding: 38px 30px 38px 30px;
    }
}