/*聚诚在线（jc128.net）安全--简单--易用*/
@font-face {
  font-family: 'montserrat';
  font-style: normal;
  src: url(../fonts/montserrat-regular.ttf);
}
body{
    font-family: "Arial","Microsoft YaHei","微软雅黑",Helvetica,'montserrat',"Hiragino Sans GB",sans-serif;
    background-repeat: repeat;
    color: #000;
}

::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 8px;
    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;
}

/*控件*/
input:disabled + label {/*禁用的指针*/
    cursor: not-allowed
}
.Radio input,
.Checkbox input {
    display: none
}
.Radio label,
.Checkbox label {
    padding: 0 16px 0 0;
    display: inline-block;
    cursor: pointer;
    position: relative
}
.Radio label:before,
.Checkbox label:before {
    box-sizing: border-box;
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #999;
    margin: 0px 8px 0px 0px;
    vertical-align: middle;
    display: inline-block;
    transition: 0.1S;
}
.Radio label:hover:before,
.Checkbox label:hover:before {
    border-color: #57B37B;
}
.Radio input:disabled + label:before,
.Checkbox input:disabled + label:before {
    background-color: #CCC;
    border-color: #999;
    opacity: 0.5;
}
.Radio input:disabled + label,
.Checkbox input:disabled + label {  
    opacity: 0.5;
}
.Radio input:checked + label:before {
    border: 5px solid #57B37B;
}
.Checkbox label:before {
    background: url(../img/ico_tick.svg) no-repeat center;
    background-size: 0;
    border-radius: 0px;
    transition: 0.2S;
}
.Checkbox input:checked + label:before {
    background-color: #57B37B;
    background-size: 16px;
    border-color: #57B37B;
}
.HoverLabel label {
    display: block;
    border-radius: 4px;
    padding: 4px;
    width: 100%;
}
.HoverLabel label:hover {
    background-color: #EEE;
}

/*返回顶部*/
.right_xf{
    position: fixed;
    bottom: 111px;
    right: 12px;
    z-index: 3000;
}
.right_xf li a{
    display: inline-block;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #265787;
    color:#fff;
    margin: 1px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    font-size: 12px;
    margin: 3px 0px 0px 0px;
}
.right_xf li a p{
    color: #000;
}
.right_xf li a:hover{
    background: #3070AE;
    color:#fff;
}

.right_xf li{
    position: relative;
}
.right_xf .menu{
    display: none;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 48px;
    margin-top: 0px;
    z-index: 1000;
    padding-right: 10px;
    min-width: auto;
    height: auto; 
    animation: kefu_style_donghua 0.5s;
    -moz-animation: kefu_style_donghua 0.5s;
}
.right_xf .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{
    display: block;
    transition: all .5s;
}

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

/*返回顶部*/
.back-top {
    position: fixed;
    right: 1.5rem;
    bottom: 30px;
    width: 48px;
    height: 48px;
    background: #fff;
    color:#666;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 50px;
    cursor: pointer;
    opacity: 0;
    font-size: 1.2rem;
    transition: opacity 0.3s;
    z-index: 9999;
    transition: all 0.5s;
}
.back-top:hover{
    background: #007EB5;
    color:#fff;
}
@media (max-width: 768px){
    .back-top{
        display: none;
    }
}

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

a{
    color: #333;
}

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

a:hover, a:focus{
    color: #007EB5;
}
h5{
    line-height: 32px;
}

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

.pem{
    text-indent: 2em;
}

.font12{
    font-size: 12px;
}
.font14{
    font-size: 14px;
}
.font16{
    font-size: 16px;
}
.font17{
    font-size: 17px;
}
.font18{
    font-size: 18px;
}
.font20{
    font-size: 20px;
}
.font22{
    font-size: 22px;
}

.opacity_5{
    opacity: 0.5;
}

.text_999{
    color: #999;
}
.text-danger{
    color: #D8252B!important;
}
.text-success{
    color: #57B37B!important;
}
.text-primary{
    color: #026DB7!important;
}
.text-warning{
    color: #DD7516!important;
}

.bg_f5f5f5{
    background: #f5f5f5;
}
.bg-success{
    background: #24bd51!important;
}
.bg-primary{
   background: #1D2089!important; 
}
.bg_F2F2FF{
    background: #F2F2FF;
}

.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;
}
.mb_30{
    margin-bottom: 30px;
}
.pb-7{
    padding-bottom: 120px;
}
.pt-7{
    padding-top: 120px;
}

.no_margin{
    margin: 0px;
}

.wrap,.nav_min .container{
    margin-inline-start: auto;
    margin-inline-end: auto;
    width: 88%;
    max-width: 1500px;
    position: relative;
}
.wrap_fluid{
    margin-inline-start: auto;
    margin-inline-end: auto;
    width: 100%;
    padding-left: 6rem;
    padding-right: 6rem;
    position: relative;
}
.wrap_xl{
    margin-inline-start: auto;
    margin-inline-end: auto;
    width: 88%;
    max-width: 1600px;
    position: relative;
}
.wrap_lg{
    margin-inline-start: auto;
    margin-inline-end: auto;
    width: 88%;
    max-width: 1200px;
    position: relative;
}
.nav_min .container{
    padding: 0px;
}

