/*聚诚在线（jc128.net）安全--简单--易用*/
@font-face {
  font-family: 'montserrat';
  font-style: normal;
  src: url(../fonts/montserrat-regular.ttf);
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  src: url(../fonts/Quicksand.otf);
}
body{
    font-family: "Quicksand","Microsoft YaHei","Arial","微软雅黑",Helvetica,"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
}
.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-radius: 50%;
    border: 1px solid #CCC;
    margin: 0px 8px 0px 0px;
    vertical-align: middle;
    display: inline-block;
    transition: 0.1S;
    position: absolute;
    left: 0px;
    top: 3px;
}
.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 {
    border: 5px solid #57B37B;
}
.Checkbox label:before {
    background: url(../img/ico_tick.svg) #fff no-repeat center;
    background-size: 0;
    border-radius: 0px;
    transition: 0.2S;
}
.Checkbox input:checked + label:before {
    background-color: #fc7f82;
    background-size: 16px;
    border-color: #fc7f82;
}
.HoverLabel label {
    display: block;
    border-radius: 4px;
    padding: 4px;
    width: 100%;
}
.HoverLabel label:hover {
    background-color: #EEE;
}

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

.opacity_5{
    opacity: 0.5;
}

.text_999{
    color: #999;
}
.text-danger{
    color: #fc7f82!important;
}
.text-success{
    color: #57B37B!important;
}
.text-primary{
    color: #0A80FA!important;
}
.text-warning{
    color: #fcda0f!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_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 5px 20px -5px rgba(31, 72, 161, 0.2);
}

.gengduo{
    padding: 12px 48px 12px 48px;
    background: none;
    font-weight: 700;
    background: #85d26e 
    color: #fff !important;
    font-size: 18px;
    line-height: 28px;  
    pointer-events: auto;
    transition: 0.5s;
    display: inline-block;
    border: 2px solid #fc7f82;
}
.gengduo2{
    color: #fff!important;
    background: #fc7f82;
    /*border: 2px solid #fc7f82;*/
}
.banner_gengduo{
    padding: 14px 48px 14px 48px;
    background: #fc7f82;
    font-weight: 700;
    color: #fff!important;
    font-size: 18px;
    line-height: 24px;  
    pointer-events: auto;
    transition: 0.5s;
    display: inline-block;
    border: 2px solid #fc7f82;
}
.gengduo:hover{
    color: #fff!important;
    background: #1b5809;
    
}
.gengduo2:hover{
    color: #fc7f82!important;
    background: none;
    border: 2px solid #fc7f82;
}

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

/* ----------------------------------------------------------------
    首页
----------------------------------------------------------------- */
/*nav_top*/
.nav_top{
    background: #85d26e;
    padding-top: 6px;
    padding-bottom: 6px;
}

/*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;
    display: flex;
}
.nav_min:before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    background: #eee;
}
.nav_min .container{
    padding: 0px;
}
.nav_min .navbar-brand{
    padding: 0;
    transition: 0.5s;
    /* 关键修复：清空上下外边距，杜绝小屏偏移 */
    margin: 0;
    margin-right: 10px;
    display: flex;
    position: absolute;
    left: 50%;
    /* 关键修复：垂直居中 + 水平居中，大小屏永远居中 */
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 500;
    /* 额外修复：防止宽度异常 */
    width: auto;
}
.navbar-brand img{
    height: 42px;
    object-fit: contain;
}
.nav_min .navbar-nav .nav-item{
    margin: 0px 36px 0px 0px;
}
.nav_min .navbar-nav .nav-link{
    padding: 32px 0px 32px 0px;
    position: relative;
    transition: 0.5s;
}
.nav_min .pc_yuyan .nav-link{
    padding: 32px 15px 32px 15px;
}
.nav_min .navbar-nav .pc_yuyan{
    margin-right: 0px;
    margin-left: 14px;
}
.nav_min .navbar-nav .nav-link{
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #666;
    font-family: "Microsoft YaHei", "Arial", "微软雅黑", Helvetica, "Hiragino Sans GB", sans-serif;
    /*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: #fc7f82;
    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{
    left: 0%;
    right: 0%;
    opacity: 1;
    color: #fc7f82;
}

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

.navbar-toggler,.navbar-toggler:focus{
    border: none;
    padding: 6px 0px 10px 0px;
    margin: 14px 0px 13px 0px;
    outline: none;
    box-shadow: none;
    position: absolute;
    right: 15px;
    top: 0px;
}
.navbar-toggler .icon-bar{
    display: block;
    width: 22px;
    height: 1px;
    border-radius: 1px;
    background: #666;
    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 0px 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: #f7f7f7;
    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: 0px;
        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: #fc7f82;
    padding: 12px 0px 12px 6px;
}

.menu_yuyan a{
    display: flex;
    align-items: center;
}
.menu_yuyan a img{
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 10px;
}

.menu_b_left{
    padding: 38px 0px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px 24px;
}
.menu_b_left a{
    padding: 6px 0px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.5s;
    font-size: 15px;
    line-height: 24px;
    position: relative;
    color: #999;
}
.menu_b_left a:hover{
    color: #fc7f82;
    padding: 6px 0px 6px 6px;
}
.menu_b_right{
    padding: 38px 0px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 14px;
}

.nav_xiala .dropdown-toggle,.nav_xiala2 .dropdown-toggle{
    display: none!important;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 0px;
    border: none;
    border-radius: 0px;
    z-index: 1000;
    padding: 0px;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    border-radius: 50px;
    transform:rotate(0deg);
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 14px;
}
.nav_xiala .dropdown-toggle::after,.nav_xiala2 .dropdown-toggle::after{
    content: none;
}
@media (max-width: 1199px){
    .nav_xiala .dropdown-toggle,.nav_xiala2 .dropdown-toggle{
        display: flex;
    }
}
.nav_min .btn-check:checked+.btn, .btn.active,.nav_min .btn.show,.nav_min .btn:first-child:active,.nav_min :not(.btn-check)+.btn:active{
    transform:rotate(180deg);
    background: #fc7f82;
    color: #fff;
}

.nav_min .pc_yuyan{
    margin-right: 0rem;
    margin-left: 0rem;
}
.nav_min .pc_yuyan .nav-link{
    padding-left: 16px;
    padding-right: 16px;
}
.nav_min .pc_yuyan .nav-link span{
    font-size: 1rem;
    position: absolute;
    right: 0px;
    transition: all 0.3s;
}
.nav_min .pc_yuyan:hover .nav-link span{
    transform: rotate(180deg);
    color: #2F6CF2;
}
.nav_min .pc_yuyan .nav-link{
    padding: 0px;
    display: flex;
    align-items: center;
    color: #666!important;
    transition: 0.5s;
    font-size: 14px;
    line-height: 22px;
    background: none;
    border-radius: 50px;
}
.nav_min .pc_yuyan .nav-link i{
    font-size: 18px;
}
.nav_min .pc_yuyan .nav-link span{
    right: 16px;
    font-size: 14px;
}
.nav_min .pc_yuyan .nav-link:before{
    content: none;
}
.nav_min .pc_yuyan .dropdown-menu{
    width: 160px;
}
.nav_min .pc_yuyan svg{
    fill: #fff;
}
/*.nav_min .pc_yuyan:hover .nav-link{
    color: #fff;
    background: #2F6CF2;
}*/
.nav_min .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 left, rgba(10, 128, 250, 1.0),rgba(109, 175, 243, 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: #fff;
    transform: rotate(45deg);
    transition: all .5s;
}
.search_anniu_top:after{
    content: "";
    position: absolute;
    margin: auto;
    top: -2px;
    right: 2px;
    bottom: 0; 
    left: 0px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #fff;
    transition: all .5s;
}
.md_search_anniu_top{
    margin-top: 0px;
}
.search_anniu_top:hover:before{
    background: #fff;
}
.search_anniu_top:hover:after{
    border: 1px solid #fff;
}
.search_anniu_top2{
    display: inline-block;
    width: 68px;
    height: 58px;
    position: relative;
    border: 2px solid #eee;
    border-left: none;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.search_anniu_top2:before{
    content: "";
    position: absolute;
    margin: auto;
    top: 13px;
    right: 1px;
    bottom: 0;
    left: 15px;
    width: 6px;
    height: 1px;
    background: #666;
    transform: rotate(45deg);
    transition: all .5s;
}
.search_anniu_top2:after{
    content: "";
    position: absolute;
    margin: auto;
    top: -3px;
    right: 4px;
    bottom: 0; 
    left: 0px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #666;
    transition: all .5s;
}
.search_anniu_top2:hover:before{
    background: #71bd5a;
}
.search_anniu_top2:hover:after{
    border: 1px solid #71bd5a;
}
.sousuokuang{
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    box-shadow: 0px 5px 5px rgba(153, 153, 153, 0.1);
    background: #fff;
    display: flex;
}
.sousuokuang .container{
    display: block;
}
.container_style{
    padding-top: 120px;
    padding-bottom: 120px;
}
.container_style ul li{
    line-height: 24px;
}
.sousuo_group{
    position: relative;
}
.sousuo_control{
    box-shadow: none;
    border: 2px solid #eee;
    background: none;
    border-radius: 8px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    padding: 15px 18px;
    height: 58px;
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
    border-right: 0px;
    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: #666;
    transform: rotate(45deg);
}
.search_anniu2:after{
    content: "";
    position: absolute;
    top: 28px;
    left: 15px;
    width: 28px;
    height: 1px;
    background: #666;
    transform: rotate(-45deg);
}
.search_anniu2:hover{
    transform: rotate(180deg);
}
.tanchuang_tuichu{
    position: absolute;
    height: 58px;
    right: -58px;
    top: 0px;
    background: #eee;
    cursor: pointer;
    transition: all .5s;
}
.tanchuang_tuichu:hover{
    background: #fc7f82;
}
.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;
    padding-left: 20px;
}
.nav_breadcrumb .breadcrumb-item+.breadcrumb-item{
    padding-left: 0px;
}
.nav_breadcrumb .breadcrumb-item+.breadcrumb-item::before{
    content: none;
}
/*
.nav_breadcrumb:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: #ddd;
}*/
.nav_sousuo{
    padding: 10px;
    display: flex;
}
.nav_sousuo svg {
    width: 24px;
    height: 24px;
    fill: #666;
    transition: 0.5s;
}
.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: 24px;
    height: 24px;
    fill: #666;
    transition: 0.5s;
}
.nav_min .pc_yuyan .nav-link{
    padding: 10px;
}

