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

::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 8px;
    z-index: 10000;
    /*高宽分别对应横竖滚动条的尺寸*/
    /*height: 5px;*/
}
::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    background-color: #ccc;
    /*background-image: -webkit-linear-gradient(45deg, rgba(255, 93, 143, 1) 25%, transparent 25%, transparent 50%, rgba(255, 93, 143, 1) 50%, rgba(255, 93, 143, 1) 75%, transparent 75%, transparent);*/
}
::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #fff;
}

.section::-webkit-scrollbar{
    display: none;
}

/*控件*/
/* 禁用的指针 */
input:disabled + label {
    cursor: not-allowed
}

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

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

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

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

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

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

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

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

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

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

a{
    color: #333;
}

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

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

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

.pem{
    text-indent: 2em;
}

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

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

.opacity_5{
    opacity: 0.5;
}

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

.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: 12px 48px 12px 48px;
    background: linear-gradient(to right, rgba(243, 155, 80, 1.0), rgba(236, 108, 1, 1.0));
    color: #fff!important;
    font-size: 1.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: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(243, 155, 80, 1.0), rgba(236, 108, 1, 1.0));
    opacity: 0;
    transition: 0.5s;
}
.gengduo:hover:before{
    opacity: 1;
}
.gengduo span{
    position: relative;
}
.gengduo:hover{
    color: #fff!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: 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, 1);
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0);
    transition: all 0.5s ease;
}
.nav_min .container{
    padding: 0px;
}
.nav_min .navbar-brand{
    padding-top: 0px;
    padding-bottom: 0px;
    height: 68px;
    transition: 0.5s;
    margin-right: 68px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
}
.navbar-brand img{
    height: 100%;
    margin-bottom: 20px;
}

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

.search-wrapper{
    display: flex;
    align-items: center;
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 8px 8px 8px 16px;
    gap: 6px;
}
#preview-img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 6px;
    display: none; /* 默认隐藏 */
}
#search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    padding: 6px 0px 6px 16px;
}
.btn-group {
    display: flex;
    gap: 8px;
}
#image-input {
    display: none;
}
.search_sousuo{
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    width: 38px;
    height: 38px;
    padding: 0px;
    border-radius: 38px!important;
}
.search_sousuo:hover{
    background: #eee;
}
.search_sousuo2:hover{
    background: #FB5533;
}
.search_sousuo svg{
    width: 18px;
    height: 18px;
    fill: #000;
}
.search_sousuo2:hover svg{
    fill: #fff;
}

.nav_breadcrumb{
    margin-left: 68px;
    display: flex;
    gap: 12px;
}
.nav_gouwu{
    width: 44px;
    height: 44px;
    border-radius: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FDA031;
    position: relative;
}
.nav_gouwu:hover{
    background: #FB5533;
}
.nav_gouwu svg{
    width: 20px;
    height: 20px;
    fill: #fff;
    transition: 0.5s;
}
.nav_gouwu .nav_gouwu_shuju{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    border-radius: 18px;
    background: #FF0000;
    font-size: 9px;
    color: #fff;
    position: absolute;
    right: -4px;
    top: -4px;
}
.nav_logon{
    display: flex;
    align-items: center;
    background: #FB5533;
    font-size: 16px;
    padding: 3px 3px;
    border-radius: 50px;
    color: #fff;
}
.nav_logon svg{
    width: 20px;
    height: 20px;
    fill: #fff;
}
.nav_logon:hover{
    background: #FB5533;
    color: #fff;
}

