/*聚诚在线（jc128.net）安全--简单--易用*/
@font-face {
  font-family: 'montserrat';
  font-style: normal;
  src: url(../fonts/montserrat-regular.ttf);
}
body{
    font-family: "Microsoft YaHei","Arial","微软雅黑",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
}

/* 隐藏原生input */
.Radio input,
.Checkbox input {
    display: none
}

/* 标签基础样式 */
.Radio label,
.Checkbox label {
    padding: 0px 0px 0px 30px;
    display: inline-block;
    cursor: pointer;
    position: relative
}

/* 统一方形样式（单选 + 复选都用方形） */
.Radio label:before,
.Checkbox label:before {
    box-sizing: border-box;
    content: "";
    width: 18px;
    height: 18px;
    border: 1px solid #CCC;
    margin: 0px 8px 0px 0px;
    vertical-align: middle;
    display: inline-block;
    transition: 0.2S;
    position: absolute;
    left: 0px;
    top: 3px;

    /* 统一改成方形 */
    border-radius: 0px;
    /* 统一使用对勾背景 */
    background: url(../img/ico_tick.svg) #fff no-repeat center;
    background-size: 0;
}

/* 悬浮 */
.Radio label:hover:before,
.Checkbox label:hover:before {
    border-color: #CCC;
}

/* 禁用状态 */
.Radio input:disabled + label:before,
.Checkbox input:disabled + label:before {
    background-color: #fff;
    border-color: #CCC;
    opacity: 0.5;
}
.Radio input:disabled + label,
.Checkbox input:disabled + label {  
    opacity: 0.5;
}

/* ==================================
   核心修改：单选选中样式 = 复选选中样式
=================================== */
.Radio input:checked + label:before,
.Checkbox input:checked + label:before {
    background-color: #E52629;
    background-size: 16px;
    border-color: #E52629;
}

/* 整块hover */
.HoverLabel label {
    display: block;
    border-radius: 4px;
    padding: 4px;
    width: 100%;
}
.HoverLabel label:hover {
    background-color: #EEE;
}

/*返回顶部*/
.back-top {
    position: fixed;
    right: 1rem;
    bottom: 30px;
    width: 42px;
    height: 42px;
    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: 1000;
    transition: all 0.5s;
}
.back-top:hover{
    background: #E52629;
    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: #0B5BA0;
}
h5{
    line-height: 32px;
}

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

.pem{
    text-indent: 2em;
}

.font10{
    font-size: 10px;
}
.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;
}

.p_12 p,.p_12{
    font-size: 12px;
    line-height: 20px;
}
.p_14 p,.p_14{
    font-size: 14px;
    line-height: 24px;
}
.p_15 p,.p_15{
    font-size: 15px;
    line-height: 28px;
}
.p_16 p,.p_16{
    font-size: 16px;
    line-height: 30px;
}
.p_17 p,.p_17{
    font-size: 17px;
    line-height: 34px;
}
.p_18 p,.p_18{
    font-size: 18px;
    line-height: 36px;
}
.p_em p{
    text-indent: 2em;
}
.p_mb p{
    margin-bottom: 16px;
}

.opacity_5{
    opacity: 0.5;
}

.text_999{
    color: #999;
}
.text-danger{
    color: #E6212A!important;
}
.text-success{
    color: #01ac3a!important;
}
.text-primary{
    color: #1F48A1!important;
}
.text-warning{
    color: #EC6C01!important;
}
.text_000{
    color: #000;
}
.text-muted{
    color: #5C6973;
}

.bg_f5f5f5{
    background: #f5f5f5;
}
.bg-success{
    background: #24bd51!important;
}
.bg-primary{
   background: #055396!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;
}

.row_40{
    margin-left: -40px;
    margin-right: -40px;
}
.col_40{
    padding-left: 40px;
    padding-right: 40px;
}
.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_12{
    margin-left: -12px;
    margin-right: -12px;
}
.col_12{
    padding-left: 12px;
    padding-right: 12px;
}
.row_7{
    margin-left: -7px;
    margin-right: -7px;
}
.col_7{
    padding-left: 7px;
    padding-right: 7px;
}

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

.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 8px 20px rgba(31, 72, 161, 0.1);
}

.gengduo{
    padding: 10px 28px 10px 28px;
    background: #0B5BA0;
    color: #fff!important;
    font-size: 0.9rem;
    line-height: 24px;  
    pointer-events: auto;
    transition: 0.5s;
    display: inline-block;
    flex-shrink: 0;
    border: none;
}
.gengduo:hover{
    background: #1570BF;
}

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