.nav_min .pc_yuyan .nav-link svg {
    width: 24px;
    height: 24px;
    fill: #666;
    transition: 0.5s;
}
.nav_logon_anniu a{
    padding: 10px 12px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.5s;
    font-size: 15px;
    line-height: 24px;
    position: relative;
    color: #fff;
    background: #fc7f82;
    text-align: center;
    border: none;
    width: 100%;
}
.nav_logon_anniu.pt-3.pb-3 span.user-email{
padding: 10px 12px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.5s;
    font-size: 15px;
    line-height: 24px;
    position: relative;
    color: #fff;
    background: #85d26e;
    text-align: center;
    width: 100%;
    margin-bottom: 5px;
}
  
.nav_logon_anniu a.nav_logon_anniu_register{
    background: #eee;
    color: #666;
}
.nav_logon_anniu a:hover{
    background: #fc7f82;
    color: #fff;
}

.nav_logon_anniu a.user-email.me-2{
  background: #85d26e;
  color: #fff;
  width: 100%;
  margin-bottom: 5px;
}
.nav_logon .dropdown-menu,.pc_yuyan .dropdown-menu{
    right: 0;
    left: auto;
}

/* 隐藏导航栏的类 */
.header-hidden {
    transform: translateY(-100%);
}

.nav_min:hover,.is-active{
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05);
}

/*侧边栏目*/
.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: 680px;
}
.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: 24px;
    z-index: 1000;
}
.banner .swiper-pagination .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    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;
    line-height: 70px;
    margin-bottom: 12px;
}
.banner_nr h4{
    font-size: 20px;
    line-height: 40px;
    opacity: 0.8;
}

.banner .swiper-slide h1{
    transform:translateY(100px);
    opacity:0;
    transition:all .8s;
}
.banner .swiper-slide h4{
    transform:translateY(100px);
    opacity:0;
    transition:all .8s;
    transition-delay: 0.4s;
}
.banner .swiper-slide .banner_gengduo{
    transform:translateY(100px);
    opacity:0;
    transition:all .8s;
    transition-delay: 0.8s;
}
.banner .swiper-slide-active h1,.banner .swiper-slide-active h4,.banner .swiper-slide-active .banner_gengduo{
    transform:translateY(0);
    opacity:1;
}

.banner .swiper-button-next,.banner .swiper-button-prev{
    width: 48px;
    height: 48px; 
    background: rgba(0,0,0,0.2);
    border-radius: 48px;
    transition: 0.5s;
}
.banner .swiper-button-prev{
    left: 10px;
    margin-top: -24px;
}
.banner .swiper-button-next{
    right: 10px;
    margin-top: -24px;
}
.banner .swiper-button-prev:after,.banner .swiper-button-next:after{
    color: #fff;
    font-size: 18px;
}
.banner .swiper-button-prev:hover:after,.banner .swiper-button-next:hover:after{
    color: #000;
}
.banner .swiper-button-next:hover,.banner .swiper-button-prev:hover{
    background: rgba(252,218,15,1);
}

/*主体*/
.text_zt{
    font-family: "Quicksand";
}
.ix_ps_g{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 18px;
}
.ix_ps_card{
    border-radius: 12px;
}
.ix_ps_card .card-img-overlay{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 38px;
}

.ix_bt h1{
    font-size: 40px;
}
.ix_bt2{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ix_bt2 h1{
    margin-bottom: 0px;
}

.ix_bestsellers_g{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 18px;
}
.ps_card{
    background: #f9f9f9;
    padding: 50px 16px 30px 16px;
}
.ps_card .card-body{
    padding: 24px 0px 0px 0px;
}
.ps_card .card-body h5{
    margin-bottom: 0px;
}
.ps_card .product-image{
    position: relative;
}
.ps_card .product-image .ps_img_zhezao{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.ps_card .product-image:hover .ps_img_zhezao{
    opacity: 1;
}
.ps_card .product-image:hover .ps_img_zhezao2{
    opacity: 0;
}
.ps_card_sale{
    position: absolute;
    left: 16px;
    top: 16px;
    display: inline-block;
    padding: 4px 10px;
    background: #fc7f82;
    z-index: 500;
    font-size: 14px;
    color: #fff;
    border-radius: 5px;
}
.ps_card_button{
    position: absolute;
    right: 16px;
    top: 16px;
    width: 33px;
    height: 33px;
    border-radius: 33px;
    background: #fff;
    border: none;
    z-index: 500;
    padding: 0px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
}
.heart-checkbox{
    display: none;
}
.heart{
    position: relative;
    width: 33px;
    height: 33px;
    border-radius: 33px;
    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;
    color: #fc7f82;
}
.heart-checkbox:checked + .heart .bi_1,.heart:hover .bi_1{
    display: none;
}
.heart-checkbox:checked + .heart .bi_2,.heart:hover .bi_2{
    display: block;
}
/* 颜色色块容器 */
.color-dots {
    display: flex;
    gap: 8px;
    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: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}
/* 鼠标悬浮色块时放大，增强反馈 */
.color-dot:hover {
    transform: scale(1.2);
}
/* 自定义颜色值（匹配你图片中的色块） */
.color-dots .color-dots1{
    background-image: linear-gradient(to left, #F33979, #DEDD50);
}
.color-dots .color-dots2{
    background: #B3736D;
}
.color-dots .color-dots3{
    background: #000000;
}
.color-dots .color-dots4{
    background: #0046C6;
}

.ix_zhanshi_card .card-body{
    padding: 120px 0px 0px 60px;
}
.ix_zhanshi_swiper_bottom .swiper-wrapper .swiper-slide{
    width: 72px;
    height: 72px;
    border-radius: 72px;
    overflow: hidden;
    cursor: pointer;
    margin-right: 15px;
    border: 2px solid rgba(255, 255, 255, 0);
}
.ix_zhanshi_swiper_bottom .swiper-wrapper .swiper-slide-thumb-active{
    border: 2px solid rgba(252, 127, 130, 1);
}
.ix_zhanshi_swiper_bottom .swiper-wrapper .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ix_zhanshi_swiper{
    position: absolute;
    width: 50%;
    left: 50%;
    z-index: 500;
    padding-top: 24px;
    padding-left: 60px;
}

.ix_wmdfw_g{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 48px;
}
.ix_wmdfw_card .ix_wmdfw_card_img{
    position: relative;
}
.ix_wmdfw_card .ix_wmdfw_card_img:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    background: #fdd46d;
    transform: translate(-50%,-50%);
    z-index: -1;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
.ix_wmdfw_card .ix_wmdfw_card_img img{
    width: 100%;
    height: 240px;
    object-fit: scale-down;
    z-index: 500;
}
.ix_wmdfw_card .card-body{
    padding-top: 38px;
}
.ix_wmdfw_card .card-body h3{
    color: #fdd46d;
}
.ix_wmdfw_card .card-body .gengduo{
    margin-top: 38px;
    color: #fdd46d !important;
    border: 2px solid #fdd46d;
}
.ix_wmdfw_card .card-body .gengduo:hover{
    color: #fff !important;
    background: #fdd46d;
    border: 2px solid #fdd46d;
}
.ix_wmdfw_card2 .ix_wmdfw_card_img:before{
    background: #ffaeae;
}
.ix_wmdfw_card2 .card-body h3{
    color: #ffaeae;
}
.ix_wmdfw_card2 .card-body .gengduo{
    margin-top: 38px;
    color: #ffaeae !important;
    border: 2px solid #ffaeae;
}
.ix_wmdfw_card2 .card-body .gengduo:hover{
    color: #fff !important;
    background: #ffaeae;
    border: 2px solid #ffaeae;
}
.ix_wmdfw_card3 .ix_wmdfw_card_img:before{
    background: #71b1ff;
}
.ix_wmdfw_card3 .card-body h3{
    color: #71b1ff;
}
.ix_wmdfw_card3 .card-body .gengduo{
    margin-top: 38px;
    color: #71b1ff !important;
    border: 2px solid #71b1ff;
}
.ix_wmdfw_card3 .card-body .gengduo:hover{
    color: #fff !important;
    background: #71b1ff;
    border: 2px solid #71b1ff;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: hidden;
    cursor: grab;
}
.comparison-slider:active {
    cursor: grabbing;
}
.bottom-img {
    position: absolute;
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
}
.top-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 核心：裁剪宽度，默认显示50% */
    clip-path: inset(0 50% 0 0);
}
.slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 10;
}
.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 11;
}