.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.4);
    margin: 0px;
    animation: nav_xialaxg 0.5s;
    -moz-animation: nav_xialaxg 0.5s; /* Firefox */
}
@keyframes nav_xialaxg
{
    0%   {
        margin-top: 10px;
        opacity: 0;
    }
    100% {
        margin-top: 0px;
        opacity: 1;
    }
}
@media (min-width: 1200px){
    .nav_xiala:hover .dropdown-menu{
        display: block;
        transition: all .5s;
    }
    .nav_xiala2:hover .dropdown-menu{
        display: block;
        transition: all .5s;
    }
}
.menu_a a{
    padding: 12px 0px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.5s;
    font-size: 15px;
    line-height: 24px;
    position: relative;
    color: #000;
    border-bottom: 1px solid #eee;
}
.menu_a a:last-child{
    border: none;
}
.menu_a a:hover{
    color: #EC6C01;
    padding: 12px 0px 12px 6px;
}
.pc_yuyan .dropdown-menu{
    left: auto;
    right: 0px;
    width: 180px;
}
.pc_yuyan .nav-link{
    width: 44px;
    height: 44px;
    border-radius: 44px;
    background: #E52629;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pc_yuyan .nav-link:hover{
    background: #FB5533;
}
.pc_yuyan .nav-link svg{
    width: 20px;
    height: 20px;
    fill: #fff;
}

