﻿header {
    position: fixed;
    top: 9px;
    left: 0;
    width: 100%;
    z-index: 99999;
}
.header-center-drop .drop-item:hover::before {
    display: block;
}
.header-center-drop .drop-item::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 0;
    width: 10px;
    height: 150px;
    display: none;
}
.header-center-drop3{
    position: absolute;
    left: calc(100% + 8px);
    background-color: var(--color-1);
    top: 0;
    border-radius: 5px;
    transform: translateY(15px);
    opacity: 0;
    transition: 0.8s cubic-bezier(.3,2,.4,1);
    overflow-x: hidden;
    overflow-y: overlay;
    max-height: 315px;
    box-shadow: 0 0 10px 0 #ffffff40;
}
/* width */
.header-center-drop3::-webkit-scrollbar {
    width: 4px;
  }
  
/* Track */
.header-center-drop3::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

/* Handle */
.header-center-drop3::-webkit-scrollbar-thumb {
    background: var(--color-2); 
}




.header-center-drop3 .drop3-item-link:hover {
    background-color: var(--color-2);
}
.header-center-drop3 .drop3-item:first-child .drop3-item-link {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.header-center-drop3 .drop3-item:last-child .drop3-item-link {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.header-center-drop3 .drop3-item-link {
    white-space: nowrap;
    padding: 6px 10px;
    color: #fff;
    font-size: 16px;
    transition: all .3s;
    margin: 0px 0;
    transition: all .3s;
}
.header-help {
    height: 68px;
    width: 100%;
}

header.block {
    position: relative !important;
}

.header-right-search {
}

    .header-right-search .icon {
        color: #919EAB;
        font-size: 13px;
        padding-left: 10px;
        padding-right: 4px;
        height: 100%;
    }

    .header-right-search input {
        outline: none;
        border: none;
        background-color: transparent;
        color: rgb(105 102 101);
        font-size: 15px;
        font-family: barLIta;
        height: 100%;
        padding-right: 10px;
        flex: 1;
        line-height: 100%;
    }

header.fixed .header-help {
    position: fixed !important;
    box-shadow: 0 0 10px 0 #3333333b;
}

.header-btn-rs {
    display: none;
    margin: 0 5px;
    margin-left: 13px;
    width: 24px;
}

header.fixed .header-btn-rs .btn-rs-item {
    background-color: #fff;
}

.header-btn-rs .btn-rs-item {
    width: 24px;
    height: 3px;
    background-color: #f5f5f5e6;
    margin: 5px 0;
    border-radius: 3px;
    transition: all ease .3s;
}

.header-btn-rs.active .btn-rs-item:nth-child(1) {
    width: 10px;
}

.header-btn-rs.active .btn-rs-item:nth-child(2) {
    width: 16px;
}

.header-btn-rs.active .btn-rs-item:nth-child(3) {
}

header .header-help::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-2);
    top: -100%;
    transition: all ease .3s;
}

header.fixed .header-help::before {
    top: 0%;
}

header.show .header-help::before {
    top: 0 !important;
}

.header-container {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 0px 0px 10px 10px;
    background: rgba(255, 113, 1, 0.85);
    height: 62px;
    padding-left: 7px;
    padding-right: 42px;
    justify-content: space-between;
}

.header-left {
    position: relative;
    left: 0;
}

.header-right {
    position: relative;
    display: flex;
    align-items: center;
}

.header-right-item img {
}

.header-right-item {
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 55px;
    transition: all ease .2s;
    height: 32px;
    background-color: #fff;
    max-width: 205px;
    width: 100vw;
}

header.fixed .header-right-item::after {
    background-color: #333333b8;
    box-shadow: 0 0 10px 0 #fff;
}

header.show .header-right-item::after {
    background-color: #333333b8;
}

.header-right-item:hover::after {
    transform: scale(1);
}

header.block .header-right-item::after {
    background-color: #333333b8;
}

.header-right-item:hover {
    color: #fff;
}

    .header-right-item:hover img {
        transform: rotate(15deg) scale(1.05);
        transition-delay: .3s;
    }



.header-right-cart {
    position: relative;
}

    .header-right-cart:hover::before {
        background-color: #fff;
    }

header.fixed .header-right-cart::before {
    background-color: var(--color-1);
}

header.fixed .header-right-cart:hover::before {
    background-color: #fff;
}

.header-right-cart::before {
    content: '';
    position: absolute;
    width: 9px;
    height: 9px;
    background-color: var(--color-2);
    border-radius: 50%;
    right: 0;
    top: 0;
    opacity: 0;
    transition: all linear .2s;
}

.header-banner-item {
}

    .header-banner-item img {
        width: 100%;
    }

.header-right-cart.have::before {
    animation: forCart linear alternate infinite .5s;
    animation-delay: .5s;
    opacity: 1;
}

@keyframes forCart {
    0% {
        transform: scale(1.13);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.13);
    }
}

.header-logo {
    transform: translateY(-18px);
    display: flex;
    align-items: center;
    width: 245px !important;
    height: fit-content !important;
}

    .header-logo img {
        display: none !important;!i;!;
    }

    .header-logo canvas {
        width: 245px;
    }

header.fixed .header-center {
    transform: translateY(35px);
}

.header-center {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-radius: 10px;
}

.header-center {
}