/* ----------------------------------------------------------------
    首页
----------------------------------------------------------------- */
/*nav*/
.nav_min{
    padding: 0px 0px 0px 0px;
    border: none;
    background: rgba(255, 255, 255, 1);
    transition: all 0.5s;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.02);
}
.navbar-brand{
    padding-top: 0px;
    padding-bottom: 0px;
    height: 52px;
    transition: 0.5s;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.navbar-brand img{
    height: 100%;
    object-fit: contain;
}
.navbar-expand-lg .navbar-nav .nav-item{
    margin: 0px 70px 0px 0px;
}
.navbar-expand-lg .navbar-nav .nav-link{
    padding: 35px 0px 35px 0px;
    position: relative;
    transition: 0.5s;
}
.navbar-expand-lg .pc_yuyan .nav-link{
    padding: 32px 15px 32px 15px;
}
.navbar-expand-lg .navbar-nav .pc_yuyan{
    margin-right: 0px;
    margin-left: 14px;
}
.nav_min .navbar-nav .nav-link{
    transition: all 0.3s;
    font-weight: 700;
    font-size: 17px;
    line-height: 18px;
    color: #000;
    /*text-transform: uppercase;*/
}
/*.nav_min .navbar-nav .top_xiala .nav-link{
    padding-right: 24px;
}*/
.nav_min .nav-link span{
    font-size: 1rem;
    position: absolute;
    right: 0px;
    transition: all 0.3s;
}
.nav_min .top_xiala:hover .nav-link span{
    transform: rotate(180deg);
    color: #007EB5;
}
.nav_min .navbar-nav .nav-link:hover,.nav_min .navbar-nav .active>.nav-link{
    color: #007EB5;
}

.nav_min .nav-item .nav-link:before{
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0px;
    background: #007EB5;
    height: 2px;
    -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;
    opacity: 0;
}
.nav_min .nav-item .nav-link:hover:before,.nav_min .nav-item.active .nav-link:before,.top_xiala:hover .nav-link:before{
    left: 0%;
    right: 0%;
    opacity: 1;
    color: #007EB5;
}

 .navbar-light .navbar-nav .show>.nav-link{
    color: #007EB5;
 }
 .active .nav-link,.top_xiala:hover .nav-link{
    left: 0%;
    right: 0%;
    opacity: 1;
    color: #007EB5;
}

.navbar-toggler,.navbar-toggler:focus{
    border: none;
    padding: 6px 15px 10px 15px;
    margin: 14px 0px 13px 0px;
    outline: none;
    box-shadow: none;
    position: absolute;
    right: 0px;
    top: 0px;
}
.navbar-toggler .icon-bar{
    display: block;
    width: 22px;
    height: 1px;
    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(5px) rotate(-45deg);
    -ms-transform: translateY(5px) rotate(-45deg);
    transform: translateY(5px) rotate(-45deg);
}

.navbar-toggler .icon-bar:nth-of-type(2) {
    opacity: 0;
}

.navbar-toggler .icon-bar:nth-of-type(3) {
    -webkit-transform: translateY(-5px) rotate(45deg);
    -ms-transform: translateY(-5px) rotate(45deg);
    transform: translateY(-5px) 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: 2000;
    padding: 0px 15px 0px 15px;
    border-radius: 0px;
    border: none;
    animation: xianladonghua 0.5s;
    -moz-animation: xianladonghua 0.5s; /* Firefox */
    box-shadow: 0px 3px 10px rgba(153, 153, 153, 0.1);
}
.nav_min .container{
    position: static;
}
.top_xiala2{
    position: static;
    display: block;
}
.pc_yuyan .dropdown-menu{
    right: 0;
    left: auto;
}
@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;
    }
}

.menu_a a{
    padding: 12px 0px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.5s;
    font-size: 15px;
    line-height: 24px;
    position: relative;
    color: #000;
    border-bottom: 1px solid #eee;
}
.menu_a a:last-child{
    border: none;
}
.menu_a a:hover{
    color: #007EB5;
    padding: 12px 0px 12px 12px;
}

.top_xiala .dropdown-toggle{
    display: none;
    position: absolute;
    top: 8px;
    right: 0px;
    border: none;
    border-radius: 0px;
    padding: 13px 13px;
    z-index: 2000;
    background: #eee;
    color: #999;
    border-radius: 50px;
    transform:rotate(0deg);
    transition: 0.5s;
}
.top_xiala .dropdown-toggle::after{
    content: none;
}
@media (max-width: 1199px){
    .top_xiala .dropdown-toggle{
        display: flex;
    }
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
    transform:rotate(180deg);
    background: #007EB5;
    color: #fff;
}

.helist{
    position: relative;
}
.helist .fa.fa-angle-right{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate3d(0%, -50%, 0);
}
.three_li{
    display: none;
    position: absolute;
    right: -100%;
    top: 0;
    min-width: 100%;
    background: #D24E7F;
    z-index: 9
}
.helist:hover .three_li{
    display: block;
}

.nav_form{
    margin-left: 30px;
    display: flex;
}

.pc_yuyan{
    margin-right: 0rem;
    margin-left: 1rem;
}
.nav_min .navbar-nav .pc_yuyan .nav-link{
    padding-left: 16px;
    padding-right: 16px;
}
.nav_min .pc_yuyan .nav-link{
    padding: 9px 38px 9px 16px;
    display: flex;
    align-items: center;
    color: #fff;
    transition: 0.5s;
    font-size: 1rem;
    background: #007EB5;
    border-radius: 50px;
}
.nav_min .pc_yuyan .nav-link i{
    font-size: 18px;
}
.nav_min .pc_yuyan .nav-link span{
    right: 16px;
    font-size: 1rem;
}
.nav_min .pc_yuyan .nav-link:before{
    content: none;
}
.pc_yuyan .dropdown-menu{
    width: 180px;
}
.nav_min .pc_yuyan:hover .nav-link{
    color: #fff;
}
.nav_min .pc_yuyan:hover .nav-link span{
    color: #fff;
}
    
.nav_min .pc_yuyan .nav-link svg{
    fill: #fff;
    transition: 0.5s;
}
.nav_min .pc_yuyan:hover .nav-link svg{
    fill: #fff;
}

.lg_sousuo{
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid #fff;
    border-radius: 50px;
}
.lg_sousuo .form-control{
    width: 148px;
    height: 28px;
    border-top-left-radius: 46px;
    border-bottom-left-radius: 46px;
    padding: 0px 12px;
    border: none;
    background: none;
    box-shadow: none;
    font-size: 10px;
}
.lg_sousuo .btn{
    border-top-right-radius: 46px;
    border-bottom-right-radius: 46px;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0px;
}

.md_sousuo{
    width: 42px;
    height: 42px;
    border-radius: 42px;
    transition: all .5s;
    background: #007EB5;
}
.search_anniu_top{
    display: inline-block;
    width: 42px;
    height: 42px;
    border: none;
    position: relative;
}
.search_anniu_top:before{
    content: "";
    position: absolute;
    margin: auto;
    top: 15px;
    right: 1px;
    bottom: 0;
    left: 15px;
    width: 6px;
    height: 2px;
    background: #fff;
    transform: rotate(45deg);
    transition: all .5s;
}
.search_anniu_top:after{
    content: "";
    position: absolute;
    margin: auto;
    top: -2px;
    right: 2px;
    bottom: 0; 
    left: 0px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #fff;
    transition: all .5s;
}
.md_search_anniu_top{
    margin-top: 0px;
}
.search_anniu_top:hover:before{
    background: #fff;
}
.search_anniu_top:hover:after{
    border: 2px solid #fff;
}

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