.nav_xiala .dropdown-toggle,.nav_xiala2 .dropdown-toggle{
    display: none;
    position: absolute;
    top: 8px;
    right: 0px;
    border: none;
    border-radius: 0px;
    padding: 10px 10px;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    border-radius: 50px;
    transform:rotate(0deg);
    transition: 0.5s;
    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-item .btn-check:checked+.btn,.nav-item .btn.show,.nav-item .btn:first-child:active,.nav-item :not(.btn-check)+.btn:active{
    transform:rotate(180deg);
    background: #E52629;
    color: #fff;
}

/*侧边栏目*/
.btn-close{
    box-shadow: none;
    border: none;
}
.offcanvas_anniu{
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: #fff;
    padding: 15px 15px 38px 15px;
    width: 100%;
}
.offcanvas_anniu .gengduo{
    display: block;
}
.offcanvas_a{
    background: #f9f9f9;
    padding: 8px 48px 8px 8px;
}
.offcanvas_a p{
    font-size: 14px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.offcanvas_a .offcanvas_a_img{
    width: 88px;
    height: 88px;
    object-fit: scale-down;
}
.offcanvas_ul li{
    position: relative;
}
.offcanvas_ul li:not(:last-child){
    margin-bottom: 10px;
}
.offcanvas_ul_trash{
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    padding: 10px;
    display: inline-block;
}

.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: #fff;
    transform: rotate(45deg);
}
.search_anniu2:after{
    content: "";
    position: absolute;
    top: 28px;
    left: 15px;
    width: 28px;
    height: 1px;
    background: #fff;
    transform: rotate(-45deg);
}
.search_anniu2:hover{
    transform: rotate(180deg);
}
.tanchuang_tuichu{
    position: absolute;
    height: 58px;
    right: -58px;
    top: 0px;
    background: #E52629;
    cursor: pointer;
    transition: all .5s;
}
.tanchuang_tuichu:hover{
    background: #E72144;
}
.tanchuang_tuichu:hover .search_anniu2:after{
    background: #fff;
}
.tanchuang_tuichu:hover .search_anniu2:before{
    background: #fff;
}

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

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

.ix_nr_g{
    display: flex;
}
.ix_nr_g_left{
    width: 230px;
    position: relative;
    left: -14px;
    padding-bottom: 24px;
    flex-shrink: 0;
}
.ix_nr_g_left_nr{
    position: sticky;
    top: 108px;
    padding-top: 24px;
}
.ix_nr_g_right{
    margin-left: 38px;
    flex-grow: 1!important;
    min-width: 0;
    overflow: hidden;
    word-break: break-all;
}
.ix_nav{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
.ix_nav .nav-item .nav-link{
    display: flex;
    font-size: 18px;
    line-height: 24px;
    padding: 12px 18px;
}
.ix_nav .nav-item .nav-link svg{
    width: 18px;
    height: 18px;
    margin-right: 14px;
    flex-shrink: 0;
    margin-top: 3px;
    fill: #000;
}
.ix_nav .nav-item .nav-link div{
    flex-grow: 1!important;
    min-width: 0;
    overflow: hidden;
    word-break: break-all;
}
.ix_nav .nav-item .nav-link:hover,.ix_nav .active .nav-link{
    background: url(../img/ix_nav_bg.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: #E52629;
}
.ix_nav .nav-item .nav-link:hover svg,.ix_nav .active .nav-link svg{
    fill: #E52629;
}

.ps_nav_swiper{
    padding-bottom: 0px;
    position: relative;
}
.ps_nav_swiper:before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background: #D1D1D1;
}
.ps_nav_swiper .swiper-wrapper{
    height: auto;
}
.ps_nav_swiper .swiper-wrapper .swiper-slide{
    width: auto;
    cursor: pointer;
    background: none;
    color: #000;
    font-size: 16px;
    line-height: 30px;
    padding-bottom: 12px;
    margin-right: 60px;
    position: relative;
}
.ps_nav_swiper .swiper-wrapper .active{
    color: #E52629;
}
.ps_nav_swiper .swiper-wrapper .active:before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 3px;
    background: #E52629;
}
.ps_nav_swiper .swiper-wrapper .swiper-slide:hover{
    color: #E52629;
}

.ix_nr_g_right_nr{
    padding-top: 24px;
}
.waterfall {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.ps_card{
    overflow: hidden;
}
.ps_card .fangda{
    border-radius: 12px;
}
.ps_card .card-body{
    padding: 12px 0px 0px 0px;
}

.ps_nav_accordion{
    padding: 0px;
    display: grid;
    gap: 10px;
}
.ps_nav_accordion .accordion-item{
    border-bottom: none;
}
.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: flex;
    align-items: center;
    font-size: 18px;
    line-height: 1.8rem;
    padding: 12px 32px 12px 18px;
}
.ps_nav_accordion .accordion-header a svg{
    width: 18px;
    height: 18px;
    margin-right: 12px;
    flex-shrink: 0;
    fill: #000;
}
.ps_nav_accordion .accordion-header a:hover svg,.ps_nav_accordion .active a svg{
    fill: #E52629;
}
.ps_nav_accordion .accordion-header a:hover,.ps_nav_accordion .active a{
    background: url(../img/ix_nav_bg.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    color: #E52629;
}
.ps_nav_accordion .accordion-button:not(.collapsed),.ps_nav_accordion .accordion-button:focus{
    color: #E52629;
    background: none;
    box-shadow: none;
    outline: none;
}
.ps_nav_accordion .accordion-button::after{
    display: none;
}
.ps_nav_accordion .accordion-button span{
    position: absolute;
    top: 11px;
    right: 10px;
    color: #fff;
    background: #E52629;
    width: 32px;
    height: 32px;
    border-radius: 32px;
    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;
    color: #fff;
    background: #E52629;
}
.ps_nav_accordion .accordion-body{
    background: #F3F3F3;
    padding: 0px 18px;
    border-radius: 12px;
}
.ps_nav_accordion .accordion-body ul li a{
    display: block;
    padding: 12px 0px 12px 0px;
    position: relative;
    color: #666;
}
.ps_nav_accordion .accordion-body ul li a:hover{
    color: #E52629;
}
.ps_nav_accordion .accordion-body ul li:not(:last-child) a{
    border-bottom: 1px solid #E3E3E3;
}

/*bottom*/
.bottom_dibu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

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

.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: 16px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: #FFF;
    color: #FB5533;
    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: #FB5533;
    fill: #FB5533;
    width: 16px;
    height: 16px;
}
.bottom_bg .bottom_follow li a{
    color: #FB5533;
}
.bottom_bg .bottom_follow li a:hover{
    color: #fff;
    background: #FB5533;
    border: 1px solid #FB5533;
}
.bottom_bg .bottom_follow li a:hover svg{
    fill: #fff;
}

/* ----------------------------------------------------------------
    内页
----------------------------------------------------------------- */
.ps_nav_swiper2{
    padding-top: 18px;
    padding-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 38px;
}
.ps_nav_swiper2 a{
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(229, 38, 41, 0);
}
.ps_nav_swiper2 a.active{
    border: 1px solid rgba(229, 38, 41, 1);
    color: #E52629;
}

.huiyuan_card{
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
}
.huiyuan_card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.huiyuan_card .card-img-overlay{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 25%;
    padding-right: 25%;
}
.huiyuan_card .card-img-overlay h2{
    font-size: 40px;
    line-height: 58px;
    margin-bottom: 18px;
}
.huiyuan_card .card-img-overlay h4{
    font-size: 20px;
    line-height: 32px;
}

.huiyuan_g{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px 30px;
    margin-top: 58px;
}
.huiyuan_g .card{
    border-radius: 14px;
    background: #EFEFEF;
    cursor: pointer;
}
.huiyuan_g .card .card-body{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 24px;
}
.huiyuan_g .card .card-body span{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 70px;
    background: #D9BD9A;
}
.huiyuan_g .card .card-body span svg{
    width: 26px;
    height: 26px;
    fill: #fff;
}
.huiyuan_g .card .card-body p{
    font-size: 16px;
    line-height: 30px;
    margin-top: 24px;
}
.huiyuan_g .card:hover{
    background: #FB5533;
}
.huiyuan_g .card:hover .card-body p{
    color: #fff;
}
.huiyuan_g .card:hover .card-body span{
    background: #fff;
}
.huiyuan_g .card:hover .card-body span svg{
    fill: #E52629;
}

.about_left_img{
    border-radius: 20px;
}
.about_right{
    margin-top: 48px;
}
.about_right h2{
    font-size: 32px;
    margin-bottom: 16px;
}
.about_right p{
    line-height: 40px;
}

.ps_ds_bt{
    font-size: 18px;
    margin-bottom: 18px;
}

.ps_ds_f{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 28px;
}
.ps_ds_f_left{
    width: 77%;
    border: 1px solid #D1D1D1;
    border-radius: 18px;
    padding: 48px 48px 48px 112px;
    position: relative;
}
.ps_ds_f_right{
    width: 18%;
}
.ps_ds_f_right_g{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}
.ps_ds_f_right_bt{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
.ps_ds_f_right_bt h5{
    flex-grow: 1;
    padding-right: 14px;
}
.ps_ds_f_right_bt a{
    flex-shrink: 0;
    margin-top: 6px;
}
.ps_ds_f_left_fanhui{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 5px;
    background: #E8E8E8;
    color: #000;
    font-size: 22px;
    transition: 0.5s;
    position: absolute;
    left: 32px;
    top: 32px;
    z-index: 500;
}
.ps_ds_f_left_fanhui:hover{
    background: #E52629;
    color: #fff;
}

.case_ds_form_ul li a{
    display: inline-block;
    background: #FB5533;
    border-radius: 50px;
    padding: 12px 48px;
    color: #fff;
    transition: 0.5s;
}
.case_ds_form_ul li .case_ds_form_ul_a2{
    background: #FDA031;
    color: #fff;
}
.case_ds_form_ul li a:hover{
    color: #fff;
    background: #E52629;
}

.magnifier-container {
    position: relative;
    width: 100%;
    cursor: crosshair;
}
.magnifier-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.magnifier-mask {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.3);
    display: none;
    pointer-events: none;
}
.magnifier-preview {
    position: absolute;
    top: 0;
    left: 103%;
    width: 400px;
    height: 450px;
    overflow: hidden;
    display: none;
    background: #fff;
}
.magnifier-big-img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.ps_ds_nr{
    margin-top: 14px;
}
.ps_ds_nr_bt{
    font-size: 28px;
    line-height: 38px;
    border-bottom: 1px solid #C4C4C4;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.ps_ds_nr_jg{
    font-size: 26px;
}
.ps_ds_nr_ul{
    margin-top: 24px;
}
.ps_ds_nr_ul li{
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    line-height: 30px;
    margin-bottom: 8px;
}
.ps_ds_nr_ul li span{
    width: 100px;
    flex-shrink: 0;
    font-weight: 700;
}
.ps_ds_nr_ul li p{
    flex-grow: 1;
    min-width: 0;
    overflow: hidden;
    word-break: break-all;
    color: #777171;
}

.ps_ds_swiper_top{
    border-radius: 12px;
}
.ps_ds_swiper_top .swiper-wrapper,.ps_ds_swiper_bottom .swiper-wrapper{
    height: auto;
}
.ps_ds_swiper_top .swiper-button-next,.ps_ds_swiper_top .swiper-button-prev{
    width: 48px;
    height: 48px; 
    border-radius: 8px;
    background: #E5E5E5;
    transition: 0.5s;
}
.ps_ds_swiper_top .swiper-button-prev{
    left: 15px;
    margin-top: -24px;
}
.ps_ds_swiper_top .swiper-button-next{
    right: 15px;
    margin-top: -24px;
}
.ps_ds_swiper_top .swiper-button-prev:after,.ps_ds_swiper_top .swiper-button-next:after{
    color: #000;
    font-size: 18px;
}
.ps_ds_swiper_top .swiper-button-prev:hover:after,.ps_ds_swiper_top .swiper-button-next:hover:after{
    color: #fff;
}
.ps_ds_swiper_top .swiper-button-next:hover,.ps_ds_swiper_top .swiper-button-prev:hover{
    background: #E52629;
}
.ps_ds_swiper_bottom .swiper-wrapper .swiper-slide{
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}
.ps_ds_swiper_bottom .swiper-wrapper .swiper-slide img{
    width: 100%;
    height: 100%;
    background: #fff;
    object-fit: scale-down;
}
.ps_ds_swiper_bottom .swiper-wrapper .swiper-slide-thumb-active{
    border: 3px solid #E52629;
}
.ps_ds_swiper_bottom{
    margin-top: 14px;
}

/* ----------------------------------------------------------------
    登录
----------------------------------------------------------------- */
.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: url(../img/logon_g_bg.png);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.login_logo,.login_logo:hover{
    display: flex;
    align-items: center;
    gap: 28px;
    color: #fff;
}
.login_logo img{
    width: 124px;
    height: 124px;
    border-radius: 24px;
    background: #fff;
    object-fit: scale-down;
    padding: 18px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.16);
}
.login_logo p{
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    text-shadow: 2px 2px 4px #666;
}

