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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pem{
    text-indent: 2em;
}

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

.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: #EC9600!important;
}
.text_000{
    color: #000;
}

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

.no_padding{
    padding: 0px;
}
.no_padding_left{
    padding-left: 0px;
}
.no_padding_right{
    padding-right: 0px;
}
.pb-6{
    padding-bottom: 88px;
}
.pt-6{
    padding-top: 88px;
}
.mb-6{
    margin-bottom: 88px;
}
.mt-6{
    margin-top: 88px;
}
.mb_30{
    margin-bottom: 30px;
}
.pb-7{
    padding-bottom: 120px;
}
.pt-7{
    padding-top: 120px;
}

.no_margin{
    margin: 0px;
}

.row_40{
    margin-left: -40px;
    margin-right: -40px;
}
.col_40{
    padding-left: 40px;
    padding-right: 40px;
}
.row_30{
    margin-left: -30px;
    margin-right: -30px;
}
.col_30{
    padding-left: 30px;
    padding-right: 30px;
}
.row_24{
    margin-left: -24px;
    margin-right: -24px;
}
.col_24{
    padding-left: 24px;
    padding-right: 24px;
}
.row_12{
    margin-left: -12px;
    margin-right: -12px;
}
.col_12{
    padding-left: 12px;
    padding-right: 12px;
}
.row_7{
    margin-left: -7px;
    margin-right: -7px;
}
.col_7{
    padding-left: 7px;
    padding-right: 7px;
}

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

.hvr-float{
    display: block;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    transition: box-shadow 0.5s,transform 0.5s;
    -webkit-transition: box-shadow 0.5s,transform 0.5s; /* Safari */
}
.hvr-float:hover, .hvr-float:focus, .hvr-float:active {
    -webkit-transform:translateY(-8px);
    transform:translateY(-8px);
    box-shadow: 0px 10px 30px rgba(31, 72, 161, 0.1);
}

.gengduo{
    padding: 12px 48px 12px 48px;
    background: linear-gradient(to right, rgba(233, 109, 0, 1.0), rgba(233, 0, 41, 1.0));
    color: #fff!important;
    font-size: 1rem;
    line-height: 24px;  
    pointer-events: auto;
    transition: 0.5s;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.gengduo:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(233, 109, 0, 1.0), rgba(233, 0, 41, 1.0));
    opacity: 0;
    transition: 0.5s;
}
.gengduo:hover:before{
    opacity: 1;
}
.gengduo span{
    position: relative;
}
.gengduo:hover{
    color: #fff!important;
}

.p_mb.text-muted p img {
    width: 100%;
}


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

/* ----------------------------------------------------------------
    首页
----------------------------------------------------------------- */
/*ix_nav_top*/
.ix_nav_top{
    background: linear-gradient(to right, rgba(233, 109, 0, 1.0), rgba(233, 0, 41, 1.0));
}
.ix_nav_top_f{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ix_nav_top_f p{
    padding-right: 24px;
}
.ix_nav_top_f_right{
    display: flex;
    align-items: center;
}
.ix_nav_top_f_right a{
    color: #fff;
    display: inline-block;
    padding: 8px 16px;
}
.ix_nav_top_f_right a svg{
    width: 14px;
    height: 14px;
    fill: #fff;
}
.pc_yuyan:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 1px;
    height: 14px;
    transform: translate(0%, -50%);
    background: rgba(255, 255, 255, 0.5);
}

.nav_sousuo{
    background: #323336;
}
.nav_sousuo .container_style{
    padding-top: 80px;
    padding-bottom: 80px;
}
.nav_sousuo .sousuo_control{
    height: 58px;
}
.nav_sousuo  .search_anniu_top2{
    height: 58px;
    width: 88px;
}
.nav_sousuo .container_style ul li a{
    color: #fff;
    font-size: 14px;
}
.nav_sousuo .container_style ul li a:hover{
    color: #E72144;
}

/*nav*/
.nav_min{
    padding: 0px 0px 0px 0px;
    border: none;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}
.nav_min .container{
    padding: 0px;
}
.nav_min .navbar-brand{
    padding-top: 0px;
    padding-bottom: 0px;
    
    transition: 0.5s;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
}
.navbar-brand img{
    /*width: 146px;*/
    /*height: 36px;*/
    /*border-radius: 36px;*/
    /*object-fit: scale-down;*/
    /*padding: 8px;*/
}
.navbar-brand img:nth-child(1){
    /*background: #E96603;*/
}
.navbar-brand img:nth-child(2){
    background: #E91C1E;
}
.navbar-brand img:nth-child(3){
    background: #B33A68;
}
.nav_min .navbar-nav .nav-item{
    margin: 0px 80px 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: 18px;
    line-height: 18px;
    color: #000;
    /*text-transform: uppercase;*/
}
/*.nav_min .navbar-nav .nav_xiala .nav-link{
    padding-right: 24px;
}
.nav_min .nav-link span{
    font-size: 1rem;
}
*/

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

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

.navbar-toggler,.navbar-toggler:focus{
    border: none;
    padding: 6px 15px 10px 15px;
    margin: 14px 0px 13px 0px;
    outline: none;
    box-shadow: none;
    position: absolute;
    right: 0px;
    top: 0px;
}
.navbar-toggler .icon-bar{
    display: block;
    width: 22px;
    height: 1px;
    border-radius: 1px;
    background: #000;
    margin-top: 4px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
/* ANIMATED X */
.navbar-toggler .icon-bar:nth-of-type(1) {
    -webkit-transform: translateY(5px) rotate(-45deg);
    -ms-transform: translateY(5px) rotate(-45deg);
    transform: translateY(5px) rotate(-45deg);
}
.navbar-toggler .icon-bar:nth-of-type(2) {
    opacity: 0;
}
.navbar-toggler .icon-bar:nth-of-type(3) {
    -webkit-transform: translateY(-5px) rotate(45deg);
    -ms-transform: translateY(-5px) rotate(45deg);
    transform: translateY(-5px) rotate(45deg);
}
/* ANIMATED X COLLAPSED */
.navbar-toggler.collapsed .icon-bar:nth-of-type(1) {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}
.navbar-toggler.collapsed .icon-bar:nth-of-type(2) {
    opacity: 1;
    filter: alpha(opacity=100);
}
.navbar-toggler.collapsed .icon-bar:nth-of-type(3) {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

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

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

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

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

.ix_sousuo{
    display: none;
}

.pc_yuyan{
    margin-right: 0rem;
    margin-left: 0rem;
    z-index: 2000;
}
.pc_yuyan .dropdown-menu{
    left: auto;
    right: 0px;
}
.pc_yuyan .nav-link{
    padding-left: 16px;
    padding-right: 16px;
}
.pc_yuyan .nav-link span{
    font-size: 1rem;
    position: absolute;
    right: 0px;
    transition: all 0.3s;
}
.pc_yuyan:hover .nav-link span{
    transform: rotate(180deg);
    color: #2F6CF2;
}
.pc_yuyan .nav-link{
    padding: 6px 28px 6px 16px;
    display: flex;
    align-items: center;
    color: #fff!important;
    transition: 0.5s;
    font-size: 12px;
    line-height: 22px;
    background: none;
    border-radius: 0px;
}
.pc_yuyan .nav-link i{
    font-size: 18px;
}
.pc_yuyan .nav-link span{
    right: 0px;
    font-size: 14px;
}
.pc_yuyan .nav-link:before{
    content: none;
}
.pc_yuyan .dropdown-menu{
    width: 160px;
}
.pc_yuyan svg{
    fill: #fff;
}
.pc_yuyan:hover .nav-link{
    color: #fff;
}
.pc_yuyan:hover .nav-link span{
    color: #fff;
}

.md_sousuo{
    width: 42px;
    height: 42px;
    border-radius: 42px;
    transition: all .5s;
    background: linear-gradient(to top, rgba(170, 145, 58, 1.0),rgba(206, 183, 96, 1.0),rgba(170, 145, 58, 1.0));
}
/*.md_sousuo:hover{
    background: #2F6CF2;
}*/
.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: #666;
    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 #666;
    transition: all .5s;
}
.md_search_anniu_top{
    margin-top: 0px;
}
.search_anniu_top:hover:before{
    background: #666;
}
.search_anniu_top:hover:after{
    border: 1px solid #666;
}
.search_anniu_top2{
    display: inline-block;
    width: 58px;
    height: 42px;
    position: relative;
    background: #fff;
    border: none;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}
.search_anniu_top2:before{
    content: "";
    position: absolute;
    margin: auto;
    top: 13px;
    right: 1px;
    bottom: 0;
    left: 15px;
    width: 6px;
    height: 1px;
    background: #666;
    transform: rotate(45deg);
    transition: all .5s;
}
.search_anniu_top2:after{
    content: "";
    position: absolute;
    margin: auto;
    top: -3px;
    right: 4px;
    bottom: 0; 
    left: 0px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #666;
    transition: all .5s;
}
.search_anniu_top2:hover:before{
    background: #E72144;
}
.search_anniu_top2:hover:after{
    border: 1px solid #E72144;
}
.sousuokuang{
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    box-shadow: 0px 5px 5px rgba(153, 153, 153, 0.1);
    background: #fff;
    display: flex;
    border-top: 1px solid #eee;
}
.sousuokuang .container{
    display: block;
}
.container_style ul li{
    line-height: 24px;
}
.sousuo_group{
    position: relative;
}
.sousuo_control{
    box-shadow: none;
    border: none;
    background: #fff;
    border-radius: 50px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    padding: 8px 24px;
    height: 42px;
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 300px;
    min-width: 0;
    margin-bottom: 0;
    border-right: 0px;
    font-size: 14px;
}
.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: #E72144;
    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;
}

