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

/* 整块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(247, 180, 1, 1);
    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(255, 128, 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: #F7B401;
}
ul,p{
    margin-bottom: 0px;
}

.pem{
    text-indent: 2em;
}

.font12{
    font-size: 12px;
}
.font13{
    font-size: 13px;
}
.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: 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: #E1271B!important;
}
.text-success{
    color: #57A188!important;
}
.text-primary{
    color: #1576B7!important;
}
.text-warning{
    color: #F7B401!important;
}
.text_000{
    color: #000;
}
.text-primary-emphasis{
    color: #224D92!important;
}

.bg_f5f5f5{
    background: #f5f5f5;
}
.bg-success{
    background: #24bd51!important;
}
.bg-primary{
   background: #055396!important; 
}
.bg_F2F2FF{
    background: #F2F2FF;
}
.bg-dark{
    background: #000;
}

.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(21, 118, 183, 0.1);
}

.gengduo{
    padding: 16px 48px;
    background: #F7B401;
    color: #fff!important;
    font-size: 1rem;
    line-height: 24px;
    pointer-events: auto;
    transition: 0.5s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.gengduo:before{
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    transform:translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 38px;
    background: #F5D88A;
    transition: 0.5s;
}
.gengduo span{
    position: relative;
}
.gengduo i{
    margin-left: 15px;
}
.gengduo:hover{
    color: #fff!important;
}
.gengduo:hover:before{
    left: -5%;
    width: 110%;
    height: 110%;
}

.wrap,.nav_min .container{
    margin-inline-start: auto;
    margin-inline-end: auto;
    width: 92%;
    max-width: 1650px;
    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;
}

/* ----------------------------------------------------------------
    首页
----------------------------------------------------------------- */
/*nav*/
.nav_min{
    padding: 0px 4rem 0px 4rem;
    border: none;
    background: rgba(255, 255, 255, 0);
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0);
    transition: all 0.5s ease;
    z-index: 1000;
}
.nav_min .container{
    padding-left: 0px;
    padding-right: 0px;
}
.nav_min .navbar-brand{
    padding-top: 0px;
    padding-bottom: 0px;
    height: 58px;
    transition: 0.5s;
    margin-right: 0px;
    margin-top: 14px;
    margin-bottom: 14px;
    display: flex;
}
.nav_min .navbar-brand .logo{
    width: 304px;
    height: 100%;
    background: url(../img/logo.png);
    background-size: contain;
    background-position: center left;
    background-repeat: no-repeat;
}
.nav_min .navbar-nav .nav-item{
    margin: 0px 78px 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: 400;
    font-size: 1rem;
    line-height: 18px;
    color: #fff;
    /*text-transform: uppercase;*/
}
/*.nav_min .navbar-nav .nav_xiala2 .nav-link{
    padding-right: 20px;
}
.nav_min .nav-link span{
    font-size: 0.8rem;
    position: absolute;
    right: 0px;
    transition: all 0.3s;
}
.nav_min .nav_xiala2:hover .nav-link span{
    transform: rotate(180deg);
    color: #224D92;
}*/

.nav_min .nav-item .nav-link:before{
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0px;
    background: #F7B401;
    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: #F7B401;
}

.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: none;
    border: none;
    border-radius: 0px;
    padding: 0px;
    box-shadow: none;
    animation: nav_xialaxg 0.5s;
    -moz-animation: nav_xialaxg 0.5s; /* Firefox */
    background: #F3F3F3;
}
.nav_xiala2{
    position: relative;
}
.nav_xiala2 .dropdown-menu{
    left: 50%;
    min-width: 100%;
    width: 200px;
    transform:translateX(-50%);
    background: rgba(255, 255, 255, 1);
    border: none;
    border-radius: 0px;
    padding: 0px;
    margin: 0px;
    animation: nav_xialaxg 0.5s;
    -moz-animation: nav_xialaxg 0.5s; /* Firefox */
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05);
}
@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 12px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 0.9rem;
    line-height: 24px;
    position: relative;
    color: #000;
    text-align: center;
}
.menu_a a:hover{
    color: #fff;
    background: #F7B401;
}

.menu_g{
    padding: 48px 48px 48px 48px;
}

.menu_g_nr{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 14px;
}
.menu_g_nr .card .card-img-overlay{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.menu_g_bt{
    font-size: 16px;
    line-height: 28px;
    padding-bottom: 16px;
}
.menu_g_ul li{
    display: flex;
}
.menu_g_ul li a{
    padding: 10px 0px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.5s;
    font-size: 15px;
    line-height: 24px;
    position: relative;
    color: #000;
    text-transform: uppercase;
}
.menu_g_ul li a:hover{
    color: #F56F28;
    padding: 10px 0px 10px 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.2);
    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;
    }
}
.nav_min .nav-item .btn-check:checked+.btn, .btn.active,.nav_min .nav-item .btn.show,.nav_min .nav-item .btn:first-child:active, :not(.btn-check)+.btn:active{
    transform:rotate(180deg);
    background: #F7B401;
    color: #fff;
}

.pc_yuyan{
    position: relative;
}
.pc_yuyan:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: rgba(255,255,255, 0.6);
}
.pc_yuyan .dropdown-menu{
    left: auto;
    transform: translateX(0%);
    right: 0px;
    width: 160px;
}
.pc_yuyan .nav-link{
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1F2C5C;
    padding: 15px 24px;
}
.pc_yuyan .nav-link svg{
    width: 18px;
    height: 18px;
    fill: #fff;
}
.nav_min .pc_yuyan .nav-link:before{
    content: none;
}
.yuyan_link .nav-link{
    display: flex;
    align-items: center;
}
.yuyan_link .nav-link svg{
    width: 16px;
    height: 16px;
    fill: #000;
    transition: 0.5s;
}
.nav_min .yuyan_link:hover .nav-link svg{
    fill: #224D92;
}

.nav_breadcrumb{
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 50px;
    background: rgba(247, 180, 1, 1);
    backdrop-filter: blur(10px);
}
.nav_min .sousuo{
    padding: 15px 24px;
    display: flex;
}
.nav_min .sousuo svg{
    width: 18px;
    height: 18px;
    fill: #fff;
}

.md_sousuo{
    width: 42px;
    height: 42px;
    border-radius: 42px;
    transition: all .5s;
    background: #E6212A;
}
.md_sousuo:hover{
    background: #F56F28;
}
.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: #000;
    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 #000;
    transition: all .5s;
}

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

.sousuokuang{
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    display: flex;
    background: #eee;
}
.sousuokuang .container{
    display: block;
}
.container_style{
    padding: 120px 0px;
}
.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: #000;
    transform: rotate(45deg);
}
.search_anniu2:after{
    content: "";
    position: absolute;
    top: 28px;
    left: 15px;
    width: 28px;
    height: 1px;
    background: #000;
    transform: rotate(-45deg);
}
.search_anniu2:hover{
    transform: rotate(180deg);
}
.tanchuang_tuichu{
    position: absolute;
    height: 58px;
    right: -58px;
    top: 0px;
    background: #fff;
    cursor: pointer;
    transition: all .5s;
}
.tanchuang_tuichu:hover{
    background: #F7B401;
}
.tanchuang_tuichu:hover .search_anniu2:after{
    background: #fff;
}
.tanchuang_tuichu:hover .search_anniu2:before{
    background: #fff;
}

.nav_hot li a{
    color: #999;
    font-size: 0.9rem;
}
.nav_hot li a:hover{
    color: #F7B401;
}

/* 隐藏导航栏的类 */
.header-hidden {
    transform: translateY(-100%);
}
.is-active{
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05);
}
.is-active .navbar-brand .logo{
    background: url(../img/logo2.png);
    background-size: contain;
    background-position: center left;
    background-repeat: no-repeat;
}
.is-active .navbar-nav .nav-link{
    color: #000;
}

.nav_min:hover,.nav_min.is-active{
    background: rgba(255, 255, 255, 1);
}
.nav_min:hover .navbar-brand .logo{
    background: url(../img/logo2.png);
    background-size: contain;
    background-position: center left;
    background-repeat: no-repeat;
}
.nav_min:hover .navbar-nav .nav-link{
    color: #000;
}

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

/*banner*/
.banner{
    height: 850px;
    position: relative;
}

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