.logon_form{
    background: #fff;
    border-radius: 24px;
    padding: 28px 38px 48px 38px;
}
.logon_fh{
    display: inline-block;
    line-height: 20px;
  height: 30px;
  float: left;
}
.logon_fh a{
    display: flex;
    align-items: center;
    font-size: 16px;
}
.logon_fh a svg{
    width: 24px;
    height: 24px;
    margin-right: 6px;
}
.logon_form_bt{
    margin: 20px 0px 30px 0px;
    font-size: 30px;
    line-height: 38px;
}
.logon_fh a:hover svg{
    fill: #E52629;
}

.logon_form_group{
    border-bottom: 1px solid #ddd;
    align-items: flex-start;
}
.logon_form_group .input-group-text svg{
    width: 24px;
    height: 24px;
}
.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: 16px;
    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: #FB5533;
    color: #fff;
    border-radius: 50px!important;
    font-size: 14px;
    line-height: 18px;
    padding: 10px 32px;
    margin-top: 7px;
}
.logon_form_group button:hover,.logon_form_group button:focus{
    background: #E52629;
    color: #fff;
}
.login_denglu{
    display: block;
    background: #E52629;
    color: #fff!important;
    text-align: center;
    border-radius: 8px;
    font-size: 18px;
    padding: 12px;
    margin-top: 24px;
    margin-bottom: 16px;
}
.login_denglu:hover{
    background: #FB5533;
    color: #fff!important;
}
.login_checkbox{
    display: flex;
    justify-content: center;
}
.login_qtdlfs{
    margin-top: 29px;
    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: 8px 24px;
  height: 40px;
}