.nav_breadcrumb{
    display: flex;
    align-items: center;
    position: relative;
    gap: 5px;
}
.nav_breadcrumb .breadcrumb-item+.breadcrumb-item{
    padding-left: 0px;
}
.nav_breadcrumb .breadcrumb-item+.breadcrumb-item::before{
    content: none;
}
.nav_gouwu{
    padding: 10px;
    display: flex;
}
.nav_gouwu svg {
    width: 22px;
    height: 22px;
    fill: #666;
    transition: 0.5s;
}
.sousuo{
    padding: 12px;
}
.sousuo svg{
    width: 18px;
    height: 18px;
    fill: #666;
}
.nav_min .nav_logon .nav-link{
    padding: 10px;
    display: flex;
}
.nav_min .nav_logon .nav-link::before{
    content: none;
}
.nav_min .nav_logon .nav-link svg {
    width: 22px;
    height: 22px;
    fill: #666;
    transition: 0.5s;
}
.nav_logon_anniu a{
    padding: 8px 0px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.5s;
    font-size: 14px;
    line-height: 24px;
    position: relative;
    color: #fff;
    background: #E72144;
    text-align: center;
}
.nav_logon_anniu ul li a{
    text-align: left;
    background: none;
    color: #999;
    line-height: 20px;
    font-size: 13px;
}


.nav_logon_anniu a.exit{
    padding: 8px 0px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.5s;
    font-size: 14px;
    line-height: 24px;
    position: relative;
    color: #fff;
    background: #E96603;
    text-align: center;
}
.nav_logon_anniu a.nav_logon_anniu_register{
    background: #eee;
    color: #666;
}
.nav_logon_anniu a:hover{
    background: #fc7f82;
    color: #fff;
}
.nav_logon_anniu ul li a:hover{
    background: none;
    color: #E72144;
    padding: 8px 0px 8px 6px;
}
.nav_logon .dropdown-menu,.pc_yuyan .dropdown-menu{
    right: 0;
    left: auto;
}
.nav_gouwu{
    position: relative;
}
.nav_gouwu_shuju{
    color: #fff;
    background: #E90029;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    position: absolute;
    right: 0px;
    top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    line-height: 12px;
}

/* 隐藏导航栏的类 */

/*侧边栏目*/
.btn-close{
    box-shadow: none;
    border: none;
}
.offcanvas_anniu{
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: #fff;
    padding: 15px 15px 48px 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;
}

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

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

.banner_nr h1{
    font-size: 58px;
    margin-bottom: 24px;
}

/*主体*/
.ix_bt{
    margin-bottom: 48px;
}
.ix_bt h1{
    font-size: 40px;
}
.ix_bt2 h1{
    position: relative;
    padding-bottom: 20px;
}
.ix_bt2 h1:before{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    width: 108px;
    height: 5px;
    background: #fff;
    border-radius: 50px;
}

.ix_ps_nav_swiper_anniu{
    position: relative;
}
.ix_ps_nav_swiper{
    padding: 38px 15px;
}
.ix_ps_nav_swiper .swiper-wrapper{
    height: auto;
}
.ix_ps_nav_swiper_card .card-body h6{
    font-size: 15px;
}
.ix_ps_nav_swiper_card img{
    width: 100%;
    height: 150px;
    object-fit: scale-down;
}
.ix_ps_nav_swiper_anniu .swiper-button-next,.ix_ps_nav_swiper_anniu .swiper-button-prev{
    width: 48px;
    height: 48px; 
    background: rgba(0,0,0,0.3);
    border-radius: 48px;
    z-index: 1000;
    transition: 0.5s;
}
.ix_ps_nav_swiper_anniu .swiper-button-prev{
    left: -10px;
    margin-top: -24px;
}
.ix_ps_nav_swiper_anniu .swiper-button-next{
    right: -10px;
    margin-top: -24px;
}
.ix_ps_nav_swiper_anniu .swiper-button-prev:after,.ix_ps_nav_swiper_anniu .swiper-button-next:after{
    color: #fff;
    font-size: 18px;
}
.ix_ps_nav_swiper_anniu .swiper-button-prev:hover:after,.ix_ps_nav_swiper_anniu .swiper-button-next:hover:after{
    color: #fff;
}
.ix_ps_nav_swiper_anniu .swiper-button-next:hover,.ix_ps_nav_swiper_anniu .swiper-button-prev:hover{
    background: rgba(231,33,68,1);
}

.ix_popular_g{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
    margin-top: 48px;
}
.ix_popular_g_card .card-img-overlay{
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ix_popular_g_card .card-img-overlay h3{
    font-size: 28px;
}

.ix_ps_g{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 30px;
}
.ix_ps_g_card_span{
    position: relative;
        background: #fafafa;
}
.ix_ps_g_card_span .gengduo{
    position: absolute;
    right: 22px;
    bottom: 22px;
    border-radius: 6px;
    font-size: 14px;
    width: 242px;
    height: 42px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
}
.ix_ps_g_card_span .gengduo i{
    position: relative;
}
.ix_ps_g_card .card-body{
    padding: 18px 0px 0px 0px;
}
.ix_ps_g_card .card-body h4{
    font-size: 20px;
    line-height: 30px;
}
.ix_ps_g_card .card-body span{
    font-size: 20px;
    display: inline-block;
    margin-top: 12px;
}
.ix_ps_g_card:hover .ix_ps_g_card_span .gengduo{
    opacity: 1;
}
.anniu_xiahuaxian span{
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}
.anniu_xiahuaxian span:before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 2px;
    width: 0%;
    background: #f00;
    opacity: 0;
    transition: 0.5s;
}
.anniu_xiahuaxian:hover span:before{
    opacity: 1;
    width: 100%;
}
.anniu_xiahuaxian i{
    transition: 0.5s;
    margin-left: 6px;
}
.anniu_xiahuaxian:hover i{
    margin-left: 12px;
}
.anniu_xiahuaxian2,.anniu_xiahuaxian2:hover{
    color: #fff;
}
.anniu_xiahuaxian2 span:before{
    background: #fff;
}
.ix_aobut_card .card-body{
    padding: 0px 0px 0px 100px;
}
.ix_aobut_card .card-body .anniu_xiahuaxian{
    margin-top: 58px;
    display: inline-block;
}
.ix_aobut_card .card-body h1{
    font-size: 38px;
    margin-bottom: 18px;
}