.banner .swiper-pagination{
    bottom: 30px;
}
.banner .swiper-pagination .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    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_text{
    padding-top: 88px;
}
.banner_nr_text h1{
    font-size: 3rem;
    line-height: 1.5;
}
.banner_nr_text h1 span{
    position: relative;
    display: inline-block;
}
.banner_nr_text .gengduo{
    margin-top: 58px;
}
.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_bg{
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform:translateX(-50%);
    width:  324px;
    height: 108px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    z-index: 500;
    pointer-events: none;
}

.banner_yxhd{
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 1000;
    transform: translate(-50%,0);
    /* 动画属性：名称 时长 匀速 无限循环 交替运动 */
    animation: float 1s linear infinite alternate;
      
    /* 让动画更丝滑 */
    will-change: transform;
}
.banner_yxhd img{
    width: 18px;
}
@keyframes float {
    /* 起始位置：原位置 */
    from {
        transform: translate(-50%,0);
    }
    /* 结束位置：向上移动 30px */
    to {
        transform: translate(-50%,-16px);
    }
}

/*主体*/
.mb_48{
    margin-bottom: 48px;
}

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

.ix_ps_swiper .swiper-pagination{
    top: auto;
    bottom: 21px;
    height: 6px;
    width: 85%;
    border-radius: 5px;
}
.ix_ps_swiper .swiper-pagination-progressbar{
    background: rgba(0, 0, 0, 0.05);
}
.ix_ps_swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background: rgba(247,180,1,1);
    border-radius: 5px;
}

.ix_bt h2{
    font-size: 2rem;
    line-height: 1.5;
}
.ix_bt p{
    font-size: 1rem;
    line-height: 1.5;
}
.ix_ps_swiper_card{
    background: #F2F2F2;
    border: 1px solid #D8D8D8;
    padding: 14px 14px 0px 14px;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}
.ix_ps_swiper_card .fangda{
    border-radius: 5px;
}
.ix_ps_swiper_card .card-body{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0px;
}
.ix_ps_swiper_card .card-body h5{
    font-size: 1.1rem;
}
.ix_ps_swiper_card .card-body i{
    font-size: 1.4rem;
    color: #BFBFBF;
}
.ix_ps_swiper_card_x{
    position: absolute;
    left: -42px;
    top: -16px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 120px;
    height: 68px;
    font-size: 0.8rem;
    color: #fff;
    background: #F7B401;
    transform: rotate(-45deg);
    padding-bottom: 12px;
}
.ix_ps_swiper_card:hover{
    border: 1px solid #F7B401;
}

.ix_about_bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0px;
    top: 0px;
}

.ix_about_card_border{
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 20px;
    border-radius: 30px;
}
.ix_about_card{
    border-radius: 24px;
    overflow: hidden;
    height: 540px;
}
.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: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}
.ix_about_card .ix_video_card_anniu {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
}
.video_aniu{
    width: 58px;
    height: 58px;
    border-radius: 58px;
    color: #fff;
    z-index: 2;
    background: #F7B401;
    cursor: pointer;
}
.video_aniu_svg{
    width: 58px;
    height: 58px;
    border-radius: 58px;
    color: #fff;
    z-index: 2;
    background: #F7B401;
    z-index: 1000;
    position: relative;
}
.video_aniu .video_aniu_top{
    width: 58px;
    height: 58px;
    border-radius: 58px;
    justify-content: center;
    align-items: center;
}
.video_aniu svg{
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1000;
    fill: #fff;
    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: 58px;
    height: 58px;
    border-radius: 58px;
    background: rgba(255, 255, 255, 0.3);
}
.video_aniu .video_aniu_top .circle01{
    animation:scalej01 2s .4s infinite;
    -webkit-animation:scalej01 2s .4s infi
}
@keyframes scalej01{
    0%{transform:scale(1);-webkit-transform:scale(1);opacity:1;-webkit-opacity:1;}
    100%{ transform:scale(1.4);-webkit-transform:scale(1.4);opacity:0;-webkit-opacity:0;}
}
.video_aniu .video_aniu_top .circle02{
    animation:scalej02 2s infinite;-webkit-animation:scalej02 2s infinite;
}
@keyframes scalej02{
    0%{transform:scale(1);-webkit-transform:scale(1);opacity:1;-webkit-opacity:1;}
    100%{transform:scale(1.8);-webkit-transform:scale(1.8);opacity:0;-webkit-opacity:0;}
}

.mt_58{
    margin-top: 58px;
}
.ix_about_bt{
    position: relative;
    padding-top: 34px;
}
.ix_about_bt:before{
    content: "";
    position: absolute;
    left: -28px;
    top: 0px;
    width: 88px;
    height: 88px;
    border-radius: 88px;
    background: #F7B401;
}
.ix_about_bt h3{
    position: relative;
    font-size: 1.6rem;
    line-height: 1.8;
}
.ix_about_left{
    margin-top: 48px;
    padding-right: 48px;
}

.at_num_grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 30px;
}
.at_num_grid .at_num .at_num_flex{
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    color: #000;
    position: relative;
    transition: 0.3s;
}
.at_num_grid .at_num .at_num_flex span{
    font-size: 24px;
}
.at_num_grid .at_num .at_num_flex .num-item{
    font-size: 48px;
    line-height: 48px;
    color: #000!important;
    font-weight: 700;
    transition: 0.3s;
}
.at_num_grid .at_num{
    background: rgba(255, 255, 255, 1);
    padding: 58px 28px;
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid #ddd;
}
.at_num_grid .at_num p{
    margin-top: 14px;
    position: relative;
}
.at_num_grid .at_num{
    position: relative;
    overflow: hidden;
}
.at_num_svg{
    position: absolute;
    left: 20px;
    top: 20px;
    width: 70px;
    height: 70px;
    border-radius: 70px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.at_num_grid .at_num svg{
    width: 34px;
    height: 34px;
    fill: #8F8F8F;
}
.at_num_grid .at_num:hover svg{
    fill: #F7B401;
}
.at_num_grid .at_num:hover{
    background: rgba(247, 180, 1, 1);
    border: 1px solid #F7B401;
    box-shadow: 0px 10px 30px -10px rgba(0, 0, 0, 0.1);
    color: #fff;
}
.at_num_grid .at_num:hover .at_num_flex{
    color: #fff;
}
.at_num_grid .at_num:hover .at_num_flex .num-item{
    color: #fff!important;
}

.ix_about .wrap,.ix_about2 .wrap{
    z-index: 100;
}
.ix_about{
    padding-bottom: 88px;
}

.ix_at_num_grid{
    margin-top: -101px;
}
.ix_our_services_g{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 42px;
}
.ix_our_services_card{
    border-radius: 24px;
    transition: 0.3s;
}
.ix_our_services_card .card-body{
    padding: 38px 30px 30px 30px;
}
.ix_our_services_card .card-body svg{
    width: 48px;
    height: 48px;
    fill: #F7B401;
    margin-bottom: 24px;
    transition: 0.3s;
}
.ix_our_services_card .card-body h5{
    margin-bottom: 14px;
}
.ix_our_services_card:hover{
    background: #F7B401;
    color: #fff;
}
.ix_our_services_card:hover .card-body svg{
    fill: #FFFFFF;
}

.ix_news_swiper{
    position: relative;
}
.ix_news_swiper:before{
    content: "nwes";
    position: absolute;
    right: 0px;
    top: 0px;
    text-transform: uppercase;
    font-size: 200px;
    line-height: 1;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
}
.ix_news_swiper .swiper-wrapper{
    height: auto;
}
.ix_news_swiper .swiper-button-next,.ix_news_swiper .swiper-button-prev{
    width: 48px;
    height: 48px; 
    background: rgba(232,232,232,1);
    border-radius: 8px;
    opacity: 1;
    transition: 0.5s;
}
.ix_news_swiper .swiper-button-prev{
    top: 0px;
    left: auto;
    right: 78px;
    margin-top: 0px;
}
.ix_news_swiper .swiper-button-next{
    top: 0px;
    right: 0px;
    margin-top: 0px;
}
.ix_news_swiper .swiper-button-prev:after,.ix_news_swiper .swiper-button-next:after{
    color: #505050;
    font-size: 18px;
}
.ix_news_swiper .swiper-button-prev:hover:after,.ix_news_swiper .swiper-button-next:hover:after{
    color: #fff;
}
.ix_news_swiper .swiper-button-next:hover,.ix_news_swiper .swiper-button-prev:hover{
    background: rgba(247,180,1,1);
}
.ix_news_swiper .ix_bt{
    padding-right: 130px;
}

.ix_news_card{
    background: none;
}
.ix_news_card .fangda{
    position: relative;
    border-radius: 20px;
}
.ix_news_card .fangda span{
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: inline-block;
    padding: 8px 18px;
    background: #F7B401;
    color: #fff;
    border-radius: 5px;
    font-size: 0.9rem;
}
.ix_news_card .card-body{
    padding: 24px 0px 0px 0px;
}
.ix_news_card .card-body h4{
    font-size: 1.2rem;
    line-height: 34px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 68px;
    margin-bottom: 12px;
    color: #000;
}
.ix_news_card .card-body p{
    font-size: 0.9rem;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 60px;
    color: #8D8D8D;
}

.ix_app_left_card_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ix_app_left_card .card-body .span1{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 94px;
    height: 94px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 38px;
}
.ix_app_left_card .card-body .span1 svg{
    width: 48px;
    height: 48px;
    fill: #fff;
}
.ix_app_left_card .card-body h4{
    padding-bottom: 20px;
    margin-bottom: 28px;
    position: relative;
}
.ix_app_left_card .card-body h4:before{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 68px;
    height: 4px;
    background: #fff;
    border-radius: 4px;
}
.ix_app_left_card .card-body p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height: 90px;
}