/* ----------------------------------------------------------------
    首页
----------------------------------------------------------------- */
/*ix_nav_top*/
.ix_nav_top{
    background: #0B589A;
}
.ix_nav_top_f{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ix_nav_top_f_p{
    line-height: 24px;
    padding: 4px 0px;
}
.ix_nav_top_f_right{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0px;
}
.ix_nav_top_f_right img{
    width: 20px;
    height: 20px;
    object-fit: scale-down;
}

/*nav*/
.nav_min{
    padding: 0px 0px 0px 0px;
    border: none;
    background: rgba(255, 255, 255, 1);
    box-shadow: none;
    transition: all 0.5s ease;
}
.nav_min .container{
    padding: 0px;
}
.nav_min .navbar-brand{
    padding-top: 0px;
    padding-bottom: 0px;
    height: 58px;
    transition: 0.5s;
    margin-right: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.navbar-brand img{
    height: 100%;
    object-fit: contain;
}
.nav_min .navbar-nav .nav-item{
    margin: 0px 100px 0px 0px;
}
.nav_min .navbar-nav .nav-link{
    padding: 35px 0px 35px 0px;
    position: relative;
    transition: 0.5s;
}
.nav_min .navbar-nav .pc_yuyan{
    margin-right: 0px;
    margin-left: 14px;
}
.nav_min .navbar-nav .nav-link{
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color: #000;
    text-transform: uppercase;
}
.nav_min .navbar-nav .nav_xiala .nav-link{
    padding-right: 24px;
}
.nav_min .nav-link span{
    font-size: 1rem;
}

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

.nav_min .navbar-nav .nav-link:hover{
    color: #0B5BA0;
}
.nav_min .active .nav-link,.nav_min .nav_xiala2:hover .nav-link{
    color: #0B5BA0;
}

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

.nav_min .container{
    position: static;
}
.nav_xiala{
    position: static;
}
.nav_xiala .dropdown-menu{
    left: 0;
    min-width: 100%;
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 0px;
    padding: 0px;
    box-shadow: 0px 5px 10px rgba(153, 153, 153, 0.1);
    animation: nav_xialaxg 0.5s;
    -moz-animation: nav_xialaxg 0.5s; /* Firefox */
}
.nav_xiala2{
    position: relative;
}
.nav_xiala2 .dropdown-menu{
    left: 0;
    min-width: 100%;
    width: 200px;
    background: #fff;
    border: none;
    border-radius: 0px;
    padding: 0px 15px 0px 15px;
    box-shadow: 0px 5px 10px rgba(153, 153, 153, 0.2);
    margin: 0px;
    animation: nav_xialaxg 0.5s;
    -moz-animation: nav_xialaxg 0.5s; /* Firefox */
}
@keyframes nav_xialaxg
{
    0%   {
        margin-top: 10px;
        opacity: 0;
    }
    100% {
        margin-top: 0px;
        opacity: 1;
    }
}
@media (min-width: 1200px){
    .nav_xiala:hover .dropdown-menu{
        display: block;
        transition: all .5s;
    }
    .nav_xiala2: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: #0B5BA0;
    padding: 12px 0px 12px 6px;
}

.nav_xiala2 .dropdown-toggle{
    display: none;
    position: absolute;
    top: 8px;
    right: 0px;
    border: none;
    border-radius: 0px;
    padding: 10px 10px;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    border-radius: 50px;
    transform:rotate(0deg);
    transition: 0.5s;
}
.nav_xiala2 .dropdown-toggle span{
    display: flex;
}
.nav_xiala2 .dropdown-toggle::after{
    content: none;
}
@media (max-width: 1199px){
    .nav_xiala2 .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: #0B5BA0;
    color: #fff;
}

.nav_breadcrumb .sousuo{
    padding: 12px;
    display: flex;
    background: #0B5BA0;
    border-radius: 50px;
}
.nav_breadcrumb .sousuo svg{
    width: 18px;
    height: 18px;
    fill: #fff;
}

.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;
    background: none;
    cursor: pointer;
    transition: all .5s;
}
.tanchuang_tuichu2{
    position: absolute;
    height: 58px;
    right: -58px;
    top: 0px;
    background: #eee;
    cursor: pointer;
    transition: all .5s;
}
.tanchuang_tuichu2:hover{
    background: #0B589A;
}
.tanchuang_tuichu:hover .search_anniu2:after{
    background: #000;
}
.tanchuang_tuichu:hover .search_anniu2:before{
    background: #000;
}
.tanchuang_tuichu2:hover .search_anniu2:after{
    background: #fff;
}
.tanchuang_tuichu2:hover .search_anniu2:before{
    background: #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: #0B5BA0;
}
.search_anniu_top2:hover:after{
    border: 1px solid #0B5BA0;
}

/* 隐藏导航栏的类 */
.header-hidden{
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05);
}

/*banner*/
.ix_banner_right{
     
}
.banner{
    height: 340px;
    border-radius: 10px;
}

.banner .swiper-pagination{
    bottom: 15px;
    z-index: 1000;
}
.banner .swiper-pagination .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 1);
    opacity: 0.4;
    border-radius: 14px;
    margin: 0px 4px;
    z-index: 100;
    position: relative;
    transition: 0.5s;
}
.banner .swiper-pagination .swiper-pagination-bullet-active{
    width: 48px;
    background: rgba(255, 255, 255, 1);
    opacity: 1;
}


.banner_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner_nr{
    background: linear-gradient(to right, rgba(11, 88, 154, 0.6), rgba(11, 88, 154, 0));
    height: 100%;
    width: 100%;
    padding: 48px 60px;
    display: flex;
    align-items: center;
    position: absolute;
    left: 0px;
    top: 0px;
}
.banner_nr h3{
    font-size: 28px;
    line-height: 40px;
}

