/*聚诚在线（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: #000;
    background-size: 16px;
    border-color: #000;
}

/* 整块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: 9999;
    transition: all 0.5s;
}
.back-top:hover{
    background: #FF6600;
    color:#fff;
}
@media (max-width: 768px){
    .back-top{
        display: none;
    }
}

.right_social{
    position: fixed;
    top: 50%;
    transform: translate(0%, -50%); /* 自身宽高的一半 */
    right: 15px;
    z-index: 500;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3px;
}
.right_social a{
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    position: relative;
    cursor: pointer;
    transition: all 0.5s;
}
.right_social_icon{
    width: 20px;
    height: 20px;
    object-fit: scale-down;
}
.right_social a:hover,.right_social a:focus{
    color: #fff;
    background: rgba(0, 0, 0, 1);
}

.right_social_menu{
    width: 200px;
    position: absolute;
    right: 100%;
    top: 0px;
    transition: all 0.5s;
    padding-right: 15px;
    display: none;
}
.right_social_menu_nr{
    border-radius: 0px;
    padding: 16px 16px;
    color: #000;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}
.right_social a:hover .right_social_menu{
    display: block;
}
.right_social_menu_nr .bi{
    position: absolute;
    top: 14px;
    right: -12px;
    font-size: 20px;
    color: #fff;
}

/* ----------------------------------------------------------------
    通用
-----------------------------------------------------------------*/
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: #000;
}
h5{
    line-height: 32px;
}

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

.pem{
    text-indent: 2em;
}

.font12{
    font-size: 0.8rem;
}
.font13{
    font-size: 13px;
}
.font14{
    font-size: 14px;
}
.font16{
    font-size: 16px;
}
.font17{
    font-size: 17px;
}
.font18{
    font-size: 1.2rem;
}
.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: 0.8rem;
    line-height: 2;
}
.p_15 p,.p_15{
    font-size: 0.9rem;
    line-height: 2;
}
.p_16 p,.p_16{
    font-size: 1rem;
    line-height: 2;
}
.p_17 p,.p_17{
    font-size: 1.1rem;
    line-height: 2;
}
.p_18 p,.p_18{
    font-size: 1.2rem;
    line-height: 2;
}
.p_em p{
    text-indent: 2em;
}
.p_mb p{
    margin-bottom: 24px;
}
.p_mb2 p{
    margin-bottom: 24px;
}

.opacity_5{
    opacity: 0.5;
}

.text_999{
    color: #999;
}
.text-danger{
    color: #E50010!important;
}
.text-success{
    color: #01ac3a!important;
}
.text-primary{
    color: #1F48A1!important;
}
.text-warning{
    color: #EC9600!important;
}
.text_000{
    color: #000;
}

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

.gengduo{
    padding: 14px 48px;
    background: #fff;
    color: #000!important;
    font-size: 1rem;
    line-height: 24px;
    pointer-events: auto;
    transition: 0.5s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.gengduo:hover{
    background: #999;
    color: #000!important;
}

.wrap,.nav_min .container{
    margin-inline-start: auto;
    margin-inline-end: auto;
    width: 92%;
    max-width: 1400px;
    position: relative;
}
.wrap_fluid{
    margin-inline-start: auto;
    margin-inline-end: auto;
    width: 100%;
    padding-left: 5rem;
    padding-right: 5rem;
    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: 950px;
    position: relative;
}

/* ----------------------------------------------------------------
    首页
----------------------------------------------------------------- */
/*ix_nav_top*/
.ix_nav_top{
    background: #000;
}
.ix_nav_top_icon{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 38px;
    height: 38px;
}
.ix_nav_top_icon svg{
    width: 14px;
    height: 14px;
    fill: #999;
}
.ix_nav_top_p{
    padding: 7px 0px;
    display: block;
    line-height: 24px;
}

/*nav*/
.nav_min{
    padding: 0px 0px 0px 0px;
    border: none;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}
.nav_min .container{
    padding: 0px;
}
.nav_min .navbar-brand{
    padding-top: 0px;
    padding-bottom: 0px;
    height: 32px;
    transition: 0.5s;
    margin-right: 10px;
    margin-top: 13px;
    margin-bottom: 13px;
    display: flex;
}
.navbar-brand img{
    height: 100%;
}
.nav_min .navbar-nav .nav-item{
    margin: 0px 35px 0px 35px;
}
.nav_min .navbar-nav .nav-link{
    padding: 30px 0px 30px 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: 400;
    font-size: 1rem;
    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: #000;
    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_xiala:hover .nav-link:before,.nav_xiala2:hover .nav-link:before{
    left: 0%;
    right: 0%;
    opacity: 1;
    color: #000;
}

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

.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: #666;
    border-bottom: 1px solid #eee;
}
.menu_a a:last-child{
    border: none;
}
.menu_a a:hover{
    color: #000;
    padding: 12px 0px 12px 6px;
}

.menu_g{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
    padding: 48px;
}
.menu_g ul h5 a{
    font-size: 16px;
    font-weight: 700;
    transition: 0.5s;
}
.menu_g ul li a{
    font-size: 14px;
    line-height: 24px;
    display: block;
    margin: 5px 0px;
    transition: 0.5s;
}
.menu_g ul a:hover{
    padding-left: 6px;
}

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

.ix_sousuo{
    display: none;
}

.nav_breadcrumb{
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 50px;
}
.nav_min .sousuo{
    padding: 10px 16px;
    display: flex;
}
.nav_min .sousuo svg{
    width: 22px;
    height: 22px;
    fill: #000;
}
.nav_min .nav_logon .nav-link{
    padding: 10px 16px;
    display: flex;
}
.nav_min .nav_logon .nav-link::before{
    content: none;
}
.nav_min .nav_logon .nav-link svg{
    width: 22px;
    height: 22px;
    fill: #000;
}

.search_anniu_top{
    display: inline-block;
    width: 42px;
    height: 42px;
    border: none;
    position: relative;
}
.search_anniu_top:before{
    content: "";
    position: absolute;
    margin: auto;
    top: 14px;
    right: 1px;
    bottom: 0;
    left: 14px;
    width: 6px;
    height: 1px;
    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: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px 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: 1px solid #fff;
}

.search_anniu_top2{
    display: inline-block;
    width: 68px;
    height: 58px;
    position: relative;
    border: none;
    border-bottom: 1px solid #ddd;
    border-left: none;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.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: #000;
}
.search_anniu_top2:hover:after{
    border: 1px solid #000;
}

.sousuokuang{
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    box-shadow: 0px 5px 5px rgba(153, 153, 153, 0);
    background: #f9f9f9;
    display: flex;
}
.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: none;
    border-bottom: 1px solid #ddd;
    background: none;
    border-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    padding: 15px 18px 15px 0px;
    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: -58px;
    top: 0px;
    background: #eee;
    cursor: pointer;
    transition: all .5s;
}
.tanchuang_tuichu:hover{
    background: #000;
}
.tanchuang_tuichu:hover .search_anniu2:after{
    background: #fff;
}
.tanchuang_tuichu:hover .search_anniu2:before{
    background: #fff;
}