/*bottom*/
@media (min-width: 980px) {
    .collapse_block{
        display: block!important;
    }
}
.wap1200{display: block;}
.wap900{display: none;}
@media (max-width: 980px){
    .collapse1{
            display: none;
    }
    .collapse1.in{
            display: block;
    }
    .wap1200{display: none;}
    .wap900{display: block;}
}
@media (max-width: 980px){
    .bottom_xiala:after{
        content: "";
        position: absolute;
        right: 6px;
        top: 23px;
        width: 1px;
        height: 13px;
        background: #fff;
        text-align: center;
        transition: 0.5s;
        transform: rotate(90deg);
        opacity: 0;
    }
    .bottom_xiala:before{
        content: "";
        position: absolute;
        right: 0px;
        top: 29px;
        width: 13px;
        height: 1px;
        background: #fff;
        text-align: center;
        transition: 0.5s;
    }
    .collapsed .bottom_xiala:after{
        content: "";
        position: absolute;
        right: 6px;
        top: 23px;
        width: 1px;
        height: 13px;
        background: #fff;
        text-align: center;
        transition: 0.5s;
        transform: rotate(0deg);
        opacity: 1;
    }
    .collapsed .bottom_xiala:before{
        content: "";
        position: absolute;
        right: 0px;
        top: 29px;
        width: 13px;
        height: 1px;
        background: #fff;
        text-align: center;
        transition: 0.5s;
    }
}