.search_anniu_top2:hover:before{
    background: #0C377B;
}
.search_anniu_top2:hover:after{
    border: 1px solid #0C377B;
}

.sousuokuang{
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    box-shadow: 0px 5px 5px rgba(153, 153, 153, 0.1);
    background: #fff;
    display: flex;
    border-top: 1px solid #eee;
}
.sousuokuang .container{
    display: block;
}
.container_style{
    padding-top: 120px;
    padding-bottom: 120px;
}
.container_style ul li{
    line-height: 24px;
}
.sousuo_group{
    position: relative;
}
.sousuo_control{
    box-shadow: none;
    border: 2px solid #eee;
    background: none;
    border-radius: 8px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    padding: 15px 18px;
    height: 58px;
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
    border-right: 0px;
}
.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;
}
.search_anniu2:before{
    content: "";
    position: absolute;
    top: 28px;
    left: 15px;
    width: 28px;
    height: 1px;
    background: #666;
    transform: rotate(45deg);
}
.search_anniu2:after{
    content: "";
    position: absolute;
    top: 28px;
    left: 15px;
    width: 28px;
    height: 1px;
    background: #666;
    transform: rotate(-45deg);
}
.search_anniu2:hover{
    transform: rotate(180deg);
}
.tanchuang_tuichu{
    position: absolute;
    height: 58px;
    right: 0px;
    top: 0px;
    cursor: pointer;
    transition: all .5s;
}
.tanchuang_tuichu:hover .search_anniu2:after{
    background: #007EB5;
}
.tanchuang_tuichu:hover .search_anniu2:before{
    background: #007EB5;
}

@media (min-width: 1200px){
    .navbar-hide {
        transform: translateY(-100%); /* 上移隐藏 */
        transition: transform 0.8s ease; /* 添加过渡动画 */
    }
}

/*banner*/
.banner{
    height: 850px;
}
.banner .swiper-wrapper .swiper-slide{
    background-size: cover!important;
    background-position: center left!important;
    background-repeat: no-repeat!important;
    display: flex;
    align-items: center;
}

.banner .swiper-pagination{
    bottom: 38px;
}
.banner .swiper-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border-radius: 6px;
    transition: 0.5s;
    margin: 0px 7px;
}
.banner .swiper-pagination .swiper-pagination-bullet-active{
    width: 38px;
    background: rgba(255, 255, 255, 1);
}

.banner_card{
    position: relative;
}
.banner_card img{
    position: absolute;
    width: 60%;
    right: 0px;
    top: 50%;
    transform: translate(0%, -50%);
}
.banner_card .banner_card_text{
    width: 65%;
    color: #585858;
}
.banner_card .banner_card_text h2{
    font-size: 38px;
    margin-bottom: 18px;
}
.banner_card .banner_card_text h5{
    position: relative;
    padding-left: 78px;
}
.banner_card .banner_card_text h5:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 14px;
    width: 68px;
    height: 2px;
    background: #707070;
}
.banner_card_text_h1{
    background: #007EB5;
    color: #fff;
    padding: 38px 68px;
    margin: 24px 0px;
}
.banner_card_text_h1 h1{
    font-size: 70px;
    line-height: 82px;
}
.banner_card_text_ul li{
    padding: 14px 24px;
    border: 1px solid #007EB5;
    background: #fff;
    color: #303030;
    border-radius: 8px;
    margin-bottom: 10px;
}

/*主体*/
.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{
    padding: 0.8rem 3rem 0.8rem 3rem;
    background: #026DB7;
    color: #fff!important;
    font-size: 1rem;
    line-height: 1.5rem;
    pointer-events: auto;
    transition: 0.5s;
    display: inline-block;
    border: 2px solid #026DB7;
}
.gengduo2{
    padding: 0.8rem 2rem 0.8rem 2rem;
    background: #0C377B;
    color: #fff!important;
    border: 2px solid #0C377B;
}
.gengduo:hover{
    color: #fff!important;
    background: #01649C;
    border: 2px solid #01649C;
}

.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: 0px 10px 30px rgba(0, 37, 74, 0.1);
}

.p_13 p{
    font-size: 13px;
    line-height: 24px;
}
.p_15 p{
    font-size: 15px;
    line-height: 26px;
}
.p_16 p,.p_16{
    font-size: 16px;
    line-height: 30px;
}
.p_17 p,.p_17{
    font-size: 17px;
    line-height: 30px;
}
.p_18 p,.p_18{
    font-size: 18px;
    line-height: 38px;
}
.p_20 p,.p_20{
    font-size: 20px;
    line-height: 38px;
}
.p_em p{
    text-indent: 2em;
}
.p_mb p{
    margin-bottom: 18px;
}

.row_30{
    margin-left: -30px;
    margin-right: -30px;
}
.col_30{
    padding-left: 30px;
    padding-right: 30px;
}

.row_24{
    margin-left: -24px;
    margin-right: -24px;
}
.col_24{
    padding-left: 24px;
    padding-right: 24px;
}

.row_20{
    margin-left: -20px;
    margin-right: -20px;
}
.col_20{
    padding-left: 20px;
    padding-right: 20px;
}

.row_12{
    margin-left: -12px;
    margin-right: -12px;
}
.col_12{
    padding-left: 12px;
    padding-right: 12px;
}

.row_10{
    margin-left: -10px;
    margin-right: -10px;
}
.col_10{
    padding-left: 10px;
    padding-right: 10px;
}

.row_7{
    margin-left: -7px;
    margin-right: -7px;
}
.col_7{
    padding-left: 7px;
    padding-right: 7px;
}

.row_5{
    margin-left: -5px;
    margin-right: -5px;
}
.col_5{
    padding-left: 5px;
    padding-right: 5px;
}