/* 隐藏导航栏的类 */

/*banner*/
.banner{
    height: calc(100vh - 116px);
    position: relative;
}

.banner .swiper-wrapper .swiper-slide{
    display: flex;
}

.banner .swiper-pagination{
    bottom: 38px;
    left: 0px;
    width: auto;
    z-index: 400;
}
.banner .swiper-pagination .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    border-radius: 8px;
    margin: 0px 6px 0px 0px;
    z-index: 100;
    position: relative;
    transition: 0.5s;
}
.banner .swiper-pagination .swiper-pagination-bullet-active{
    width: 48px;
    background: #fff;
    opacity: 1;
}

.banner_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner_nr{
    width: 100%;
}
.banner_nr h1{
    font-size: 3rem;
    line-height: 1.5;
    margin-bottom: 18px;
}
.banner_nr h5{
    font-size: 1.2rem;
    line-height: 2;
}
.banner_nr_ul{
    margin-top: 48px;
}
.banner_nr_ul .gengduo{
    margin-top: 12px;
}
.banner_nr_ul .list-inline-item:not(:last-child){
    margin-right: 8px;
}
.banner .banner_nr:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}
.banner .banner_nr .card-img-overlay{
    display: flex;
    align-items: center;
}
.banner .swiper-slide .banner_nr .card-img-overlay{
    transform:translateY(200px);
    opacity:0;
    transition:all .8s;
}
.banner .swiper-slide-active .banner_nr .card-img-overlay{
    transform:translateY(0);
    opacity:1;
}

.banner .swiper-button-next,.banner .swiper-button-prev{
    width: 34px;
    height: 24px;
    margin-top: 0px;
    top: auto;
    bottom: 38px;
}
.banner .swiper-button-next svg,.banner .swiper-button-prev svg{
    width: 34px;
    height: 24px;
    fill: #fff;
    opacity: 0.5;
    transition: 0.5s;
}
.banner .swiper-button-prev{
    left: auto;
    right: 70px;
}
.banner .swiper-button-next:after,.banner .swiper-button-prev:after{
    content: none;
}
.banner .swiper-button-next:hover svg,.banner .swiper-button-prev:hover svg{
    opacity: 1;
}

/*主体*/
.ix_ps_anniu{
    position: relative;
}
.ix_ps_swiper .swiper-wrapper{
    height: auto;
}
.ix_ps_anniu .swiper-button-next,.ix_ps_anniu .swiper-button-prev{
    width: 48px;
    height: 48px; 
    background: rgba(0,0,0,0.5);
    border-radius: 48px;
    z-index: 1000;
    opacity: 0;
    transition: 0.5s;
}
.ix_ps_anniu .swiper-button-prev{
    left: 0px;
    margin-top: -24px;
}
.ix_ps_anniu .swiper-button-next{
    right: 0px;
    margin-top: -24px;
}
.ix_ps_anniu:hover .swiper-button-prev{
    left: 10px;
    opacity: 1;
}
.ix_ps_anniu:hover .swiper-button-next{
    right: 10px;
    opacity: 1;
}
.ix_ps_anniu .swiper-button-prev:after,.ix_ps_anniu .swiper-button-next:after{
    color: #fff;
    font-size: 18px;
}
.ix_ps_anniu .swiper-button-prev:hover:after,.ix_ps_anniu .swiper-button-next:hover:after{
    color: #fff;
}
.ix_ps_anniu .swiper-button-next:hover,.ix_ps_anniu .swiper-button-prev:hover{
    background: rgba(0,0,0,1);
}

.ix_ps_card .card-body{
    padding: 28px 12px;
}
.ix_ps_card .card-body h5{
    font-size: 1.1rem;
    line-height: 24px;
}
.ix_ps_card .ix_ps_card_img{
    position: relative;
}
.ix_ps_card .ix_ps_card_nr{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.5s;
}
.ix_ps_card:hover .ix_ps_card_nr{
    opacity: 1;
}
.ix_ps_card .ix_ps_card_nr svg{
    width: 32px;
    height: 32px;
    fill: #fff;
}

.ix_about_card{
    border-radius: 38px;
    overflow: hidden;
    height: 800px;
}
.ix_about_card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ix_about_card .ix_about_card_video {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
}

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

.mb-48{
    margin-bottom: 48px;
}

.ix_news_g{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 48px;
}
.news_card .card-body h5{
    font-size: 1.2rem;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 60px;
    margin-bottom: 0px;
}
.news_card .card-body{
    padding: 18px 0px 0px 0px;
}

.ix_design_anniu{
    position: relative;
}
.ix_design_swiper .swiper-wrapper{
    height: auto;
}
.ix_design_anniu .swiper-button-next,.ix_design_anniu .swiper-button-prev{
    width: 48px;
    height: 48px; 
    background: rgba(0,0,0,0.5);
    border-radius: 48px;
    z-index: 1000;
    opacity: 0;
    transition: 0.5s;
}
.ix_design_anniu .swiper-button-prev{
    left: -24px;
    margin-top: -24px;
}
.ix_design_anniu .swiper-button-next{
    right: -24px;
    margin-top: -24px;
}
.ix_design_anniu:hover .swiper-button-prev{
    opacity: 1;
}
.ix_design_anniu:hover .swiper-button-next{
    opacity: 1;
}
.ix_design_anniu .swiper-button-prev:after,.ix_design_anniu .swiper-button-next:after{
    color: #fff;
    font-size: 18px;
}
.ix_design_anniu .swiper-button-prev:hover:after,.ix_design_anniu .swiper-button-next:hover:after{
    color: #fff;
}
.ix_design_anniu .swiper-button-next:hover,.ix_design_anniu .swiper-button-prev:hover{
    background: rgba(0,0,0,1);
}
.ix_design_swiper .swiper-pagination{
    top: auto;
    bottom: 0px;
    height: 6px;
}
.ix_design_swiper .swiper-pagination-progressbar{
    background: rgba(0, 0, 0, 0.14);
}
.ix_design_swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background: #000;
}

.ix_design_card .card-img-overlay{
    display: flex;
    align-items: flex-end;
    padding: 30px;
}
.ix_design_card .card-img-overlay h4{
    background: #fff;
    padding: 20px 48px;
    font-size: 1.2rem;
    line-height: 1.5;
}

.ix_discover_card .card-img-overlay{
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    display: flex;
    align-items: flex-end;
    padding: 30px 24px;
}
.ix_discover_card .card-img-overlay div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.ix_discover_card .card-img-overlay div h5{
    font-size: 1.1rem;
    line-height: 1.5;
    width: 100%;
    padding-right: 24px;
}
.ix_discover_card .card-img-overlay div span{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 38px;
    background: #999;
    flex-shrink: 0;
}

