.header{
    width: 100%;
    height: auto;
}

.header-pc{
    width: 90%;
    max-width: 1200px;
    /* height: 100px; */
    height: auto;
    /* background-color: red; */
    margin: auto;
}

.header-pc-logo{
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    padding: 12px 0;
}

.header-pc-logo img{
    height: 100%;
    width: auto;
}

.header-pc-logo .icon-20xiaoshifuwurexian{
    font-size: 40px;
}

.header-pc-logo .phone-tips{
    font-size: 18px;
}

.header-pc-logo .phone-number{
    margin-left: 6px;
    font-size: 24px;
    color:var(--theme);
}

.header-pc-navs{
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 9999;
}

.header-pc-navs li{
    display: list-item;
    /* float: left; */
    position: relative;
}

.header-pc-navs li a{
    width: 115px;
    display: block;
    font-size: 16px;
    text-align: center;
    line-height: 45px;
    /* box-sizing: border-box; */
    /* padding: 0 34px; */
    color:#000;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}

.header-pc-navs .active{ 
    background-color:var(--theme);
    color: white;
}

.header-pc-navs li:hover{
    background-color:var(--theme);
    color: white;
    cursor: pointer;
}

.header-pc-navs li:hover a{
    color: white;
}

.header-pc-navs .header-pc-navs-product:hover .product-items{
    display: block;
}

.header-pc-navs .product-items{
    display: none;
    padding: 16px 12px;
    background-color:white;
    border-top: 4px solid var(--theme);
    list-style: none;
    position: absolute;
    top:45px;
    left: 0;
    z-index: 9;
}

.header-pc-navs .product-items li{
    display: list-item;
}

.header-pc-navs .product-items li a{
    width: 200px;
    display: block;
    font-size: 14px;
    color: #000;
    text-align: left;
    line-height: 40px;
    border-bottom: 1px solid #ddd;
}

.header-pc-navs .product-items li a::before{
    content: '';
    display: inline-block;
    width: 8px;
    height:8px;
    background-color: var(--theme);
    margin-right: 6px;
}

.header-pc-navs .product-items li a:hover{
    background-color:white;
    border-bottom: 1px solid var(--theme);
    color: var(--theme);
}

.header-pc-navs .product-items  .product-item-active a{
    border-bottom: 1px solid var(--theme) !important;
    color: var(--theme) !important;
}

.header-mobile{
    display: none;
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    padding: 2px 12px;
    position: relative;
}
.header-mobile-logo{
    width: 100%;
    height: 100%;
}
.header-mobile-logo img{
    height: calc(100% - 4px);
    width: auto;
}

.header-mobile-logo .icon-caidan,
.header-mobile-logo .icon-guanbi{
    font-size: 20px;
}

.header-mobile-logo .icon-guanbi{
    display: none;
}

.header-mobile-navs{
    /* display: none; */
    width: 100%;
    height: 0px;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 16px;
    margin: 0;
    position: absolute;
    top:50px;
    left: 0;
    background-color: var(--themeBg);
    list-style: none;
    animation-duration: 0.3s;
    animation-timing-function:linear;
    z-index:99;
}

.header-mobile-navs li{
    width: 100%;
    display: list-item;
    /* border-bottom: 1px solid #999; */
    padding: 6px 0;
}

.header-mobile-navs .li-last{
    border-bottom: none;
}

.header-mobile-navs li a{
    width: 100%;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: white;
}

.header-mobile-navs-product .product-title i{
    float: right;
    transition: 0.2s;
}

.header-mobile-navs-product .product-items{
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
    list-style: none;
    display: none;
}

.header-mobile-navs-product .product-items li a{
    font-size: 14px;
    line-height: 20px;
}

@keyframes navs-open-ani {
    0%   {height: 0px;}
    100% {height: 338px;}
  }

  @keyframes navs-close-ani {
    0%   {height: 338px;}
    100% {height: 0px;}
  }

@media screen and (max-width: 1024px) {
    .header-pc{
        display: none;
    }
    .header-mobile{
        display: block;
    }
}