/*bottom*/
@media (min-width: 980px) {
    .collapse_block{
        display: block!important;
    }
}
.wap1200{display: block;}
.wap900{display: none;}
@media (max-width: 980px){
    .collapse1{
            display: none;
    }
    .collapse1.in{
            display: block;
    }
    .wap1200{display: none;}
    .wap900{display: block;}
}
@media (max-width: 980px){
    .bottom_xiala:after{
        content: "";
        position: absolute;
        right: 6px;
        top: 23px;
        width: 1px;
        height: 13px;
        background: #fff;
        text-align: center;
        transition: 0.5s;
        transform: rotate(90deg);
        opacity: 0;
    }
    .bottom_xiala:before{
        content: "";
        position: absolute;
        right: 0px;
        top: 29px;
        width: 13px;
        height: 1px;
        background: #fff;
        text-align: center;
        transition: 0.5s;
    }
    .collapsed .bottom_xiala:after{
        content: "";
        position: absolute;
        right: 6px;
        top: 23px;
        width: 1px;
        height: 13px;
        background: #fff;
        text-align: center;
        transition: 0.5s;
        transform: rotate(0deg);
        opacity: 1;
    }
    .collapsed .bottom_xiala:before{
        content: "";
        position: absolute;
        right: 0px;
        top: 29px;
        width: 13px;
        height: 1px;
        background: #fff;
        text-align: center;
        transition: 0.5s;
    }
}

.bottom_bg{
    background: url(../img/bottom_bg.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 88px;
    color: #fff;
}

.bottom_ul{
    padding-bottom: 28px;
}
.bottom_ul .bottom_bt a{
    margin: 0px;
    padding: 0px 0px 0px 0px;
    font-size: 20px;
    position: relative;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}
.bottom_ul .bottom_bt{
    margin-bottom: 0px;
}
.bottom_bt{
    font-weight: 400;
    font-size: 14px;
}
.bottom_ul .card{
    background: none;
    padding: 12px 0px 12px 0px;
}
.bottom_ul .card .bottom_nav_a a{
    display: block;
    line-height: 40px;
    font-size: 16px;
    color: #A8A8A8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bottom_ul .card .bottom_nav_a a:hover{
    color: #01649C;
}

.di_beian{
    padding: 38px 0px;
    line-height: 24px;
    margin-top: 48px;
    background: #17171A;
    color: #fff;
}
.botom_beianhao .list-inline-item:not(:last-child){
    margin-right: 48px;
}

.bottom_bg .bottom_contact li{
    padding-left: 28px;
    color: #A8A8A8;
    line-height: 36px;
    position: relative;
    font-size: 16px;
}
.bottom_bg .bottom_contact li img{
    width: 18px;
    height: 18px;
    object-fit: scale-down;
    position: absolute;
    top: 8px;
    left: 0px;
}
.bottom_bg .bottom_contact li span{
    margin-left: 70px;
}

.bottom_bg .bottom_follow{
    display: flex;
    flex-wrap: wrap;
}
.bottom_bg .bottom_follow .list-inline-item:not(:last-child){
    margin-right: 12px;
    margin-bottom: 10px;
}
.bottom_bg .bottom_follow li a{
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: #fff;
    color: #323232;
    display: flex!important;
    align-items: center;
    justify-content: center;
}
.bottom_bg .bottom_follow li a svg,.bottom_bg .bottom_follow li a img{
    color: #323232;
    fill: #323232;
    width: 30px;
    height: 30px;
}
.bottom_bg .bottom_follow li a{
    color: #323232;
}
.bottom_bg .bottom_follow li a:hover{
    color: #fff;
    background: #01649C;
}
.bottom_bg .bottom_follow li a:hover svg{
    fill: #fff;
}

.bottom_form{
    background: #fff;
    border-radius: 20px;
    padding: 3px;
    border: 1px solid #D9D9D9;
}
.bottom_form .form-control{
    background: none;
    border-radius: 20px!important;
    font-size: 14px;
    height: 52px;
    outline: none;
    box-shadow: none;
    padding: 14px 14px;
    border: none;
}
.bottom_form button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 52px;
    border-radius: 20px!important;
    background: #01649C;
    color: #fff;
     border: none;
}

.dingyue{
    padding-right: 48px;
}