.ix_discover_anniu{
    position: relative;
}
.ix_discover_swiper .swiper-wrapper{
    height: auto;
}
.ix_discover_anniu .swiper-button-next,.ix_discover_anniu .swiper-button-prev{
    width: 48px;
    height: 48px; 
    background: rgba(0,0,0,0.5);
    border-radius: 48px;
    z-index: 1000;
    opacity: 0;
    transition: 0.5s;
}
.ix_discover_anniu .swiper-button-prev{
    left: -24px;
    margin-top: -24px;
}
.ix_discover_anniu .swiper-button-next{
    right: -24px;
    margin-top: -24px;
}
.ix_discover_anniu:hover .swiper-button-prev{
    opacity: 1;
}
.ix_discover_anniu:hover .swiper-button-next{
    opacity: 1;
}
.ix_discover_anniu .swiper-button-prev:after,.ix_discover_anniu .swiper-button-next:after{
    color: #fff;
    font-size: 18px;
}
.ix_discover_anniu .swiper-button-prev:hover:after,.ix_discover_anniu .swiper-button-next:hover:after{
    color: #fff;
}
.ix_discover_anniu .swiper-button-next:hover,.ix_discover_anniu .swiper-button-prev:hover{
    background: rgba(0,0,0,1);
}

.ix_hzhb_logo_grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 38px 18px;
}
.ix_hzhb_logo{
    background: #fff;
    height: 140px;
    padding: 15px;
    border-radius: 0px;
    transition: 0.5s;
}
.ix_hzhb_logo img{
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}
.ix_hzhb_logo:hover{
    background: #fff;
    box-shadow: 0px 30px 60px -30px rgba(0, 0, 0, 0.2);
}

.ix_contact_card{
    background: #010205;
}
.ix_contact_card .card-body{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding: 30px 68px;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
    pointer-events: auto;
}

/*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: #000;
    padding-top: 0px;
    color: #fff;
}

.bottom_logo{
    display: inline-block;
    padding: 120px 0px;
}
.bottom_logo img{
    width: 148px;
    height: 38px;
    object-fit: scale-down;
}

.bottom_bg .bottom_follow{
    display: flex;
    flex-wrap: wrap;
    padding-top: 24px;
    padding-bottom: 12px;
}
.bottom_bg .bottom_follow .list-inline-item:not(:last-child){
    margin-right: 8px;
}
.bottom_bg .bottom_follow .list-inline-item{
    margin-top: 5px;
    margin-bottom: 5px;
}
.bottom_bg .bottom_follow li a{
    font-size: 20px;
    width: 42px;
    height: 42px;
    border-radius: 42px;
    color: #fff;
    display: flex!important;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.bottom_bg .bottom_follow li a svg,.bottom_bg .bottom_follow li a img{
    color: #fff;
    fill: #fff;
    width: 24px;
    height: 24px;
}
.bottom_bg .bottom_follow li a{
    color: #fff;
}
.bottom_bg .bottom_follow li a:hover{
    color: rgba(255, 255, 255, 0.7);
}
.bottom_bg .bottom_follow li a:hover svg{
    fill: rgba(255, 255, 255, 0.7);
}

.bottom_ul{
    padding-bottom: 28px;
}
.bottom_ul .bottom_bt a{
    margin: 0px;
    padding: 0px 0px 0px 0px;
    font-size: 1.2rem;
    line-height: 1.5;
    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: 3;
    font-size: 0.9rem;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.5s;
}
.bottom_ul .card .bottom_nav_a a:hover{
    color: #fff;
    margin-left: 6px;
}

.bottom_form{
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #333;
}
.bottom_form .form-control{
    background: none;
    border-radius: 12px!important;
    font-size: 0.9rem;
    height: 48px;
    outline: none;
    box-shadow: none;
    padding: 8px 14px;
    border: none;
    color: #fff;
}
.bottom_form .form-control::placeholder{
    color: #fff;
}
.bottom_form a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 48px;
    border-radius: 0px!important;
    background: #333;
    color: #fff;
    transition: 0.5s;
    font-size: 1rem;
}
.bottom_form a:hover{
    background: #666;
}

.bottom_bg .bottom_contact li{
    padding-left: 38px;
    color: #A8A8A8;
    line-height: 2.5;
    position: relative;
    font-size: 0.9rem;
}
.bottom_bg .bottom_contact li img{
    width: 22px;
    height: 22px;
    object-fit: scale-down;
    position: absolute;
    top: 6px;
    left: 0px;
}
.bottom_bg .bottom_contact li span{
    margin-left: 70px;
}

.di_beian{
    padding: 33px 0px;
    font-size: 0.8rem;
    line-height: 1.5;
    border-top: 1px solid #333333;
}
.botom_beianhao .list-inline-item:not(:last-child){
    margin-right: 48px;
}

.bottom_form_left{
    display: inline-block;
    width: 24px;
    height: 24px;
    display: flex;
}
.bottom_form_left svg{
    width: 24px;
    height: 24px;
    fill: #777777;
}
.dingyue h5{
    font-size: 1.2rem;
    line-height: 1.5;
}
.dingyue h6{
    color: #A8A8A8;
    font-size: 0.9rem;
    line-height: 1.5;
    padding-top: 12px;
    margin-bottom: 32px;
}

/* ----------------------------------------------------------------
    About us
----------------------------------------------------------------- */
.at_professional_anniu{
    position: relative;
}
.at_professional_swiper .swiper-wrapper{
    height: auto;
}
.at_professional_anniu .swiper-button-next,.at_professional_anniu .swiper-button-prev{
    width: 48px;
    height: 48px; 
    background: rgba(0,0,0,0.5);
    border-radius: 48px;
    z-index: 1000;
    opacity: 0;
    transition: 0.5s;
}
.at_professional_anniu .swiper-button-prev{
    left: -24px;
    margin-top: -24px;
}
.at_professional_anniu .swiper-button-next{
    right: -24px;
    margin-top: -24px;
}
.at_professional_anniu:hover .swiper-button-prev{
    opacity: 1;
}
.at_professional_anniu:hover .swiper-button-next{
    opacity: 1;
}
.at_professional_anniu .swiper-button-prev:after,.at_professional_anniu .swiper-button-next:after{
    color: #fff;
    font-size: 18px;
}
.at_professional_anniu .swiper-button-prev:hover:after,.at_professional_anniu .swiper-button-next:hover:after{
    color: #fff;
}
.at_professional_anniu .swiper-button-next:hover,.at_professional_anniu .swiper-button-prev:hover{
    background: rgba(0,0,0,1);
}

.at_professional_card{
    background: #E6E6E6;
    padding: 8px;
    position: relative;
}
.at_professional_card_text{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.26);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.5s;
}
.at_professional_card_text span{
    font-size: 1.4rem;
}
.at_professional_card:hover .at_professional_card_text{
    opacity: 1;
}