.bottom_bg{
    background: #71bd5a;
    padding-top: 88px;
    margin-top: 68px;
    color: #fff;
    position: relative;
}
.ix_nr_bottom_a{
    width: 138px;
    height: 138px;
    border-radius: 138px;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.ix_nr_bottom_a span{
    position: relative;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    display: inline-block;
}
.ix_nr_bottom_a span i{
    position: absolute;
    right: -24px;
    top: -6px;
    transform: rotate(-45deg);
    font-size: 24px;
}
.ix_nr_bottom_a:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url(../img/ix_nr_bottom_a.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: ix_xuanzhuan 12s linear infinite;
    transition: 0.5s;
}
.ix_nr_bottom_a:hover:before{
    left: 5%;
    top: 5%;
    width: 90%;
    height: 90%;
}
@keyframes ix_xuanzhuan {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.bottom_ul{
    padding-top: 24px;
    padding-bottom: 28px;
}
.bottom_ul .bottom_bt a{
    margin: 0px;
    padding: 0px 0px 0px 0px;
    font-size: 20px;
    position: relative;
    color: #fff;
    font-weight: 700;
    /*text-transform: uppercase;*/
}
.bottom_ul .bottom_bt{
    margin-bottom: 0px;
}
.bottom_bt{
    font-weight: 400;
    font-size: 14px;
}
.bottom_ul .card{
    background: none;
    padding: 12px 0px 12px 0px;
}
.bottom_ul .card .bottom_nav_a a{
    display: block;
    line-height: 40px;
    font-size: 15px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.5s;
}
.bottom_ul .card .bottom_nav_a a:hover{
    color: #fcda0f;
    margin-left: 6px;
}

.bottom_bg .bottom_contact li{
    padding-left: 28px;
    color: #A2A2A2;
    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;
}

.bottom_logo{
    display: inline-block;
}
.bottom_logo img{
    width: 340px;
}

.bottom_form{
    background: #fff;
    border-radius: 50px;
    padding: 3px;
    border: none;
}
.bottom_form .form-control{
    background: none;
    border-radius: 12px!important;
    font-size: 16px;
    height: 52px;
    outline: none;
    box-shadow: none;
    padding: 14px 18px;
    border: none;
}
.bottom_form button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 52px;
    border-radius: 20px!important;
    color: #fc7f82;
    transition: 0.5s;
    font-weight: 700;
    border-radius: 50px;
    font-size: 30px;
    border: none;
    background: #fff;
    
}

.di_beian{
    padding: 38px 0px;
    line-height: 24px;
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}
.botom_beianhao .list-inline-item:not(:last-child){
    margin-right: 12px;
}

.bottom_dibu{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ----------------------------------------------------------------
    Products
----------------------------------------------------------------- */
.about_breadcrumb li a,.about_breadcrumb li{
    line-height: 24px;
    display: inline-block;
    color: #666;
    font-size: 14px;
}
.about_breadcrumb .about_breadcrumb_home a{
    padding-left: 30px;
    position: relative;
    color: #999;
}
.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: #666;
}

.products_bt h1{
    font-size: 48px;
    flex-shrink: 0;
    flex-grow: 1;
    margin-bottom: 0px;
}
.products_bt{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.products_bt_right{
    display: flex;
}
.ps_shaixuan_anniu{
    padding: 5px;
    display: none;
    color: #666;
}
.ps_shaixuan_anniu svg{
    width: 28px;
    height: 28px;
    fill: #999;
}

.ps_xiala button,.ps_xiala button:hover{
    background: #ffd3d4;
    border-radius: 50px;
    padding: 10px 48px 10px 24px;
    border: none;
    position: relative;
    transition: 0.3s;
    color: #000;
}
.ps_xiala button i{
    position: absolute;
    right: 18px;
    top: 10px;
    transition: 0.3s;
    color: #000;
}
.ps_xiala button.show{
    background: #fc7f82;
    color: #fff;
    border-color: #fc7f82;
}
.ps_xiala button.show i{
    transform: rotate(180deg);
    color: #fff;
}
.ps_xiala .dropdown-toggle::after{
    display: none;
}
.ps_xiala .dropdown-menu{
    right: 0!important;
    left: auto!important;
    border: none;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
}
.ps_xiala .dropdown-menu a{
    font-size: 14px;
}
.ps_xiala .dropdown-menu a:hover{
    color: #fc7f82;
}

.filters_offcanvas{
    position: static;
    visibility: visible;
}
.filters_offcanvas.offcanvas-start{
    transform: translateX(0%);
    border: none;
    width: 100%;
}
.filters_offcanvas .offcanvas-header{
    display: none;
}
.filters_offcanvas .offcanvas-body{
    padding: 0px 18px 0px 0px;
}

.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: 18px;
}
.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 .ps_accordion_item .ps_accordion_item_a span{
    position: absolute;
    right: 0px;
    top: 22px;
    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_nr_g{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 18px;
}

.ps_accordion_item_nr_colour{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.ps_accordion_item_nr_colour span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.colour_xuanze{
    position: static;
    background: #8D429F;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 1);
}
.colour_xuanze .heart .bi_2{
    color: #eee;
}
.colour_xuanze2{
    background: #000;
}
.colour_xuanze3{
    background: #1790C8;
}
.colour_xuanze4{
    background: #fff;
}
.colour_xuanze5{
    background: #7BBA3C;
}
.colour_xuanze6{
    background: #FED533;
}
.colour_xuanze7{
    background: #808080;
}
.colour_xuanze8{
    background: #F0728F;
}

.ps_accordion_item_nr_control{
    display: flex;
    align-items: center;
}
.ps_accordion_item_nr_control .form-control{
    box-shadow: none;
    border-color: #ddd;
    padding-left: 24px;
    font-size: 14px;
}
.ps_accordion_item_nr_control .ps_accordion_item_nr_control_left{
    position: relative;
}
.ps_accordion_item_nr_control .ps_accordion_item_nr_control_left span{
    position: absolute;
    top: 50%;
    left: 8px;
    font-size: 14px;
    transform: translateY(-50%);
}
.ps_accordion_item_nr_control .form-control::placeholder{
    color: #999;
}

/*详情页*/
.ps_ds_swiper{
    position: sticky;
    top: 88px;
    padding-right: 17%;
}
.ps_ds_swiper_right{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 15%;
    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_swiper_right .swiper-wrapper .swiper-slide-thumb-active{
    border: 1px solid #fc7f82;
}
.ps_ds_star{
    display: flex;
    gap: 5px;
    font-size: 14px;
    align-items: center;
}

.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_accordion{
    padding-top: 0px;
    padding-bottom: 0px;
}
.ps_ds_accordion .accordion-item{
    border-bottom: 1px solid #E9E9E9;
}
.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: 18px;
    line-height: 1.8rem;
    padding: 18px 41px 18px 0px;
    margin-bottom: 0px;
}
.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: 12px;
    right: 0px;
    color: #000;
    width: 41px;
    height: 41px;
    border-radius: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(180deg);
    transition: 0.5s;
}
.ps_ds_accordion .accordion-button.collapsed span{
    transform: rotate(0deg);
    transition: 0.5s;
}
.ps_ds_accordion .accordion-body{
    padding: 0px 0px 24px 0px;
}

.ps_ds_bt{
    padding-bottom: 18px;
    margin-bottom: 38px;
}
.ps_ds_bt h6{
    margin-bottom: 18px;
}
.ps_ds_bt h2{
    margin-bottom: 14px;
}
.ps_ds_jg{
    margin-bottom: 24px;
}
.ps_ds_jg h5{
    margin-bottom: 0px;
}
.ps_ds_jg p img{
    width: 100px;
}
.ps_ds_colour h6{
    font-size: 16px;
    margin-bottom: 20px;
}
.ps_ds_colour_span{
    display: inline-block;
    background: #c8c7c8;
    font-size: 14px;
    padding: 4px 10px;
    margin-left: 10px;
    border-radius: 3px;
    color: #fff;
}
.ps_ds_colour_ul li a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    /*border-radius: 52px;*/
    background: #fff;
    border: 1px solid #fff;
}
.ps_ds_colour_ul li.active a{
    border: 1px solid #fc7f82;
}
.ps_ds_colour_ul li a img{
    width: 38px;
    height: 38px;
    object-fit: scale-down;
}
.ps_ds_colour_ul .list-inline-item:not(:last-child){
    margin-right: 3px;
}

.ps_ds_goumai{
    margin-top: 38px;
}
.ps_ds_goumai .ps_ds_goumai_top{
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.ps_ds_goumai .ps_ds_goumai_top a{
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ps_ds_goumai .ps_ds_goumai_top a i{
    font-size: 24px;
}
.ps_ds_goumai .ps_ds_goumai_top .ps_card_button{
    position: static;
    width: 57px;
    height: 57px;
    background: #ffe3e4;
    box-shadow: none;
}
.ps_ds_goumai .ps_ds_goumai_top .ps_card_button .heart{
    width: 57px;
    height: 57px;
    font-size: 24px;
}
.ps_ds_goumai .ps_ds_goumai_top .ps_card_button .heart .bi_1{
    color: #fc7f82;
    display: flex;
}
.ps_ds_goumai .ps_ds_goumai_top .ps_card_button .heart .bi_2{
    display: none;
    color: #fc7f82;
}
.ps_ds_goumai .ps_ds_goumai_top .ps_card_button .heart-checkbox:checked + .heart .bi_1,.ps_ds_goumai .ps_ds_goumai_top .ps_card_button .heart:hover .bi_1{
    display: none;
}
.ps_ds_goumai .ps_ds_goumai_top .ps_card_button .heart-checkbox:checked + .heart .bi_2,.ps_ds_goumai .ps_ds_goumai_top .ps_card_button .heart:hover .bi_2{
    display: flex;
}
.ps_ds_zhekou p{
    font-size: 14px;
    color: #666;
}
.ps_ds_zhekou p svg{
    width: 20px;
    height: 20px;
    fill: #666;
}
.ps_ds_dian li{
    position: relative;
    padding-left: 18px;
}
.ps_ds_dian li:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #eee;
}
.ps_ds_nr_card{
    background: #f9f9f9;
    margin-bottom: 38px;
}
.ps_ds_nr_card .card-body{
       padding: 50px 10px 50px 20px;
}
.ps_ds_nr_card .card-body h6{
    margin-bottom: 16px;
}
.ps_ds_nr_card .card-body h1{
    margin-bottom: 24px;
}
.ps_ds_nr_card2 .card-body{
    padding: 50px 50px 50px 220px;
}

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

/* 颜色选择容器 */
.color-selector {
    display: flex;
    gap: 10px;
    margin: 15px 0px 0px 0px;
}
.color-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #eee;
    cursor: pointer;
    transition: all 0.2s;
}
.color-item.active {
    border-color: #fff;
    box-shadow: 0 0 0 2px #333;
}
.color-item:hover {
    transform: scale(1.1);
}

.personalise_modal{
    padding: 24px;
}
.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;
}

/* 图片单选 */
.img-radio-group {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px 14px;
    flex-wrap: wrap;
    padding: 24px 12px 12px 12px;
}
.img-radio {
    display: none;
}
.img-label {
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    height: 60px;
}
.img-label img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.img-radio:checked + .img-label {
    border-color: #fc7f82; /* 蓝色选中边框 */
    box-shadow: 0 0 12px rgba(252, 127, 130, 0.4);
    transform: scale(1.05); /* 轻微放大 */
    
}

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

.personalise_gengduo{
    font-size: 15px;
    padding: 10px 38px;
}

/*Settlement*/
.ps_ds_setlement li{
    background: #fff;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ps_ds_setlement li:not(:last-child){
    border-bottom: 1px solid #eee;
}
.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;
}
.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;
}
.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: #fc7f82;
}

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

.about_swiper_top{
    overflow: visible;
}
.about_swiper_top_card img{
    padding: 58px;
    background: #f9f9f9;
}
.about_swiper_top_card .card-body{
    background: #fff;
    box-shadow: 0px 20px 60px -10px rgba(0, 0, 0, 0.2);
    z-index: 500;
    position: relative;
    padding: 68px 58px 88px 58px;
}
.about_swiper_top_card .card-body h2{
    margin-bottom: 24px;
}
.about_swiper_top{
    position: relative;
}
.about_swiper_top .swiper-wrapper,.about_swiper_bottom .swiper-wrapper{
    height: auto;
}
.about_swiper_top .swiper-wrapper{
    align-items: center;
}
.about_swiper_top .swiper-wrapper .swiper-slide{
    opacity: 0;
    transition: 0.3s;
}
.about_swiper_top .swiper-wrapper .swiper-slide-active{
    opacity: 1;
}
.about_swiper_bottom{
    margin-top: 48px;
}
.about_swiper_bottom:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 6px;
    width: 100%;
    height: 4px;
    background: #eee;
    border-radius: 4px;
}
.about_swiper_bottom .swiper-wrapper .swiper-slide{
    text-align: center;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #999;
    cursor: pointer;
}
.about_swiper_bottom .swiper-wrapper .swiper-slide span{
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 16px;
    background: #eee;
    margin-bottom: 10px;
}
.about_swiper_bottom .swiper-wrapper .swiper-slide-thumb-active{
    color: #fc7f82;
}
.about_swiper_bottom .swiper-wrapper .swiper-slide-thumb-active span{
    background: #fc7f82;
}