/* ----------------------------------------------------------------
    Contact Us
----------------------------------------------------------------- */
.contact_banner{
    background: url(../img/contact_banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 480px;
    display: flex;
    align-items: center;
    position: relative;
}

.contact_banner_breadcrumb{
    position: absolute;
    left: 0px;
    bottom: 32px;
    width: 100%;
}
.about_breadcrumb li a,.about_breadcrumb li{
    line-height: 24px;
    display: inline-block;
    color: #fff;
}
.about_breadcrumb .about_breadcrumb_home a{
    padding-left: 36px;
    position: relative;
}
.about_breadcrumb li a:hover{
    text-decoration: underline;
}
.about_breadcrumb .about_breadcrumb_home a svg{
    position: absolute;
    width: 24px;
    height: 24px;
    left: 0px;
    top: 0px;
    fill: #fff;
}
.breadcrumb-item+.breadcrumb-item::before{
    content: "-";
    line-height: 24px;
    color: #fff;
}

.contact_card{
    background: #F1F1F1;
    border: none;
    border-radius: 6px;
}
.contact_card .card-body{
    padding: 18px 24px;
    display: flex;
    align-items: center;
}
.contact_card .card-body img{
    width: 38px;
    height: 38px;
    object-fit: scale-down;
}
.contact_card .card-body h5{
    font-size: 17px;
}

.gengduo_cancel{
    background: #C4C4C4;
    color: #fff!important;
    border-color: #C4C4C4;
}

.contact_me_form .form-control{
    border: 1px solid #EBEBEB;
}

/* ----------------------------------------------------------------
    News
----------------------------------------------------------------- */
.news_banner{
    background: url(../img/news_banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 480px;
    display: flex;
    align-items: center;
    position: relative;
}

.device_nav_swiper{
    padding-bottom: 0px;
    padding-left: 15px;
    padding-right: 15px;
}
.device_nav_swiper .swiper-wrapper{
    display: flex;
    justify-content: center;
    height: auto;
}
.device_nav_swiper .swiper-wrapper .swiper-slide{
    width: auto;
    cursor: pointer;
    margin: 0px 24px 0px 0px;
    background: #E6E6E6;
    color: #212121;
    font-size: 16px;
    line-height: 24px;
    padding: 15px 58px;
    border-radius: 50px;
}
.device_nav_swiper .swiper-wrapper .active,.device_nav_swiper .swiper-wrapper .swiper-slide:hover{
    background: #007EB5;
    color: #fff!important;
}

.news_swiper .swiper-button-next,.news_swiper .swiper-button-prev{
    width: 48px;
    height: 48px; 
    background: rgba(255,255,255,1);
    border-radius: 18px;
    border: 1px solid #E2E2E2;
    -webkit-transition: 0.5s;   
    transition: 0.5s;
    z-index: 1000;
}
.news_swiper .swiper-button-prev{
    left: 50%;
    top: auto;
    bottom: 24px;
    margin-left: 36px;
    margin-top: -24px;
}
.news_swiper .swiper-button-next{
    right: auto;
    left: 50%;
    top: auto;
    bottom: 24px;
    margin-top: -24px;
    margin-left: 120px;
}
.news_swiper .swiper-button-prev:after,.news_swiper .swiper-button-next:after{
    color: #000;
    font-size: 18px;
}
.news_swiper .swiper-button-prev:hover:after,.news_swiper .swiper-button-next:hover:after{
    color: #fff;
}
.news_swiper .swiper-button-next:hover,.news_swiper .swiper-button-prev:hover{
    background: #007EB5;
    border: 1px solid #007EB5;
}
.news_swiper .swiper-button-next.swiper-button-disabled,.news_swiper .swiper-button-prev.swiper-button-disabled{
    pointer-events: auto;
}

.news_card1 .news_card_left{
    border-radius: 25px;
}
.news_card1 .card-body{
    padding-bottom: 88px;
}
.news_card1 .card-body h4{
    font-size: 30px;
    line-height: 38px;
}
.news_card1 .card-body p{
    font-size: 16px;
    line-height: 30px;
}

.news_card{
    margin-bottom: 88px;
}
.news_card .fangda{
    border-radius: 15px;
}
.news_card .card-body{
    padding: 24px 12px 0px 12px;
}
.news_card .card-body h4{
    font-size: 20px;
    line-height: 35px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    height: 35px;
}
.news_card .card-body p{
    font-size: 16px;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 60px;
}
.news_card .card-body span{
    font-size: 16px;
    line-height: 30px;
    color: #999;
    display: inline-block;
    margin-top: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid #999;
}
.news_card:hover .card-body span{
    color: #007EB5;
    border-bottom: 1px solid #007EB5;
}

.pagination{
    margin: 0px 0px 0px 0px;
}
.page-item .page-link{
    background: #E9E9E9;
    color: #AAA;
    margin: 0px;
    width: 32px;
    height: 32px;
    border-radius: 32px!important;
    border: 1px solid #E9E9E9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product_ul .page-item .page-link{
    background: #E9E9E9;
}
.page_ul{
    background: #E9E9E9;
    height: 32px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 32px;
    display: flex;
    align-items: center;
}
.product_ul .page_ul{
    background: #fff;
}
.page_ul .list-inline-item{
    margin-right: 0px;
}
.page-item .page_link_left{
    margin-right: 20px;
}
.page-item:not(:first-child) .page-link{
    margin-left: 10px;
}
.page-item .page-link:hover{
    color: #007EB5;
}
.page-item.active .page-link{
    width: 40px;
    height: 40px;
    border-radius: 8px!important;
    color: #fff;
    background: #007EB5;
    box-shadow: 0px 0px 13px rgba(0, 126, 181, 0.19);
    border: none;
}

.news_ds_ul .list-inline-item:not(:last-child) {
    margin-right: 48px;
}
.ns_ds_bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #01649C;
    border-radius: 20px;
    padding: 30px 38px;
}
.ns_ds_bottom ul li a{
    color: #fff;
}
.news_gengduo,.news_gengduo:hover{
    background: #fff;
    color: #01649C!important;
    border-color: #fff;
    box-shadow: none;
    font-size: 14px;
    padding: 8px 46px;
    font-weight: 400;
}
.news_ds_ul .list-inline-item:not(:last-child) {
    margin-right: 48px;
}

/* ----------------------------------------------------------------
    Product
----------------------------------------------------------------- */
.case_banner{
    background: url(../img/case_banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 480px;
    display: flex;
    align-items: center;
    position: relative;
}

/* ----------------------------------------------------------------
    Case
----------------------------------------------------------------- */
.products_banner{
    background: url(../img/products_banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 480px;
    display: flex;
    align-items: center;
    position: relative;
}

.products_nav{
    background: #fff;
}
.ps_nav_bt{
    margin-bottom: 0px;
    padding: 20px 24px;
    color: #fff;
    font-size: 24px;
    line-height: 38px;
    background: #01649C;
}
.products_nav_ul{
    padding: 15px 24px;
}
.products_nav_ul li a{
    display: block;
    font-size: 18px;
    line-height: 38px;
    padding: 12px 18px 12px 0px;
    position: relative;
}
.products_nav_ul li a i{
    position: absolute;
    right: 0px;
    top: 50%;
    margin-top: -9px;
}

.products_card{
    border-radius: 5px;
    padding: 12px;
}
.products_card .card-body{
    padding: 24px 0px 14px 0px;
}
.products_card .card-body h5{
    font-size: 18px;
    padding-bottom: 12px;
    position: relative;
}
.products_card .card-body h5:before{
    content: "";
    position: absolute;
    bottom: 0px;
    margin-left: -34px;
    left: 50%;
    width: 68px;
    height: 3px;
    border-radius: 3px;
    background: #01649C;
}
.products_card .card-body .gengduo{
    font-size: 14px;
    padding: 0.4rem 2rem 0.4rem 2rem;
    box-shadow: 0px 5px 15px rgba(41, 41, 41, 0.1);
}

.ps_page .page-item .page-link{
    background: #fff;
    border: 1px solid #fff;
}
.ps_page .page_ul{
    background: #fff;
}
.ps_page  .page-item.active .page-link{
    background: #01649C;
}

/*详情页*/
.ps_ds_swiper_top .swiper-wrapper,.ps_ds_swiper_bottom .swiper-wrapper{
    height: auto;
}
.ps_ds_swiper_bottom{
    margin-top: 16px;
}
.ps_ds_swiper_bottom .swiper-wrapper .swiper-slide{
    cursor: pointer;
}
.ps_ds_swiper_bottom .swiper-wrapper .swiper-slide-thumb-active{
    border: 5px solid #01649C;
}

.pt_ds_bt{
    padding-bottom: 24px;
    position: relative;
    margin-bottom: 24px;
    font-size: 32px;
}
.pt_ds_bt:before{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 4px;
    width: 100%;
    height: 1px;
    background: #E9E9E9;
}
.pt_ds_bt:after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 108px;
    height: 8px;
    background: #106DA2;
    border-radius: 8px;
}

.ps_ds_share{
    display: flex;
    align-items: center;
}
.ps_ds_share li a{
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 18px;
    width: 32px;
    height: 32px;
    border-radius: 32px;
    background: #fff;
    color: #1E1E1E;
    font-size: 16px;
}
.ps_ds_share li a:hover{
    background: #106DA2;
    color: #fff;
    font-size: 18px;
}

.ps_ds_ul .list-inline-item:not(:last-child){
    margin-right: 24px;
}
.ps_ds_ul .gengduo{
    padding: 12px 58px;
    font-size: 16px;
}
.gengduo_fhlb{
    background: #fff;
    border: 2px solid #fff;
    color: #000!important;
    box-shadow: none;
}

.ps_ds_inquiry{
    padding: 24px 48px;
}
.ps_ds_inquiry .form-control{
    background: #FCFCFC;
    border: 1px solid #DEDEDE;
}

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

.at_jianjie{
    padding: 32px 0px 0px 120px;
}
.ix_bt strong{
    display: inline-block;
    position: relative;
    padding-right: 30px;
}
.ix_bt strong:before{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 16px;
    background: rgba(1, 100, 156, 0.35);
}
.ix_bt2 strong{
    padding-left: 15px;
    padding-right: 15px;
}

.at_jianjie_card{
    border: 3px solid #01649C;
}
.at_jianjie_card .card-body{
    padding: 78px 78px 78px 0px;
    margin-left: -24px;
}
.at_jianjie_card_img{
    margin-top: -32px;
    margin-left: -120px;
}

.about_shuju .numU .numCX{
    font-size: 44px;
}
.about_shuju .numU span{
    font-size: 19px;
}
.about_shuju h6{
    font-size: 16px;
}

.bg_f2f2f2{
    background: #f2f2f2;
}

.ix_partners_logo{
    border-radius: 22px;
    height: 160px;
    padding: 16px;
    transition: 0.5s;
}
.ix_partners_logo img{
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}
.ix_partners_logo:hover{
    box-shadow: 0px 30px 50px rgba(1, 100, 156, 0.26);
}

.at_ce_team_swiper_top .swiper-wrapper,.at_ce_team_swiper_bottom .swiper-wrapper{
    height: auto;
}
.at_ce_team_swiper_bottom{
    margin-top: 20px;
}
.at_ce_team_swiper_bottom .swiper-wrapper .swiper-slide{
    cursor: pointer;
}
.at_ce_team_swiper_bottom .swiper-wrapper .swiper-slide-thumb-active{
    border: 5px solid #01649C;
}
.at_ce_team_swiper_top .swiper-wrapper .swiper-slide{
    text-align: center;
}

.at_ce_team_swiper_top .swiper-button-next,.at_ce_team_swiper_top .swiper-button-prev{
    width: 48px;
    height: 48px; 
    background: rgba(214,214,214,1);
    border-radius: 48px;
    border: 1px solid #E2E2E2;
    -webkit-transition: 0.5s;   
    transition: 0.5s;
    z-index: 1000;
}
.at_ce_team_swiper_top .swiper-button-prev{
    margin-top: -24px;
}
.at_ce_team_swiper_top .swiper-button-next{
    margin-top: -24px;
}
.at_ce_team_swiper_top .swiper-button-prev:after,.at_ce_team_swiper_top .swiper-button-next:after{
    color: #fff;
    font-size: 18px;
}
.at_ce_team_swiper_top .swiper-button-prev:hover:after,.at_ce_team_swiper_top .swiper-button-next:hover:after{
    color: #fff;
}
.at_ce_team_swiper_top .swiper-button-next:hover,.at_ce_team_swiper_top .swiper-button-prev:hover{
    background: #007EB5;
    border: 1px solid #007EB5;
}
.at_ce_team_swiper_top .swiper-button-next.swiper-button-disabled,.at_ce_team_swiper_top .swiper-button-prev.swiper-button-disabled{
    pointer-events: auto;
}

.at_video_body{
    position: relative;
}
.at_video_body .at_video_body_text{
    position:  absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.video_aniu{
    width: 58px;
    height: 58px;
    border-radius: 58px;
    color: #fff;
    z-index: 2;
    background: rgba(255, 255, 255, 1);
    cursor: pointer;
    position: relative;
    display: flex;
}
.video_aniu .video_aniu_top{
    width: 58px;
    height: 58px;
    border-radius: 58px;
    justify-content: center;
    align-items: center;
}
.video_aniu svg{
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1000;
    fill: #000;
    width: 18px;
    height: 18px;
    transform: translate3d(-40%, -50%, 0);
}
.video_aniu .video_aniu_top .circle01,.video_aniu .video_aniu_top .circle02{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 58px;
    height: 58px;
    border-radius: 58px;
    background: rgba(255, 255, 255, 0.3);
}
.video_aniu .video_aniu_top .circle01{
    animation:scalej01 2s .4s infinite;
    -webkit-animation:scalej01 2s .4s infi
}
@keyframes scalej01{
    0%{transform:scale(1);-webkit-transform:scale(1);opacity:1;-webkit-opacity:1;}
    100%{ transform:scale(1.4);-webkit-transform:scale(1.4);opacity:0;-webkit-opacity:0;}
}
.video_aniu .video_aniu_top .circle02{
    animation:scalej02 2s infinite;-webkit-animation:scalej02 2s infinite;
}
@keyframes scalej02{
    0%{transform:scale(1);-webkit-transform:scale(1);opacity:1;-webkit-opacity:1;}
    100%{transform:scale(1.8);-webkit-transform:scale(1.8);opacity:0;-webkit-opacity:0;}
}

/* ----------------------------------------------------------------
    Home
----------------------------------------------------------------- */
.ix_bt3 h3 strong{
    font-weight: 400;
}
.ix_about_bg{
    background: linear-gradient(180deg, #fff, #DEF5FF);
}
.ix_about_right{
    position: relative;
}
.ix_about_right img{
    position: relative;
    z-index: 500;
}
.ix_about_right_text{
    width: 400px;
    border-radius: 12px;
    background: #01649C;
    position: absolute;
    left: -48px;
    bottom: -12px;
    color: #fff;
    padding: 38px;
    z-index: 1000; 
}
.ix_about_right_text h4{
    font-size: 24px;
    line-height: 34px;
}
.ix_about_right:before{
    content: "";
    position: absolute;
    right: -68px;
    bottom: -34px;
    width: 188px;
    height: 400px;
    background: #007EB5;
}

.ix_about_bottom_img{
    width: 48vw;
    position: relative;
    overflow: hidden;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    float: right;
}
.ix_about_bottom_bg:before{
    content: "advantage";
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    left: 25%;
    font-size: 200px;
    font-weight: 700;
    color: #01649C;
    opacity: 0.05;
}

.ix_about_bottom_ul{
    position: relative;
    z-index: 1000;
}
.ix_about_bottom_ul li{
    background: #fff;
    border: 1px solid #E1E1E1;
    border-radius: 10px;
    padding: 24px 24px 24px 0px;
    transition: 0.5s;
}
.ix_about_bottom_ul li:not(:last-child) {
    margin-bottom: 24px;
}
.ix_about_bottom_ul li h1{
    padding: 0px 36px;
    font-size: 42px;
}
.ix_about_bottom_ul li p{
    color: #666;
    font-size: 15px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 48px;
}
.ix_about_bottom_ul li:hover{
    border: 1px solid #fff;
    box-shadow: 0px 0px 30px rgba(1, 100, 156, 0.22);
    color: #01649C;
}

.ix_product_video_bg{
    background: url(../img/ix_product_video_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ix_video_bt strong:before{
    background: rgba(255, 255, 255, 0.35);
}

.ix_news_swiper .swiper-button-next,.ix_news_swiper .swiper-button-prev{
    width: 48px;
    height: 48px; 
    background: rgba(229,229,229,1);
    border-radius: 18px;
    z-index: 1000;
    border: 1px solid #E5E5E5;
}
.ix_news_swiper .swiper-button-prev{
    left: auto;
    right: 78px;
    top: 0px;
    margin-top: 0px;
}
.ix_news_swiper .swiper-button-next{
    right: 0px;
    top: 0px;
    margin-top: 0px;
}
.ix_news_swiper .swiper-button-prev:after,.ix_news_swiper .swiper-button-next:after{
    color: #000;
    font-size: 18px;
}
.ix_news_swiper .swiper-button-prev:hover:after,.ix_news_swiper .swiper-button-next:hover:after{
    color: #fff;
}
.ix_news_swiper .swiper-button-next:hover,.ix_news_swiper .swiper-button-prev:hover{
    background: rgba(1, 100, 156, 1);
    border: 1px solid #01649C;
}
.ix_news_swiper .swiper-wrapper{
    height: auto;
}

/* ----------------------------------------------------------------
    响应
----------------------------------------------------------------- */
.h_v{
    overflow: hidden;
}

@media (min-width: 1200px){
    .lg_none{
        display: none;
    }
}
@media (max-width: 1800px){
    
}
@media (max-width: 1600px){
    .banner{
        height: 680px;
    }
}

@media (max-width: 1400px){
    .navbar-expand-lg .navbar-nav .nav-item{
        margin: 0px 40px 0px 0px;
    }

    .contact_banner{
        height: 380px;
    }
}

@media (max-width: 1300px){
    .row_30,.row_24,.row_20{
        margin-left: -15px;
        margin-right: -15px;
    }
    .col_30,.col_24,.col_20{
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 1199px){
    .md_none{
        display: none;
    }
    .navbar-brand,.is-active .navbar-brand{
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 15px;
        margin-bottom: 15px;
        padding: 0px;
        height: 28px;
    }
    .nav_min .navbar-brand img{
        height: 100%;
        object-fit: contain;
    }
    .nav_min{
        padding: 0px;
        display: flex;
        /*justify-content: center;*/
    }
    .nav_min .nav_container{
        position: relative;
        /*justify-content: center;*/
        padding: 0px;
    }
    .md_nav_container{
        position: relative;
    }
    .nav_min .container{
        position: relative;
        width: 100%;
    }
    .nav_min .md_sousuo_container{
        display: block;
    }
    .md_sousuo{
        position: absolute;
        right: 58px;
        top: 8px;
        background: none;
    }
    .md_sousuo:hover{
        background: none;
    }
    .search_anniu_top:after{
        border: 1px solid #000!important;
    }
    .search_anniu_top:before{
        height: 1px;
        background: #000!important;
    }
    .search_anniu_top2{
        width: 68px;
        height: 58px;
    }
    .md_yuyan{
        position: absolute;
        right: 15px;
        top: 20px;
    }
    .yuyan_top_xiala{
        position: absolute;
        right: 48px;
    }

    .md_collapse{
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    .md_collapse .navbar-nav{
        padding: 15px;
    }
    .navbar-expand-lg .navbar-nav .nav-item{
        margin: 0px;
    }
    .nav_min .navbar-nav .nav-link{
        padding: 20px 40px 20px 0px;
    }
    .nav_min .navbar-nav .top_xiala .nav-link {
        padding-right: 40px;
    }
    .top_xiala{
        position: relative;
    }
    .nav_min .navbar-nav .nav-link{
        font-size: 16px;
        font-weight: normal;
    }
    .pc_yuyan .dropdown-menu{
        position: static;
        float: none;
    }
    .pc_yuyan .nav-link{
        height: 58px;
        line-height: 58px;
        padding: 0px;
    }
    .nav_min .navbar-nav .pc_yuyan .nav-link{
        padding-left: 0px;
        padding-right: 40px;
    }
    .nav_min .nav-link span{
        display: none;
    }
    .container_style{
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .md_collapse{
        max-height: 80vh;
        overflow: auto;
    }
    .md_collapse::-webkit-scrollbar {
        width: 0px;
    }

    .pb-6{
        padding-bottom: 68px;
    }
    .pt-6{
        padding-top: 68px;
    }
    .mb-6{
        margin-bottom: 68px;
    }
    .mt-6{
        margin-top: 68px;
    }
    .pt-7{
        padding-top: 68px;
    }
    .pb-7{
        padding-bottom: 68px;
    }

    .nav_min .pc_yuyan .nav-link svg,.nav_min .pc_yuyan:hover .nav-link svg{
        fill: #000;
    }
    .nav_min .pc_yuyan .nav-link,.navbar-light .navbar-nav .show>.nav-link,.nav_min .pc_yuyan:hover .nav-link{
        color: #000;
        background: none;
    }
    .nav-link:before{
        content: none;
    }

    .bottom_dibu{
        flex-direction: column;
    }
    .botom_beianhao li{
        display: block;
    }
    .botom_beianhao .list-inline-item:not(:last-child){
        margin-right: 0px;
    }
    .botom_beianhao{
        margin-top: 12px;
        text-align: center;
    }

    .news_card{
        margin-bottom: 58px;
    }
    .device_nav_swiper .swiper-wrapper{
        justify-content: flex-start;
    }
    .device_nav_swiper .swiper-wrapper .swiper-slide{
        margin: 0px 15px 0px 0px;
    }

    .banner_card_text_h1{
        padding: 24px 48px;
    }
    .banner_card_text_h1 h1{
        font-size: 48px;
        line-height: 68px;
    }
    .ix_about_bottom_img{
        width: 100%;
    }
    .ix_about_bottom_bg:before{
        left: 50%;
        font-size: 10vw;
        transform: translate(-50%, -50%);
    }
    .ix_about_right:before{
        content: none;
    }
    .ix_about_right_text{
        width: 100%;
        position: static;
        left: 0px;
        bottom: 0px;
        border-radius: 0px;
    }

    .at_jianjie{
        padding: 32px 0px 0px 68px;
    }
    .at_jianjie_card_img{
        margin-left: -68px;
    }
    .about_shuju .numU .numCX{
        font-size: 32px;
    }
    .about_shuju h6{
        font-size: 12px;
    }
}
@media (max-width: 980px){
    /*bottom*/
    .bottom_bg{
        padding-top: 32px;
    }
    .bottom_flex{
        display: block;
        text-align: center;
    }
    .di_media{
        margin-top: 24px;
    }
    .bottom_flex2{
        display: block;
        text-align: center;
    }
    .di_media .media{
        margin-bottom: 8px;
    }
    .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: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .di_beian,.di_about{
        margin-top: 24px;
    }
    .md_erweima{
        justify-content: center;
    }
    .md_erweima .card{
        padding-top: 24px;
    }
    
    .dingyue{
        padding-right: 0px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .news_swiper .swiper-button-prev{
        bottom: 0px;
        margin-left: -58px;
    }
    .news_swiper .swiper-button-next{
        bottom: 0px;
        margin-left: 10px;
    }

    .banner{
        height: auto;
    }
    .banner .swiper-wrapper{
        height: auto;
    }
    .banner_card img{
        position: static;
        width: 100%;
        transform: translate(0%, 0%);
        margin-top: 48px;
    }
    .banner_card .banner_card_text{
        width: 100%;
        margin-bottom: 48px;
    }
    .ix_about_right{
        margin-top: 48px;
    }

    .at_jianjie{
        padding: 0px;
    }
    .at_jianjie_card_img{
        margin-left: 0px;
        margin-top: 0px;
    }
    .at_jianjie_card .card-body{
        margin-left: 0px;
        padding: 30px 24px;
    }
}

@media (max-width: 768px){
    .tanchuang_tuichu{
        right: 0px;
        background: none;
        margin-top: 0px;
    }

    .page-item .page-link{
        width: 32px;
        height: 32px;
    }
    .page_ul{
        height: 32px;
    }
    .page-item.active .page-link{
        width: 42px;
        height: 42px;
    }
    .page-item:not(:first-child) .page-link{
        margin-left: 10px;
    }

    .wrap,.wrap_lg,.wrap_md{
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .nav_min .nav_container,.business_img_right{
        width: 100%;
    }
    .wrap_fluid{
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .contact_banner{
        height: 240px;
    }
    .contact_banner_breadcrumb{
        bottom: 18px;
    }

    .gengduo,.ps_ds_ul .gengduo,.device_nav_swiper .swiper-wrapper .swiper-slide{
        padding: 0.5rem 1.6rem 0.5rem 1.6rem;
        font-size: 0.9rem;
        line-height: 18px;
    }
    .ps_ds_ul .list-inline-item:not(:last-child),.news_ds_ul .list-inline-item:not(:last-child){
        margin-right: 12px;
    }
    
    .pt_ds_bt,.news_card1 .card-body h4,.banner_card .banner_card_text h2{
        font-size: 24px;
    }
    .p_16 p, .p_16{
        font-size: 14px;
        line-height: 24px;
    }
    .ns_ds_bottom{
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
    }
    .ns_ds_bottom .news_gengduo{
        margin-top: 24px;
    }
    .banner_card_text_h1{
        padding: 24px;
    }
    .banner_card_text_h1 h1{
        font-size: 24px;
        line-height: 38px;
    }
    .ix_news_swiper .swiper-button-next, .ix_news_swiper .swiper-button-prev{
        width: 38px;
        height: 38px;
        border-radius: 8px;
    }
    .ix_news_swiper .swiper-button-prev{
        right: 58px;
    }

    .video_aniu .video_aniu_top .circle01, .video_aniu .video_aniu_top .circle02,.video_aniu .video_aniu_top,.video_aniu{
        width: 48px;
        height: 48px;
        border-radius: 48px;
    }
    .video_aniu svg{
        width: 16px;
        height: 16px;
    }
}































/* 分页整体样式重置 */
.pagination {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 20px 0;
    list-style: none;
}
/* 分页项样式 */
.pagination li {
    margin: 0 4px;
}
/* 分页链接基础样式 */
.pagination li a {
    /*display: inline-block;*/
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
}
/* 鼠标悬浮效果 */
.pagination li:not(.disabled):not(.active) a:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background-color: #f0f7ff;
}
/* 选中状态（蓝色背景） */
.pagination li.active a {
    background-color: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
    cursor: default;
}
/* 禁用状态（上一页/下一页不可点击） */
.pagination li.disabled a {
    color: #9ca3af;
    border-color: #e5e7eb;
    background-color: #f9fafb;
    cursor: not-allowed;
}
/* 箭头图标样式优化 */
.pagination li a span {
    display: inline-block;
    font-size: 12px;
}