.ix_app{
    position: relative;
}
.ix_app_bt{
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1000;
    width: 100%;
}
.ix_app_right{
    position: absolute;
    right: 0px;
    top: 0px;
    width: 100%;
}

.tab-panel {
    display: none;
}
.tab-panel.show {
    display: block;
}
.tab-panel-wrap{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}
.tab-panel{
    width: 100%;
    height: 100%;
}

.ix_app_swiper_right{
    height: 700px;
    padding-left: 68px;
}
.ix_app_swiper_right .swiper-wrapper{
    height: auto;
}
.ix_app_swiper_right .swiper-wrapper .swiper-slide{
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(255, 255, 255, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #fff;
}
.ix_app_swiper_right .swiper-wrapper .swiper-slide svg{
    width: 36px;
    height: 36px;
    fill: #fff;
    margin-bottom: 12px;
}
.ix_app_swiper_right .swiper-wrapper .swiper-slide-thumb-active{
    background: #F7B401;
    border: 1px solid #F7B401;
}

.ix_app_swiper_left{
    margin-top: 120px;
}

/*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: #191F22;
    padding-top: 88px;
    color: #fff;
}

.bottom_bg .bottom_follow{
    display: flex;
    flex-wrap: wrap;
}
.bottom_bg .bottom_follow .list-inline-item:not(:last-child){
    margin-right: 12px;
}
.bottom_bg .bottom_follow .list-inline-item{
    margin-top: 5px;
    margin-bottom: 5px;
}
.bottom_bg .bottom_follow li a{
    font-size: 18px;
    width: 42px;
    height: 42px;
    border-radius: 42px;
    background: none;
    color: #fff;
    display: flex!important;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    border: 1px solid #fff;
}
.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: #fff;
    background: #F7B401;
    border: 1px solid #F7B401;
}
.bottom_bg .bottom_follow li a:hover svg{
    fill: #fff;
}

.bottom_ul{
    padding-bottom: 28px;
}
.bottom_ul .bottom_bt a{
    margin: 0px;
    padding: 0px 0px 0px 0px;
    font-size: 1.2rem;
    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: #E1E1E1;
    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{
    background: #fff;
    border-radius: 12px;
    padding: 5px;
    border: 1px solid #D9D9D9;
}
.bottom_form .form-control{
    background: none;
    border-radius: 48px!important;
    font-size: 0.9rem;
    height: 48px;
    outline: none;
    box-shadow: none;
    padding: 8px 14px 8px 14px;
    border: none;
}
.bottom_form a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 98px;
    height: 48px;
    border-radius: 8px!important;
    background: #F7B401;
    color: #fff;
    transition: 0.5s;
    font-weight: 700;
    font-size: 0.9rem;
}
.bottom_form a:hover{
    background: #F5D88A;
}

.bottom_bg .bottom_contact li{
    padding-left: 38px;
    color: #E1E1E1;
    line-height: 2.5;
    position: relative;
    font-size: 0.9rem;
    margin-bottom: 3px;
}
.bottom_bg .bottom_contact li span{
    width: 26px;
    height: 26px;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 5px;
    left: 0px;
    background: #F7B401;
}
.bottom_bg .bottom_contact li span img{
    width: 14px;
    height: 14px;
    object-fit: scale-down;
}

.di_beian{
    padding: 38px 0px;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 68px;
    background: #131A1D;
}
.botom_beianhao .list-inline-item:not(:last-child){
    margin-right: 48px;
}

.dingyue{
    padding-right: 48px;
}
.dingyue h6{
    color: #E1E1E1;
    line-height: 1.5;
    margin-top: 18px;
}

.bottom_logo{
    display: inline-block;
}
.bottom_logo img{
    height: 70px;
    object-fit: scale-down;
}

/* ----------------------------------------------------------------
    About Us
----------------------------------------------------------------- */
.nav_min_ny{
    background: rgba(255, 255, 255, 1);
}
.nav_min_ny .navbar-brand .logo{
    background: url(../img/logo2.png);
    background-size: contain;
    background-position: center left;
    background-repeat: no-repeat;
}
.nav_min_ny .navbar-nav .nav-link{
    color: #000;
}

.about_banner{
    height: 670px;
    overflow: hidden;
    position: relative;
}
.about_banner_nav{
    position: absolute;
    left: 0px;
    bottom: 30px;
    width: 100%;
}
.about_banner_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_banner .about_banner_nr{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    display: flex;
    align-items: center;
}
.about_breadcrumb{
    margin-top: 12px;
}
.about_breadcrumb li a,.about_breadcrumb li{
    line-height: 24px;
    display: inline-block;
    color: #fff;
    font-size: 0.9rem;
}
.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_banner_nr h1{
    font-size: 2.4rem;
    line-height: 1.5;
}
.about_banner_nr h5{
    font-size: 1rem;
    line-height: 1.5;
}

.about_bt h2{
    display: flex;
    align-items: center;
}
.about_bt p{
    font-size: 1rem;
    line-height: 1.5;
}
.about_bt .span2{
    display: inline-block;
    padding: 0px 24px;
    font-size: 1.8rem;
}
.about_bt .span1,.about_bt .span3{
    display: inline-block;
    width: 20px;
    height: 28px;
    position: relative;
}
.about_bt .span1:before,.about_bt .span3:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 10px;
    height: 28px;
    background: #FBE2A0;
}
.about_bt .span1:after,.about_bt .span3:after{
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 10px;
    height: 28px;
    background: #F7B401;
}
.about_bt .span3:before{
    left: auto;
    right: 0px;
}
.about_bt .span3:after{
    right: auto;
    left: 0px;
}

.at_jianjie_bg{
    position: relative;
}
.at_jianjie_bg:before{
    content: "";
    position: absolute;
    right: 0px;
    bottom: 48px;
    width: 30%;
    height: 60%;
    background: #F7B401;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.abput_video{
    border-radius: 60px 60px 158px 60px;
}

.bg_f2f2f2{
    background: #f2f2f2;
}
.at_whole_g{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 68px 80px;
}
.at_whole_g2{
    direction: rtl;
    margin-top: 68px;
}
.at_whole_card{
    position: relative;
}
.at_whole_card .fangda{
    border-radius: 15px;
}
.at_whole_card .card-body h5{
    font-size: 1.1rem;
}
.at_whole_card .card-body img{
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -20px;
}
.at_whole_g2 .at_whole_card .card-body img{
    position: absolute;
    right: auto;
    left: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(-180deg);
    margin-top: -20px;
}
.at_whole_card2 .card-body img{
    position: absolute;
    left: 50%;
    top: auto;
    bottom: -38px;
    transform: translateX(-50%) rotate(90deg);
    margin-top: 0px;
}