.at_history_bg{
    background: url(../img/at_history_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 500;
    position: relative;
}
.at_history_swiper_top .swiper-wrapper,.at_history_swiper_bottom .swiper-wrapper{
    height: auto;
}
.at_history_swiper_bottom{
    margin-top: 58px;
}
.at_history_swiper_bottom .swiper-wrapper .swiper-slide{
    color: #fff;
    font-size: 1rem;
    text-align: center;
    padding-top: 48px;
    padding-bottom: 28px;
    cursor: pointer;
}
.at_history_swiper_bottom .swiper-wrapper .swiper-slide i{
    font-size: 1.2rem;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}
.at_history_swiper_bottom .swiper-wrapper .swiper-slide:before{
    content: "";
    position: absolute;
    left: 50%;
    top: 8px;
    width: 1px;
    height: 16px;
    background: #fff;
}
.at_history_swiper_bottom:before{
    content: "";
    position: absolute;
    top: 16px;
    left: 0px;
    width: 100%;
    height: 1px;
    background: #fff;
}
.at_history_swiper_bottom .swiper-wrapper .swiper-slide-thumb-active{
    font-size: 1.2rem;
    font-weight: 700;
}
.at_history_swiper_bottom .swiper-wrapper .swiper-slide-thumb-active:before{
    height: 32px;
    top: 0px;
}
.at_history_swiper_bottom .swiper-wrapper .swiper-slide-thumb-active i{
    opacity: 1;
}
.at_history_swiper_top{
    padding-top: 120px;
    padding-bottom: 120px;
}
.at_history_swiper_top .at_history_swiper_top_div{
    padding: 48px 15%;
    font-size: 1.1rem;
    line-height: 2;
    position: relative;
    transform:translateY(100px);
    opacity:0;
    transition:all .8s;
    transition-delay: 0.4s;
}
.at_history_swiper_top .at_history_swiper_top_span{
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 180px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.15);
    transform: translate(-50%,-50%);
    opacity:0;
    transition:all .8s;
    font-weight: 400;
}
.at_history_swiper_top .swiper-slide-active .at_history_swiper_top_span{
    opacity:1;
}
.at_history_swiper_top .swiper-slide-active  .at_history_swiper_top_div{
    transform:translateY(0);
    opacity:1;
}
.at_history_swiper_top .swiper-button-next,.at_history_swiper_top .swiper-button-prev{
    width: 48px;
    height: 48px;
    font-size: 30px;
    color: #fff;
}
.at_history_swiper_top .swiper-button-next:after,.at_history_swiper_top .swiper-button-prev:after{
    content: none;
}

.at_design_card{
    height: 480px;
}
.at_design_card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.at_swiper_1{
    overflow: visible;
    padding-bottom: 72px;
}
.at_swiper_1 .swiper-wrapper{
    height: auto;
}
.at_swiper_1 .swiper-button-next,.at_swiper_1 .swiper-button-prev{
    width: 48px;
    height: 48px; 
    background: rgba(0,0,0,0.5);
    border-radius: 48px;
    z-index: 1000;
    transition: 0.5s;
}
.at_swiper_1 .swiper-button-prev{
    top: auto;
    bottom: 0px;
    left: 50%;
    margin-left: -58px;
    margin-top: -24px;
}
.at_swiper_1 .swiper-button-next{
    top: auto;
    bottom: 0px;
    right: 50%;
    margin-right: -58px;
    margin-top: -24px;
}
.at_swiper_1 .swiper-button-prev:after,.at_swiper_1 .swiper-button-next:after{
    color: #fff;
    font-size: 18px;
}
.at_swiper_1 .swiper-button-prev:hover:after,.at_swiper_1 .swiper-button-next:hover:after{
    color: #fff;
}
.at_swiper_1 .swiper-button-next:hover,.at_swiper_1 .swiper-button-prev:hover{
    background: rgba(0,0,0,1);
}

.at_swiper_1 .swiper-wrapper .swiper-slide{
    position: relative;
}
.at_swiper_1 .swiper-wrapper .swiper-slide:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 500;
}
.at_swiper_1 .swiper-wrapper .swiper-slide-active:before{
    background: rgba(0, 0, 0, 0);
}

.at_about_video{
    height: calc(100vh - 116px);
}
.at_about_video .card-img-overlay{
    background: rgba(0, 0, 0, 0.4);
}
.at_about_video .card-img-overlay h3{
    font-size: 1.8rem;
    margin-bottom: 14px;
}

/* ----------------------------------------------------------------
    products
----------------------------------------------------------------- */
.ps_banner_swiper_card{
    height: 488px;
}
.ps_banner_swiper_card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ps_banner_swiper_card .card-img-overlay{
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 38px;
}
.ps_banner_swiper_card .card-img-overlay h4{
    font-size: 1.4rem;
    line-height: 1.5rem;
    margin-bottom: 0px;
}

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