.ix_about_video{
    width: 100%;
    height: 510px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    border-radius: 58px;
}
.ix_about_video .ix_about_img{
    width: 100%;
    height: 100%;   
    object-fit: scale-down;
}
.ix_about_video video{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    right: 0px;
    object-fit: cover;
}
.ix_about_video .card-img-overlay{
    background: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 0px 0px 0px;
    border-radius: 0px;
}
.ix_about_video .card-img-overlay a{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}
.ix_about_video .card-img-overlay a img{
    width: 58px;
    height: 58px;
    object-fit: contain;
}
.video_aniu{
    width: 58px;
    height: 58px;
    border-radius: 58px;
    color: #fff;
    z-index: 2;
    background: rgba(255, 102, 0, 1);
    cursor: pointer;
    position: relative;
    display: flex;
}
.video_aniu .video_aniu_top{
    width: 58px;
    height: 58px;
    border-radius: 58px;
    justify-content: center;
    align-items: center;
}
.video_aniu svg{
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1000;
    fill: #fff;
    width: 20px;
    height: 20px;
    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: 68px;
    background: rgba(255, 102, 0, 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;}
}

.ix_regarding_bt{
    position: relative;
    font-size: 32px;
    padding-bottom: 22px;
    margin-bottom: 42px;
}
.ix_regarding_bt:before{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 108px;
    height: 4px;
    background: #E72144;
    border-radius: 4px;
}

.ix_about_bottom_g{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 38px;
}
.ix_about_bottom_g_card{
    background: #F2F2F2;
    border-radius: 28px;
    transition: 0.5s;
}
.ix_about_bottom_g_card .card-body{
    padding: 48px 24px 58px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000;
    transition: 0.5s;
}
.ix_about_bottom_g_card .card-body span{
    display: flex;
    width: 120px;
    height: 120px;
    border-radius: 120px;
    background: #fff;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}
.ix_about_bottom_g_card .card-body span img{
    width: 58px;
    height: 58px;
    object-fit: scale-down;
}
.ix_about_bottom_g_card .card-body h4{
    font-size: 20px;
    line-height: 32px;
}
.ix_about_bottom_g_card:hover{
    background: #E72144;
}
.ix_about_bottom_g_card:hover .card-body{
    color: #fff;
}

.ix_num_grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 68px;
    margin-top: 58px;
}
.ix_num .ix_num_flex{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
}
.ix_num .ix_num_flex span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 90px;
    background: #fff;
    border-radius: 8px;
    color: #E72144;
    font-size: 60px;
    font-weight: 700;
}
.ix_num .ix_num_flex .num-item{
    font-size: 56px;
    line-height: 56px;
    color: #fff!important;
    font-weight: 400;
    transition: 0.5s;
}
.ix_num_grid .ix_num{
    border-radius: 32px;
    transition: 0.5s;
}
.ix_num_grid .ix_num p{
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
}

.ix_service_g{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.ix_service_g .card{
    padding: 6px;
    background: #fff;
}

.ix_banner_bottom_bg{
    background: #011B25;
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 2rem;
    padding-right: 2rem;
}
.ix_banner_bottom .swiper-wrapper{
    height: auto;
}
.ix_banner_bottom .swiper-wrapper .swiper-slide{
    text-align: center;
    opacity: 1;
}
.ix_banner_bottom .swiper-wrapper .swiper-slide:hover{
    opacity: 0.5;
}
.ix_banner_bottom .swiper-wrapper .swiper-slide img{
    width: 72px;
    height: 72px;
    object-fit: scale-down;
}

/* 走马灯 */
.marquee-box {
    width: 100%;
    overflow: hidden;
    padding: 12px 0;
    position: relative;
}
.marquee-content {
    display: flex;
    white-space: nowrap;
    width: max-content;
    gap: 20px; /* 元素间距 */
}
.marquee-item {
    font-size: 14px;
    color: #333;
}

/********** 核心：鼠标悬停暂停 **********/
.marquee-box:hover .marquee-content {
  animation-play-state: paused !important;
}
.at_professional_card{
    width: 260px;
}
.at_professional_card .card-body{
    padding: 18px 0px 0px 0px;
}
.at_professional_card img{
    background: #fff;
    padding: 8px;
}
.at_professional_card_wk{
    position: relative;
}
.at_professional_card_wk .at_professional_card_wk_img{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: none;
    padding: 0px;
}

.ix_hzhb_logo_grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 38px 20px;
}
.ix_hzhb_logo{
    background: #fff;
    height: 160px;
    padding: 10px;
    border-radius: 22px;
    transition: 0.5s;
}
.ix_hzhb_logo img{
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}
.ix_hzhb_logo:hover{
    background: #fff;
    box-shadow: 0px 30px 60px -30px rgba(231, 33, 68, 0.58);
}

.ix_ps_nav_swiper_bottom .swiper-wrapper .swiper-slide{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 24px 12px;
}
.ix_ps_nav_swiper_top{
    padding-top: 20px;
    padding-bottom: 20px;
}
.ix_ps_nav_swiper_top .swiper-wrapper{
    height: auto;
    justify-content: center;
}
.ix_ps_nav_swiper_top .swiper-wrapper .swiper-slide{
    width: 146px;
    height: 36px;
    border-radius: 36px;
    background: #E96603;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0px 18px;
    transition: 0.5s;
}
.ix_ps_nav_swiper_top .swiper-wrapper .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}
.ix_ps_nav_swiper_top .swiper-wrapper .ix_ps_nav_swiper_top1:hover{
    background: #E96603;
}
.ix_ps_nav_swiper_top .swiper-wrapper .ix_ps_nav_swiper_top2:hover{
    background: #E91C1E;
}
.ix_ps_nav_swiper_top .swiper-wrapper .ix_ps_nav_swiper_top3:hover{
    background: #B33A68;
}
.ix_ps_nav_swiper_top .swiper-wrapper .swiper-slide:hover{
    transform: scale(1.2);
    z-index: 1000;
}

.ix_trending_bg{
    background: url(../img/ix_trending_bg.png) #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ix_trending_bottom_bg{
    background: linear-gradient(to right, rgba(233, 107, 1, 1.0), rgba(229, 20, 105, 1.0));
}

.ix_service_bg{
    background: url(../img/ix_service_bg.png),linear-gradient(to top left, rgba(233, 107, 1, 1.0), rgba(229, 20, 105, 1.0));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ix_cooperative_bg{
    background: url(../img/ix_cooperative_bg.png) #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/*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: #000;
        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: #000;
        text-align: center;
        transition: 0.5s;
    }
    .collapsed .bottom_xiala:after{
        content: "";
        position: absolute;
        right: 6px;
        top: 23px;
        width: 1px;
        height: 13px;
        background: #000;
        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: #000;
        text-align: center;
        transition: 0.5s;
    }
}

.bottom_bg{
    background: #E7E7E8;
    padding-top: 88px;
    color: #000;
}

.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: 20px;
    width: 42px;
    height: 42px;
    border-radius: 42px;
    background: #FFFFFF;
    color: #E72144;
    display: flex!important;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.bottom_bg .bottom_follow li a svg,.bottom_bg .bottom_follow li a img{
    color: #E72144;
    fill: #E72144;
    width: 24px;
    height: 24px;
}
.bottom_bg .bottom_follow li a{
    color: #E72144;
}
.bottom_bg .bottom_follow li a:hover{
    color: #fff;
    background: #E72144;
}
.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: 18px;
    position: relative;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}
.bottom_ul .bottom_bt{
    margin-bottom: 0px;
}
.bottom_bt{
    font-weight: 400;
    font-size: 14px;
}
.bottom_ul .card{
    background: none;
    padding: 12px 0px 12px 0px;
}
.bottom_ul .card .bottom_nav_a a{
    display: block;
    line-height: 40px;
    font-size: 16px;
    color: #414141;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.5s;
}
.bottom_ul .card .bottom_nav_a a:hover{
    color: #E72144;
    margin-left: 6px;
}