/*内容*/
.index_g{
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: #ECECEC;
    box-sizing: border-box;
    padding-bottom: 自动适配页脚高度; /* 不需要手动填 */

    /* 关键：用 flex 替代 grid，完美兼容 Swiper */
    display: flex;
    flex-direction: column;
}
.index_g footer{
    grid-row: 2;
    margin-top: auto;
}
.index_g_top{
    flex: 1; /* 占满剩余高度，自动推页脚到底部 */
    width: 100%;
    max-width: 100%;
    overflow: visible; /* 让 Swiper 正常工作 */
}
.bottom_bg{
    width: 100%;
}

.ix_banner_left{
    background: #fff;
    border-radius: 10px;
    padding: 32px 32px 42px 32px;
    height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.ix_banner_left h3{
    font-size: 28px;
    line-height: 40px;
    padding-bottom: 4px;
    position: relative;
    margin-bottom: 20px;
}
.ix_banner_left h3:before{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 62px;
    height: 4px;
    border-radius: 4px;
    background: #0B589A;
}
.ix_banner_left p{
    font-size: 14px;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    height: 120px;
}

.ix_information_g{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.ix_information_card{
    border-radius: 10px;
}
.ix_information_card .card-body{
    padding: 48px 24px;
}
.ix_information_card .card-body img{
    width: 34px;
    height: 34px;
    object-fit: scale-down;
}
.ix_information_card .card-body h5{
    font-size: 18px;
    margin-top: 18px;
}

.ix_ps_swiper{
    padding: 14px 13px;
}
.ix_ps_swiper .swiper-wrapper{
    height: auto;
}
.ix_ps_swiper .swiper-button-next,.ix_ps_swiper .swiper-button-prev{
    width: 30px;
    height: 30px; 
    background: rgba(222,222,222,1);
    border-radius: 6px;
    z-index: 1000;
    transition: 0.5s;
}
.ix_ps_swiper .swiper-button-prev{
    left: 13px;
    margin-top: -15px;
}
.ix_ps_swiper .swiper-button-next{
    right: 13px;
    margin-top: -15px;
}
.ix_ps_swiper .swiper-button-prev:after,.ix_ps_swiper .swiper-button-next:after{
    color: #000;
    font-size: 12px;
}
.ix_ps_swiper .swiper-button-prev:hover:after,.ix_ps_swiper .swiper-button-next:hover:after{
    color: #fff;
}
.ix_ps_swiper .swiper-button-next:hover,.ix_ps_swiper .swiper-button-prev:hover{
    background: rgba(11,91,160,1);
}

.ix_ps_swiper_card{
    border-radius: 10px;
}
.ix_ps_swiper_card .card-header{
    padding: 14px 24px 0px 24px;
    border: none;
    background: none;
}
.ix_ps_swiper_card .card-header p{
    color: #A4A4A4;
    font-size: 12px;
    position: relative;
    padding-left: 10px;
    line-height: 18px;
}
.ix_ps_swiper_card .card-header p:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background: #0B5BA0;
}
.ix_ps_swiper_card img{
    height: 178px;
    width: 100%;
    object-fit: scale-down;
    padding: 12px;
    background: #fff;
}
.ix_ps_swiper_card .card-body{
    padding: 0px 24px 16px 24px;
}
.ix_ps_swiper_card .card-body h5{
    font-size: 18px;
    margin-top: -24px;
}

/*bottom*/
.di_beian{
    padding: 18px 0px;
    line-height: 24px;
    background: #0B589A;
    font-size: 16px;
}
.botom_beianhao .list-inline-item:not(:last-child){
    margin-right: 48px;
}

/* ----------------------------------------------------------------
    About us
----------------------------------------------------------------- */
.about_banner{
    height: 320px;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.about_banner_bg{
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 88, 154, 0.6), rgba(11, 88, 154, 0));
    padding: 48px 50px;
    display: flex;
    align-items: center;
    position: absolute;
    left: 0px;
    top: 0px;
}

.about_breadcrumb{
    margin-top: 12px;
}
.about_breadcrumb li a,.about_breadcrumb li{
    line-height: 24px;
    display: inline-block;
    color: #fff;
    font-size: 14px;
}
.about_breadcrumb .about_breadcrumb_home a{
    padding-left: 30px;
    position: relative;
}
.about_breadcrumb li a:hover{
    text-decoration: underline;
}
.about_breadcrumb .about_breadcrumb_home a svg{
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0px;
    top: 2px;
    fill: #fff;
}
.breadcrumb-item+.breadcrumb-item::before{
    content: "-";
    line-height: 24px;
    color: #fff;
}

.about_nr{
    border-radius: 10px;
    padding: 40px 50px 68px 50px;
}
.mt_18{
    margin-top: 18px;
}