.at_corporate_bg{
    background: url(../img/at_corporate_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.at_h4{
    font-size: 1.4rem;
}
.at_quality_p p{
    padding-left: 20px;
    position: relative;
}
.at_quality_p p:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #F7B401;
}
.at_quality_right{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px;
}
.at_quality_card{
    border-radius: 12px;
    overflow: hidden;
}
.at_quality_card .card-img-overlay{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.at_quality_card .card-img-overlay img{
    width: 42px;
    height: 42px;
    object-fit: scale-down;
    margin-bottom: 24px;
}
.at_quality_card .card-img-overlay h4{
    font-size: 1.3rem;
}

.at_production_top .swiper-wrapper{
    height: auto;
    justify-content: flex-end;
}
.at_production_top .swiper-wrapper .swiper-slide{
    width: auto;
    cursor: pointer;
    background: none;
    color: #000;
    font-size: 1rem;
    line-height: 1.5;
    padding: 14px 38px;
    border-radius: 50px;
    margin: 0px 0px 0px 24px;
    border: 1px solid #ddd;
}
.at_production_top .swiper-wrapper .swiper-slide-thumb-active{
    background: #F7B401;
    border: 1px solid #F7B401;
    color: #fff!important;
}
.at_production_top .swiper-wrapper .swiper-slide:hover{
    color: #F7B401;
}
.at_production_top .swiper-button-next{
    width: 30px;
    height: 100%; 
    background: #224D92;
    border-radius: 0px;
    z-index: 1000;
    transition: 0.5s;
}
.at_production_top .swiper-button-next{
    top: 0px;
    right: 0px;
    margin-top: 0px;
}
.at_production_top .swiper-button-next:after{
    color: #fff;
    font-size: 12px;
}

.at_production_card{
    background: #fff;
    border: 1px solid #fff;
}
.at_production_card .card-body{
    display: block;
    text-align: center;
}

/* ----------------------------------------------------------------
    products
----------------------------------------------------------------- */
.ps_right_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 38px;
}
.ps_sousuo{
    width: 500px;
    background: #fff;
    border-radius: 50px;
    height: 62px;
    overflow: hidden;
    border: 1px solid #D5D5D5;
}
.ps_sousuo .form-control{
    border: none;
    background: none;
    box-shadow: none;
    padding-left: 32px;
}
.ps_sousuo .form-control::placeholder{
    color: #8F8F8F;
}
.ps_sousuo .search_anniu_top{
    width: 78px;
    height: 100%;
}
.ps_sousuo .search_anniu_top:after{
    width: 20px;
    height: 20px;
    border: 1px solid #F7B401;
}
.ps_sousuo .search_anniu_top:before{
    background: #F7B401;
    bottom: 0px;
    left: 18px;
}

.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: #F7B401;
}
.page-item.active .page-link{
    width: 40px;
    height: 40px;
    border-radius: 8px!important;
    color: #fff;
    background: #F7B401;
    box-shadow: 0px 0px 13px rgba(247, 180, 1, 0.19);
    border: none;
}

.ps_right_g{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 32px;
}
.ps_right_g .ix_ps_swiper_card{
    background: #fff;
    border-color: #fff;
}
.ps_right_g .ix_ps_swiper_card:hover{
    border-color: #F7B401;
    box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.1);
}

.products_nav{
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.ps_nav_bt{
    background: #F7B401;
    color: #fff;
    font-size: 1.4rem;
    padding: 24px 15px;
}
.ps_nav_accordion{
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 8px;
    padding-bottom: 8px;
}
.ps_nav_accordion .accordion-item{
    border-bottom: 1px solid #eee;
}
.ps_nav_accordion .accordion-item:first-of-type{
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.ps_nav_accordion .accordion-item:last-of-type{
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
.ps_nav_accordion .accordion-header button{
    padding: 0rem;
    display: block;
}
.ps_nav_accordion .accordion-header a{
    display: block;
    font-size: 1rem;
    line-height: 1.8;
    padding: 18px 41px 18px 0px;
}
.ps_nav_accordion .accordion-button:not(.collapsed),.ps_nav_accordion .accordion-button:focus{
    color: #B08C74;
    background: none;
    box-shadow: none;
    outline: none;
}
.ps_nav_accordion .accordion-button::after{
    display: none;
}
.ps_nav_accordion .accordion-button span{
    position: absolute;
    top: 12px;
    right: 0px;
    color: #000;
    width: 41px;
    height: 41px;
    border-radius: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(180deg);
    transition: 0.5s;
}
.ps_nav_accordion .accordion-button span.collapsed{
    transform: rotate(0deg);
    transition: 0.5s;
}
.ps_nav_accordion .accordion-body{
    background: #F3F3F3;
    padding: 0rem 1rem;
}
.ps_nav_accordion .accordion-body ul li a{
    display: block;
    padding: 12px 0px 12px 16px;
    position: relative;
    color: #000;
    font-size: 1rem;
    line-height: 2;
}
.ps_nav_accordion .accordion-body ul li:not(:last-child) a{
    border-bottom: 1px solid #E3E3E3;
}
.ps_nav_accordion .accordion-body ul li a:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background: #000;
    margin-top: -3px;
}
.ps_nav_accordion .accordion-body ul li a:hover{
    color: #F7B401;
}
.ps_nav_accordion .accordion-body ul li a:hover:before{
    background: #F7B401;
}

/*详情页*/
.ps_ds_swiper{
    position: relative;
    padding-left: 18%;
}
.ps_ds_swiper_right{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 16%;
    height: 100%;
}
.ps_ds_swiper_left{
    border-radius: 15px;
}
.ps_ds_swiper_left .swiper-wrapper .swiper-slide img{
    background: #fff;
    object-fit: scale-down;
    background: #D3EDEA;
    height: 580px;
}
.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;
    position: relative;
    border-radius: 5px;
}
.ps_ds_swiper_right .swiper-wrapper .swiper-slide-thumb-active:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(247, 180, 1, 0.6);
}
.ps_ds_swiper_right .swiper-wrapper .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ps_ds_swiper_right .swiper-wrapper .swiper-slide i{
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform:translate(-50%,-50%);
    font-size: 1.4rem;
    opacity: 0;
}
.ps_ds_swiper_right .swiper-wrapper .swiper-slide-thumb-active i{
    opacity: 1;
}
.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(255,255,255,1);
    border-radius: 8px;
    z-index: 1000;
    transition: 0.5s;
}
.ps_ds_swiper_left .swiper-button-prev{
    left: 10px;
    margin-top: -24px;
}
.ps_ds_swiper_left .swiper-button-next{
    right: 10px;
    margin-top: -24px;
}
.ps_ds_swiper_left .swiper-button-prev:after,.ps_ds_swiper_left .swiper-button-next:after{
    color: #000;
    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(247,180,1,1);
}

.ps_ds_text_right{
    padding-top: 28px;
}
.pt_ds_bt{
    padding-bottom: 30px;
    position: relative;
    margin-bottom: 30px;
    font-size: 1.6rem;
}
.pt_ds_bt:after{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100px;
    height: 7px;
    background: #F7B401;
    border-radius: 6px;
}
.pt_ds_bt:before{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 3px;
    width: 100%;
    height: 1px;
    background: #DEDEDE;
}

.ps_ds_anniu li a{
    display: inline-block;
    background: #F7B401;
    border-radius: 50px;
    padding: 14px 58px;
    color: #fff;
    transition: 0.5s;
    font-size: 1rem;
    border: 2px solid #F7B401;
}
.ps_ds_anniu li a i{
    margin-left: 12px;
}
.ps_ds_anniu li .ps_ds_anniu2{
    background: #fff;
    color: #000;
    border: 2px solid #E5E5E5;
}
.ps_ds_anniu li a:hover{
    color: #fff;
    background: #F7B401;
    border: 2px solid #F7B401;
}