.at_our_core_g{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 14px;
}
.at_our_core_icon{
    padding: 38px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffdfe0;
}
.at_our_core_icon span{
    width: 78px;
    height: 78px;
    border-radius: 78px;
    display: flex;
    background: #fcda0f;
    color: #fff;
    justify-content: center;
    align-items: center;
}
.at_our_core_icon span svg{
    width: 38px;
    height: 38px;
    fill: #fff;
}
.at_our_core_icon h5{
    margin-top: 12px;
}

.at_our_core_card .card-body{
    padding-bottom: 38px;
}
.at_our_core_card .card-body p{
    margin-top: 18px;
}

.about_bt h6{
    line-height: 24px;
}
.contact_me_form .form-control{
    border: 1px solid #EBEBEB;
    box-shadow: none;
    border-radius: 0px;
}

/* ----------------------------------------------------------------
    About us
----------------------------------------------------------------- */
.ergonomic_banner{
    width: 100%;
    height: 720px;
    overflow: hidden;
    position: relative;
}
.ergonomic_banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 100;
}
.ergonomic_banner video{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    right: 0px;
    object-fit: cover;
}
.ergonomic_banner .card-img-overlay{
    background: rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ergonomic_g{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}
.ergonomic_g_card .card-body{
    padding: 18px 0px 0px 0px;
}

.schools_g{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px 14px;
}
.schools_card{
    background: #f9f9f9;
    padding: 12px 12px 0px 12px;
    transition: 0.5s;
}
.schools_card .card-body{
    padding: 24px 0px;
}
.schools_card:hover{
    background: #fff;
}
.schools_ul{
    margin-bottom: 16px;
}
.schools_ul li a{
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: #f9f9f9;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-bottom: 12px;
}

.blog_g{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
}
.blog_g_card .card-body{
    padding: 24px 24px 30px 24px;
}
.blog_g_card .card-body p{
    font-size: 14px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height: 72px;
    margin-top: 18px;
}

.blog_details{
    padding: 48px;
}

.ns_ds_bottom{
    padding-top: 30px;
}
.ns_ds_bottom ul{
    padding-right: 24px;

}
.news_gengduo,.news_gengduo:hover{
    font-size: 14px;
    padding: 10px 28px;
    border: 1px solid #2F6CF2;
    white-space: nowrap;
}
.news_ds_ul .list-inline-item:not(:last-child) {
    margin-right: 12px;
}

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

.news_bt{
    font-size: 30px;
}

.lifetime_g{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 10px;
}
.lifetime_g2{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.lifetime_g3{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.lifetime_g_card .card-body{
    padding: 24px 24px 38px 24px;
}

.shipping_card{
    margin-bottom: 24px;
}
.shipping_card svg{
    width: 150px;
    height: 150px;
    fill: #fc7f82;
}

/* ----------------------------------------------------------------
    登录注册
----------------------------------------------------------------- */
.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;
}

.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;
    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: #71bd5a;
    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 button{
    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;
}

/* ----------------------------------------------------------------
    个人中心
----------------------------------------------------------------- */
.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: #fc7f82;
}
.pl_yuyan_button.show svg{
    fill: #fc7f82;
}
.pl_yuyan_button.show i{
    transform: rotate(180deg);
    color: #fc7f82;
}
.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{
    padding: 6px 6px;
}
.pl_g_zhuti{
    background: #fff;
    border-radius: 12px;
    padding: 24px;
}
.pl_g_no{
    padding: 48px 0px;
}
.schools_pb1{
    padding-bottom: 48px;
}

/* ----------------------------------------------------------------
    响应
----------------------------------------------------------------- */
@media (min-width: 1200px){
    .lg_none{
        display: none;
    }
}
@media (max-width: 1800px){
    
}
@media (max-width: 1600px){
    .nav_min .navbar-nav .nav-item{
        margin: 0px 28px 0px 0px;
    }
    .nav_breadcrumb{
        padding-left: 15px;
    }
    .nav_sousuo,.nav_min .pc_yuyan .nav-link,.nav_min .nav_logon .nav-link{
        padding: 5px;
    }
    .nav_min{
        padding: 0px 3rem 0px 3rem;
    }
    .wrap_fluid{
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .ergonomic_banner{
        height: 520px;
    }
}

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

@media (max-width: 1400px){
    .banner{
        height: 520px;
    }
    .banner_nr h1{
        font-size: 48px;
    }
    .comparison-slider{
        height: 520px;
    }
    .nav_breadcrumb{
        gap: 2px;
    }
    .nav_min .navbar-nav .nav-item{
        margin: 0px 20px 0px 0px;
    }

    .filters_offcanvas .offcanvas-body{
        padding: 0px 0px 0px 0px;
    }

    .nav_min{
        padding: 0px 2rem 0px 2rem;
    }
    .wrap_fluid{
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .ps_ds_nr_card .card-body{
        padding: 50px 50px 50px 50px;
    }
    .pl_nav{
        padding: 0px;
    }
}

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

@media (max-width: 1199px){
    .md_none{
        display: none;
    }
    .nav_min .navbar-brand{
        margin: 17px 15px 17px 15px;
    }
    .nav_min .navbar-brand img{
        height: 24px;
    }
    .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_top:after{
        border: 1px solid #000!important;
    }
    .search_anniu_top:before{
        height: 1px;
        background: #000!important;
    }
    .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 0px 16px 0px;
    }
    .nav_min .navbar-nav .top_xiala .nav-link {
        padding-right: 40px;
    }
    .nav_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;
    }
    .container_style{
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .md_collapse{
        max-height: 80vh;
        overflow: auto;
    }
    .md_collapse::-webkit-scrollbar {
        width: 0px;
    }

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

    .bottom_dibu{
        flex-direction: column-reverse;
    }
    .botom_beianhao li{
        display: block;
    }
    .botom_beianhao .list-inline-item:not(:last-child){
        margin-right: 0px;
    }
    .di_beian{
        padding: 24px 0px;
    }
    .bottom_follow .list-inline-item{
        margin-top: 0px;
        margin-bottom: 10px;
    }

    .header-hidden {
        transform: translateY(0);
    }
    .nav_top{
        display: none;
    }
    .nav_min .navbar-brand{
        position: relative;
        left: 0%;
        transform: translateX(0%);
        flex-shrink: 0;
    }
    .nav_breadcrumb{
        position: absolute;
        right: 44px;
        top: 14px;
        padding-left: 0px;
    }
    .nav_breadcrumb:before{
        content: none;
    }
    .nav_min .nav_logon .nav-link svg,.nav_sousuo svg{
        width: 20px;
        height: 20px;
    }
    .nav_min .navbar-nav .nav-link{
        display: flex;
    }
    .nav_min .navbar-nav .nav-link svg{
        fill: #666;
    }
    .md_collapse .navbar_nav1{
        padding-bottom: 0px;
    }
    .md_collapse .navbar_nav2{
        padding-top: 0px;
    }
    .nav_min .nav-item .nav-link:before{
        content: none;
    }
    .ix_bt h1{
        font-size: 30px;
    }
    .ix_bestsellers_g{
        grid-template-columns: repeat(2, 1fr);
    }
    .ix_zhanshi_card .card-body{
        padding: 30px 0px 0px 0px;
    }
    .ix_zhanshi_swiper{
        position: static;
        padding-left: 0px;
        margin-bottom: 24px;
        width: 100%;
        padding-top: 0px;
    }
    .ix_wmdfw_g{
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 24px;
    }
    .nav_xiala .dropdown-toggle, .nav_xiala2 .dropdown-toggle{
        display: block!important;
    }
    .nav-product-wrap .wrap_fluid{
        padding-left: 15px;
        padding-right: 15px;
    }
    .menu_b_left{
        padding: 24px 0px;
        grid-template-columns: repeat(2, 1fr);
    }
    .menu_b_right{
        padding: 24px 0px;
    }

    .ps_shaixuan_anniu{
        display: flex;
        align-items: center;
    }
    .filters_offcanvas.offcanvas-start{
        width: var(--bs-offcanvas-width);
        border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
        transform: translateX(-100%);
    }
    .filters_offcanvas{
        position: fixed;
        visibility: hidden;
    }
    .filters_offcanvas .offcanvas-header{
        display: flex;
    }
    .filters_offcanvas .offcanvas-body{
        padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
    }
    .products_bt h1{
        font-size: 38px;
    }

    .lifetime_g2{
        grid-template-columns: repeat(1, 1fr);
    }
    .schools_g{
        grid-template-columns: repeat(3, 1fr);
    }
    .wrap_fluid{
        padding-left: 15px;
        padding-right: 15px;
    }
    .ps_ds_setlement_div1{
        width: 15%;
    }
    .ps_ds_setlement_div2{
        width: 35%;
    }
    .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;
    }

    .pl_touxiang .dropdown-menu{
        left: auto;
        right: 0px;
    }
    .lifetime_g{
        grid-template-columns: repeat(2, 1fr);
    }
    .ergonomic_banner{
        height: 420px;
    }

    .ps_nr_g{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 980px){
    /*bottom*/
    .bottom_bg{
        padding-top: 88px;
    }
    .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-top: 1px solid rgba(255, 255, 255, 0.3);
    }
    .md_erweima{
        margin-top: 24px;
    }
    .bottom_ul{
        padding-top: 0px;
    }
    .dingyue{
        margin-bottom: 24px;
    }
    .di_beian{
        margin-top: 0px;
    }

    .banner{
        height: 420px;
    }
    .ix_ps_g{
        grid-template-columns: repeat(1, 1fr);
    }
    .ix_bestsellers_g{
        grid-template-columns: repeat(2, 1fr);
    }
    .ix_wmdfw_g{
        grid-template-columns: repeat(1, 1fr);
    }
    .comparison-slider{
        height: 380px;
    }
    .menu_b_right{
        padding-top: 0px;
        padding-bottom: 15px;
    }
    .menu_b_left{
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .ps_nr_g{
        grid-template-columns: repeat(2, 1fr);
    }
    .schools_pb1{
        padding-bottom: 38px;
    }

    .ps_ds_setlement_address{
        grid-template-columns: repeat(1, 1fr);
    }
    .ps_ds_setlement li{
        flex-wrap: wrap;
    }
    .ps_ds_setlement_div1{
        width: 20%;
    }
    .ps_ds_setlement_div2{
        width: 50%;
    }
    .ps_ds_setlement_div3{
        width: 30%;
        justify-content: flex-end;
    }
    .ps_ds_setlement_div4{
        width: 60%;
        justify-content: flex-start;
    }
    .ps_ds_setlement_div5{
        width: 20%;
    }
    .ps_ds_setlement_div6{
        width: 20%;
        justify-content: flex-end;
    }
    .at_our_core_g{
        grid-template-columns: repeat(2, 1fr);
    }
    .about_swiper_top_card img{
        padding: 38px;
    }
    .about_swiper_top_card .card-body{
        padding: 48px 38px 68px 38px;
    }
}

@media (max-width: 768px){
    .tanchuang_tuichu{
        right: 0px;
        background: #999;
        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,.ix_zhanshi_card .card-body h1,.products_bt h1,.about_bt h1,.schools_bt,.ps_ds_nr_card .card-body h1,.news_bt{
        font-size: 24px;
        line-height: 38px;
    }
    .ix_bt h1,.ps_ds_bt h2,.pl_cr_bt{
        font-size: 20px;
        line-height: 30px;
    }
    .ps_card .card-body h5,.pl_g_no h5{
        font-size: 16px;
    }
    .banner_nr h4,.p_16 p, .p_16,.bottom_dibu,.menu_b_left a,.p_15 p, .p_15,.about_bt h6,.ps_ds_bt h6,.ps_ds_colour h6,.pl_g_no p{
        font-size: 14px;
        line-height: 24px;
    }

    .banner_nr{
        text-align: center;
        height: 600px;
    }
    .banner_gengduo,.gengduo{
        padding: 6px 24px;
        font-size: 13px;
    }
    .banner .swiper-button-next, .banner .swiper-button-prev{
        width: 38px;
        height: 38px;
        margin-top: -19px;
    }
    .banner .swiper-button-prev:after, .banner .swiper-button-next:after{
        font-size: 14px;
    }
    .banner_nr h1{
        margin-bottom: 6px;
    }
    .banner{
        height: 200px;
    }
    .banner .swiper-pagination{
        bottom: 10px;
    }
    
    .swiper-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.banner-bg-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 200px!important;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
    .banner_nr .banner_gengduo{
        margin-top: 18px!important;
    }
    .ix_bestsellers_g{
        gap: 16px 8px;
    }
    .ps_card{
        padding: 30px 10px 20px 10px;
    }
    .ps_card .card-body{
        padding: 12px 0px 0px 0px;
    }
    .color-dot{
        width: 10px;
        height: 10px;
    }
    .color-dots{
        gap: 5px;
        margin-top: 4px;
    }
    .ps_card_sale{
        font-size: 12px;
        left: 10px;
        top: 10px;
    }
    .heart{
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    .ps_card_button{
        right: 10px;
        top: 10px;
        width: 28px;
        height: 28px;
    }
    .ps_card .card-body h6{
        font-size: 14px;
        margin-bottom: 0px!important;
    }
    .ix_zhanshi_swiper_bottom .swiper-wrapper .swiper-slide{
        width: 58px;
        height: 58px;
        margin-right: 10px;
    }
    .bottom_logo img{
        width: 200px;
    }
    .ix_nr_bottom_a{
        width: 88px;
        height: 88px;
    }
    .ix_nr_bottom_a span{
        font-size: 13px;
    }
    .ix_nr_bottom_a span i{
        display: none;
    }
    .bottom_bg{
        padding-top: 68px;
        margin-top: 48px;
    }
    .bottom_form .form-control{
        height: 42px;
    }
    .bottom_form a{
        width: 68px;
        height: 42px;
        font-size: 20px;
    }
    .bottom_follow li a{
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    .comparison-slider{
        height: 200px;
    }
    .bottom-img {
    position: absolute;
    width: 100%;
    height: auto;
    /* object-fit: cover; */
}
    .menu_b_left,.menu_b_right{
        grid-template-columns: repeat(1, 1fr);
    }

    .ps_nr_g{
        gap: 16px 8px;
    }
    .products_bt{
        align-items: flex-start;
        flex-direction: column;
    }
    .products_bt_right{
        margin-top: 12px;
        justify-content: space-between;
        width: 100%;
        align-items: flex-end;
    }
    .ps_shaixuan_anniu svg{
        width: 24px;
        height: 24px;
    }
    .ps_xiala button, .ps_xiala button:hover{
        padding: 7px 38px 7px 18px;
        font-size: 13px;
    }
    .ps_xiala button i{
        right: 15px;
        top: 8px;
    }

    .shipping_card .card-body{
        padding: 24px 0px 0px 0px;
    }
    .schools_g{
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 8px;
    }
    .schools_card .card-body{
        padding: 18px 0px;
    }
    .schools_card .card-body h6{
        font-size: 13px;
    }

    .schools_pb1{
        padding-bottom: 14px;
    }
    .lifetime_g3{
        grid-template-columns: repeat(1, 1fr);
    }
    .ps_ds_colour_ul li a{
        width: 42px;
        height: 42px;
        /*border-radius: 42px;*/
    }
    .ps_ds_goumai .ps_ds_goumai_top a i{
        font-size: 18px;
    }
    .ps_ds_goumai .ps_ds_goumai_top .ps_card_button .heart,.ps_ds_goumai .ps_ds_goumai_top .ps_card_button{
        width: 40px;
        height: 40px;
    }
    .ps_ds_goumai .ps_ds_goumai_top .ps_card_button .heart{
        font-size: 16px;
    }
    .ps_ds_accordion .accordion-header h5{
        font-size: 16px;
    }
    .ps_ds_nr_card .card-body{
        padding: 24px;
    }
    .ps_ds_nr_card .card-body h6{
        margin-bottom: 10px;
    }
    .ps_ds_nr_card .card-body h1{
        margin-bottom: 14px;
    }
    .personalise_modal{
        padding: 12px 0px 0px 0px;
    }
    .zoom-img{
        width: 68px;
        height: 68px;
    }
    .ps_ds_setlement li{
        padding: 18px;
    }

    .ps_ds_setlement_div1{
        width: 100%;
    }
    .ps_ds_setlement_div2 .offcanvas_a{
        padding: 14px 0px;
    }
    .ps_ds_setlement_div2{
        width: 80%;
    }
    .ps_ds_setlement_div3{
        width: 20%;
    }
    .ps_ds_setlement_ship li{
        font-size: 13px;
        padding: 10px 15px;
    }
    .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_now_card .card-body h4{
        font-size: 16px;
    }
    .ps_now_card .card-body h4 span{
        font-size: 14px;
        margin-left: 24px;
    }

    .pl_touxiang .pl_yuyan_button span{
        margin-right: 0px;
    }
    .pl_touxiang .pl_yuyan_button div{
        display: none;
    }
    .logon_form{
        padding: 38px 24px;
    }

    .lifetime_g{
        grid-template-columns: repeat(1, 1fr);
    }
    .ergonomic_banner{
        height: 240px;
    }
    .at_our_core_g{
        grid-template-columns: repeat(1, 1fr);
    }
    .blog_details{
        padding: 24px;
    }
    .blog_g{
        grid-template-columns: repeat(1, 1fr);
    }

    .about_swiper_top_card img{
        padding: 24px;
    }
    .about_swiper_top_card .card-body{
        padding: 24px 24px 38px 24px;
    }
}




/* 分页整体样式 */
.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 20px 0;
  gap: 6px;
  flex-wrap: wrap;
}

/* 分页文字（总数） */
.pagination li:first-child a {
  color: #666;
  padding: 6px 10px;
  cursor: default;
  border: none;
}

/* 分页按钮基础样式 */
.pagination li a {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #eee;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #fff;
}

/* 鼠标悬浮 */
.pagination li a:hover {
  background-color: #fc7f82;
  color: #fff;
  border-color: #fc7f82;
}

/* 当前选中页码 */
.pagination li.active a {
  background-color: #fc7f82;
  color: #fff;
  border-color: #fc7f82;
  font-weight: 500;
}

/* 下一页按钮统一风格 */
.pagination li:last-child a {
  padding-left: 16px;
  padding-right: 16px;
}










.ps_card_button .bi-heart { display:block;    font-size: 20px;margin-top: 3px; }
.ps_card_button .bi-heart-fill { display:none;font-size: 20px;margin-top: 3px; }
.ps_card_button.active-heart .bi-heart { display:none; }
.ps_card_button.active-heart .bi-heart-fill { display:block; }


.life-stage-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
        }
        .stage-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .stage-text-box {
            border: 2px solid #fc7f82;
            width: 100%;
            padding: 25px 15px;
            margin-bottom: 20px;
        }
        .stage-title {
            font-size: 1.8rem;
            font-weight: bold;
            color: #000000;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        .stage-subtitle {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        .stories-text {
            color: #ff0000;
            /*font-weight: bold;*/
        }
        .stage-age {
            font-size: 1.4rem;
            color: #000000;
        }
        .stage-illustration {
            width: 100%;
            height: 220px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }
        .stage-illustration img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }

        /* 平板适配 */
        @media (max-width: 1024px) {
            .life-stage-container {
                grid-template-columns: repeat(2, 1fr);
            }
            .stage-title {
                font-size: 1.2rem;
            }
            .stage-subtitle {
                font-size: 1.3rem;
            }
            .stage-age {
                font-size: 1.2rem;
            }
        }

        /* 手机适配 */
        @media (max-width: 600px) {
            .life-stage-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .stage-text-box {
                padding: 20px 10px;
            }
            .stage-title {
                font-size: 1.8rem;
            }
            .stage-subtitle {
                font-size: 1.1rem;
            }
            .stage-age {
                font-size: 1rem;
            }
            .stage-illustration {
                height: 180px;
            }
        }
        
        
        
        
/* 购物车角标 - 红色圆圈 */
#dr_cart_nums {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    background-color: #ff3333; /* 正红色 */
    color: #ffffff;          /* 白色文字 */
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    padding: 0 4px;
    z-index: 99;
}

/* 购物车为空时隐藏圆圈 */
#dr_cart_nums:empty,
#dr_cart_nums:is(0) {
    display: none !important;
}




      /* 弹窗内部样式自动适配，不干扰页面 */
        .mini-cart-item { display: flex; align-items: center; padding: 10px 0; border-bottom: 1px solid #eee; }
        .mini-cart-item img { width: 50px; height: 50px; object-fit: cover; margin-right: 10px; border-radius: 4px; }
        .mini-cart-info { flex: 1; min-width: 0; }
        .mini-cart-title { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .mini-cart-price { font-size: 12px; color: #999; }
        .mini-cart-total { color: red; font-weight: bold; font-size: 14px; text-align: right; }
        .mini-cart-delete { font-size: 12px; color: #999; background: none; border: none; cursor: pointer; margin-top: 4px; }
        .mini-cart-footer { padding: 15px 0; }
        .mini-cart-total-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 15px; }
        .mini-checkout { display: block; background: #ff4444; color: #fff; text-align: center; padding: 12px; border-radius: 6px; text-decoration: none; }
        









/* 评论弹窗整体美化 */
/* 评论弹窗整体 - 紧凑大气 */
.personalise_modal {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    font-family: "Microsoft YaHei", Arial, sans-serif;
    box-sizing: border-box;
}

/* 标题 */
.personalise_modal h2 {
    font-size: 18px;
    color: #333;
    margin: 0 0 20px 0 !important;
    font-weight: 600;
    text-align: left;
}

/* 上传区域 */
#dr_row_image {
    margin-bottom: 20px;
}
#dr_row_image .control-label {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    padding: 0;
    margin-bottom: 8px;
    display: block;
    width: 100%;
}

/* 上传按钮 */
.fileinput-button {
    background: #fc7f82 !important;
    border: none !important;
    color: #fff !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    margin-right: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}
.fileinput-unused {
    background: #71bd5a !important;
    border: none !important;
    color: #fff !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}

/* 上传提示 */
.finecms-file-ts {
    font-size: 12px;
    color: #999;
    margin: 6px 0 10px 0;
}

/* 已上传图片列表 */
#fileupload_image_files {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.files-grid-list .grid-item {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}
.files-row_preview img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
.op-btn {
    position: absolute;
    top: 4px;
    right: 4px;
}
.file_delete {
    background: #fc7f82 !important;
    border: none !important;
    color: #fff !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    padding: 0 !important;
}

/* ====================== 评分区域（星星不挤、美观） ====================== */
.ds-review {
    margin: 20px 0;
}
.ds-review ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ds-review li {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}
.ds-review .opname {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    min-width: 45px;
}

/* 星星容器 */
.commstar {
    display: flex;
    gap: 10px; /* 星星间距拉开，不拥挤 */
}



/* 头像 */
.ds-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eee;
}
.ds-avatar-top {
    margin-top: 10px !important;
}

/* 评论输入框 */
.ds-textarea-wrapper {
    margin-top: 14px;
}
textarea.J_CmFormField {
    width: 100%;
    min-height: 100px;
    padding: 12px 14px;
    border: 1px solid #eee;
    border-radius: 10px;
    font-size: 14px;
    resize: none;
    outline: none;
    box-sizing: border-box;
}
textarea.J_CmFormField:focus {
    border-color: #fc7f82;
}
textarea.J_CmFormField::placeholder {
    color: #bbb;
}

/* 底部工具栏 */
.ds-post-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
}

/* 提交按钮（绿色） */
.ds-post-button {
    background: #71bd5a !important;
    border: none !important;
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
}
.ds-post-button:hover {
    opacity: 0.9;
}

/* 表情按钮 */
.ds-add-emote {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpath d='M8 14s1.5 2 4 2 4-2 4-2'%3E%3C/path%3E%3Cline x1='9' y1='9' x2='9.01' y2='9'%3E%3C/line%3E%3Cline x1='15' y1='9' x2='15.01' y2='9'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
    background-size: 100%;
    opacity: 0.7;
}
.ds-add-emote:hover {
    opacity: 1;
}

.ds-clear {
    clear: both;
}

/* ====================== 移动端适配 ====================== */
@media (max-width: 768px) {
    .personalise_modal {
        padding: 15px;
        border-radius: 12px;
    }
    .personalise_modal h2 {
        font-size: 16px;
        margin-bottom: 15px !important;
    }
    .ds-review li {
        margin-bottom: 12px;
    }
    .commstar {
        gap: 8px;
    }
    .commstar a {
        width: 18px;
        height: 18px;
    }
    textarea.J_CmFormField {
        min-height: 90px;
        font-size: 13px;
    }
    .ds-post-button {
        padding: 7px 16px !important;
        font-size: 13px !important;
    }
}




/* 评论列表整体 */
.comment.row {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f5f5f5;
    position: relative;
    transition: all 0.2s;
}
.comment.row:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* 左侧用户信息 */
.comment .author.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

/* 头像 */
.comment .ds-avatar img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid #f3f3f3 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* 用户名/身份 */
.comment .ds-comment-header {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-top: 8px;
    margin-bottom: 6px;
}

/* 评分区域 */
.comment .grade {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
/* 星星样式 */
.comment .reviewRating {
    font-size: 15px;
    letter-spacing: 2px;
}
/* 实心星星 绿色 */
.comment .reviewRating i.fa-star {
    color: #71bd5a !important;
}
/* 空心星星 灰色 */
.comment .reviewRating i.fa-star-o {
    color: #dcdcdc !important;
}
/* 评分数字 */
.comment .grade p {
    margin: 0;
    font-size: 13px;
    color: #71bd5a;
    font-weight: 600;
}

/* 右侧评论内容 */
.comment .commnet-dettail {
    padding-left: 15px;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

/* 评论时间 */
.comment .info-time {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

/* 评论图片区域 */
.comment .fc-mall-comment-image {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
/* 单张图片 */
.comment .fc-mall-comment-image .col-md-2 {
    width: auto !important;
    padding: 0 !important;
}
.comment .fc-mall-comment-image .thumbnail {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    transition: 0.2s;
}
.comment .fc-mall-comment-image img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover !important;
    display: block !important;
}
.comment .fc-mall-comment-image .thumbnail:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ====================== 手机端适配 ====================== */
@media (max-width: 768px) {
    .comment.row {
        flex-direction: column;
        padding: 15px;
        border-radius: 12px;
    }
    .comment .author.text-center {
        flex-direction: row;
        align-items: center;
        margin-bottom: 12px;
        width: 100%;
        justify-content: flex-start;
        text-align: left !important;
    }
    .comment .ds-avatar img {
        width: 50px !important;
        height: 50px !important;
        margin-right: 10px;
    }
    .comment .ds-comment-header {
        margin: 0 10px 0 0;
    }
    .comment .commnet-dettail {
        padding-left: 0;
        width: 100%;
    }
    .comment .fc-mall-comment-image img {
        width: 70px !important;
        height: 70px !important;
    }
}







/* 侧边购物车样式 - 美化版 */
.mini-cart-loading {
    text-align: center;
    padding: 60px 0;
    color: #999;
}
.spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #71bd5a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.mini-cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
    font-size: 14px;
}
.mini-cart-item {
    display: flex;
    gap: 12px;
    padding: 15px;
    border-bottom: 1px solid #eee;
    align-items: center;
}
.mini-cart-item .item-img {
    width: 70px;
    flex-shrink: 0;
}
.mini-cart-item .item-img img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}
.mini-cart-item .item-info {
    flex: 1;
}
.item-title {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}
.item-price {
    font-size: 13px;
    color: #666;
}
.item-actions {
    text-align: right;
    flex-shrink: 0;
}
.item-subtotal {
    font-weight: bold;
    font-size: 14px;
    color: #e4393c;
    margin-bottom: 6px;
}
.item-delete {
    background: none;
    border: none;
    color: #999;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
}
.item-delete:hover {
    color: #e4393c;
}
.mini-cart-footer {
    padding: 15px;
    background: #fafafa;
    border-top: 1px solid #eee;
}
.cart-summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
}
.cart-checkout-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background-color: #71bd5a;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
}
.cart-checkout-btn:hover {
    background-color: #5aa043;
    color: #fff;
}













/* 定制按钮 */
.xr-btn-diy {
    flex: 1;
    padding: 15px;
    background-color: #71bd5a;
    color: #fff !important;
    text-align: center;
    font-size: 16px;
    min-width: 150px;
}
.xr-btn-diy:hover {
    background-color: #529f3b;
}

/* 遮罩层 */
.mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
}