.about_nav_swiper{
    padding-bottom: 0px;
    border-bottom: 1px solid #D4D4D4;
    padding-bottom: 18px;
}
.about_nav_swiper .swiper-wrapper{
    height: auto;
}
.about_nav_swiper .swiper-wrapper .swiper-slide{
    width: auto;
    cursor: pointer;
    background: none;
    color: #000;
    font-size: 18px;
    line-height: 30px;
    padding: 12px 38px;
    border-radius: 50px;
    margin-right: 24px;
}
.about_nav_swiper .swiper-wrapper .active{
    background: #0B5BA0;
    color: #fff!important;
    font-weight: 700;
}
.about_nav_swiper .swiper-wrapper .swiper-slide:hover{
    color: #0B5BA0;
}

.about_nr_text{
    padding: 0px 20px;
}
.mt_38{
    margin-top: 38px;
}
.mt_68{
    margin-top: 68px;
}
.about_nr_text_bt{
    font-size: 28px;
}

.ps_g_card{
    width: 100%;
    height: 560px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.ps_g_card .ps_g_card_img{
    width: 100%;
    height: 100%;   
    object-fit: cover;
}
.ps_g_card video{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    right: 0px;
    object-fit: cover;
}
.ps_g_card .card-img-overlay{
    padding: 30px 30px 38px 30px;
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.ps_g_card .card-img-overlay:before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.ps_g_card_nr{
    position: relative;
}
.ps_g_card .card-img-overlay a{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}
.ps_g_card .card-img-overlay a img{
    width: 58px;
    height: 58px;
    object-fit: contain;
}
.video_aniu{
    width: 48px;
    height: 48px;
    border-radius: 48px;
    color: #fff;
    z-index: 2;
    background: rgba(255, 255, 255, 1);
    cursor: pointer;
    position: relative;
    display: flex;
}
.video_aniu .video_aniu_top{
    width: 48px;
    height: 48px;
    border-radius: 48px;
    justify-content: center;
    align-items: center;
}
.video_aniu svg{
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1000;
    fill: #0B5BA0;
    width: 14px;
    height: 14px;
    transform: translate3d(-40%, -50%, 0);
}
.video_aniu .video_aniu_top .circle01,.video_aniu .video_aniu_top .circle02{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 48px;
    height: 48px;
    border-radius: 48px;
    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;}
}

.pagination{
    margin: 14px 0px 0px 0px;
}
.page-item .page-link{
    background: #EEEEEE;
    color: #AAA;
    margin: 0px;
    width: 32px;
    height: 32px;
    border-radius: 32px!important;
    border: 1px solid #EEEEEE;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product_ul .page-item .page-link{
    background: #EEEEEE;
}
.page_ul{
    background: #EEEEEE;
    height: 32px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 32px;
    display: flex;
    align-items: center;
}
.product_ul .page_ul{
    background: #EEEEEE;
}
.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: #0B589A;
}
.page-item.active .page-link{
    width: 40px;
    height: 40px;
    border-radius: 8px!important;
    color: #fff;
    background: #0B589A;
    box-shadow: 0px 0px 13px rgba(11, 88, 154, 0.19);
    border: none;
}

.ps_nr_g{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px 30px;
    padding-top: 12px;
}
.ps_nr_g_card{
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #CBCBCB;
}
.ps_nr_g_card img{
    width: 100%;
    height: 320px;
    object-fit: scale-down;
    padding: 24px;
}
.ps_nr_g_card .card-body{
    padding: 0px 30px 30px 30px;
}
.ps_nr_g_card .card-body h4{
    font-size: 22px;
}
.ps_nr_g_card .card-body p{
    font-size: 15px;
    line-height: 24px;
    position: relative;
    padding-left: 14px;
}
.ps_nr_g_card .card-body p:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background: #0B5BA0;
}

/*详情页*/
.ps_ds_bg{
    position: relative;
}
.ps_ds_bg:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
    background: #F1F1F1;
}

.ps_ds_swiper{
    position: relative;
    padding-right: 20%;
}
.ps_ds_swiper_right{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 17%;
    height: 100%;
}
.ps_ds_swiper_left{
    border: 1px solid #C7C7C7;
    border-radius: 16px;
}
.ps_ds_swiper_left .swiper-wrapper,.ps_ds_swiper_right .swiper-wrapper{
    height: auto;
}
.ps_ds_swiper_right .swiper-wrapper .swiper-slide{
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid #C7C7C7;
    border-radius: 13px;
}
.ps_ds_swiper_left .swiper-wrapper .swiper-slide img{
    padding: 12px;
}
.ps_ds_swiper_right .swiper-wrapper .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 12px;
}
.ps_ds_swiper_right .swiper-wrapper .swiper-slide-thumb-active{
    border: 5px solid #0B589A;
}

.pt_ds_bt{
    padding-bottom: 30px;
    position: relative;
    margin-bottom: 30px;
    font-size: 32px;
}
.pt_ds_bt:after{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 120px;
    height: 7px;
    background: #0B589A;
    border-radius: 6px;
}
.pt_ds_bt:before{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 3px;
    width: 100%;
    height: 1px;
    background: #B4B4B4;
}