.ps_ds_services_g{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 42px;
}
.ps_ds_services_g_card{
    border: 1px solid #DBDBDB;
    background: #F3F3F3;
    border-radius: 14px;
    transition: 0.3s;
}
.ps_ds_services_g_card .card-body{
    padding: 58px 28px 68px 28px;
    display: flex;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ps_ds_services_g_card .card-body span{
    width: 80px;
    height: 80px;
    border-radius: 80px;
    background: #F7B401;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
    transition: 0.3s;
}
.ps_ds_services_g_card .card-body span svg{
    width: 36px;
    height: 36px;
    fill: #fff;
    transition: 0.3s;
}

.ps_ds_services_g_card:hover{
    background: #F7B401;
    border: 1px solid #F7B401;
    color: #fff;
    box-shadow: 0px 10px 30px -10px rgba(0, 0, 0, 0.2);
}
.ps_ds_services_g_card:hover .card-body span{
    background: #fff;
}
.ps_ds_services_g_card:hover .card-body span svg{
    fill: #F7B401;
}

.ps_ds_table thead tr th{
    text-align: center;
    font-weight: 400;
    font-size: 1rem;
    padding: 12px;
    line-height: 1.5;
    white-space: nowrap;
}
.ps_ds_table tbody tr td{
    text-align: center;
    font-size: 0.9rem;
    padding: 12px;
    white-space: nowrap;
}
.ps_ds_nr_ul li{
    margin-bottom: 32px;
}
.ps_ds_nr_ul li h4{
    font-size: 1.4rem;
}

.case_ds_form .form_input_h,.case_ds_form .form-select{
    height: 52px;
}
.case_ds_form .form-label{
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 700;
}
.case_ds_form .form-control,.case_ds_form .form-select{
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px 18px;
    font-size: 0.9rem;
}
.case_ds_form .form-control::placeholder {
    color: #AFAFAF;
}

.contact_form_ul li a{
    display: inline-block;
    background: #F7B401;
    border-radius: 5px;
    padding: 14px 48px;
    color: #fff;
    font-size: 1rem;
    transition: 0.5s;
}
.contact_form_ul li .contact_form_ul2{
    background: #DFDFDF;
    color: #000;
}
.contact_form_ul li a:hover{
    color: #fff;
    background: #F7B401;
}

.contact_form_ul li button{
    display: inline-block;
    background: #F7B401;
    border-radius: 5px;
    padding: 14px 48px;
    color: #fff;
    font-size: 1rem;
    transition: 0.5s;
    border: none;
}
.contact_form_ul li button:hover{
    color: #fff;
    background: #F7B401;
}

.ps_ds_g{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 32px;
}
.ps_ds_g .card{
    background: #fff;
}
.ps_ds_g .card:hover{
    box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.1);
}

.app_page .page-item .page-link{
    background: #E6E6E6;
    border: 1px solid #E6E6E6;
}
.app_page .page_ul{
    background: #E6E6E6;
}
.app_page .page-item.active .page-link{
    background: #F7B401;
    border: 1px solid #F7B401;
}

.application_g{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 58px 38px;
}
.application_card .card-img-overlay{
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 38px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.application_card .card-img-overlay h4{
    font-size: 1.2rem;
}
.application_card .card-img-overlay i{
    font-size: 1.4rem;
    line-height: 1;
}

.service_g{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 38px;
}
.service_g h4{
    position: relative;
    padding-left: 20px;
    margin-bottom: 18px;
    font-size: 1.4rem;
    line-height: 1.5;
}
.service_g h4:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    border-radius: 10px;
    background: #F7B401;
}

.service_img{
    border-radius: 38px;
}

/* ----------------------------------------------------------------
    News
----------------------------------------------------------------- */
.news_nav_swiper{
    margin-bottom: 58px;
}
.news_nav_swiper .swiper-wrapper{
    height: auto;
    justify-content: center;
}
.news_nav_swiper .swiper-wrapper .swiper-slide{
    width: auto;
    cursor: pointer;
    background: #E8E8E8;
    color: #000;
    font-size: 1rem;
    line-height: 1.5;
    padding: 15px 58px;
    border-radius: 50px;
    margin: 0px 14px;
}
.news_nav_swiper .swiper-wrapper .active{
    background: #F7B401;
    color: #fff!important;
}
.news_nav_swiper .swiper-wrapper .swiper-slide:hover{
    color: #F7B401;
}
.news_nav_swiper .swiper-button-next{
    width: 30px;
    height: 100%; 
    background: #F7B401;
    border-radius: 0px;
    z-index: 1000;
    transition: 0.5s;
}
.news_nav_swiper .swiper-button-next{
    top: 0px;
    right: 0px;
    margin-top: 0px;
}
.news_nav_swiper .swiper-button-next:after{
    color: #fff;
    font-size: 12px;
}

.news_swiper .swiper-wrapper{
    height: auto;
}
.news_swiper .swiper-button-next,.news_swiper .swiper-button-prev{
    width: 42px;
    height: 42px; 
    background: rgba(230,230,230,1);
    border-radius: 8px;
    -webkit-transition: 0.5s;   
    transition: 0.5s;
    z-index: 1000;
}
.news_swiper .swiper-button-prev{
    left: 50%;
    top: auto;
    bottom: 24px;
    margin-left: 40px;
}
.news_swiper .swiper-button-next{
    right: auto;
    left: 50%;
    top: auto;
    bottom: 24px;
    margin-left: 108px;
}
.news_swiper .swiper-button-prev:after,.news_swiper .swiper-button-next:after{
    color: #000;
    font-size: 18px;
}
.news_swiper .swiper-button-prev:hover:after,.news_swiper .swiper-button-next:hover:after{
    color: #fff;
}
.news_swiper .swiper-button-next:hover,.news_swiper .swiper-button-prev:hover{
    background: rgba(247,180,1,1);
}
.news_swiper .swiper-button-next.swiper-button-disabled,.news_swiper .swiper-button-prev.swiper-button-disabled{
    pointer-events: auto;
}

.news_card1 .news_card_left{
    border-radius: 15px;
    height: 480px;
}
.news_card1 .news_card_left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news_card1 .card-body{
    padding: 24px 0px 68px 0px;
}
.news_card1 .card-body h4{
    margin-bottom: 24px;
    font-size: 1.4rem;
    line-height: 34px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 68px;
}
.news_card1 .card-body h6{
    font-size: 1rem;
}
.news_card1 .card-body p{
    font-size: 1rem;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height: 90px;
}

.news_g{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 38px;
}
.news_card .card-body{
    padding: 22px 22px 0px 22px;
    background: #F3F3F3;
    color: #000;
}
.news_card .card-body h5{
    font-size: 1.2rem;
    line-height: 34px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 68px;
    margin-bottom: 12px;
}
.news_card .card-body p{
    font-size: 0.9rem;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 48px;
    color: #757575;
}
.news_card .card-body .ix_ps_card_more{
    height: 58px;
    border-top: 1px solid #D9D9D9;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
}
.news_card .card-body .ix_ps_card_more i{
    font-size: 1rem;
    color: #929292;
}
.news_card .card-body .ix_ps_card_more i:hover{
    color: #F7B401;
}

/*详情页*/
.news_ds_nr{
    background: #fff;
    padding: 68px;
    border-radius: 20px;
}

.ns_ds_bottom{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 0px;
    padding: 30px 0px 0px 0px;
}
.ns_ds_bottom ul{
    padding-right: 24px;
}

.news_ds_ul .list-inline-item:not(:last-child) {
    margin-right: 28px;
}

.news_ds_follow a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 32px;
    background: #4BC1FB;
    color: #fff;
    font-size: 14px;
    margin-top: 8px;
}
.news_ds_follow .list-inline-item:not(:last-child){
    margin-right: 5px;
}
.news_ds_follow .news_ds_follow_li1 a{
    background: #4BC1FB;
}
.news_ds_follow .news_ds_follow_li2 a{
    background: #F55643;
}
.news_ds_follow .news_ds_follow_li3 a{
    background: #419EEB;
}
.news_ds_follow .news_ds_follow_li4 a{
    background: #3A4E8D;
}
.news_ds_follow .news_ds_follow_li5 a{
    background: #FF00A2;
}