.bottom_form{
    background: #fff;
    border-radius: 12px;
    padding: 3px;
    border: 1px solid #D9D9D9;
}
.bottom_form .form-control{
    background: none;
    border-radius: 12px!important;
    font-size: 14px;
    height: 52px;
    outline: none;
    box-shadow: none;
    padding: 14px 14px;
    border: none;
}
.bottom_form a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 52px;
    border-radius: 8px!important;
    background: #E72144;
    color: #fff;
    transition: 0.5s;
    font-weight: 700;
}
.bottom_form a:hover{
    background: #E96D00;
}

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

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

.dingyue{
    padding-right: 48px;
}
.dingyue h6{
    color: #414141;
    line-height: 30px;
}

.bottom_dibu{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.bottom_dibu_left li a{
    color: #000;
}
.bottom_dibu_left li a:hover{
    color: #E72144;
}
.bottom_dibu_left li:not(:last-child){
    margin-right: 30px;
}

/* ----------------------------------------------------------------
    Products
----------------------------------------------------------------- */
.products_banner{
    background: url(../img/banner1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 320px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 48px;
    position: relative;
}
.products_banner:before{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
.ps_banner h1{
    font-size: 40px;
}

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

.ps_bt{
    font-size: 32px;
    margin-bottom: 38px;
}
.ps_g{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px 14px;
}

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

.ps_card .card-body h5{
    font-size: 18px;
}
/* 颜色色块容器 */
.color-dots {
    display: flex;
    gap: 2px;
    align-items: center;
    margin-top: 8px;
}
.product-card .card-body p {
    font-size: 16px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 48px;
    color: #000;
}
.color-dot{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    padding: 2px;
    border: 1px solid rgb(14 14 14);
    background: #fff;
}
.color-dot div{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.color-dot:hover {
    border: 1px solid #666;
}
.color-dots .color-dots1 div{
    background: #c2c6cf;
}
.color-dots .color-dots2 div{
    background: #747483;
}
.color-dots .color-dots3 div{
    background: #44485e;
}

.ps_fnav{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.ps_fnav .about_breadcrumb{
    width: 100%;
    padding-right: 24px;
}
.ps_shaixuan_anniu{
    display: flex;
    align-items: center;
    font-size: 14px;
}
.ps_shaixuan_anniu svg{
    width: 20px;
    height: 20px;
    fill: #000;
}

.ps_filters_1{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 14px;
    padding-bottom: 24px;
    margin-bottom: 24px;
}
.ps_filters_1 a{
    display: block;
    font-size: 15px;
}
.ps_accordion .ps_accordion_item{
    border-top: 1px solid #eee;
}
.ps_accordion .ps_accordion_item .ps_accordion_item_a{
    display: block;
    padding: 18px 24px 18px 0px;
    position: relative;
}
.ps_accordion_item_a h5{
    font-size: 16px;
}
.ps_accordion .ps_accordion_item .ps_accordion_item_a span{
    position: absolute;
    right: 0px;
    top: 25px;
    transform: rotate(180deg);
    transition: 0.5s;
}
.ps_accordion .ps_accordion_item .ps_accordion_item_a.collapsed span{
    transform: rotate(0deg);
    transition: 0.5s;
}
.ps_accordion .card-body{
    padding: 0px 0px 24px 0px;
    border: none;
}
.ps_accordion_item_nr{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 14px;
}

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

/*详情页*/
.ps_ds_swiper{
    position: relative;
    padding-left: 15%;
}
.ps_ds_swiper_right{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 13%;
    height: 100%;
}
.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;
}
.ps_ds_swiper_right .swiper-wrapper .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.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: 30px;*/
    /*height: 66px; */
    /*background: rgba(0,0,0,0.05);*/
    border-radius: 0px;
    z-index: 1000;
    transition: 0.5s;
}
.ps_ds_swiper_left .swiper-button-prev{
    left: 0px;
    margin-top: -33px;
}
.ps_ds_swiper_left .swiper-button-next{
    right: 0px;
    margin-top: -33px;
}
.ps_ds_swiper_left .swiper-button-prev:after,.ps_ds_swiper_left .swiper-button-next:after{
    color: #d6d6d6;
    /*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(231,33,68,1);
}

.ps_ds_radio{
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.ps_ds_accordion{
    padding-top: 0px;
    padding-bottom: 0px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.ps_ds_accordion .accordion-item{
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}
.ps_ds_accordion .accordion-item:first-of-type{
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.ps_ds_accordion .accordion-item:last-of-type{
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
.ps_ds_accordion .accordion-header button{
    padding: 0rem;
    display: block;
}
.ps_ds_accordion .accordion-header h5{
    display: block;
    font-size: 1rem;
    line-height: 42px;
    padding: 10px 30px 10px 0px;
    margin-bottom: 0px;
    position: relative;
}
.ps_ds_accordion .accordion-button{
    background: none;
    color: #000;
    position: relative;
}
.ps_ds_accordion .accordion-button:not(.collapsed),.ps_ds_accordion .accordion-button:focus{
    color: #000;
    background: none;
    box-shadow: none;
    outline: none;
}
.ps_ds_accordion .accordion-button::after{
    display: none;
}
.ps_ds_accordion .accordion-button span{
    position: absolute;
    top: 17px;
    right: 0px;
    color: #000;
    width: 27px;
    height: 27px;
    border-radius: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(180deg);
    transition: 0.5s;
}
.ps_ds_accordion .accordion-button span:before{
    content: "";
    position: absolute;
    left: 6px;
    top: 13px;
    width: 15px;
    height: 1px;
    background: #000;
}
.ps_ds_accordion .accordion-button span:after{
    content: "";
    position: absolute;
    left: 13px;
    top: 6px;
    width: 1px;
    height: 15px;
    background: #000;
    transform: rotate(90deg);
    transition: 0.5s;
    opacity: 0;
}
.ps_ds_accordion .accordion-button.collapsed span:after{
    transform: rotate(0deg);
    transition: 0.5s;
    opacity: 1;
}
.ps_ds_accordion .accordion-button.collapsed{
    color: #000;
}
.ps_ds_accordion .accordion-button.collapsed:before{
    content: none;
}
.ps_ds_accordion .accordion-body{
    padding: 18px 0px 32px 0px;
    border-top: 1px solid #ddd;
}
.ps_ds_accordion_ul li{
    position: relative;
    padding-left: 14px;
}
.ps_ds_accordion_ul li:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background: #666;
}

.ps_ds_nr_h3 h3{
    background: -webkit-linear-gradient(45deg, #fb3098 30%, #fc2d5d 50%, #fe2d1c 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 48px;
    font-size: 30px;
    display: inline-block;
}

.ps_ds_plxt_left_bt{
    margin-bottom: 24px;
}
.ps_ds_plxt_left_star span{
    font-size: 20px;
}
.ps_ds_plxt_left_star p{
    margin-left: 10px;
}
.ps_ds_plxt_left_star{
    margin-bottom: 20px;
}
.ps_ds_plxt_left_star2{
    margin-top: 20px;
}
.ps_ds_plxt_left_star2 a{
    display: flex;
    align-items: center;
    font-size: 12px;
}
.ps_ds_plxt_left_hx{
    margin: 0px 14px;
    background: #fc7f82;
    height: 5px;
    width: 100%;
    border-radius: 5px;
}
.ps_ds_plxt_left_star2 a:hover{
    opacity: 0.6;
}
.text_ccc{
    color: #ccc;
}
.ps_ds_plxt_left_gengduo{
    font-size: 16px;
    padding: 8px 28px 8px 28px;
    margin-top: 38px;
}

.img-list {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.zoom-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.2s;
}
.zoom-img:hover {
    transform: scale(1.03);
}
#imgZoomOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: zoom-out;
}
#zoomedImage {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    animation: fadeIn 0.3s ease;
}
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
    z-index: 10;
}
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 18px;
    padding: 15px 15px;
    cursor: pointer;
    border-radius: 4px;
    user-select: none;
    z-index: 10;
    transition: background 0.2s;
}
.nav-btn:hover {
    background: rgba(255,255,255,0.3);
}
#prevBtn { left: 20px; }
#nextBtn { right: 20px; }
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.ps_ds_plxt_right li{
    border-bottom: 1px solid #eee;
    padding-top: 24px;
    padding-bottom: 36px;
}
.ps_ds_plxt_right .ps_ds_plxt_left_star p{
    width: 100%;
    text-align: right;
}
.ps_ds_plxt_right .ps_ds_plxt_left_star{
    margin-bottom: 14px;
}
.ps_ds_plxt_right_touxiang .touxiang img{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    object-fit: cover;
    overflow: hidden;
}
.ps_ds_plxt_right_touxiang{
    margin-bottom: 14px;
}

/*Settlement*/
.ps_ds_setlement li{
    background: #fff;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.ps_ds_setlement li:not(:last-child){
    border-bottom: 1px solid #eee;
    color: #fff;
  
}
.ps_ds_setlement_div1{
    width: 10%;
    flex-shrink: 0;
}
.ps_ds_setlement_div2{
    width: 40%;
    flex-shrink: 0; 
}
.ps_ds_setlement_div3{
    width: 15%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    color: #fff;
}
.ps_ds_setlement_div4{
    width: 15%;
    flex-shrink: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}
.ps_ds_setlement_div5{
    width: 15%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}
.ps_ds_setlement_div6{
    width: 5%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}
.ps_ds_setlement_div7{
    width: 50%;
    flex-shrink: 0;
    text-align: center;
}
.ps_ds_setlement_quantity{
    margin-top: 0px;
}
.ps_ds_setlement_checkbox label{
    padding: 0px;
    display: flex;
}
.ps_ds_setlement_checkbox label:before{
    position: static;
}
.ps_ds_setlement_div2 .offcanvas_a{
    background: none;
}
.ps_ds_setlement_div2 .offcanvas_a .offcanvas_a_img{
    background: #f9f9f9;
    border-radius: 8px;
}

.ps_ds_setlement_select{
    box-shadow: none;
    height: 48px;
}

.ps_ds_setlement_ship li{
    background: #fff;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
 
}
.ps_ds_setlement_ship1{
    width: 10%;
    flex-shrink: 0;
}
.ps_ds_setlement_ship2{
    width: 40%;
    flex-shrink: 0;
}
.ps_ds_setlement_ship3{
    width: 25%;
    flex-shrink: 0;
}
.ps_ds_setlement_ship4{
    width: 25%;
    flex-shrink: 0;
}
.ps_ds_setlement_ship .form-check-input:checked{
    background-color: #fc7f82;
    border-color: #fc7f82;
}

.ps_ds_setlement_address{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 24px;
}
.ps_now_card{
    position: relative;
}
.ps_now_card .card-body{
    padding: 0px 30px;
}
.ps_now_card .card-body h4{
    border-bottom: 1px solid #CECECE;
    font-size: 20px;
    padding: 18px 0px 14px 0px;
}
.ps_now_card .card-body h4 span{
    font-size: 16px;
    color: #929292;
    margin-left: 48px;
}
.ps_now_card .card-body p{
    padding: 18px 0px;
}
.ps_now_card_active{
    border: none;
    box-shadow: 0px 0px 35px rgba(86, 86, 86, 0.16);
}
.ps_now_card_active:before{
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 48px;
    height: 35px;
    background: url(../img/ps_now_card_active.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.ps_ds_setlement_js{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    margin-top: 24px;
    line-height:100px;
}
.ps_ds_setlement_js_right{
    display: flex;
    align-items: center;
}
.ps_ds_setlement_js_right a{
    display: inline-block;
    color: #fff;
    background: #fc7f82;
    padding: 15px 48px;
    font-size: 16px;
    margin-left: 24px;
}
.ps_ds_setlement_js_right .se{
    font-size: 24px;
}
.ps_ds_setlement_js_left{
    padding-left: 24px;
    font-size: 14px;
}
.ps_ds_setlement_js_left a{
    color: #999;
    position: relative;
}
.ps_ds_setlement_js_left li{    
    position: relative;
    padding-right: 10px;
}
.ps_ds_setlement_js_left li:not(:last-child):before{
    content: "";
    position: absolute;
    right: -3px;
    top: 0px;
    width: 1px;
    height: 100%;
    background: #eee;
}
.ps_ds_setlement_js_left a:hover{
    color: #E72144;
}
.ps_ds_setlement_js_right a:hover{
    background: #E72144;
}

.star-rating {
    display: flex;
    gap: 8px;
    font-size: 18px;
    cursor: pointer;
}
.star {
    color: #ccc;
    transition: all 0.2s ease;
}
.star.active {
    color: #ffc107;
}

.quantity {
    display: flex;
    align-items: center;
    width: 150px;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 38px;
}
.quantity-btn {
    flex: 1;
    height: 100%;
    border: none;
    background-color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
}
.quantity_btn_left:before{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 13px;
    height: 1px;
    background: #666;
}
.quantity_btn_right:before{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 13px;
    height: 1px;
    background: #666;
}
.quantity_btn_right:after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 13px;
    background: #666;
}
.quantity-input {
    width: 70px;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 16px;
    outline: none;
    padding: 0;
}
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.quantity-input {
    -moz-appearance: textfield;
}

.ps_ds_setlement_quantity{
    margin-top: 0px;
}
.ps_ds_setlement_checkbox label{
    padding: 0px;
    display: flex;
}
.ps_ds_setlement_checkbox label:before{
    position: static;
}

.personalise_modal{
    padding: 10px;
}
.personalise_modal h2{
    margin-bottom: 24px;
}
.personalise_modal_input{
    border-radius: 50px;
    padding: 12px 24px;
    height: 58px;
    box-shadow: none;
    border-color: #ddd;
}
.personalise_modal .form-control::placeholder{
    color: #999;
}
.personalise_modal_color{
    padding-top: 24px;
    padding-bottom: 24px;
}
.personalise_modal_swiper_top .swiper-wrapper,.personalise_modal_swiper_bottom .swiper-wrapper{
    height: auto;
}
.personalise_modal_swiper_top{
    background: #eee;
}
.personalise_modal_swiper_top .swiper-wrapper{
    justify-content: center;
}
.personalise_modal_swiper_top .swiper-wrapper .swiper-slide{
    width: auto;
    cursor: pointer;
    margin: 0px 9px;
    padding: 14px 0px;
    font-size: 14px;
    color: #666;
    position: relative;
}
.personalise_modal_swiper_top .swiper-wrapper .swiper-slide:before{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 2px;
    background: none;
}
.personalise_modal_swiper_top .swiper-wrapper .swiper-slide-thumb-active{
    color: #fc7f82;
}
.personalise_modal_swiper_top .swiper-wrapper .swiper-slide-thumb-active:before{
    background: #fc7f82;
}

.ps_ds_plxt_left_gengduo{
    font-size: 16px;
    padding: 8px 28px 8px 28px;
    margin-top: 38px;
}

.file-input{
  display: none;
}
.file-btn{
  display: inline-block;
  width: 88px;
  height: 88px;
  border-radius: 8px;
  background: #f9f9f9;
  color: white;
  cursor: pointer;
  border: 1px dashed #ddd;
  transition: background 0.2s;
  position: relative;
}
.file-btn:before{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 1px;
    background: #999;
    transform: translate(-50%, -50%);
}
.file-btn:after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1px;
    height: 20px;
    background: #999;
    transform: translate(-50%, -50%);
}
.file-name{
  margin-left: 10px;
  color: #666;
  font-size: 14px;
}

.ps_ds_control_h{
    height: 48px;
    padding-left: 12px;
    padding-right: 12px;
}

/* ----------------------------------------------------------------
    Buying guides
----------------------------------------------------------------- */
.bg_gs_bt{
    font-size: 38px;
    margin: 48px 0px;
}
.buying_guides_g{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 68px 16px;
}

.buying_guides_g_card .fangda2{
    position: relative;
}
.buying_guides_g_card .fangda2 span{
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 18px;
    font-size: 0.8rem;
    padding: 6px 10px;
    background: linear-gradient(to left, rgba(233, 109, 0, 1.0), rgba(233, 0, 41, 1.0));
    color: #fff;
}
.buying_guides_g_card .card-body{
    padding: 18px 0px 0px 0px;
}
.buying_guides_g_card .card-body span{
    display: inline-block;
}
.buying_guides_g_card .card-body h5{
    font-size: 22px;
    line-height: 34px;
}

.bg_gs_ds_right_card{
    margin-bottom: 18px;
}
.bg_gs_ds_right_card img{
    width: 60px;
    height: 60px;
    object-fit: cover;
}
.bg_gs_ds_right_card h5{
    font-size: 14px;
    line-height: 24px;
}

.bg_gs_ds_right_ul{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.bg_gs_ds_right_ul a{
    display: inline-block;
    font-size: 11px;
    padding: 6px 18px;
    border-radius: 50px;
    background: linear-gradient(to left, rgba(233, 109, 0, 1.0), rgba(233, 0, 41, 1.0));
    color: #fff;
}

.bg_gs_ds_left_bt h3{
    font-size: 30px;
    line-height: 48px;
    margin-bottom: 16px;
}
.bg_gs_ds_left_bt h5{
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 24px;
}

.jianbian_text{
    background: -webkit-linear-gradient(45deg, #fb3098 30%, #fc2d5d 50%, #fe2d1c 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ----------------------------------------------------------------
    About us
----------------------------------------------------------------- */
.about_us_bt h1{
    font-size: 68px;
    line-height: 88px;
    margin-bottom: 24px;
}
.about_us_bt h2{
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 18px;
}

.about_left .card-img-overlay{
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0px;
    border-radius: 0px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(231, 33, 68, 0.8));
}
.ix_ps_g_card{
    background: none;
}

.about_jobs_flush .accordion-item{
    background: none;
}
.join_jianli_youxiang{
    display: inline-block;
    border-radius: 50px;
    padding: 12px 38px;
    border: 1px solid #E24C4E;
    margin-top: 12px;
    color: #E24C4E;
    font-size: 18px;
}

/* ----------------------------------------------------------------
    Support
----------------------------------------------------------------- */
.service_st_table thead{
    background: #E72144;
    color: #fff;
}
.service_st_table thead tr th{
    padding: 12px;
    white-space: nowrap;
}
.service_st_table tbody tr th,.service_st_table tbody tr td{
    padding: 12px;
    font-size: 14px!important;
    color: #666!important;
}

.service_bg_bt h1{
    font-size: 38px;
    line-height: 58px;
}
.service_buying_g{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
}
.service_buying_g_m img{
    width: 40px;
}

/* ----------------------------------------------------------------
    登录注册
----------------------------------------------------------------- */
.logon_privacy{
    position: fixed;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
}

.logon_form_logo{
    padding: 12px 0px 24px 0px;
}
.logon_form_logo a img{ 
    height: 42px;
    object-fit: contain;
    width: 106px;
}

.ps_ds_setlement_ship1 .form-check{
    margin-bottom: 0px;
    display: flex;
    align-items: center;
}

.logon_form{
    padding: 38px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 10px 30px -10px rgba(0, 108, 255, 0.1);
    margin-bottom: 68px;
    margin-top: 24px;
    z-index: 500;
    position: relative;
}
.logon_form .form-floating .form-control{
    background: #fff;
    border-radius: 8px;
    padding-left: 15px;
    padding-right: 15px;
}
.logon_form .form-floating label{
    color: #999;
    padding-left: 15px;
    padding-right: 15px;
}

.logon_form_a,.logon_continue{
   display: block;
  text-align: center;
  background: #e91c1e;
  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_form_a:hover{
    background: #59ab41;
    color: #fff;
}
.logon_continue{
    margin-top: 0px;
    background: #4524db;
    color: #fff;
}
.logon_continue:hover{
    background: #5a37f8;
    color: #fff;
}

.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;
}
.privacy_policy_nr{
    height: 70vh;
    overflow: auto;
}
.logon_or{
    position: relative;
}
.logon_or:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #eee;
}
.logon_or span{
    display: inline-block;
    padding: 12px 18px;
    position: relative;
    background: #fff;
}

.logon_register{
    background: #eee;
    color: #666!important;
}
.logon_xzxl{
    height: 58px;
    padding-left: 15px;
    padding-right: 15px;
}

/* ----------------------------------------------------------------
    个人中心
----------------------------------------------------------------- */
.pl_g{
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid!important;
    grid-template-rows: 1fr auto;
}
.pl_g footer{
    grid-row: 2;
    margin-top: auto;
}

.pl_yuyan .dropdown-menu{
    padding: 0px 15px;
}
.pl_yuyan_button{
    display: flex;
    align-items: center;
    box-shadow: none;
    border: none;
    background: none;
    color: #999;
    transition: all 0.3s;
    padding: 12px 0px;
}
.pl_yuyan_button svg{
    width: 18px;
    height: 18px;
    fill: #999;
    margin-right: 5px;
    transition: all 0.3s;
}
.pl_yuyan_button i{
    margin-left: 5px;
    transition: all 0.3s;
}
.pl_yuyan_button.show{
    color: #E72144;
}
.pl_yuyan_button.show svg{
    fill: #E72144;
}
.pl_yuyan_button.show i{
    transform: rotate(180deg);
    color: #E72144;
}
.pl_footer_ul{
    padding: 12px 0px;
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #ddd;
}
.pl_footer_ul li:not(:last-child){
    margin-right: 14px;
}
.pl_footer_ul_a{
    display: inline-block;
    padding: 12px 0px;
}

.pl_nav .navbar-brand{
    position: static;
    transform: translate(0%, 0%);
}
.pl_nav .container{
    margin-inline-start: auto;
    margin-inline-end: auto;
    width: 92%;
    max-width: 1200px;
}
.pl_nav .navbar-nav .nav-item{
    margin: 0px 0px 0px 36px;
}
.pl_touxiang .pl_yuyan_button div{
    display: inline-block;
}
.pl_touxiang .pl_yuyan_button span{
    width: 38px;
    height: 38px;
    border-radius: 38px;
    background: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
.pl_touxiang .pl_yuyan_button span svg{
    margin-right: 0px;
    width: 30px;
    height: 30px;
    fill: #666;
}
.menu_pl{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
}
.menu_pl a{
    display: block;
    font-size: 15px;
    padding: 10px 0px;
    text-align: center;
    border-radius: 5px;
}
.menu_pl a:hover{
    background: #eee;
}
.pl_touxiang .dropdown-menu{
    left: auto;
    right: 0px;
    padding: 6px 6px;
}
.pl_g_zhuti{
    background: #fff;
    border-radius: 12px;
    padding: 24px;
}
.pl_g_no{
    padding: 48px 0px;
}
.schools_pb1{
    padding-bottom: 48px;
}

.menu_yuyan a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 10px;
}

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

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

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

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

    .nav_min .navbar-nav .nav-item{
        margin: 0px 38px 0px 0px;
    }
    .nav_min .navbar-nav .nav-link{
        font-size: 16px;
    }
    .dingyue{
        padding-right: 0px;
    }
    .bottom_dibu_left li:not(:last-child){
        margin-right: 12px;
    }
}

@media (max-width: 1199px){
    .md_none{
        display: none;
    }
    .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;
    }
    .pc_yuyan .nav-link{
        height: 58px;
        line-height: 58px;
        padding: 0px;
    }
    .nav_min .navbar-nav .pc_yuyan .nav-link{
        padding-left: 0px;
        padding-right: 40px;
    }
    .nav_min .nav-link span{
        display: none;
    }
    .md_collapse{
        max-height: 80vh;
        overflow: auto;
    }
    .md_collapse::-webkit-scrollbar {
        width: 0px;
    }
    .nav_xiala{
        position: relative;
    }

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

    .nav_min .navbar-brand{
        gap: 6px;
    }
    .navbar-brand img{
        width: 100px;
        height: 30px;
    }
    .nav_breadcrumb{
        position: absolute;
        right: 52px;
        top: 10px;
        padding-left: 0px;
    }
    .ix_sousuo{
        display: inline-block;
    }
    .nav_breadcrumb{
        gap: 0px;
    }
    .nav_gouwu,.nav_min .nav_logon .nav-link{
        padding: 6px;
    }
    .sousuo{
        padding: 8px;
    }
    .nav_gouwu_shuju{
        right: -5px;
        top: -5px;
    }
    .nav_min .nav_xiala2:hover .nav-link svg{
        fill: #E90029;
    }
    .menu_g{
        padding: 24px 0px;
        gap: 24px 20px;
    }

    .banner{
        height: 480px;
    }
    .banner_nr h1{
        font-size: 48px;
    }
    .ix_popular_g_card .card-img-overlay{
        padding: 48px;
    }
    .ix_aobut_card .card-body{
        padding: 24px 0px 0px 0px;
    }
    .ix_about_right{
        margin-top: 24px;
    }
    .ix_about_bottom_g{
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 24px;
    }
    .ix_service_g{
        grid-template-columns: repeat(4, 1fr);
    }
    .ix_hzhb_logo_grid{
        grid-template-columns: repeat(3, 1fr);
    }
    .at_professional_card{
        width: 200px;
    }

    .products_banner{
        height: 180px;
        padding-bottom: 24px;
    }
    .products_banner h1{
        font-size: 30px;
    }
    .ps_ds_setlement_div1{
        width: 100%;
    }
    .ps_ds_setlement li{
        gap: 12px 0px;
    }
    .pl_touxiang {
        position: absolute;
        top: 0px;
        right: 58px;
    }
    .pl_touxiang .pl_yuyan_button span {
        width: 30px;
        height: 30px;
    }
    .pl_touxiang .pl_yuyan_button span svg{
        width: 24px;
        height: 24px;
    }
    .pl_yuyan_button{
        padding: 13px 0px;
    }

    .about_left{
        margin-bottom: 24px;
    }
    .about_us_bt h1{
        font-size: 48px;
        line-height: 68px;
    }

    .nav_sousuo .container_style{
        padding-top: 38px;
        padding-bottom: 38px;
    }
    .ix_ps_nav_swiper_bottom .swiper-wrapper .swiper-slide{
        grid-template-columns: repeat(4, 1fr);
    }
}
@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 .bottom_bt a,.md_bottom_bt a{
        height: 58px;
        line-height: 58px;
        padding: 0px;
        font-size: 14px;
        font-weight: 400;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }
    .md_erweima{
        margin-top: 24px;
    }
    .dingyue{
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        padding-right: 0px;
    }
    .di_beian{
        margin-top: 24px;
    }

    .ix_ps_nav_swiper_anniu .swiper-button-prev{
        left: 0px;
    }
    .ix_ps_nav_swiper_anniu .swiper-button-next{
        right: 0px;
    }
    .ix_popular_g{
        grid-template-columns: repeat(1, 1fr);
    }
    .ix_service_g{
        grid-template-columns: repeat(3, 1fr);
    }
    .ix_num .ix_num_flex span{
        font-size: 38px;
        width: 40px;
        height: 60px;
    }
    .ix_num_grid{
        margin-top: 0px;
        gap: 20px 12px;
    }
    .ix_num_grid .ix_num p{
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
    }
    .ix_ps_g{
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }

    .ps_g{
        grid-template-columns: repeat(2, 1fr);
    }
    .ps_ds_setlement_div2{
        width: 100%;
    }
    .ps_ds_setlement_div3,.ps_ds_setlement_div4,.ps_ds_setlement_div5,.ps_ds_setlement_div6{
        width: 50%;
    }
    .ps_ds_setlement_div3,.ps_ds_setlement_div5{
        justify-content: flex-start;
    }
    .ps_ds_setlement_div4,.ps_ds_setlement_div6{
        justify-content: flex-end;
    }
    .ps_ds_setlement_address{
        grid-template-columns: repeat(1, 1fr);
    }

    .buying_guides_g{
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 12px;
    }
}

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

    .banner_nr h1,.service_bg_bt h1,.about_us_bt h1{
        font-size: 1.6rem;
        line-height: 38px;
    }
    .ix_bt h1,.ix_popular_g_card .card-img-overlay h3,.ix_aobut_card .card-body h1,.ix_regarding_bt,.products_banner h1,.ps_ds_bt_h1,.ps_ds_nr_h3 h3,.ps_bt,.bg_gs_ds_left_bt h3,.bg_gs_bt{
        font-size: 1.4rem;
        line-height: 32px;
    }
    .ix_ps_g_card .card-body h4,.ix_ps_g_card .card-body span,.ix_about_bottom_g_card .card-body h4,.service_bg_bt h4,.ps_ds_pinglun_h4,.bg_gs_ds_left_bt h5,.buying_guides_g_card .card-body h5,.about_us_bt h2{
        font-size: 1.1rem;
        line-height: 28px;
    }
    .banner_nr h5,.ix_ps_nav_swiper_card .card-body h6,.dingyue h6,.ps_now_card .card-body h4,.ps_g .ix_ps_g_card .card-body h4,.about_us_bt h5,.p_18 p, .p_18{
        font-size: 1rem;
        line-height: 24px;
    }
    .p_14 p, .p_14,.p_16 p, .p_16,.p_15 p, .p_15,.ps_now_card .card-body h4 span,.ps_ds_setlement_ship{
        font-size: 0.9rem;
        line-height: 24px;
    }

    .banner{
        height: 300px;
    }
    .banner .swiper-pagination{
        bottom: 10px;
    }
    .banner .swiper-pagination .swiper-pagination-bullet{
        width: 8px;
        height: 8px;
    }
    .gengduo{
        padding: 8px 24px;
        font-size: 13px;
    }
    .banner_nr h1{
        margin-bottom: 0px;
    }
    .banner_nr h5{
        margin-bottom: 4px;
    }
    .ix_ps_nav_swiper_anniu .swiper-button-next, .ix_ps_nav_swiper_anniu .swiper-button-prev{
        width: 38px;
        height: 38px;
        margin-top: -19px;
    }
    .ix_ps_nav_swiper_anniu .swiper-button-prev:after, .ix_ps_nav_swiper_anniu .swiper-button-next:after{
        font-size: 14px;
    }
    .ix_ps_nav_swiper_anniu .swiper-button-prev{
        left: 10px;
    }
    .ix_ps_nav_swiper_anniu .swiper-button-next{
        right: 10px;
    }
    .ix_popular_g{
        margin-top: 0px;
    }
    .ix_popular_g_card .card-img-overlay{
        padding: 24px;
    }
    .anniu_xiahuaxian{
        font-size: 14px;
    }
    .ix_about_video{
        height: 240px;
    }
    .video_aniu,.video_aniu .video_aniu_top,.video_aniu .video_aniu_top .circle01, .video_aniu .video_aniu_top .circle02{
        width: 48px;
        height: 48px;
    }
    .video_aniu svg{
        width: 16px;
        height: 16px;
    }
    .ix_regarding_bt:before{
        width: 68px;
        height: 3px;
    }
    .ix_about_bottom_g{
        gap: 8px 8px;
    }
    .ix_about_bottom_g_card{
        border-radius: 8px;
    }
    .ix_about_bottom_g_card .card-body{
        padding: 24px 12px;
    }
    .ix_about_bottom_g_card .card-body span{
        width: 68px;
        height: 68px;
        margin-bottom: 12px;
    }
    .ix_about_bottom_g_card .card-body span img{
        width: 38px;
        height: 38px;
    }
    .ix_num_grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .ix_bt2 h1:before{
        width: 68px;
        height: 3px;
    }
    .ix_num .ix_num_flex span{
        font-size: 30px;
    }
    .ix_service_g{
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .ix_bt{
        margin-bottom: 24px;
    }
    .ix_banner_bottom .swiper-wrapper .swiper-slide img{
        width: 48px;
        height: 48px;
    }
    .at_professional_card{
        width: 120px;
    }
    .marquee-content{
        gap: 8px;
    }
    .ix_hzhb_logo_grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .ix_hzhb_logo{
        height: 108px;
        border-radius: 12px;
        padding: 16px;
    }
    .bottom_form .form-control{
        height: 48px;
    }
    .bottom_form a{
        width: 100px;
        height: 48px;
    }

    .di_beian{
        font-size: 14px;
    }
    .products_banner{
        height: 120px;
        padding-bottom: 12px;
    }
    .ps_g .ps_card .card-body h5{
        font-size: 1rem;
        margin-bottom: 0px;
    }
    .ps_now_card .card-body{
        padding: 0px 18px;
    }
    .ps_now_card .card-body h4 span{
        margin-left: 14px;
    }

    .ps_ds_setlement_js{
        flex-direction: column;
        align-items: flex-start;
    }
    .ps_ds_setlement_js_left{
        padding: 15px;
    }
    .ps_ds_setlement_js_right{
        align-items: flex-start;
        flex-direction: column;
        width: 100%;    
    }
    .ps_ds_setlement_js_right p{
        padding: 0px 15px 15px 15px;
    }
    .ps_ds_setlement_js_right a{
        width: 100%;
        display: block;
        margin-left: 0px;
        text-align: center;
    }
    .ps_bt{
        margin-bottom: 24px;
    }

    .pl_touxiang .pl_yuyan_button div{
        display: none;
    }
    .pl_touxiang .pl_yuyan_button span{
        margin-right: 0px;
    }
    .logon_form{
        padding: 24px;
    }
    .logon_form .form-control,.logon_xzxl{
        height: 48px;
        padding: 12px;
        font-size: 0.9rem;
    }
    .logon_form .form-floating label{
        font-size: 0.9rem;
        padding: 12px 12px;
    }
    .bg_gs_bt{
        margin: 24px 0px;
    }
    .buying_guides_g{
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 8px;
    }
    .buying_guides_g{
        grid-template-columns: repeat(1, 1fr);
        gap: 30px 12px;
    }

    .input-group{
        flex-wrap: nowrap;
    }
    .nav_sousuo .sousuo_control{
        height: 48px;
    }
    .nav_sousuo .search_anniu_top2{
        width: 58px;
        height: 48px;
    }
    .search_anniu2{
        width: 48px;
        height: 48px;
        line-height: 48px;
    }
    .search_anniu2:after,.search_anniu2:before{
        top: 24px;
        left: 12px;
    }

    .ix_ps_nav_swiper_bottom .swiper-wrapper .swiper-slide{
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 8px;
    }
    .ix_ps_nav_swiper_bottom .card-body{
        padding: 12px 0px;
    }
    .ix_ps_nav_swiper_bottom .ix_ps_nav_swiper_card .card-body h6{
        font-size: 0.9rem;
    }
    .ix_ps_nav_swiper_top .swiper-wrapper .swiper-slide{
        width: 25%;
        height: 32px;
        padding: 10px;
    }
}

@media (max-width: 580px){
    .navbar-brand img{
        width: 78px;
        height: 28px;
        padding: 6px;
    }
}
@media (max-width: 480px){
    .navbar-brand img{
        width: 68px;
        height: 28px;
        padding: 6px;
    }
}










/* 只美化这个区域，不影响网站其他地方 */
.advantage-list ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}
.advantage-list li {
    position: relative !important;
    padding-left: 26px !important;
    margin-bottom: 8px !important;
    list-style: none !important;
}
.advantage-list li::before {
    content: "\f26b" !important;
    font-family: "bootstrap-icons" !important;
    position: absolute !important;
    left: 0 !important;
    top: 2px !important;
    color: #198754 !important;
    font-size: 16px !important;
}
.advantage-list p,
.advantage-list span {
    margin: 0 !important;
    padding: 0 !important;
    display: inline !important;
}
/* 隐藏多余的 > 符号 */
.advantage-list p::first-line {
    text-indent: -15px !important;
}






/* 产品规格表格 - 高端商务风格 完美还原截图 */
/* 产品规格表格 - 1:1还原截图 深灰表头+隔行变色+完整横线 */
table {
  width: 100% !important;
  border-collapse: collapse !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  margin: 24px 0 !important;
  background: #ffffff !important;
  border: 1px solid #d1d5db !important; /* 外框线 */
}

/* 表头：深灰色背景 完全匹配截图 */
table tr:first-child {
  background: #f3f4f6 !important; /* 截图里的深灰表头 */
  border-bottom: 2px solid #d1d5db !important; /* 表头底部粗横线 */
}

/*table tr:first-child td {*/
/*  font-weight: 700 !important;*/
/*  font-size: 16px !important;*/
/*  color: #111827 !important;*/
/*  padding: 14px 18px !important;*/
  /*border-right: 1px solid #d1d5db !important; */
/*}*/

/* 表格单元格通用样式：完整横线 + 竖线 */
table td {

  border-bottom: 1px solid #d1d5db !important; /* 每一行的底部分隔横线 */
  border-right: 1px solid #d1d5db !important; /* 列分割竖线 */
  /*vertical-align: top !important;*/
  color: #374151 !important;
}

/* 第一列（规格名称）固定宽度 */
/*table td:first-child {*/
/*  font-weight: 500 !important;*/
/*  color: #1f2937 !important;*/
/*  width: 25% !important;*/
/*  min-width: 160px !important;*/
/*}*/

/* 最后一列去掉右边框 */
table td:last-child {
  border-right: none !important;
}

/* 隔行变灰：奇数行浅灰背景 完美匹配截图 */
table tr:nth-child(odd):not(:first-child) {
  background: #f9fafb !important;
}

/* 偶数行纯白 对比清晰 */
table tr:nth-child(even):not(:first-child) {
  background: #ffffff !important;
}

/* 最后一行去掉下边框 */
table tr:last-child td {
  border-bottom: none !important;
}

/* 长文本自动换行 不溢出 */
table td {
  word-break: break-word !important;
  white-space: normal !important;
}

/* ======================
   手机端完美适配 不破坏结构
====================== */
@media (max-width: 768px) {
  table {
    border: none !important;
  }

  table tr {
    display: block !important;
    margin-bottom: 12px !important;
    border: 1px solid #d1d5db !important;
    background: #fff !important;
  }

  /* 手机隐藏表头 */
  table tr:first-child {
    display: none !important;
  }

  table td {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-right: none !important;
    border-bottom: 1px solid #d1d5db !important;
    padding: 12px 16px !important;
  }

  /* 手机端规格名称样式 */
  table td:first-child {
    background: #f3f4f6 !important;
    font-weight: 600 !important;
    width: 100% !important;
    min-width: auto !important;
    border-bottom: 1px solid #d1d5db !important;
  }

  table td:last-child {
    border-bottom: none !important;
  }
}








/* 产品手册表格 - 1:1还原截图风格 + 下载按钮 + 手机适配 */
.product-manual-table {
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #fff;
  margin: 24px 0;
}

/* 表头样式：酒红色背景 + 白色粗体字 */
.table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr 1fr 1fr;
  background: #dc143c; /* 截图同款酒红色 */
  color: #ffffff;
  font-weight: 700;
  font-size: 22px;
}