.pt_ds_rotary{
    display: inline-block;
    color: #0B589A;
    background: rgba(11, 88, 154, 0.15);
    border-radius: 5px;
    padding: 10px 24px;
}
.case_ds_form_ul li a{
    display: inline-block;
    background: #0B589A;
    border-radius: 50px;
    padding: 12px 48px;
    color: #fff;
    transition: 0.5s;
    border: 2px solid #0B589A;
    font-size: 18px;
    font-weight: 700;
}
.case_ds_form_ul li .case_ds_form_ul_a2{
    background: none;
    color: #0B589A;
}
.case_ds_form_ul li a:hover{
    color: #fff;
    background: #2076C1;
}

.ps_ds_color li a{
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: #eee;
}
.ps_ds_color li a.ps_ds_color_1{
    background: #3E4466;
}
.ps_ds_color li a.ps_ds_color_2{
    background: #B3736D;
}
.ps_ds_color li a.ps_ds_color_3{
    background: #00389B;
}
.ps_ds_color li a.ps_ds_color_4{
    background: #98E2F8;
}

.ps_ds_nr{
    padding: 68px 50px 68px 50px;
    border-radius: 10px;
    margin: 25px 0px 10px 0px;
}
.ps_ds_text_right{
    margin-top: 14px;
}
.ps_ds_parameters{
    padding: 0px 48px;
}
.ps_ds_parameters_bt{
    font-size: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
}

.ps_ds_table tbody tr th,.ps_ds_table tbody tr td{
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    background: #0B589A;
    color: #fff;
    padding: 16px 12px;
    border: none;
    line-height: 30px;
    width: 50%;
}
.ps_ds_table>:not(caption)>*{
    border: none;
}
.ps_ds_table{
    border-collapse: separate; /* 必须是 separate */
    border-spacing: 0 2px;
}
.ps_ds_table tbody tr td{
    background: #EBEBEB;
    color: #000;
}

.ps_ds_g{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px 30px;
}

/* ----------------------------------------------------------------
    Information
----------------------------------------------------------------- */
.in_pt_g{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 28px;
}

.in_pt_g_card{
    background: #fff;
    border-radius: 10px;
    padding: 28px;
}
.in_pt_g_card img{
    border-radius: 8px;
    margin-right: 38px;
    width: 320px;
}
.in_pt_g_card h3{
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 24px;
}