.news_bt{
    font-size: 1.5rem;
    line-height: 2rem;
}
.news_gengduo{
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.services_gengduo{
    padding: 12px 38px;
    background: #F7B401;
    color: #fff!important;
    font-size: 0.9rem;
    line-height: 24px;
    pointer-events: auto;
    transition: 0.5s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.services_gengduo:hover{
    color: #fff!important;
    background: #F5D88A;
}

/* ----------------------------------------------------------------
    Contact Us
----------------------------------------------------------------- */
.contact_card{
    border-radius: 6px;
    background: #F3F3F3;
    border: 1px solid #ddd;
}
.contact_card .card-body{
    padding: 18px 24px 18px 30px;
    display: flex;
    align-items: center;
}
.contact_card .card-body img{
    width: 38px;
    height: 38px;
    object-fit: scale-down;
}
.contact_card .card-body h5{
    font-size: 1rem;
}
.contact_card_right{
    margin-left: 30px;
}

.contact_us_img{
    border-radius: 15px;
}

.text-box{
    word-break: break-all;
}

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

@media (max-width: 1600px){
    .pb-7{
        padding-bottom: 88px;
    }
    .pt-7{
        padding-top: 88px;
    }
    .pb-6{
        padding-bottom: 68px;
    }
    .pt-6{
        padding-top: 68px;
    }
    .mb-6{
        margin-bottom: 68px;
    }
    .mt-6{
        margin-top: 68px;
    }

    .banner_nr_text h1,.about_banner_nr h1{
        font-size: 2rem;
    }
    .ix_bt h2,.about_bt .span2{
        font-size: 1.6rem;
    }
    .ix_about_bt h3,.pt_ds_bt,.news_bt{
        font-size: 1.3rem;
    }
    .service_g h4,.ps_ds_nr_ul li h4,.ps_ds_swiper_right .swiper-wrapper .swiper-slide i,.ps_nav_bt,.news_card1 .card-body h4,.at_h4{
        font-size: 1.2rem;
    }
    .ix_ps_swiper_card .card-body h5,.p_17 p, .p_17,.news_card .card-body h5,.application_card .card-img-overlay h4,.application_card .card-img-overlay i,.at_whole_card .card-body h5,.p_18 p, .p_18{
        font-size: 1rem;
    }
    .ix_bt p,.p_16 p, .p_16,.nav_min .navbar-nav .nav-link,.about_banner_nr h5,.about_bt p,.case_ds_form .form-label,.ps_sousuo .form-control,.ps_nav_accordion .accordion-body ul li a,.ps_nav_accordion .accordion-header a
    ,.news_card1 .card-body p,.news_card1 .card-body h6{
        font-size: 0.9rem;
    }
    .p_15 p, .p_15,.case_ds_form .form-control, .case_ds_form .form-select,.news_card .card-body p{
        font-size: 0.8rem;
    }

    .gengduo,.ps_ds_anniu li a,.contact_form_ul li a,.services_gengduo,.news_nav_swiper .swiper-wrapper .swiper-slide,.at_production_top .swiper-wrapper .swiper-slide{
        padding: 12px 38px;
        font-size: 0.9rem;
    }
    .nav_min .navbar-brand{
        height: 48px;
    }
    .nav_min .navbar-brand .logo{
        width: 254px;
    }
    .nav_min .navbar-nav .nav-item{
        margin: 0px 58px 0px 0px;
    }
    .banner{
        height: 750px;
    }
    .ix_about_card{
        height: 480px;
    }
    .at_num_svg{
        width: 60px;
        height: 60px;
    }
    .at_num_grid .at_num svg{
        width: 28px;
        height: 28px;
    }
    .at_num_grid .at_num .at_num_flex .num-item{
        font-size: 38px;
        line-height: 1;
    }
    .at_num_grid .at_num .at_num_flex span{
        font-size: 20px;
        line-height: 1;
    }
    .ix_about_left{
        padding-right: 0px;
    }
    .ix_our_services_g{
        gap: 30px 30px;
    }
    .ix_news_swiper:before{
        font-size: 160px;
    }
    .ix_app_left_card .card-body .span1{
        width: 78px;
        height: 78px;
    }
    .ix_app_left_card .card-body .span1 svg{
        width: 38px;
        height: 38px;
    }

    .about_banner{
        height: 580px;
    }
    .ps_nav_accordion{
        padding-left: 14px;
        padding-right: 14px;
    }
    .news_ds_nr{
        padding: 48px;
    }
    .news_nav_swiper .swiper-wrapper .swiper-slide{
        margin: 0px 10px;
    }
}

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

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

    .nav_min .navbar-brand{
        height: 38px;
    }
    .nav_min .navbar-nav .nav-item{
        margin: 0px 42px 0px 0px;
    }
    .banner{
        height: 680px;
    }
    .ix_news_swiper:before{
        font-size: 138px;
    }
    .ix_app_swiper_right{
        height: 600px;
    }
    .ix_app_swiper_right .swiper-wrapper .swiper-slide svg{
        width: 30px;
        height: 30px;
        margin-bottom: 6px;
    }
    .nav_min .navbar-brand .logo{
        width: 200px;
    }

    .about_banner{
        height: 480px;
    }
    .ps_ds_g{
        gap: 24px 24px;
    }
    .ps_right_g{
        gap: 38px 24px;
    }
    .ps_sousuo{
        width: 50%;
    }
    .news_g{
        gap: 48px 24px;
    }
    .news_swiper .swiper-button-prev{
        margin-left: 30px;
    }
    .news_swiper .swiper-button-next{
        margin-left: 88px;
    }
    .application_g{
        gap: 48px 24px;
    }
    .application_card .card-img-overlay{
        padding: 24px;
    }
}
@media (max-width: 1399px){
    
}

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

    .ix_app_swiper_right{
        padding-left: 0px;
    }
    .news_swiper .swiper-button-prev{
        margin-left: 15px;
    }
    .news_swiper .swiper-button-next{
        margin-left: 78px;
    }
}