.ps_nr_bt{
    border-bottom: 1px solid #ddd;
    padding-bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.ps_shaixuan_anniu{
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}
.ps_shaixuan_anniu svg{
    width: 24px;
    height: 24px;
    fill: #000;
    margin-right: 8px;
}

.filters_offcanvas.offcanvas-start{
    width: 480px;
}
.filters_offcanvas .offcanvas-header{
    padding: 38px 48px 24px 48px;
}
.filters_offcanvas .offcanvas-header .btn-close{
    margin-right: 0px;
}
.filters_offcanvas .offcanvas-header .offcanvas-title{
    font-size: 1.4rem;
}
.filters_offcanvas .offcanvas-body{
    padding: 0px 48px 48px 48px;
}

.ps_accordion .ps_accordion_item .ps_accordion_item_a{
    display: block;
    padding: 18px 24px 18px 0px;
    position: relative;
}
.ps_accordion_item_a h5{
    font-size: 1rem;
}
.ps_accordion .ps_accordion_item{
    border-top: 1px solid #eee;
}
.ps_accordion .ps_accordion_item .ps_accordion_item_a .span1{
    position: absolute;
    right: 0px;
    top: 22px;
    transform: rotate(180deg);
    transition: 0.5s;
}
.ps_accordion .ps_accordion_item .ps_accordion_item_a.collapsed .span1{
    transform: rotate(0deg);
    transition: 0.5s;
}
.ps_accordion .card-body{
    padding: 0px 0px 24px 0px;
    border: none;
}
.ps_accordion_item_nr{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 14px;
}
.ps_accordion_item_nr .form-check-label{
    font-size: 0.8rem;
    line-height: 24px;
    position: relative;
    padding-right: 35px;
    width: 100%;
}
.ps_accordion_item_nr .form-check-label .span2{
    position: absolute;
    right: 0px;
    top: 0px;
}

.ps_accordion_item_nr_colour{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.ps_accordion_item_nr_colour span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.colour_xuanze{
    position: relative;
    border: none;
    box-shadow: none;
    background: #5d5c65;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    margin: 0px;
}
.colour_xuanze .heart .bi_2{
    color: #eee;
}
.colour_xuanze2{
    background: #44485e;
}
.colour_xuanze3{
    background: #cfbcb1;
}
.colour_xuanze4{
    background: #747483;
}
.colour_xuanze5{
    background: #94dfeb;
}
.colour_xuanze6{
    background: #FED533;
}
.colour_xuanze7{
    background: #808080;
}
.colour_xuanze8{
    background: #F0728F;
}
.heart-checkbox{
    display: none;
}
.heart{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.17, 0.89, 0.32, 1.49);
}
.heart .bi_1{
    color: #fc7f82;
}
.heart .bi_2{
    display: none;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background: #000;
    font-size: 12px;
    color: #fff;
}
.heart-checkbox:checked + .heart .bi_1,.heart:hover .bi_1{
    display: none;
}
.heart-checkbox:checked + .heart .bi_2,.heart:hover .bi_2{
    display: flex;
}

.ps_nav{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}
.ps_nav a{
    font-size: 1rem;
    transition: all 0.5s;
}
.ps_nav a:hover{
    padding-left: 8px;
}


.ps_g{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 58px 24px;
}
.ps_g_card_img{
    width: 100%;
    height: 330px;
    position: relative;
}
.ps_g_card_img img{
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    padding: 10px;
}
.ps_g_card_img span{
    position: absolute;
    left: 12px;
    top: 12px;
    display: inline-block;
    background: #ee2626;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 16px;
    line-height: 1;
}
.ps_g_card_img span.span2{
    background: #fc7e21;
}
.ps_g_card .card-body{
    padding: 18px 18px 32px 18px;
}
.ps_g_card .card-body h5{
    font-size: 1.2rem;
    line-height: 1.5;
}
.ps_g_card .card-body p{
    font-size: 0.9rem;
}
.ps_g_card .card-body h4{
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.pt_48{
    padding-top: 48px;
}

/*详情页*/
.ps_ds_swiper{
    position: relative;
    padding-left: 16%;
}
.ps_ds_swiper_right{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 14%;
    height: 100%;
}
.ps_ds_swiper_left{
    background: #fff;
}
.ps_ds_swiper_left .swiper-wrapper,.ps_ds_swiper_right .swiper-wrapper{
    height: auto;
}
.ps_ds_swiper_left .swiper-wrapper .swiper-slide img{
    width: 100%;
    height: 600px;
    padding: 24px;
    object-fit: scale-down;
}
.ps_ds_swiper_right .swiper-wrapper .swiper-slide{
    background: #fff;
    cursor: pointer;
    overflow: hidden;
}
.ps_ds_swiper_right .swiper-wrapper .swiper-slide img{
    width: 100%;
    height: 90px;
    padding: 10px;
    object-fit: scale-down;
}
.ps_ds_star{
    display: flex;
    gap: 5px;
    font-size: 14px;
    align-items: center;
}
.ps_ds_swiper_left .swiper-button-next,.ps_ds_swiper_left .swiper-button-prev{
    width: 48px;
    height: 48px; 
    background: rgba(0,0,0,0.5);
    border-radius: 48px;
    z-index: 1000;
    transition: 0.5s;
}
.ps_ds_swiper_left .swiper-button-prev{
    top: auto;
    bottom: 24px;
    left: auto;
    right: 92px;
    margin-top: -24px;
}
.ps_ds_swiper_left .swiper-button-next{
    top: auto;
    bottom: 24px;
    right: 24px;
    margin-top: -24px;
}
.ps_ds_swiper_left .swiper-button-prev:after,.ps_ds_swiper_left .swiper-button-next:after{
    color: #fff;
    font-size: 18px;
}
.ps_ds_swiper_left .swiper-button-prev:hover:after,.ps_ds_swiper_left .swiper-button-next:hover:after{
    color: #fff;
}
.ps_ds_swiper_left .swiper-button-next:hover,.ps_ds_swiper_left .swiper-button-prev:hover{
    background: rgba(0,0,0,1);
}
.ps_ds_swiper_right .swiper-wrapper .swiper-slide{
    position: relative;
}
.ps_ds_swiper_right .swiper-wrapper .swiper-slide-thumb-active:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 500;
}

.ps_ds_text_right{
    padding-top: 38px;
}
.pt_ds_bt{
    padding-bottom: 24px;
    position: relative;
    margin-bottom: 30px;
    font-size: 1.6rem;
}
.pt_ds_bt:after{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100px;
    height: 5px;
    background: #000;
}
.pt_ds_bt:before{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.ps_ds_anniu li a{
    display: inline-block;
    background: #000;
    padding: 12px 48px;
    color: #fff;
    transition: 0.5s;
    font-size: 1rem;
    border: 1px solid #000;
}
.ps_ds_anniu li .ps_ds_anniu2{
    background: #fff;
    color: #000;
    border: 1px solid #E5E5E5;
}
.ps_ds_anniu li a:hover{
    color: #fff;
    background: #000;
    border: 1px solid #000;
}

.ps_ds_text_right_nr{
    margin-top: 24px;
}
.ps_ds_text_right_nr_f{
    display: flex;
    gap: 12px;
}
.ps_ds_text_right_nr_f a{
    display: inline-block;
    width: 48px;
    height: 48px;
    background: #fff;
    border: 1px solid #eee;
}
.ps_ds_text_right_nr_f a.a2{
    background: #000;
}
.ps_ds_text_right_nr_f a.a3{
    background: #f76d6d;
}
.ps_ds_text_right_nr_f a.a4{
    background: #46c4ff;
}
.ps_ds_text_right_nr_f a.a5{
    background: #f9a255;
}
.ps_ds_text_right_h5{
    font-size: 1rem;
    margin-bottom: 10px;
}
.ps_ds_text_right_h4{
    font-size: 1.4rem;
    line-height: 1.5;
}

.ps_ds_rd_swiper{
    padding: 38px 0px;
}
.news_banner_card{
    background: #eee;
}
.news_banner_card .card-body{
    padding: 48px 40px;
}
.news_banner_card .card-body h4{
    font-size: 1.3rem;
    line-height: 36px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 72px;
    margin-bottom: 18px;
}
.news_banner_card .card-body p{
    font-size: 0.9rem;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    height: 120px;
    margin-top: 18px;
}
.news_banner_card .fangda2{
    height: 100%;
}
.news_banner_card .fangda2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news_swiper{
    padding-bottom: 80px;
}

.news_swiper .swiper-button-next,.news_swiper .swiper-button-prev{
    width: 48px;
    height: 48px; 
    background: rgba(0,0,0,0.5);
    border-radius: 48px;
    z-index: 1000;
    transition: 0.5s;
}
.news_swiper .swiper-button-prev{
    top: auto;
    bottom: 0px;
    left: auto;
    right: 68px;
    margin-top: -24px;
}
.news_swiper .swiper-button-next{
    top: auto;
    bottom: 0px;
    right: 0px;
    margin-top: -24px;
}
.news_swiper .swiper-button-prev:after,.news_swiper .swiper-button-next:after{
    color: #fff;
    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: rgba(0,0,0,1);
}

.news_swiper .swiper-pagination{
    top: auto;
    bottom: 21px;
    height: 6px;
    width: 50%;
}
.news_swiper .swiper-pagination-progressbar{
    background: rgba(0, 0, 0, 0.14);
}
.news_swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background: #000;
}

.news_g{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 58px 48px;
}

/*详情页*/
.news_ds_bt{
    font-size: 1.4rem;
    line-height: 1.5;
}
.news_ds_follow a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 32px;
    background: #eee;
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}
.news_ds_follow .list-inline-item:not(:last-child){
    margin-right: 5px;
}
.news_ds_follow a:hover{
    background: #ddd;
    color: #000;
}