/* 弹窗盒子 */
.pop-box {
    width: 90%;
    max-width: 1400px;
    padding: 0;
    background: #fff;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 90vh;
    overflow-y: auto;
}

/* 关闭按钮 */
.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #999;
    z-index: 10;
}
.close-btn:hover {
    color: #333;
}

/* ==================== 定制工具样式（使用diyshoolbag的大尺寸样式） ==================== */
.pop-box .title {
    font-size: 28px;
    color: #222;
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center;
    padding: 20px 0 0 0;
}

.pop-box .container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 0 30px 30px 30px;
}

.pop-box .canvas-box {
    width: 650px;
    border: 2px dashed #666;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.pop-box .bag-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.pop-box .arc-text-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pop-box .arc-text-container svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.pop-box .arc-text-path {
    fill: none;
    stroke: none;
}

.pop-box .arc-text-content {
    font-weight: bold;
    letter-spacing: 2px;
}

.pop-box #logo-container {
    position: absolute;
    top: 350px;
    left: 280px;
    width: 200px;
    height: 200px;
    touch-action: none;
}

.pop-box #custom-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.pop-box .setting-panel {
    flex: 1;
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.pop-box .setting-item {
    margin-bottom: 24px;
}

.pop-box .setting-label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.pop-box input,
.pop-box select,
.pop-box button {
    width: 100%;
    padding: 11px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
}

