#oc-main-magnet-header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 40;
    background-color: #fff;
}
/* pc端头部样式 */
.header-pc{
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 0.16rem 2.2rem 0.26rem;
}

.header-pc .header-top{
    display: flex;
    align-items: center;
    margin-bottom: 0.11rem;
    position: relative;
}

.header-pc .header-top .logo{
    width: 3.94rem;
    height: 0.98rem;
    flex-shrink: 0;
    cursor: pointer;
}
.header-pc .header-top .logo img{
    display: inline-block;
    width: 100%;
}

.header-pc .header-top .search-box{
    position: relative;
    width: 8.72rem;
    height: 0.46rem;
    margin-left: 0.55rem;
}

.header-pc .header-top .search-input{
    position: relative;
    width: 100%;
    height: 0.46rem;
}
.header-pc .header-top .header-input{
    background-color: #fff;
    outline: none;
    border: 1px solid #1D1D1B;
    padding-left: 0.37rem;
    border-radius: 0.31rem;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    font-size: 0.16rem;
}
/* 搜索结果样式 */
.header-pc .header-top .search-result {
    position: absolute;
    max-height: 6.17rem;
    overflow-y: auto; 
    flex-shrink: 0;
    background-color: #fff;
    border: 1px solid rgba(233, 233, 233, 1);
    border-radius: 4px;
    fill: var(--, #FFF);
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    overscroll-behavior: contain;
}

.header-pc .header-top .search-result .result-item{
    display: flex;
    width: 8.72rem;    
    align-items: center;
    box-sizing: border-box;
    padding: 0.06rem 0.29rem;
    border-bottom: 1px solid rgba(233, 233, 233, 1);
    cursor: pointer;
}
.header-pc .search-result .result-item img{
    width: 0.88rem;
    height: 0.88rem;
    flex-shrink: 0;
    margin-right: 0.32rem;
}
.header-pc .search-result .result-item .description{
    flex: 1;
    font-size: 0.18rem;
    color: var(--Color);

}
.header-pc .search-result .result-item .description .keyword{
    font-weight: bold;
}

.header-pc .search-icon{
    position: absolute;
    right: 0.25rem;
    top: 0.06rem;
    width: 0.34rem;
    height: 0.34rem;
}
.header-pc  .search-icon img{
    width: 100%;
}
.header-pc .header-icons{
    display: flex;
    padding-left: 0.7rem; 
}
.header-pc .header-icons .shop-box:hover .shop-dialog{
    display: block;
}
.header-pc .header-icons .header-right-icon{
    display: inline-block;
    width: 0.35rem;
    height: 0.35rem;
    flex-shrink: 0;
    /* margin-left: 0.7rem; */
    cursor: pointer;
}

/* 购物车 */
.header-pc .header-icons .shop-box{
    margin-left: 0.12rem;
    padding-left: 0.1rem;
    position: relative;
}
.header-pc .header-icons .shop-box img{
    margin-left: 0;
    cursor: pointer;
}
.header-pc .header-icons .shop-box .count{
    position: absolute;
    width: 0.18rem;
    height: 0.18rem;
    top: 0;
    left: 0.28rem;
    line-height: 0.18rem;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    background-color: #E60012;
}
.header-pc .mouse-in-box{
    position: absolute;
    top: -0.05rem;
    right: 0;
    height: 0.1rem;
    width: 1rem;

}
/* 购物车弹框样式 */
.header-pc .shop-dialog{
    display: none;
    position: absolute;
    right: 0;
    top: 0.38rem;
    width: 5.08rem;
    font-size: 0.14rem;
    box-sizing: border-box;
    background-color: #fff;
    background: var(--, #FFF);
    box-shadow: 0px 0.02rem 0.04rem 0px rgba(0, 0, 0, 0.12);
}
/* 购物车为空时 */
.header-pc .shop-dialog .empty-shopping-cart{
    width: 100%;
    height: 1.47rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-pc .shop-dialog .empty-shopping-cart img{
    width: 0.94rem;
    height: 0.9rem;
    cursor: default;
}
.header-pc .shop-dialog .empty-shopping-cart .describe{
    color: #d2d2d1;
    font-weight: 400;
    font-size: 0.22rem;
    margin-left: 0.21rem;
}
.header-pc .shop-dialog .tip{
    padding: 0.08rem 0.18rem;
    color: var(--Color);
    font-size: 0.14rem;
    box-sizing: border-box;
}
.header-pc .shop-dialog .products-box{
    max-height: 6.74rem;
    overflow-y: auto;
    padding: 0 0.18rem;
    box-sizing: border-box;
    /* 阻止滚动影响到父元素的滚动 */
    overscroll-behavior: none;
    -ms-scroll-chaining: contain
}


.header-pc .shop-dialog .products-item{
    padding: 0.14rem 0;
    border-bottom: 1px solid #E9E9E9;
    display: flex;
    box-sizing: border-box;
    padding-right: 0.1rem;
}

.header-pc .shop-dialog .goods-img{
    width: 1rem;
    height: 1rem;
    margin-right: 0.24rem;
}
.header-pc .shop-dialog .goods-img>img{
    width: 100%;
}

.header-pc .shop-dialog .goods-info{
    flex: 1;
}
.header-pc .shop-dialog .goods-info .name{
    width: 2.61rem;
    font-size: 0.14rem;
    line-height: 0.21rem;
    margin-bottom: 0.04rem;
}
.header-pc .shop-dialog .goods-info .name a{

    color: #1D1D1B;
}
.header-pc .shop-dialog .goods-info .name:hover a{
    color: var(--Color);
}
.header-pc .shop-dialog .goods-info .info{
    color: #1D1D1B; 
    width: 2.61rem;
    font-size: 0.14rem;
    line-height: 0.21rem;
    margin-bottom: 0.16rem;
}
.header-pc .shop-dialog .goods-info .count-box img{
    width: 0.08rem;
    height: 0.08rem;
}
.header-pc .shop-dialog .goods-info .count-box .count-input{
    width: 0.48rem;
    height: 0.21rem;
    color: var(--Color);
    border-radius: 0.04rem;
    box-shadow: 0 0.01rem 0.04rem 0 rgba(0, 0, 0, 0.25);
    margin: 0 0.09rem;
    font-size: 0.14rem;
    text-align: center;
}
.header-pc .shop-dialog .goods-info .count-box .unit{
    font-size: 0.14rem;
    color: #666;
}
.header-pc .shop-dialog .goods-info .count-box img{
    cursor: pointer;
}
.header-pc .shop-dialog  .btn-delete{
    width: 0.18rem;
    height: 0.18rem;
    cursor: pointer;
}

.header-pc .shop-dialog  .btn-delete svg{
    width: 0.18rem;
    height: 0.18rem;
}

.header-pc .shop-dialog  .dialog-btn{
    text-align: right;
    height: 0.52rem;
    background: #E9E9E9;
    line-height: 0.52rem;
    box-sizing: border-box;
    padding-right: 0.25rem;
}


.header-pc .shop-dialog  .dialog-btn .btn{
    width: 1.52rem;
    height: 0.30rem;
    line-height: 0.3rem;
    font-size: 0.14rem;
}



/* pc导航-start */
.nav-wrapper .pc-menu-top{
    font-weight: 500;
    color: #1D1D1B;
}

.menu-pc-nav {
    height: 0.49rem;
    line-height: 0.49rem;
}
.nav-ul{
    width: 12.5rem;
    display: inline-flex;
    justify-content: space-around;
    margin-right: 0.2rem;
}

.nav-ul-li{
   display: inline-block;
   /* width: 19.7%; */
   text-align: center;
   align-items: center;
   padding-bottom: 0.26rem;
}
.nav-ul-li::after{
    content: "";
    display: table;
    clear: both;
}
.first-nav-title{
    font-size: 0.18rem;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    color: #1D1D1B;
}
.nav-ul-li .first-nav-title:hover{
    color: var(--Color);
}
.header-menu-arrows{
    display: inline-block;
    width: 0.2rem;
    height: 0.2rem;
}
.tree-menu-wrapper{
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100vw;
    background-color: #fff;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    padding: 0.32rem 2.1rem 0.83rem;
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.2rem;
}
.nav-wrapper .second-nav{
    width: 24%;
    text-align: left;
}
.nav-wrapper .second-nav .second-nav-name{
    font-size: 0.18rem;
    font-weight: 600;
    margin-bottom: 0.12rem;
    line-height: 0.22rem;
}
.nav-wrapper .second-nav .third-nav-ul .third-nav-li{
    font-size: 0.2rem;
    font-weight: 400;
    max-width: 3.62rem;
    line-height: 0.3rem;
}
.nav-wrapper .second-nav a{
    color: #1D1D1B;
}
.nav-wrapper .second-nav a:hover{
    color: var(--Color);
    text-decoration: underline;
}
.nav-wrapper .second-nav .third-nav-ul li{
    margin-bottom: 0.1rem;
}
.nav-wrapper .second-nav .third-nav-ul  li a{
    line-height: 0.24rem;
    text-align: left;
}
.menu-pc-nav .get-quote-btn{
    width: 1.51rem;
    height: 0.49rem;
}

.tree-menu-none{
    display: none;
}

.nav-wrapper .mobile-menu-top{
    display: none;
}
/* pc导航-end */


/* 移动端头部初始化隐藏 */
.header-mobile{
    display: none;
}

/* 移动端样式 */
@media screen and (max-width: 1025px) {
    .header-pc{
        display: none;
    }
    .header-mobile{
        display: block;
    }
    input::-webkit-input-placeholder { /* WebKit browsers */
        font-size: 0.24rem;
        color: #666666;
    }
     
    input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
        font-size: 0.24rem;
        color: #666666;
    }
     
    input::-moz-placeholder { /* Mozilla Firefox 19+ */
        font-size: 0.24rem;
        color: #666666;
    }
     
    input:-ms-input-placeholder { /* Internet Explorer 10+ */
        font-size: 0.24rem;
        color: #666666;
    }
}

/* 移动端头部样式 */
.header-mobile .header-top{
    width: 100vw;
    height: 0.5rem;
    line-height: 0.5rem;
    flex-shrink: 0;
    background: #636363;
    display: flex;
    padding: 0 0.29rem;
}
.header-mobile .header-top div{
    flex: 1;
}
.header-mobile .header-top div img{
    width: 0.4rem;
    height: 0.4rem;
}
.header-mobile .header-top .top-right{
    text-align: right;
}

.header-mobile .header-top .top-right a{
    width: 0.4rem;
    display: inline-block;
    padding-top: 0.05rem; 
}

.header-mobile .header-top .top-right .shop{
    display: inline-block;
    position: relative;
}
.header-mobile .header-top .top-right .i-shop-cart{
    margin-left: 0.15rem;
}
.header-mobile .header-top .top-right .shop .count{
    position: absolute;
    width: 0.18rem;
    height: 0.18rem;
    top: 0.1rem;
    left: 0.36rem;
    line-height: 0.18rem;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    background-color: #E60012;
}
/* 移动端搜索结果样式 */
.mobile-search-wrapper{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.31);
}

.mobile-search-wrapper .close-box{
    height: 1rem;
    line-height: 1rem;
    text-align: right;
    padding: 0 0.31rem;
    cursor: pointer;
    background-color: #FFF;
}
.mobile-search-wrapper .close-box img{
    width: 0.38rem;
    height: 0.38rem;
}
.mobile-search-wrapper .search-box{
    position: relative;
    width: 100vw;
    height: 0.73rem;
    padding: 0 0.32rem 1.88rem;
    background-color: #FFF;
    box-sizing: content-box;
}

.mobile-search-wrapper .search-input{
    position: relative;
    height: 0.73rem;
    width: 6.85rem;
}
.mobile-search-wrapper .header-input{
    background-color: #fff;
    outline: none;
    border: 1px solid #1D1D1B;
    padding-left: 0.32rem;
    border-radius: 0.365rem;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.mobile-search-wrapper .search-result {
    /* display: none; */
    position: absolute;
    top: 1rem;
    left: 0;
    max-height: 6.29rem;
    overflow-y: auto; 
    flex-shrink: 0;
    background-color: #fff;
    padding: 0.1rem 0.34rem;
    border-radius: 4px;
    fill: var(--, #FFF);
    overscroll-behavior: contain;
}

.mobile-search-wrapper .search-result .result-item{
    display: flex;
    width: 6.85rem;    
    align-items: center;
    box-sizing: border-box;
    padding: 0.07rem 0.24rem;
    border-bottom: 1px solid rgba(233, 233, 233, 1);
    cursor: pointer;
}
.mobile-search-wrapper .search-result .result-item img{
    width: 0.88rem;
    height: 0.88rem;
    flex-shrink: 0;
    margin-right: 0.32rem;
}
.mobile-search-wrapper .search-result .result-item .description{
    flex: 1;
    font-size: 0.2rem;
    color: var(--Color);

}
.mobile-search-wrapper .search-result .result-item .description .keyword{
    font-weight: bold;
}
.mobile-search-wrapper .search-icon{
    position: absolute;
    right: 0.29rem;
    top: 0.17rem;
    width: 0.4rem;
    height: 0.4rem;
}
.mobile-search-wrapper  .search-icon img{
    width: 100%;
}

.header-mobile .icons-box{
    height: 0.9rem;
    width: 100vw;
    line-height: 0.9rem;
    background: var(--, #FFF);
    box-shadow: 0 0.01rem 0.05rem 0 rgba(94, 94, 94, 0.25);
}

.header-mobile .icons-box .i-menu{
    width: 0.44rem;
    height: 0.44rem;
    display: inline-block;
    margin-left: 0.3rem;
}

.header-mobile .icons-box .i-logo{
    width: 2.2rem;
    height: 0.55rem;
    display: inline-block;
    margin-left: 1.91rem;
}

.header-mobile .get-quote-btn{
    width: 1.41rem;
    height: 0.51rem;
    margin-left: 0.84rem;
}


/* 移动端下拉菜单 */
.oc-magnet-header-nav-mobile {
    display: none;
    background-color: #fff;    
    position: absolute;
    top: 0;
    z-index: 12;
    width: 100vw;
}

.oc-magnet-header-nav-mobile .close-icon-wrapper {
    display: flex;
    width: 100%;
    height: 1rem;
    align-items: center;
    padding: 0 0.3rem;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.oc-magnet-header-nav-mobile .close-icon-wrapper .close-icon {
    width: 0.38rem;
    height: 0.38rem;
}


.oc-magnet-header-nav-mobile .nav-content {
    padding: 0 0.90rem;
    background-color: #fff;
    width: 100%;
}

.oc-magnet-header-nav-mobile .first-nav {
    font-weight: 400;
    font-size: 0.36rem;
    color: #1D1D1B;
    margin-bottom: 0.54rem;
}

.oc-magnet-header-nav-mobile .first-nav:first-child {
    margin-top: 0.45rem;
}

.oc-magnet-header-nav-mobile .first-nav .first-nav-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.oc-magnet-header-nav-mobile .first-nav .first-nav-title .drop-down-icon{
    width: 0.22rem;
    height: 0.22rem;
}

.oc-magnet-header-nav-mobile .second-nav {
    display: none;
    max-height: 50vh;
    overflow-y: auto;
}

.oc-magnet-header-nav-mobile .second-nav li {
    margin-bottom: 0.4rem;
}

.oc-magnet-header-nav-mobile .second-nav li:first-child {
    margin-top: 0.3rem;
}

.oc-magnet-header-nav-mobile .first-nav a {
    font-style: normal;
    font-weight: 800;
    font-size: 0.36rem;
    color: #1D1D1B;
}

.oc-magnet-header-nav-mobile .second-nav li a {
    font-style: normal;
    font-weight: 500;
    font-size: 0.32rem;
    color: #1D1D1B;
    opacity: 0.6;
}
.oc-magnet-header-nav-mobile .get-quote-btn{
    width: 2.07rem;
    height: 0.72rem;
    border-radius: 0.35rem;
    font-size: 0.24rem;
    border-radius: 35px;
    border: 1px solid var(--Color, #C8C8C8);
    margin-bottom: 1rem;
    box-shadow: 0 0.02rem 0.04rem 0 rgba(0, 0, 0, 0.25) inset, 0 0.02rem 0.04rem 0 rgba(0, 0, 0, 0.25);
}

.oc-magnet-success-modal{
    display: none;
}