.header-center-list {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-center-item {
    position: relative;
    transition: 0.6s cubic-bezier(.3,2,.3,1);
    height: 100%;
}

    .header-center-item.hav {
        position: relative;
    }

        .header-center-item.hav::before {
            content: "\f107";
            position: absolute;
            font-family: FontAwesome;
            color: #fff;
            left: 0px;
            font-size: 12px;
            transform: translateY(2px);
            margin-right: 10px;
        }

header.fixed .header-center-item {
    margin: 0 20px;
}

.header-center-item.hav::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 60px;
    top: 20px;
    display: none;
}

.header-center-item.hav:hover::before {
    display: block;
}

.header-center-link {
    font-size: 19px;
    color: #fff;
    font-family: barSB;
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    padding: 0 22px;
    justify-content: center;
    transition: all linear .2s;
    font-weight: 100;
}

    .header-center-link:hover {
        color: var(--color-1);
        background-color: #fff;
    }

header.fixed .header-center-link {
    font-size: 17px;
}

.header-center-link:hover::before {
    width: 25px;
}

.header-center-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--color-2);
    bottom: 13px;
    transition: 0.6s cubic-bezier(.3,2.5,.3,1);
}

.header-center-item:hover .header-center-drop {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.header-center-drop {
    position: absolute;
    background-color: #fff;
    box-shadow: 0 0 10px 0 #33333357;
    padding: 3px;
    top: 112%;
    border-radius: 5px;
    z-index: 2;
    pointer-events: none;
    transform: translateY(30px);
    opacity: 0;
    transition: 0.8s cubic-bezier(.3,2,.4,1);
}

    /* width */
    .header-center-drop::-webkit-scrollbar {
        width: 6px;
    }

    /* Track */
    .header-center-drop::-webkit-scrollbar-track {
        background: transparent;
    }

    /* Handle */
    .header-center-drop::-webkit-scrollbar-thumb {
        background: var(--color-2);
        border-radius: 5px;
    }


    .header-center-drop .drop-item {
    position: relative;
    }


.header-center-drop .drop-item:hover .header-center-drop3 {
    opacity: 1;
    transform: translateY(0);
}
.header-center-drop .drop-item:hover .header-center-drop3::Be
 {
     display: block;
 }
    .header-center-drop .drop-item-link {
        white-space: nowrap;
        padding: 6px 10px;
        color: #444;
        font-size: 18px;
        transition: all .3s;
        margin: 0px 0;
    }

        .header-center-drop .drop-item-link:hover {
            color: var(--color-2);
        }

.header-banner {
    position: relative;
}


header.dt-pro {
    position: fixed !important;
}

.header-top {
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
}

.header .grid.wide {
    box-shadow: 0px -1px 8.5px rgba(190, 187, 187, 0.48);
}

.header-top-container {
    display: flex;
    align-items: center;
    background-color: var(--color-1);
    height: 36px;
    justify-content: space-between;
    padding-left: 348px;
    padding-right: 42px;
}

.header-top-info {
    display: flex;
    align-items: center;
}

    .header-top-info p {
        margin: 0;
        color: rgba(255, 255, 255, 0.56);
        font-size: 9px;
        margin: 0 12px;
    }

    .header-top-info .info-item {
        display: flex;
        align-items: center;
        font-size: 12px;
        color: #fff;
    }

        .header-top-info .info-item img {
            transform: translateY(1px);
        }

        .header-top-info .info-item span {
            display: block;
            margin-left: 5px;
            font-weight: 100;
        }

        .header-top-info .info-item p {
        }

.header-top-hotline {
    display: flex;
    align-items: center;
    background-color: var(--color-2);
    border-radius: 55px;
    padding: 2px 0;
    padding-left: 2px;
    padding-right: 10px;
}

    .header-top-hotline .icon {
        width: 18px;
        height: 18px;
        background-color: #fff;
        border-radius: 50%;
        margin-right: 5px;
    }

    .header-top-hotline .list {
        display: flex;
        align-items: center;
    }

        .header-top-hotline .list a:first-child {
            margin-left: 0;
        }

        .header-top-hotline .list a:last-child {
            margin-right: 0;
        }

        .header-top-hotline .list a:first-child::before {
            content: '-';
            position: absolute;
            font-family: 'barM';
            color: #fff;
            right: -8px;
        }

        .header-top-hotline .list a:hover {
            color: var(--color-1);
        }

        .header-top-hotline .list a {
            font-family: barM;
            position: relative;
            color: #fff;
            font-weight: 100;
            font-size: 13px;
            display: block;
            margin: 0 6px;
            transition: all .3s;
        }

    .header-top-hotline .icon img {
    }
/* RS */
@media(max-width:1023px) {
    .header-btn-rs {
        display: block;
    }

    .header-top-info .info-item {
        display: none;
    }

        .header-top-info .info-item:nth-child(5) {
            display: flex;
        }

    .header-top-info p {
        display: none;
    }

    .header-top-container {
        padding-right: 20px;
        padding-left: 443px;
    }

    .header-right {
        position: absolute;
        right: 15px;
        height: 100%;
        display: flex;
        align-items: center;
        top: 0;
    }
}

@media(min-width:740px) and (max-width:1023px) {
}

@media(max-width:739px) {
    .header-logo img {
        width: 130px;
    }

    .header-container {
        height: 38px;
    }

    .header-top-container {
        padding: 0 8px;
    }

    .header-logo {
        transform: translateY(0);
    }

    .header-right-search {
        display: none;
    }

    .header-logo canvas {
        width: 130px;
    }
}