.ns_ds_bottom{
    padding: 24px 0px 0px 0px;
}
.contact_bt{
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
    margin-bottom: 38px;
    font-size: 1.4rem;
}
.contact_g{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 58px 48px;
}
.contact_g_card img{
    width: 38px;
    height: 38px;
    object-fit: scale-down;
    margin-bottom: 24px;
}

.case_ds_form{
    margin-top: 38px;
} 
.case_ds_form .form_input_h,.case_ds_form .form-select{
    height: 52px;
}
.case_ds_form .form-label{
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 400;
}
.case_ds_form .form-control,.case_ds_form .form-select{
    border: 1px solid #E3E3E3;
    border-radius: 0px;
    padding: 8px 18px;
    font-size: 0.9rem;
}
.case_ds_form .form-control::placeholder {
    color: #AFAFAF;
}

.contact_form_ul li a{
    display: inline-block;
    background: #000    ;
    padding: 12px 48px;
    color: #fff;
    font-size: 1rem;
    transition: 0.5s;
}
.contact_form_ul li .contact_form_ul2{
    background: #C4C4C4;
    color: #fff;
}
.contact_form_ul li a:hover{
    color: #fff;
    background: #000;
}

.contact_form_ul li button{
    display: inline-block;
    background: #000    ;
    padding: 12px 48px;
    color: #fff;
    font-size: 1rem;
    transition: 0.5s;
        border: none;
}
.contact_form_ul li .contact_form_ul2{
    background: #C4C4C4;
    color: #fff;
}
.contact_form_ul li button:hover{
    color: #fff;
    background: #000;
}
/* ----------------------------------------------------------------
    logon
----------------------------------------------------------------- */
.logon_g{
    min-height: 100dvh;
    display: grid;
    grid-template-rows: minmax(0,1fr) auto;
    grid-template-columns: minmax(0,1fr);
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.logon_form{
    background: #fff;
    padding: 28px 38px 48px 38px;
}
.logon_fh{
    display: inline-block;
}
.logon_fh a{
    display: flex;
    align-items: center;
    font-size: 1rem;
}
.logon_fh a svg{
    width: 20px;
    height: 20px;
    margin-right: 6px;
}
.logon_form_bt{
    margin: 20px 0px 30px 0px;
    font-size: 1.6rem;
    line-height: 1.2;
}
.logon_fh a:hover svg{
    fill: #000;
}

.logon_form_group{
    border-bottom: 1px solid #ddd;
    align-items: flex-start;
}
.logon_form_group .input-group-text svg{
    width: 20px;
    height: 20px;
}
.logon_form_group .input-group-text{
    border: none;
    background: none;
    border-radius: 0px!important;
    padding: 14px 6px;
}
.logon_form_group .form-control{
    border: none;
    font-size: 0.9rem;
    box-shadow: none;
    border-radius: 0px;
    height: 52px;
    background: none;
}
.logon_form_group .form-control::placeholder {
    color: #979797;
}
.logon_form_group button{
    border: none;
    background: #999;
    color: #fff;
    border-radius: 0px!important;
    font-size: 0.9rem;
    line-height: 18px;
    padding: 10px 24px;
    margin-top: 7px;
}
.logon_form_group button:hover,.logon_form_group button:focus{
    background: #000;
    color: #fff;
}
.login_denglu{
    display: block;
    background: #000;
    color: #fff!important;
    text-align: center;
    border-radius: 0px;
    font-size: 1.1rem;
    padding: 12px;
    margin-top: 24px;
    margin-bottom: 16px;
}
.login_denglu:hover{
    background: #333;
    color: #fff!important;
}
.login_checkbox{
    display: flex;
    justify-content: center;
}
.login_qtdlfs{
    margin-top: 38px;
    position: relative;
    display: flex;
    justify-content: center;
}
.login_qtdlfs:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #eee;
}
.login_qtdlfs span{
    display: inline-block;
    background: #fff;
    position: relative;
    padding: 0px 24px;
    font-size: 0.9rem;
}

.login_qtdlfs_nr{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
    gap: 12px 34px;
}
.login_qtdlfs_nr a{
    display: grid;
    gap: 6px;
    text-align: center;
    font-size: 15px;
}
.login_qtdlfs_nr a span{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid #BBBBBB;
    border-radius: 48px;
}
.login_qtdlfs_nr a span svg{
    width: 20px;
    height: 20px;
    fill: #000;
}
.login_qtdlfs_nr a:hover span{
    border: 1px solid #000;
}

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

@media (max-width: 1600px){
    .pb-7{
        padding-bottom: 78px;
    }
    .pt-7{
        padding-top: 78px;
    }
    .pb-6{
        padding-bottom: 68px;
    }
    .pt-6{
        padding-top: 68px;
    }
    .mb-6{
        margin-bottom: 68px;
    }
    .mt-6{
        margin-top: 68px;
    }
    
    .banner_nr h1{
        font-size: 2.5rem;
    }
    .ix_design_card .card-img-overlay h4{
        font-size: 1.2rem;
    }
    .ix_ps_card .card-body h5,.banner_nr h5,.news_card .card-body h5,.p_17 p, .p_17{
        font-size: 1rem;
    }
    .nav_min .navbar-nav .nav-link,.p_16 p, .p_16{
        font-size: 0.9rem;
    }
    .nav_min .navbar-nav .nav-item{
        margin: 0px 30px 0px 30px;
    }

    .gengduo,.ps_ds_anniu li a,.contact_form_ul li a{
        font-size: 0.9rem;
        padding: 12px 38px;
    }
    .ix_about_card{
        height: 700px;
    }
    .mb-48{
        margin-bottom: 38px;
    }
    .bottom_logo{
        padding: 100px 0px;
    }
}

@media (max-width: 1400px){
    .row_40{
        margin-left: -30px;
        margin-right: -30px;
    }
    .col_40{
        padding-left: 30px;
        padding-right: 30px;
    }

    .nav_min .sousuo svg,.nav_min .nav_logon .nav-link svg{
        width: 20px;
        height: 20px;
    }
    .banner .swiper-button-next svg, .banner .swiper-button-prev svg{
        width: 30px;
        height: 20px;
    }
    .ix_ps_card .card-body{
        padding: 24px 12px;
    }
    .ix_about_card{
        height: 600px;
    }
    .ix_news_g{
        gap: 24px 38px;
    }
    .ix_contact_card .card-body{
        padding: 30px 48px;
    }
    .bottom_logo{
        padding: 88px 0px;
    }
    .bottom_ul .bottom_bt a{
        font-size: 1rem;
    }

    .ps_ds_swiper_left .swiper-wrapper .swiper-slide img{
        height: 560px;
    }
    .ps_banner_swiper_card{
        height: 400px;
    }
    .news_g{
        gap: 58px 38px;
    }
}

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