.in_pt_gengduo{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.in_pt_gengduo span{
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.in_pt_gengduo svg{
    width: 12px;
    height: 12px;
    fill: #0B589A;
}
.in_pt_gengduo_k{
    display: flex;
    justify-content: center;
}
.in_pt_bt{
    font-size: 42px;
    margin-bottom: 18px;
}

.in_ds_form_ul li a{
    border: none;
    background: #0B589A;
    color: #fff;
    border-radius: 5px !important;
    font-size: 14px;
    line-height: 18px;
    padding: 10px 32px;
    margin-top: 8px;
    margin-right: 8px;
    margin-bottom: 8px;
}
.in_ds_form_ul li .case_ds_form_ul_a2{
    background: none;
    color: #0B589A;
}
.in_ds_form_ul li a:hover{
    color: #fff;
    background: #2076C1;
}
.download_modal .modal-body{
    padding: 58px 68px 78px 68px;
}
.modal_form_group{
    border: 1px solid #ddd;
    border-radius: 12px;
}
.modal_form_group .form-control{
    border: none;
    font-size: 16px;
    box-shadow: none;
    border-radius: 0px;
    height: 62px;
    background: none;
    padding: 12px 20px;
}
.modal_form_group .form-control::placeholder {
    color: #979797;
}
.modal_form_group button{
    border: none;
    background: #0B589A;
    color: #fff;
    border-radius: 5px!important;
    font-size: 14px;
    line-height: 18px;
    padding: 10px 32px;
    margin-top: 8px;
    margin-right: 8px;
    margin-bottom: 8px;
}
.modal_form_group button:hover,.modal_form_group button:focus{
    background: #2076C1;
}

.in_ptml_g{
    display: grid;
    gap: 2px;
}
.in_ptml_g_bg{
    background: #EFEFEF;
    border-radius: 7px;
    padding: 16px 12px;
    display: flex;
    align-items: center;
}
.in_ptml_g_bgbt{
    background: #0B5BA0;
    color: #fff;
    font-size: 18px;
    line-height: 38px;
}
.in_ptml_g_nr{
    padding: 0px 12px;
    flex-shrink: 0!important;
}
.in_ptml_g_nr img{
    width: 130px;
}
.in_ptml_g_nr1{
    width: 20%;
}
.in_ptml_g_nr2{
    width: 20%;
}
.in_ptml_g_nr3{
    width: 20%;
}
.in_ptml_g_nr4{
    width: 20%;
}
.in_ptml_g_nr5{
    width: 20%;
}
.in_ptml_g_nr .gengduo{
    flex-shrink: 0;
}

.form_in_ptsl_span{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 42px;
    height: 62px;
}
.form_in_ptsl_span svg{
    width: 20px;
    height: 20px;
    fill: #0B5BA0;
}

.case_ds_form .form-control,.case_ds_form .form-select{
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #E1E1E1;
    box-shadow: none;
    padding: 12px 20px;
    background: #EFEFEF;
}
.case_ds_form .form_input_h{
    height: 58px;
}
.case_ds_form .form-control::placeholder{
    color: #999;
}
.case_ds_form label{
    margin-bottom: 12px;
}

.in_ds_form_ul .in_ds_form_ul_a2{
    color: #000;
    background: #E1E1E1;
}

.contact_card{
    border-radius: 8px;
    background: #fff;
    border: 1px solid #DCDCDC;
}
.contact_card .card-body{
    padding: 24px 24px 24px 108px;
    position: relative;
}
.contact_card .card-body img{
    width: 38px;
    height: 38px;
    object-fit: scale-down;
}
.contact_card .card-body h5{
    font-size: 17px;
}
.contact_card .card-body span{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 108px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ----------------------------------------------------------------
    Guide Page
----------------------------------------------------------------- */
.guide_page_card{
    height: 100vh;
}
.guide_page_card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.guide_page_card .card-img-overlay{
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    display: flex;
    align-items: center;
}
.guide_page_card .card-img-overlay h1{
    font-size: 68px;
    line-height: 90px;
}
.guide_page_card .card-img-overlay .gengduo{
    margin-top: 68px;
    font-size: 1rem;
    padding: 14px 58px 14px 58px;
}

/* ----------------------------------------------------------------
   首页改
----------------------------------------------------------------- */
.gai_ix_g{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 28px;
}
.gai_ix_card{
    background: #fff;
    border-radius: 15px;
    padding: 28px 28px 28px 38px;
    gap: 3%;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}
.gai_ix_card_left{
    width: 55%;
}
.gai_ix_card_left .fangda2{
    border-radius: 10px;
}
.gai_ix_card img{
    width: 100%;
}
.gai_ix_card h3{
    font-size: 38px;
    line-height: 48px;
    margin-bottom: 38px;
    padding-bottom: 20px;
    position: relative;
}
.gai_ix_card h3:before{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 48px;
    height: 3px;
    background: #0B5BA0;
}
.gai_ix_card .gengduo{
    padding: 10px 38px 10px 38px;
}

/* ----------------------------------------------------------------
    响应
----------------------------------------------------------------- */
@media (min-width: 1200px){
    .lg_none{
        display: none;
    }
}

@media (max-width: 1800px){
}

@media (max-width: 1600px){
    .in_pt_g_card img{
        width: 280px;
    }

    .gai_ix_card_left{
        width: 50%;
    }
}

@media (max-width: 1400px){
    .nav_min .navbar-nav .nav-item{
        margin: 0px 80px 0px 0px;
    }

    .about_banner_bg,.ps_ds_nr,.about_nr{
        padding: 38px 38px;
    }
    .ps_ds_parameters{
        padding: 0px 24px;
    }
    .case_ds_form_ul li a{
        padding: 12px 38px;
    }
    .in_pt_g_card img{
        width: 240px;
        margin-right: 24px;
    }
    .in_pt_g_card h3{
        font-size: 22px;
    }

    .about_nr_text{
        padding: 0px;
    }
    .ps_g_card{
        height: 480px;
    }

    .guide_page_card .card-img-overlay h1{
        font-size: 58px;
        line-height: 78px;
    }
    .guide_page_card .card-img-overlay .gengduo{
        margin-top: 48px;
    }
    .gai_ix_card{
        padding: 24px 24px 24px 24px;
    }
    .gai_ix_card h3{
        font-size: 30px;
        line-height: 40px;
    }
    .gai_ix_card .gengduo{
        padding: 10px 28px 10px 28px;
    }
}

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

    .nav_min .navbar-nav .nav-item{
        margin: 0px 60px 0px 0px;
    }
    .in_ptml_g_bg{
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .in_ptml_g_bg .in_ptml_g_nr1{
        width: auto;
    }
    .in_ptml_g_bg .in_ptml_g_nr2{
        width: auto;
        text-align: left;
    }
    .in_ptml_g_bg .in_ptml_g_nr3,.in_ptml_g_bg .in_ptml_g_nr4,.in_ptml_g_bg .in_ptml_g_nr5{
        width: auto;
        text-align: left;
    }
    .in_ptml_g_bgbt .in_ptml_g_nr1,.in_ptml_g_bgbt .in_ptml_g_nr2,.in_ptml_g_bgbt .in_ptml_g_nr4,.in_ptml_g_bgbt .in_ptml_g_nr5{
        display: none;
    }
    .in_ptml_g_bgbt .in_ptml_g_nr3{
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 1199px){
    .md_none{
        display: none;
    }
    .nav_min .navbar-brand{
        height: 38px;
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    /*
    .nav_min .navbar-brand,.is-active .navbar-brand{
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 14px;
        margin-bottom: 14px;
        padding: 0px;
        height: 30px;
    }
    */
    .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%;
        padding: 0px;
    }
    .nav_min .md_sousuo_container{
        display: block;
    }
    .md_sousuo{
        position: absolute;
        right: 58px;
        top: 8px;
        background: none;
    }
    .md_sousuo:hover{
        background: none;
    }
    .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 .top_xiala .nav-link{
        padding: 16px 40px 16px 0px;
    }
    .nav_min .navbar-nav .nav-link{
        padding: 16px 46px 16px 0px;
    }
    .nav_min .navbar-nav .top_xiala .nav-link {
        padding-right: 40px;
    }
    .top_xiala{
        position: relative;
    }
    .nav_min .navbar-nav .nav-link{
        font-size: 14px;
        font-weight: normal;
    }
    .pc_yuyan .dropdown-menu{
        position: static;
        float: none;
    }
    .nav_min .navbar-nav .pc_yuyan .nav-link{
        padding-left: 0px;
        padding-right: 40px;
    }
    .nav_min .nav-link span{
        display: none;
    }
    .md_collapse{
        max-height: 80vh;
        overflow: auto;
    }
    .md_collapse::-webkit-scrollbar {
        width: 0px;
    }
    .nav_xiala{
        position: relative;
    }

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

    .bottom_dibu{
        flex-direction: column;
        font-size: 13px;
        text-align: center;
    }
    .botom_beianhao li{
        display: block;
    }
    .botom_beianhao .list-inline-item:not(:last-child){
        margin-right: 0px;
    }
    .di_beian{
        padding: 24px 0px;
    }

    .ix_banner_left{
        margin-top: 14px;
    }
    .ix_information_g{
        grid-template-columns: repeat(2, 1fr);
    }
    .ix_information_card .card-body h5,.ix_ps_swiper_card .card-body h5{
        font-size: 16px;
    }

    .nav_breadcrumb{
        position: absolute;
        right: 58px;
        top: 10px;
    }
    .nav_breadcrumb .sousuo{
        padding: 11px;
    }
    .nav_breadcrumb .sousuo svg{
        width: 16px;
        height: 16px;
    }
    .banner_nr{
        padding: 32px;
    }

    .about_banner_bg, .ps_ds_nr,.about_nr{
        padding: 38px 24px;
    }
    .ps_ds_text_right{
        margin-top: 24px;
    }

    .ps_ds_g,.ps_nr_g{
        grid-template-columns: repeat(2, 1fr);
        gap: 38px 24px;
    }
    .about_nav_swiper .swiper-wrapper .swiper-slide{
        font-size: 16px;
    }

    .in_pt_g_card img{
        width: 180px;
        margin-right: 24px;
    }
    .in_pt_g_card h3{
        font-size: 18px;
        line-height: 30px;
    }
    .in_pt_g{
        grid-template-columns: repeat(1, 1fr);
    }
    .in_ptml_g_nr{
        padding: 0px 6px;
    }

    .ps_g_card{
        height: 420px;
    }
    .guide_page_card .card-img-overlay h1{
        font-size: 48px;
        line-height: 68px;
    }
    .guide_page_card .card-img-overlay .gengduo{
        padding: 14px 38px 14px 38px;
    }
    .gai_ix_g{
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 980px){
    .container_style {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .in_ptml_g_bg{
        justify-content: flex-start;
    }
    .in_ptml_g_bg .in_ptml_g_nr3, .in_ptml_g_bg .in_ptml_g_nr4, .in_ptml_g_bg .in_ptml_g_nr5{
        width: 100%;
    }
    .in_ptml_g_bg .in_ptml_g_nr5 .gengduo{
        margin-top: 24px;
    }

    .in_ptml_md_p{
        margin-top: 12px;
        color: #999;
        font-size: 0.9rem;
    }
    .download_modal .modal-body{
        padding: 48px 24px 58px 24px;
    }

    .ps_g_card{
        height: 380px;
    }
    .guide_page_card .card-img-overlay h1 {
        font-size: 38px;
        line-height: 58px;
    }
}

@media (max-width: 768px){
    .container_style {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .tanchuang_tuichu{
        right: 0px;
        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,.wrap_xl{
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .nav_min .nav_container,.business_img_right{
        width: 100%;
    }
    .wrap_fluid{
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .in_pt_bt{
        font-size: 1.4rem;
        line-height: 32px;
    }
    .banner_nr h3,.ix_banner_left h3,.about_banner h3,.pt_ds_bt,.ps_ds_parameters_bt,.about_nr_text_bt,.md_h3{
        font-size: 1.2rem;
        line-height: 30px;
    }
    .md_h4,.in_ptml_g_nr p{
        font-size: 1rem;
        line-height: 28px;
    }
    .md_h6,.ps_nr_g_card .card-body h4,.p_16 p, .p_16{
        font-size: 0.9rem;
        line-height: 24px;
    }
    .ix_banner_left p,.di_beian,.ix_information_card .card-body h5, .ix_ps_swiper_card .card-body h5,.p_14 p, .p_14,.about_breadcrumb li a, .about_breadcrumb li{
        font-size: 0.8rem;
        line-height: 24px;
    }

    .banner{
        height: 220px;
    }
    .banner_nr{
        padding: 24px 20px;
    }
    .banner .swiper-pagination{
        bottom: 6px;
    }
    .ix_banner_left{
        padding: 24px 20px;
    }
    .ix_banner_left{
        height: auto;
    }
    .gengduo{
        font-size: 0.8rem;
        padding: 8px 24px 8px 24px;
    }
    .ix_banner_left .gengduo{
        margin-top: 24px;
    }
    .ix_banner_left h3{
        margin-bottom: 14px;
    }
    .ix_banner_left p{
        display: block;
        height: auto;
    }
    .ix_ps_swiper_card .card-body{
        padding: 0px 15px 10px 15px;
    }
    .ix_ps_swiper_card .card-header{
        padding: 10px 15px 0px 15px;
    }
    .ix_ps_swiper_card img{
        height: 120px;
    }
    .ix_ps_swiper_card .card-body h5{
        margin-top: -8px;
    }
    .ix_information_card .card-body{
        padding: 28px 15px;
    }
    .ix_information_card .card-body h5{
        margin-top: 10px;
    }
    .ix_information_card .card-body img{
        width: 24px;
        height: 24px;
    }

    .about_banner{
        height: 180px;
    }
    .about_breadcrumb{
        margin-top: 6px;
    }
    .about_banner_bg, .ps_ds_nr,.about_nr{
        padding: 24px 15px;
    }
    .ps_ds_swiper_right .swiper-wrapper .swiper-slide-thumb-active{
        border: 2px solid #0B589A;
    }
    .pt_ds_bt:after{
        width: 68px;
        height: 5px;
    }
    .pt_ds_bt:before{
        bottom: 2px;
    }
    .pt_ds_bt{
        padding-bottom: 18px;
    }

    .pt_ds_rotary{
        font-size: 0.8rem;
    }
    .ps_ds_color li a{
        width: 24px;
        height: 24px;
    }
    .case_ds_form_ul li a,.in_ds_form_ul li a{
        font-size: 0.8rem;
        padding: 10px 24px;
    }
    .ps_ds_parameters{
        padding: 0px 0px;
    }
    .ps_ds_table tbody tr th, .ps_ds_table tbody tr td{
        font-size: 0.8rem;
        line-height: 24px;
        padding: 12px 8px;
    }
    .ps_ds_parameters_bt{
        margin-bottom: 24px;
        padding-bottom: 16px;
    }
    .ps_ds_g,.ps_nr_g{
        gap: 18px 6px;
    }
    .ps_nr_g_card img{
        padding: 8px;
        height: 180px;
    }
    .ps_nr_g_card .card-body{
        padding: 0px 12px 12px 12px;
    }

    .ps_nr_g_card .card-body p{
        font-size: 0.8rem;
    }
    .ps_nr_g_card .card-body h4{
        margin-bottom: 0px;
    }
    .about_nav_swiper .swiper-wrapper .swiper-slide{
        font-size: 0.8rem;
        margin-right: 8px;
        padding: 6px 24px;
    }
    .in_pt_g_card{
        padding: 15px;
    }
    .in_pt_g_card img{
        width: 120px;
        margin-right: 16px;
    }
    .in_pt_g_card h3{
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    .in_pt_g{
        gap: 12px;
    }
    .modal_form_group .form-control{
        font-size: 0.8rem;
        height: 52px;
        padding: 12px 12px;
    }
    .form_in_ptsl_span{
        height: 52px;
    }
    .modal_form_group button{
        margin-top: 6px;
        margin-right: 6px;
        margin-bottom: 6px;
        padding: 10px 22px;
        font-size: 0.8rem;
    }
    .form_in_ptsl_span svg{
        width: 14px;
        height: 14px;
    }
    .form_in_ptsl_span{
        width: 32px;
    }
    .in_ptml_g_nr img{
        width: 110px;
    }
    .case_ds_form label{
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    .case_ds_form .form_input_h{
        height: 48px;
    }
    .case_ds_form .form-control, .case_ds_form .form-select{
        padding: 12px 15px;
    }
    .download_modal .modal-body{
        padding: 38px 24px 38px 24px;
    }

    .ps_g_card{
        height: 240px;
    }
    .guide_page_card .card-img-overlay .gengduo{
        font-size: 1rem;
        padding: 10px 30px 10px 30px;
    }
    .guide_page_card .card-img-overlay h1 {
        font-size: 1.8rem;
        line-height: 48px;
    }
    .guide_page_card .card-img-overlay .gengduo{
        margin-top: 38px;
    }
    
    .gai_ix_card{
        display: block!important;
    }
    .gai_ix_card{
        padding: 12px 12px 24px 12px;
    }
    .gai_ix_card_left{
        width: 100%;
        margin-bottom: 18px;
    }
    .gai_ix_card h3{
        font-size: 1.4rem;
        line-height: 30px;
        margin-bottom: 18px;
    }
}














#searchInput:focus {
    background-color: #ffffff !important;
    color: #333333 !important;
    border-color: #80bdff !important;
    outline: none !important;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25) !important;
}
#searchInput:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    -webkit-text-fill-color: #333333 !important;
}
#searchInput:-moz-autofill {
    background-color: #ffffff !important;
    color: #333333 !important;
}





#togglePwdBtn.btn.btn-outline-secondary {background: #0B5BA0;
    color: #fff;
    font-size: 20px;
    line-height: 38px;}