@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{
        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;
    }
    .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: 58px;
    }
    .pb-7{
        padding-bottom: 58px;
    }
    .container_style{
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .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;
    }
    .nav_min .nav-link span{
        display: none;
    }

    .header-hidden {
        transform: translateY(0%);
    }

    .nav_breadcrumb{
        position: absolute;
        right: 58px;
        top: 9px;
        background: none;
        border: none;
    }
    .nav_min .sousuo{
        padding: 12px 12px;
    }
    .nav_min .sousuo svg{
        width: 16px;
        height: 16px;
        fill: #000;
    }
    .nav_min,.nav_min.is-active{
        background: rgba(255, 255, 255, 1);
    }
    .nav_min .navbar-brand .logo{
        background: url(../img/logo2.png);
        background-size: contain;
        background-position: center left;
        background-repeat: no-repeat;
    }
    .nav_min .navbar-nav .nav-link{
        color: #000;
    }
    .nav_xiala2 .dropdown-menu{
        left: 0px;
        transform: translateX(0%);
    }
    .menu_a a{
        text-align: left;
    }

    .bottom_bg{
        padding-top: 58px;
    }
    .di_beian{
        margin-top: 48px;
    }

    .dingyue{
        padding-right: 0px;
    }
    .ix_about_left{
        margin-top: 0px;
        margin-bottom: 38px;
    }
    .ix_about_card_border{
        padding: 12px;
    }
    .ix_about_card{
        height: 420px;
    }
    .ix_at_num_grid{
        margin-top: 58px;
    }
    .at_num_grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .ix_about{
        padding-bottom: 0px;
    }
    .right_social a{
        width: 38px;
        height: 38px;
        border-radius: 4px;
    }
    .banner{
        height: 480px;
    }
    .banner_nr_text .gengduo{
        margin-top: 28px;
    }
    .banner_nr_text{
        padding-top: 58px;
    }
    .banner_nr_text h1{
        font-size: 1.6rem;
    }
    .ix_ps_swiper .swiper-pagination{
        width: 75%;
    }
    .ps_ds_g{
        grid-template-columns: repeat(2, 1fr);
    }

    .ps_right_top{
        flex-direction: column;
        align-items: flex-start;
    }
    .ps_sousuo{
        width: 100%;
        margin-top: 24px;
    }
    .ps_right_g{
        grid-template-columns: repeat(2, 1fr);
    }
    .news_card1 .news_card_left{
        height: 400px;
    }
    .at_jianjie_bg:before{
        display: none;
    }
    .abput_video{
        border-radius: 24px;
        margin-top: 38px;
    }
    .at_whole_card .card-body img{
        display: none;
    }
    .at_whole_g{
        grid-template-columns: repeat(4, 1fr);
        gap: 24px 24px;
    }
    .at_whole_g2{
        margin-top: 38px;
        direction: ltr;
    }
    .at_quality_right{
        margin-top: 24px;
    }
    .at_production_top{
        margin-top: 24px;
    }
    .at_production_top .swiper-wrapper{
        justify-content: flex-start;
    }
    .at_production_top .swiper-wrapper .swiper-slide{
        margin: 0px 18px 0px 0px;
    }
}
@media (max-width: 980px){
    .pt-7{
        padding-top: 68px;
    }
    .pb-7{
        padding-bottom: 68px;
    }

    /*bottom*/
    .bottom_bg{
        padding-top: 24px;
    }
    .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 .card .bottom_nav_a a,.bottom_bg .bottom_contact li{
        font-size: 0.9rem;
    }
    .bottom_ul .bottom_bt a,.md_bottom_bt a{
        height: 58px;
        line-height: 58px;
        padding: 0px;
        font-size: 0.9rem;
        font-weight: 400;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .di_beian{
        margin-top: 38px;
    }
    .bottom_ul .card{
        padding: 12px 0px 12px 0px;
    }
    .md_erweima{
        margin-top: 24px;
    }
    .dingyue{
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .ix_app_swiper_left{
        margin-top: 48px;
        margin-bottom: 48px;
    }
    .mb_48{
        margin-bottom: 38px;
    }
    .mt_58{
        margin-top: 38px;
    }

    .ix_news_swiper:before{
        font-size: 108px;
    }
    .about_banner{
        height: 380px;
    }
    .service_img{
        border-radius: 15px;
        margin-bottom: 38px;
    }
    .news_ds_nr{
        padding: 38px 24px;
    }
    .news_swiper .swiper-button-prev{
        bottom: 0px;
        margin-left: -63px;
    }
    .news_swiper .swiper-button-next{
        bottom: 0px;
        margin-left: 5px;
    }
    .news_g{
        grid-template-columns: repeat(2, 1fr);
    }
    .news_nav_swiper .swiper-wrapper{
        justify-content: flex-start;
    }
    .news_nav_swiper .swiper-wrapper .swiper-slide{
        margin: 0px 14px 0px 0px;
    }
    .news_nav_swiper{
        margin-bottom: 38px;
    }
    .news_swiper .swiper-button-next{
        margin-left: 10px;
    }
    .news_swiper .swiper-button-prev{
        margin-left: -52px;
    }
    .application_g{
        grid-template-columns: repeat(2, 1fr);
    }
    .at_whole_g{
        grid-template-columns: repeat(2, 1fr);
    }
    .at_whole_g2{
        margin-top: 24px;
    }
}

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

    .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,.ps_nr_right{
        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;
    }
    .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;
    }

    .banner_nr_text h1,.ix_bt h2,.about_banner_nr h1{
        font-size: 1.3rem;
    }
    .ix_about_bt h3,.pt_ds_bt,.at_quality_card .card-img-overlay h4{
        font-size: 1.1rem;
    }
    .ix_app_left_card .card-body h4,.service_g h4,.ps_ds_swiper_right .swiper-wrapper .swiper-slide i,.ps_ds_nr_ul li h4,.ps_nav_bt,.news_bt,.at_h4{
        font-size: 1rem;
    }
    .ix_ps_swiper_card .card-body i,.ix_our_services_card .card-body h5,.dingyue h6,.p_17 p, .p_17,.contact_card .card-body h5,.at_whole_card .card-body h5,.p_18 p, .p_18{
        font-size: 0.9rem;
    }
    .ix_bt p,.ix_ps_swiper_card .card-body h5,.p_16 p, .p_16,.at_num_grid .at_num p,.about_breadcrumb li a, .about_breadcrumb li,.about_banner_nr h5,.about_bt p,.case_ds_form .form-label
    ,.ps_nav_accordion .accordion-body ul li a,.nav_hot li a,.news_card1 .card-body h6{
        font-size: 0.8rem;
    }

    .right_social{
        right: 8px;
    }
    .banner_bg{
        display: none;
    }
    .banner{
        height: 340px;
    }
    .banner_nr_text .gengduo{
        margin-top: 14px;
    }
    .gengduo,.ps_ds_anniu li a,.contact_form_ul li a,.services_gengduo,.news_nav_swiper .swiper-wrapper .swiper-slide,.at_production_top .swiper-wrapper .swiper-slide{
        padding: 8px 24px;
        font-size: 0.8rem;
    }
    .gengduo:before{
        width: 28px;
        height: 28px;
    }
    .nav_min .navbar-brand{
        height: 30px;
        margin-top: 14px;
        margin-bottom: 14px;
    }
    .mb_48{
        margin-bottom: 24px;
    }
    .ix_ps_swiper_card{
        padding: 8px 8px 0px 8px;
        border-radius: 8px;
    }
    .ix_ps_swiper{
        padding-bottom: 68px;
    }
    .ix_ps_swiper_card .card-body{
        padding: 12px 0px;
    }
    .ix_ps_swiper_card_x{
        left: -56px;
        top: -30px;
        padding-bottom: 4px;
        font-size: 0.7rem;
    }
    .ix_ps_swiper .swiper-button-prev
    ,.ix_news_swiper .swiper-button-prev{
        right: 48px;
    }
    .ix_ps_swiper .swiper-button-next, .ix_ps_swiper .swiper-button-prev
    ,.ix_news_swiper .swiper-button-next, .ix_news_swiper .swiper-button-prev
    ,.ps_ds_swiper_left .swiper-button-next, .ps_ds_swiper_left .swiper-button-prev{
        width: 38px;
        height: 38px;
        border-radius: 8px;
    }
    .ix_ps_swiper .swiper-button-prev:after, .ix_ps_swiper .swiper-button-next:after
    ,.ix_news_swiper .swiper-button-prev:after, .ix_news_swiper .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{
        font-size: 14px;
    }
    .ix_ps_swiper .swiper-pagination{
        width: 70%;
        bottom: 16px;
    }
    .mt_58{
        margin-top: 24px;
    }
    .ix_about_bt:before{
        width: 58px;
        height: 58px;
        top: -12px;
    }
    .ix_about_bt{
        padding-top: 0px;
    }
    .ix_about_card_border{
        padding: 8px;
        border-radius: 12px;
    }
    .ix_about_card{
        height: 320px;
        border-radius: 8px;
    }
    .video_aniu,.video_aniu_svg,.video_aniu .video_aniu_top .circle01, .video_aniu .video_aniu_top .circle02{
        width: 48px;
        height: 48px;
    }
    .at_num_grid{
        gap: 8px;
    }
    .at_num_svg{
        position: static;
    }
    .at_num_grid .at_num{
        border-radius: 8px;
        padding: 14px 12px 24px 12px;
        text-align: center!important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .at_num_grid .at_num .at_num_flex{
        justify-content: center;
    }
    .at_num_grid .at_num .at_num_flex .num-item{
        font-size: 24px;
    }
    .at_num_grid .at_num .at_num_flex span{
        font-size: 14px;
        line-height: 18px;
    }
    .at_num_grid .at_num p{
        margin-top: 6px;
    }
    .at_num_svg{
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }
    .ix_our_services_g{
        gap: 8px;
    }
    .ix_our_services_card{
        border-radius: 8px;
    }
    .ix_our_services_card .card-body{
        padding: 24px 12px 24px 12px;
    }
    .ix_our_services_card .card-body svg{
        width: 38px;
        height: 38px;
    }
    .ix_our_services_card .card-body svg{
        margin-bottom: 18px;
    }
    .ix_our_services_card .card-body h5{
        margin-bottom: 8px;
    }
    .ix_news_swiper .ix_bt{
        padding-right: 98px;
    }
    .ix_news_card .fangda{
        border-radius: 8px;
    }
    .ix_news_card .fangda span{
        font-size: 0.7rem;
        padding: 6px 16px;
        bottom: 12px;
        right: 12px;
    }
    .ix_news_card .card-body h4{
        font-size: 0.9rem;
        line-height: 24px;
        height: 48px;
    }
    .ix_news_card .card-body{
        padding: 16px 0px 0px 0px;
    }
    .ix_news_swiper:before{
        display: none;
    }

    .ix_app_left_card .card-body .span1{
        width: 58px;
        height: 58px;
        border-radius: 8px;
    }
    .ix_app_left_card .card-body .span1 svg{
        width: 28px;
        height: 28px;
    }
    .ix_app_left_card .card-body h4:before{
        width: 48px;
    }
    .ix_app_left_card .card-body h4{
        margin-bottom: 20px;
    }
    .ix_app_left_card .card-body p{
        height: 80px;
    }
    .bottom_form{
        padding: 3px;
    }
    .bottom_form .form-control{
        font-size: 0.8rem;
        height: 42px;
    }
    .bottom_form a{
        font-size: 0.8rem;
        height: 42px;
        width: 88px;
    }
    .bottom_bg .bottom_follow li a{
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    .about_banner{
        height: 240px;
    }
    .about_banner_nav{
        bottom: 12px;
    }

    .service_img{
        border-radius: 12px;
        margin-bottom: 24px;
    }
    .about_bt .span2{
        font-size: 1.2rem;
        padding: 0px 12px;
    }
    .about_bt .span1, .about_bt .span3{
        width: 12px;
        height: 20px;
    }
    .about_bt .span1:after, .about_bt .span3:after
    ,.about_bt .span1:before, .about_bt .span3:before{
        width: 6px;
        height: 20px;
    }
    .service_g h4{
        margin-bottom: 12px;
    }
    .ps_ds_g{
        gap: 24px 8px;
    }
    .ps_ds_swiper_left,.ps_ds_services_g_card,.news_ds_nr,.contact_us_img{
        border-radius: 12px;
    }
    .pt_ds_bt{
        padding-bottom: 24px;
        margin-bottom: 24px;
    }
    .pt_ds_bt:after{
        width: 48px;
        height: 5px
    }
    .pt_ds_bt:before{
        bottom: 2px;
    }
    .ps_ds_services_g_card .card-body{
        padding: 38px 15px 48px 15px;
    }
    .ps_ds_services_g_card .card-body span{
        width: 68px;
        height: 68px;
        margin-bottom: 18px;
    }
    .ps_ds_services_g_card .card-body span svg{
        width: 28px;
        height: 28px;
    }
    .case_ds_form .form-control, .case_ds_form .form-select{
        padding: 6px 14px;
    }
    .case_ds_form .form_input_h, .case_ds_form .form-select{
        height: 48px;
    }
    .ps_ds_services_g{
        gap: 24px;
    }
    .ps_right_g{
        gap: 24px 8px;
    }
    .ps_sousuo{
        height: 52px;
    }
    .ps_sousuo .form-control{
        padding-left: 24px;
    }
    .ps_sousuo .search_anniu_top{
        width: 68px;
    }
    .news_ds_nr{
        padding: 24px 15px;
    }
    .news_ds_ul .list-inline-item:not(:last-child){
        margin-right: 14px;
    }
    .ns_ds_bottom{
        flex-direction: column;
    }
    .ns_ds_bottom ul{
        padding-right: 0px;
        padding-bottom: 24px;
    }
    .news_nav_swiper .swiper-wrapper .swiper-slide{
        margin: 0px 10px 0px 0px;
    }
    .news_card1 .news_card_left{
        height: 240px;
        border-radius: 12px;
    }
    .news_card1 .card-body h4{
        font-size: 1rem;
        height: 60px;
        line-height: 30px;
    }
    .news_card1 .card-body p{
        font-size: 0.8rem;
        line-height: 24px;
        height: 72px;
    }
    .news_swiper .swiper-button-next, .news_swiper .swiper-button-prev{
        width: 38px;
        height: 38px;
    }
    .news_swiper .swiper-button-prev{
        margin-left: -48px;
    }
    .news_g{
        gap: 24px 8px;
    }
    .news_card .card-body{
        padding: 12px 12px 0px 12px;
    }
    .news_card .card-body .ix_ps_card_more{
        height: 42px;
        font-size: 0.7rem;
    }
    .news_card .card-body .ix_ps_card_more i{
        font-size: 0.8rem;
    }
    .news_card .card-body h5{
        font-size: 0.9rem;
        line-height: 24px;
        height: 48px;
        margin-bottom: 6px;
    }
    .news_card .card-body p{
        font-size: 0.7rem;
        line-height: 20px;
        height: 40px;
    }
    .news_card .card-body .ix_ps_card_more{
        margin-top: 14px;
    }
    .contact_card .card-body img{
        width: 28px;
        height: 28px;
    }
    .application_g{
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }
    .at_whole_g{
        gap: 24px 8px;
    }
    .at_whole_card .fangda{
        border-radius: 8px;
    }
    .at_quality_right{
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }
    .at_production_top .swiper-wrapper .swiper-slide{
        margin: 0px 12px 0px 0px;
    }
}













/* 通用箭头基础：默认向右 */
.at_whole_g .at_whole_card .card-body img.at_whole_card_icon {
    transition: transform 0.2s;
}

/* 1、2、3 上排前3张：保持原向右箭头，无需改动 */

/* 第4张：上排最后一张，箭头旋转90度朝下，实现垂直向下 */
.at_whole_g .at_whole_card:nth-child(4) .card-body img {
    transform: rotate(90deg);
}

/* 5、6、7 下排前3张：箭头旋转180度向左 */
.at_whole_g .at_whole_card:nth-child(5),
.at_whole_g .at_whole_card:nth-child(6),
.at_whole_g .at_whole_card:nth-child(7) {
}
.at_whole_g .at_whole_card:nth-child(n+5):nth-child(-n+7) .card-body img {
    transform: rotate(180deg);
}

/* 第8张：下排最后一张，直接隐藏箭头 */
.at_whole_g .at_whole_card:nth-child(8) .card-body img {
    display: none !important;
}



/* 第4张卡片：上排最后一张 */
.at_whole_g .at_whole_card:nth-child(4) {
    position: relative;
}


/* 在第4张卡片右上角区域放一个向下箭头 */
.at_whole_g .at_whole_card:nth-child(4)::after {
    content: "";
    position: absolute;
    top: 16%;
    right: 8%;
    width: 24px;
    height: 24px;
    background-image: url("{HOME_THEME_PATH}img/at_whole_card_icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(90deg);
    pointer-events: none;
}




/* 父容器开启相对定位，用来给第4张内部箭头做位移基准 */
.at_whole_g {
    position: relative;
}
/* 卡片自身相对定位，方便内部箭头自由移动 */
.at_whole_card {
    position: relative;
}

/* ========== 1.上排前3张(1、2、3)：箭头原样不动，不用任何样式 ========== */

/* ========== 2.上排第4张核心：箭头朝下+下移到两行中间 ========== */
.at_whole_g .at_whole_card:nth-child(4) .card-body {
    /* 隐藏原来承载箭头的文字容器空间，避免占位 */
    position: absolute;
    width: 100%;
top: 82%;
    left: 0;
}
.at_whole_g .at_whole_card:nth-child(4) .card-body h5 {
    /* 标题正常留在卡片下方，不移动 */
    position: static;
}
.at_whole_g .at_whole_card:nth-child(4) .card-body img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(90deg); /* 水平居中 + 箭头向下 */
    top: 80px; /* 往上偏移，插到两行图片中间，数值按需调 */
    width: 26px;
}

/* ========== 3.下排5、6、7 箭头向左翻转 ========== */
.at_whole_g .at_whole_card:nth-child(5) .card-body img,
.at_whole_g .at_whole_card:nth-child(6) .card-body img,
.at_whole_g .at_whole_card:nth-child(7) .card-body img {
    transform: rotate(180deg);
}

/* ========== 4.下排第8张 直接隐藏箭头 ========== */
.at_whole_g .at_whole_card:nth-child(8) .card-body img {
    display: none !important;
}









/* 分页基础通用样式 + 移动端适配 */
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    gap: 6px;
}

/* 分页按钮a标签通用 */
.pagination li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #eee;
    border-radius: 4px;
    color: rgba(247, 180, 1, 1);
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    transition: 0.2s all ease;
}