@media (max-width: 1199px){
    .md_none{
        display: none;
    }
    .nav_min .navbar-brand,.is-active .navbar-brand{
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 19px;
        margin-bottom: 19px;
        padding: 0px;
        height: 20px;
    }
    .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;
    }
    .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;
    }
    .md_collapse{
        max-height: 80vh;
        overflow: auto;
    }
    .md_collapse::-webkit-scrollbar {
        width: 0px;
    }
    .nav_xiala{
        position: relative;
    }
    .nav_min .nav_xiala2:hover .nav-link svg{
        fill: #000;
    }
    .container_style {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .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;
    }
    .botom_beianhao li{
        display: block;
    }
    .botom_beianhao .list-inline-item:not(:last-child){
        margin-right: 0px;
    }
    .di_beian{
        padding: 24px 0px;
    }

    .nav_breadcrumb{
        position: absolute;
        right: 52px;
        top: 9px;
        padding-left: 0px;
    }
    .nav_min .sousuo,.nav_min .nav_logon .nav-link{
        padding: 10px 10px;
    }
    .ix_sousuo{
        display: inline-block;
    }
    .sousuo{
        display: flex;
    }

    .banner_nr h1{
        font-size: 2rem;
    }
    .ix_news_g{
        gap: 24px 24px;
    }
    .ix_hzhb_logo_grid{
        grid-template-columns: repeat(4, 1fr);
        gap: 18px 18px;
    }
    .bottom_logo{
        padding: 68px 0px;
    }
    .bottom_logo img{
        width: 130px;
        height: 20px;
    }
    .right_social a{
        width: 38px;
        height: 38px;
    }
    .right_social_icon{
        width: 16px;
        height: 16px;
    }
    .bottom_form .form-control{
        font-size: 0.8rem;
        padding: 8px 10px;
    }
    .bottom_form a{
        font-size: 0.8rem;
        width: 88px;
        height: 42px;
    }
    .bottom_form .form-control{
        height: 42px;
    }
    .right_social{
        right: 8px;
    }

    .ix_ps_anniu .swiper-button-next, .ix_ps_anniu .swiper-button-prev
    ,.ix_design_anniu .swiper-button-next, .ix_design_anniu .swiper-button-prev
    ,.ix_discover_anniu .swiper-button-next, .ix_discover_anniu .swiper-button-prev
    ,.at_professional_anniu .swiper-button-next, .at_professional_anniu .swiper-button-prev{
        opacity: 1;
    }
    .ix_ps_anniu .swiper-button-prev
    ,.at_professional_anniu .swiper-button-prev{
        left: 10px;
    }
    .ix_ps_anniu .swiper-button-next
    ,.at_professional_anniu .swiper-button-next{
        right: 10px;
    }

    .ps_ds_swiper_left .swiper-wrapper .swiper-slide img{
        height: 480px;
    }
    .ps_ds_swiper_right .swiper-wrapper .swiper-slide img{
        height: 68px;
    }
    .ps_g_card_img{
        height: 280px;
    }
    .news_g {
        gap: 48px 24px;
    }
    .contact_g{
        gap: 48px 18px;
    }
}
@media (max-width: 980px){
    .pt-7{
        padding-top: 68px;
    }
    .pb-7{
        padding-bottom: 68px;
    }

    /*bottom*/
    .bottom_bg{
        padding-top: 0px;
    }
    .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: 52px;
        line-height: 52px;
        padding: 0px;
        font-size: 0.9rem;
        font-weight: 400;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    .md_erweima{
        margin-top: 24px;
    }
    .dingyue{
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 24px;
    }
    .dingyue h5{
        font-size: 1rem;
    }
    .dingyue h6{
        padding-top: 0px;
        margin-bottom: 24px;
    }
    .di_beian{
        margin-top: 12px;
    }
    .bottom_logo{
        padding: 48px 0px;
    }
    .bottom_bg .bottom_follow{
        padding-top: 12px;
        padding-bottom: 0px;
    }

    .ix_nav_top{
        display: none;
    }
    .banner{
        height: 500px;
    }
    .banner .swiper-pagination,.banner .swiper-button-next, .banner .swiper-button-prev{
        bottom: 24px;
    }
    .ix_contact_card .card-body{
        padding: 30px;
    }
    .ix_hzhb_logo_grid{
        grid-template-columns: repeat(3, 1fr);
    }
    .ix_design_card{
        height: 380px;
    }
    .ix_design_card img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .ix_design_anniu .swiper-button-prev
    ,.ix_discover_anniu .swiper-button-prev{
        left: 10px;
    }
    .ix_design_anniu .swiper-button-next
    ,.ix_discover_anniu .swiper-button-next{
        right: 10px;
    }
    .mb-48{
        margin-bottom: 38px;
    }
    .ps_g{
        grid-template-columns: repeat(2, 1fr);
        gap: 58px 24px;
    }
    .news_banner_card .card-body{
        padding: 38px 30px;
    }
    .news_g{
        grid-template-columns: repeat(2, 1fr);
    }
    .at_history_swiper_top{
        padding-top: 88px;
        padding-bottom: 88px;
    }
    .at_history_swiper_top .at_history_swiper_top_span{
        font-size: 10rem;
    }
}