.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:hover span{
    border: 1px solid #E52629;
}

.privacy_policy_nr{
    height: 70vh;
    overflow: auto;
}

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

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

@media (max-width: 1600px){
    .ps_ds_f{
        flex-direction: column;
    }
    .ps_ds_f_left{
        width: 100%;
    }
    .ps_ds_f_right{
        width: 100%;
        margin-top: 24px;
    }
    .ps_ds_f_right_g{
        column-count: 4;
        column-gap: 16px;
        display: block;
    }
}

@media (max-width: 1400px){
    .nav_min{
        padding: 0px 3rem 0px 3rem;
    }
    .wrap_fluid{
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .huiyuan_g{
        gap: 24px 18px;
    }
    .huiyuan_g .card .card-body{
        padding: 38px 18px;
    }
    .huiyuan_card{
        height: 300px;
    }

    .waterfall {
        grid-template-columns: repeat(5, 1fr);
    }
}

@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_nr_g_right{
        margin-left: 30px;
    }
    .ps_nav_swiper2{
        gap: 12px 14px; 
    }
    .ps_nav_swiper2 a{
        padding: 6px 16px;
    }
    .ps_ds_f_left{
        padding: 24px;
    }

    .waterfall {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199px){
    .md_none{
        display: none;
    }
    .nav_min .navbar-brand{
        height: 38px;
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    /*
    .nav_min .navbar-brand,.is-active .navbar-brand{
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 14px;
        margin-bottom: 14px;
        padding: 0px;
        height: 30px;
    }
    */
    .nav_min{
        padding: 0px;
        display: flex;
        /*justify-content: center;*/
    }
    .nav_min .nav_container{
        position: relative;
        /*justify-content: center;*/
        padding: 0px;
    }
    .md_nav_container{
        position: relative;
    }
    .nav_min .container{
        position: relative;
        width: 100%;
        padding: 0px;
    }
    .nav_min .md_sousuo_container{
        display: block;
    }
    .md_sousuo{
        position: absolute;
        right: 58px;
        top: 8px;
        background: none;
    }
    .md_sousuo:hover{
        background: none;
    }
    .search_anniu_top2{
        width: 68px;
        height: 58px;
    }
    .md_yuyan{
        position: absolute;
        right: 15px;
        top: 20px;
    }
    .yuyan_top_xiala{
        position: absolute;
        right: 48px;
    }

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

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

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

    .wrap_fluid{
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .nav_breadcrumb{
        position: absolute;
        right: 58px;
        top: 10px;
    }
    .ix_nr_g{
        display: flex;
        flex-direction: column;
    }
    .ix_nr_g_right{
        margin-left: 0px;
    }
    .ix_nr_g_left{
        width: 100%;
        left: 0px;
    }
    .nav_gouwu,.nav_logon{
        width: 38px;
        height: 38px;
    }
    .nav_gouwu svg,.nav_logon svg{
        width: 14px;
        height: 14px;
    }
    .nav_logon{
        justify-content: center;
        padding: 0px;
    }
    .nav_min{
        box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05);
    }
    .ix_nav .nav-item .nav-link:hover, .ix_nav .active .nav-link{
        background: none;
    }
    .ix_nav{
        gap: 0px;
    }
    .ix_nav .nav-item .nav-link{
        line-height: auto;
    }

    .ps_nav_swiper .swiper-wrapper .swiper-slide{
        margin-right: 48px;
        font-size: 14px;
    }

    .huiyuan_g{
        grid-template-columns: repeat(3, 1fr);
    }
    .huiyuan_card .card-img-overlay h2{
        font-size: 30px;
        line-height: 38px;
    }
    .huiyuan_card .card-img-overlay h4{
        font-size: 16px;
        line-height: 28px;
    }

    .login_logo{
        margin-bottom: 58px;
        flex-direction: column;
    }
    .login_logo p{
        font-size: 38px;
    }
}

@media (max-width: 980px){
    .ps_nav_swiper .swiper-wrapper .swiper-slide{
        margin-right: 30px;
    }

    .ps_nav_swiper2 a{
        padding: 6px 12px;
    }
    .huiyuan_g {
        grid-template-columns: repeat(2, 1fr);
    }
    .huiyuan_card .card-img-overlay{
        padding-left: 10%;
        padding-right: 10%;
    }

    .ps_ds_f_right_g{
        column-count: 3;
    }
    .ps_ds_nr{
        padding: 24px 0px;
    }
    .login_logo p{
        font-size: 28px;
    }
    .login_logo img{
        width: 88px;
        height: 88px;
        border-radius: 12px;
    }

    .waterfall {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px){
    .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;
    }
    
    .huiyuan_card .card-img-overlay h2,.ps_ds_nr_bt,.logon_form_bt,.about_right h2{
        font-size: 1.4rem;
        line-height: 30px;
    }
    .login_denglu{
        font-size: 1rem;
        line-height: 24px;
    }
    .ps_card .card-body h6,.huiyuan_card .card-img-overlay h4,.huiyuan_g .card .card-body p,.ps_ds_nr_ul li p,.ps_ds_nr_ul li span,.logon_fh a,.p_16 p, .p_16{
        font-size: 0.9rem;
        line-height: 24px;
    }

    .search-wrapper{
        padding: 4px 4px 4px 8px;
    }
    .ps_nav_swiper2{
        gap: 4px;
    }
    .ps_nav_swiper2 a{
        font-size: 12px;
        padding: 3px 8px;
    }

    .huiyuan_card{
        height: 200px;
    }
    .huiyuan_g{
        margin-top: 38px;
        gap: 8px;
    }
    .huiyuan_g .card .card-body span{
        width: 58px;
        height: 58px;
    }
    .huiyuan_g .card .card-body p{
        margin-top: 16px;
    }
    .huiyuan_g .card .card-body span svg{
        width: 20px;
        height: 20px;
    }

    .ps_ds_nr{
        padding: 14px 0px;
        margin-top: 8px;
    }
    .case_ds_form_ul li a{
        font-size: 0.9rem;
        padding: 8px 24px;
    }
    .ps_ds_f_right_g {
        column-count: 2;
        column-gap: 8px;
    }
    .ps_ds_f_left{
        padding: 15px;
    }
    
    .login_logo, .login_logo:hover{
        gap: 14px;
    }
    .login_logo img{
        width: 68px;
        height: 68px;
        padding: 12px;
        border-radius: 12px;
    }
    .login_logo p{
        font-size: 20px;
    }
    .logon_form{
        padding: 24px 24px 32px 24px;
    }
    .logon_form_group .form-control{
        font-size: 0.9rem;
    }
    .login_qtdlfs_nr{
        gap: 12px 24px;
    }

    .about_left_img{
        border-radius: 14px;
    }
    .about_right{
        margin-top: 24px;
    }

    .waterfall {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 8px;
    }
    .ps_card .card-body{
        padding: 8px 0px 0px 0px;
    }
    .ps_ds_f_left_fanhui{
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .ps_ds_swiper_top .swiper-button-next, .ps_ds_swiper_top .swiper-button-prev{
        width: 38px;
        height: 38px;
        margin-top: -19px;
    }
}
















/* 登录图标整体 */
.nav-item.nav_logon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

/* 红色圆形图标按钮 */
.nav-item.nav_logon .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FB5533;
  text-decoration: none;
  transition: all 0.2s ease;
}
.nav-item.nav_logon .nav-link:hover {
  background-color: #e64422;
}

/* 图标白色 */
.nav-item.nav_logon .nav-link svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* ======================
   下拉菜单（彻底左移 不遮挡）
====================== */
.nav-item.nav_logon .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  transform: translateX(-80px); /* 向左移 20px → 完全不被遮挡 */
  z-index: 9999;
  min-width: 180px;
  padding: 0;
  margin: 1px 0 0;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  display: none;
  overflow: hidden;
}

/* 鼠标悬浮显示下拉 */
.nav-item.nav_logon:hover .dropdown-menu {
  display: block;
}

/* 下拉内容区 */
.nav_logon_anniu {
  text-align: center;
  padding: 0 !important;
}

/* ======================
   两个按钮 不同底色
====================== */
/* 登录按钮（灰色清爽） */
.nav_logon_anniu a:nth-child(1) {
  background-color: #f8f9fa;
  color: #333;
  padding: 14px 16px;
  display: block;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* 注册按钮（红色主题） */
.nav_logon_anniu a:nth-child(2) {
  background-color: #FB5533;
  color: #fff;
  padding: 14px 16px;
  display: block;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* ======================
   鼠标悬浮 各自变色
====================== */
/* 登录 hover 变蓝灰色 */
.nav_logon_anniu a:nth-child(1):hover {
  background-color: #dee2e6 !important;
  color: #222 !important;
}

/* 注册 hover 变深红 */
.nav_logon_anniu a:nth-child(2):hover {
  background-color: #e64422 !important;
  color: #fff !important;
}

/* 退出按钮样式 */
.nav_logon_anniu a.exit {
  background-color: #f8f9fa !important;
  color: #666 !important;
}
.nav_logon_anniu a.exit:hover {
  background-color: #ffeeee !important;
  color: #FB5533 !important;
}

/* ======================
   移动端适配
====================== */
@media (max-width: 768px) {
  .nav-item.nav_logon .nav-link {
    width: 36px;
    height: 36px;
  }
  .nav-item.nav_logon .nav-link svg {
    width: 18px;
    height: 18px;
  }
  .nav-item.nav_logon .dropdown-menu {
    transform: translateX(0);
    left: 0;
    right: auto;
    min-width: 160px;
  }
}



.logon_form_a, .logon_continue {
  display: block;
  text-align: center;
  background: #fb5533;
  color: #fff;
  border-radius: 8px;
  padding: 14px 15px;
  font-size: 18px;
  line-height: 24px;
  transition: 0.5s;
  margin-top: 24px;
  font-weight: 700;
  width: 100%;
  border: none;
}








.logon_g9 {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: minmax(0,1fr) auto;
  grid-template-columns: minmax(0,1fr);
  justify-content: center;
  align-items: center;

}




.limit-img {
    width: 100% !important;
    height: 350px !important;
    object-fit: cover !important;
    display: block;
}












/* 分页容器全局重置 */
.pagination {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 20px 0;
  gap: 6px; /* 分页按钮间距 */
  justify-content: center; /* 居中排版，需要左对齐改为flex-start */
}

/* 单个li按钮通用 */
.pagination > li {
  margin: 0;
}

/* a标签基础样式 */
.pagination > li > a {
  display: inline-block;
  min-width: 36px;
  height: 36px;
  line-height: 36px;
  padding: 0 10px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  background: #fff;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

/* 当前激活页码样式（主题红色） */
.pagination > li.active > a {
  background-color: #E52629;
  border-color: #E52629;
  color: #ffffff;
}

/* hover悬浮效果 */
.pagination > li:not(.active) > a:hover {
  background-color: #E52629;
  border-color: #E52629;
  color: #fff;
}

/* 总条数文字按钮（无链接样式） */
.pagination > li:first-child > a {
  border: none;
  background: transparent;
  min-width: auto;
  padding: 0 8px;
  color: #666;
}
.pagination > li:first-child > a:hover {
  background: transparent;
  color: #666;
}

/* 移动端适配：屏幕小于768px手机缩小尺寸 */
@media screen and (max-width: 768px) {
  .pagination > li > a {
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 13px;
    padding: 0 6px;
  }
  .pagination {
    gap: 4px;
  }
}