/* 当前激活页 主黄色背景 */
.pagination li.active a {
    background-color: rgba(247, 180, 1, 1);
    color: #ffffff;
    border-color: rgba(247, 180, 1, 1);
}

/* 总数文字样式 无边框灰色 */
.pagination li:first-child a {
    border: none;
    color: #666;
    min-width: auto;
    padding: 0 8px;
}

/* hover交互 */
.pagination li a:hover:not(.active) {
    background-color: rgba(247, 180, 1, 0.1);
    border-color: rgba(247, 180, 1, 0.4);
}

/* ========== 手机端适配（768px以下） ========== */
@media (max-width: 768px) {
    .pagination {
        gap: 4px;
    }
    .pagination li a {
        min-width: 32px;
        height: 32px;
        font-size: 13px;
        padding: 0 6px;
    }
    nav[aria-label="Page navigation example"] {
        padding: 0 10px;
    }
    .ps_ds_swiper_left .swiper-wrapper .swiper-slide img{
    background: #fff;
    object-fit: scale-down;
    background: #D3EDEA;
    height: 480px;
}
}

/* 超小屏 480px 优化 */
@media (max-width: 480px) {
    .pagination li a {
        min-width: 28px;
        height: 28px;
        font-size: 12px;
    }
    .pagination li:first-child a {
        font-size: 12px;
    }
    .ps_ds_swiper_left .swiper-wrapper .swiper-slide img{
    background: #fff;
    object-fit: scale-down;
    background: #D3EDEA;
    height: 320px;
}
}