.pop-box button {
    background-color: #409eff;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 500;
}

.pop-box button:hover {
    background-color: #337ecc;
}

.pop-box .options {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.pop-box .item {
    width: 65px;
    height: 65px;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    padding: 5px;
    background: #f8f8f8;
    transition: all 0.2s;
}

.pop-box .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pop-box .item.active {
    border-color: #409eff;
    background: #e6f7ff;
}

.pop-box .tips {
    font-size: 12px;
    color: #888;
    margin-top: 6px;
}

.pop-box .submit-box {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.pop-box .error-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #f56c6c;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    z-index: 100000;
    display: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.pop-box .error-message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        top: -50px;
    }
    to {
        top: 20px;
    }
}

.pop-box .loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.pop-box .loading.show {
    display: flex;
}

.pop-box .loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #fff;
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 预览弹窗 */
.pop-box .modal {
    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: 999999;
}

.pop-box .modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.pop-box .modal .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #666;
}

.pop-box #preview-img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    object-fit: contain;
}

.pop-box .save-btn {
    margin-top: 15px;
    background: #67c23a;
}
















/* 悬浮外层容器 */
.float-wrap{
    position:fixed;
    right:15px;
    bottom:50px;
    z-index:99999;
    display:flex;
    flex-direction:column;
    gap:10px;
}
/* 圆形按钮通用 */
.float-btn{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    box-shadow:0 2px 8px rgba(0,0,0,0.2);
}
/* 聊天触发容器：hover生效区域 */
.chat-hover-box{
    display:flex;
    flex-direction:column;
    gap:10px;
}
/* 隐藏展开项 */
.hide-item{
    opacity:0;
    visibility:hidden;
    transform:translateX(20px);
    transition:all 0.3s ease;
}
/* hover聊天区域才展开 */
.chat-hover-box:hover .hide-item{
    opacity:1;
    visibility:visible;
    transform:translateX(0);
    
}
.float-btn:hover {
    color: #000 !important;
}
/* 颜色 */
.btn-wp{background:#25D366;}
.btn-email{background:#4479F7;}
.btn-tel{background:#ff6737;}
.btn-chat{background:#07c160;}
.btn-top{background:#999;cursor:pointer;}

/* 移动端适配 */
@media(max-width:768px){
    .float-wrap{right:10px;bottom:40px;gap:8px;}
    .float-btn{width:42px;height:42px;font-size:17px;}
}