/* 单元格通用样式 */
.table-cell {
  padding: 20px 16px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
}

/* 表格行样式：隔行灰白 */
.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr 1fr 1fr;
  color: #374151;
  font-size: 20px;
}

/* 隔行变灰：奇数行浅灰，偶数行纯白，和截图完全一致 */
.table-row:nth-child(odd) {
  background: #f3f3f3;
}
.table-row:nth-child(even) {
  background: #ffffff;
}

/* 下载按钮样式：带图标 + 交互反馈 */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #dc143c;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.download-btn:hover {
  color: #a50f2d;
  transform: translateX(2px);
}
.download-btn i {
  font-size: 18px;
}

/* ======================
   手机端完美适配
====================== */
@media (max-width: 768px) {
  .table-header {
    display: none; /* 手机端隐藏表头 */
  }

  .table-row {
    display: block;
    margin-bottom: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
  }

  .table-cell {
    display: flex;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 16px;
  }

  /* 手机端给单元格加标签前缀，清晰区分 */
  .table-cell::before {
    content: attr(data-label);
    font-weight: 600;
    width: 120px;
    min-width: 120px;
    color: #1f2937;
  }

  /* 最后一个单元格去掉下边框 */
  .table-cell:last-child {
    border-bottom: none;
  }

  /* 手机端隔行背景重置，卡片式更美观 */
  .table-row:nth-child(odd),
  .table-row:nth-child(even) {
    background: #fff;
  }
}