@media (max-width: 768px){
    .pb-6{
        padding-bottom: 48px;
    }
    .pt-6{
        padding-top: 48px;
    }
    .mb-6{
        margin-bottom: 48px;
    }
    .mt-6{
        margin-top: 48px;
    }
    .pt-7{
        padding-top: 48px;
    }
    .pb-7{
        padding-bottom: 48px;
    }
    .p_mb p {
        margin-bottom: 14px;
    }
    .container_style {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .search_anniu_top2,.search_anniu2{
        width: 48px;
        height: 48px;
    }
    .sousuo_control{
        height: 48px;
        font-size: 0.9rem;
    }
    .search_anniu2:after{
        top: 24px;
        left: 12px;
        width: 24px;
    }
    .search_anniu2:before{
        top: 24px;
        left: 12px;
        width: 24px;
    }
    .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;
    }
    
    .banner_nr h1{
        font-size: 1.4rem;
    }
    .pt_ds_bt,.logon_form_bt,.at_about_video .card-img-overlay h3{
        font-size: 1.3em;
    }
    .ix_bt h3,.ps_ds_text_right_h4{
        font-size: 1.2rem;
    }
    .news_ds_bt{
        font-size: 1.1rem;
    }
    .font18,.ps_banner_swiper_card .card-img-overlay h4,.filters_offcanvas .offcanvas-header .offcanvas-title,.ix_bt h4,.login_denglu,.contact_bt
    ,.at_history_swiper_bottom .swiper-wrapper .swiper-slide-thumb-active{
        font-size: 1rem;
    }
    .banner_nr h5,.ix_ps_card .card-body h5,.ps_g_card .card-body h5,.ps_g_card .card-body h4,.ps_nr_bt h5,.ps_nav a,.ps_accordion_item_a h5,.p_17 p, .p_17,.at_history_swiper_top .at_history_swiper_top_div{
        font-size: 0.9rem;
    }
    .p_15 p, .p_15,.ps_g_card .card-body p,.logon_form_group .form-control,.case_ds_form .form-label,.case_ds_form .form-control, .case_ds_form .form-select
    ,.at_history_swiper_bottom .swiper-wrapper .swiper-slide{
        font-size: 0.8rem;
    }

    .banner{
        height: 300px;
    }
    .banner_nr h1{
        margin-bottom: 12px;
    }
    .gengduo,.ps_ds_anniu li a,.contact_form_ul li a{
        font-size: 0.8rem;
        padding: 8px 24px;
    }
    .banner .swiper-pagination{
        left: 15px;
        bottom: 12px;
    }
    .banner .swiper-pagination .swiper-pagination-bullet{
        width: 8px;
    }
    .banner .swiper-button-next svg, .banner .swiper-button-prev svg{
        width: 26px;
        height: 16px;
    }
    .banner .swiper-button-next{
        bottom: 12px;
    }
    .banner .swiper-button-prev{
        bottom: 12px;
        right: 60px;
    }
    .ix_ps_card .ix_ps_card_nr svg{
        width: 24px;
        height: 24px;
    }
    .ix_ps_anniu .swiper-button-next, .ix_ps_anniu .swiper-button-prev
    ,.ix_design_anniu .swiper-button-next, .ix_design_anniu .swiper-button-prev
    ,.ix_discover_anniu .swiper-button-next, .ix_discover_anniu .swiper-button-prev
    ,.at_history_swiper_top .swiper-button-next, .at_history_swiper_top .swiper-button-prev
    ,.at_professional_anniu .swiper-button-next, .at_professional_anniu .swiper-button-prev{
        width: 38px;
        height: 38px;
        margin-top: -19px;
    }
    .ix_ps_anniu .swiper-button-prev:after, .ix_ps_anniu .swiper-button-next:after
    ,.ix_design_anniu .swiper-button-prev:after, .ix_design_anniu .swiper-button-next:after
    ,.ix_discover_anniu .swiper-button-prev:after, .ix_discover_anniu .swiper-button-next:after
    ,.ps_ds_swiper_left .swiper-button-prev:after, .ps_ds_swiper_left .swiper-button-next:after
    ,.news_swiper .swiper-button-prev:after, .news_swiper .swiper-button-next:after
    ,.at_professional_anniu .swiper-button-prev:after, .at_professional_anniu .swiper-button-next:after{
        font-size: 14px;
    }
    .ix_ps_card .card-body{
        padding: 18px 8px;
    }
    .ix_about_card{
        height: 400px;
    }
    .mb-48{
        margin-bottom: 24px;
    }
    .ix_news_g{
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 8px;
    }
    .ix_hzhb_logo_grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 8px;
    }
    .news_card .card-body{
        padding: 12px 0px 0px 0px;
    }
    .news_card .card-body h5{
        font-size: 0.9rem;
        line-height: 24px;
        height: 48px;
    }
    .ix_design_card .card-img-overlay,.ix_contact_card .card-body{
        padding: 24px;
    }
    .ix_design_card .card-img-overlay h4{
        font-size: 1rem;
        padding: 14px 24px;
    }
    .ix_hzhb_logo{
        height: 100px;
        padding: 24px;
    }

    .ps_ds_swiper_right .swiper-wrapper .swiper-slide img{
        height: 58px;
    }
    .ps_ds_swiper_left .swiper-wrapper .swiper-slide img{
        padding: 14px;
        height: 380px;
    }
    .ps_ds_swiper_left .swiper-button-next, .ps_ds_swiper_left .swiper-button-prev
    ,.news_swiper .swiper-button-next, .news_swiper .swiper-button-prev
    ,.at_swiper_1 .swiper-button-next, .at_swiper_1 .swiper-button-prev{
        width: 38px;
        height: 38px;
    }
    .ps_ds_swiper_left .swiper-button-prev{
        right: 78px;
    }
    .pt_ds_bt:after{
        width: 68px;
        height: 3px;
    }
    .ps_ds_text_right_nr_f a{
        width: 38px;
        height: 38px;
    }
    .ps_g{
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 8px;
    }
    .ps_g_card_img{
        height: 200px;
    }
    .ps_g_card .card-body{
        padding: 8px 8px 18px 8px;
    }
    .ps_g_card .card-body h4{
        margin-top: 0.8rem;
    }
    .ps_ds_rd_swiper{
        padding: 18px 0px;
    }
    .ps_g_card_img span{
        font-size: 0.7rem;
        padding: 7px 12px;
    }
    .ps_banner_swiper_card{
        height: 300px;
    }
    .filters_offcanvas.offcanvas-start{
        width: 380px;
    }
    .filters_offcanvas .offcanvas-header{
        padding: 24px 15px 18px 15px;
    }
    .filters_offcanvas .offcanvas-body{
        padding: 0px 15px 24px 15px;
    }
    .ps_accordion .ps_accordion_item .ps_accordion_item_a{
        padding: 12px 24px 12px 0px;
    }
    .ps_accordion .ps_accordion_item .ps_accordion_item_a .span1{
        top: 16px;
    }
    .news_banner_card .card-body{
        padding: 24px 24px;
    }
    .news_banner_card .card-body h4{
        font-size: 1rem;
        line-height: 30px;
        height: 60px;
        margin-bottom: 10px;
    }
    .news_banner_card .card-body p{
        font-size: 0.8rem;
        line-height: 24px;
        height: 96px;
        margin-top: 10px;
    }
    .news_swiper .swiper-button-prev{
        right: 58px;
    }
    .news_swiper .swiper-pagination{
        bottom: 16px;
    }
    .news_swiper{
        padding-bottom: 58px;
    }
    .news_g{
        gap: 24px 8px;
    }
    .logon_form{
        padding: 28px 24px 38px 24px;
    }
    .contact_g{
        grid-template-columns: repeat(1, 1fr);
        gap: 24px 18px;
    }
    .contact_g_card img{
        width: 30px;
        height: 30px;
        margin-bottom: 8px;
    }
    .case_ds_form .form_input_h, .case_ds_form .form-select{
        height: 48px;
    }
    .case_ds_form .form-control, .case_ds_form .form-select{
        padding: 8px 12px;
    }
    .at_history_swiper_top .swiper-button-prev{
        left: 0px;
    }
    .at_history_swiper_top .swiper-button-next{
        right: 0px;
    }
    .at_history_swiper_top .at_history_swiper_top_div{
        padding: 24px 48px;
    }
    .at_history_swiper_top .at_history_swiper_top_span{
        font-size: 7rem;
    }
    .at_history_swiper_top{
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .at_history_swiper_bottom{
        margin-top: 24px;
    }
}

















.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-left: 0;
    margin:30px 0;
    list-style: none;
    gap:8px;
}
.pagination li{
    list-style: none;
}
.pagination li a {
    display: inline-block;
    min-width: 30px;
    height: 30px;
    line-height:30px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #222222;
    color: #222222;
    text-decoration: none;
    border-radius: 0;
    font-size:17px;
    padding: 0 6px;
    transition: all 0.2s;
}
/*选中页码*/
.pagination li.active a{
    background-color:#222222;
    color:#ffffff;
}
.pagination li a:hover {
    background:#222;
    color:#fff;
}
/*Total文字去掉边框*/
.pagination li:first-child a {
    border: none;
    min-width: auto;
}
/*手机端适配*/
@media (max-width:768px){
    .pagination li a {
        min-width:42px;
        height:42px;
        line-height:42px;
        font-size:15px;
    }
    .pagination{
        gap:6px;
    }
}