/*
 * This is a globally available SCSS project file.
 * It contains project specific utilities (variables, mixins, functions) that don't! output CSS by default.
 * We use it to be imported in a webpack loader to avoid having to import these in each separate file.
 *
 * This file is used next to "seng-scss" which is imported globally as well and contain the default mixins/vars/functions
 */


/**
 * Asset URL builder
 *
 * @param {String} $type - Asset type, matching folder name
 * @param {String} $file - Asset file name, including extension
 *
 * @return {URL} - A `url()` function leading to the asset
 */


/*
 * Font asset helper
 * @access public
 * @param {String} $file - Asset file name, including extension
 * @return {URL} - A `url()` function leading to the font
 * @require {function} asset
 */


/*
 * Get Font weight
 *
 * @param {String} $weight - The name of the weight you need
 *
 * @return {Number} - The CSS based font weight on the name
 */


/**
 * Z-Index function
 *
 * @param {string} $list (Array) - The list to find the current z-index in
 * @param {string} $element (String) - The name of the current element, must be in the $list
 *
 * @returns {number}
 */


/**
 * Get EM size of a value based on a base size
 *
 * @param {Number} $value - The value you need the EM value from
 * @param {Number} $base - The base value where the $value is calculated upon
 *
 * @return {EM Value} - The EM value based on $value and $base
 */


/**
 * Font Face
 *
 * @param {string} $fontName - Name of the font
 * @param {string} $folderName - Subfolder inside the fonts folder
 * @param {string} $fileName - Name of the font-file
 * @param {string} $fontWeight (normal) - Font weight value
 * @param {string} $fontStyle (normal) - Font style value
 */


/**
 * Respond To (Breakpoint)
 *
 * @param {string} $name - Name of the breakpoint used in $breakpoints
 */


/**
 * Aspect ratio, create a :before pseudo element for setting an aspect ratio on an element
 *
 * @param {number} $width (1) - Percentage width
 * @param {number} $height ($width) - Percentage height
 * @param {boolean} $relative (true) - Add relative position to element
 */


/**
 * Hover Mixin for applying :hover pseudo styles
 *
 * Add your own implementation for showing hovers
 * Example using Modernizr touch check: html.no-touch &:hover { @content; }
 * Leaving it to just :hover by default. But best practice to always use the mixin
 *
 * @param $extraSelector:string (optional) = an extra selector that can have the same styles as a hover (for mobile/active state)
 */


/**
 * Offset
 *
 * @param {number} $top (0) - Top Offset
 * @param {number} $left (0) - Left Offset
 */


/**
 * Position mixin for setting absolute position values
 *
 * The mixin can have multiple arguments providing a number
 * @param {number} $top (0) - Top Position
 * @param {number} $right ($top) - Right Position
 * @param {number} $bottom ($top) - Bottom Position
 * @param {number} $left ($right) - Left Position
 *
 * Or a map of multiple positions
 * @param {map} $args... - A map containing multiple positions (top: 1px, left: 1px)
 */


/**
 * Set pseudo elements styles that are used mostly (content, display, position)
 *
 * @param {display} $display (block)
 * @param {position} $position (absolute)
 * @param {string} $content ('')
 */


/**
 * Size an Element
 *
 * @param {number} $width (1em) - Width of the element
 * @param {number} $height ($width) - Height of the element
 */

.wb01-filter {
    z-index: 0;
    overflow: hidden;
    width: 100%;
}

.wb01-filter__row {
    display: block;
}

.wb01-filter__sidebar {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    position: fixed;
    background: #fff;
    display: none;
}

.wb01-filter__sidebar.is-active {
    display: block;
}

.wb01-filter__sidebar header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px;
}

.wb01-filter__sidebar form {
    padding: 0 24px;
}

.wb01-filter__sidebar fieldset {
    border: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.wb01-filter__sidebar fieldset:not(:last-of-type) {
    margin-bottom: 48px;
}

.wb01-filter__title,
.wb01-filter__actions {
    height: 7.2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #f3f4f8;
}

.wb01-filter__title {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #171717;
}

.wb01-filter__actions {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 16px;
    color: #858587;
}

.wb01-filter__actions .icon {
    display: none;
}

.wb01-filter__close {
    height: 2rem;
    width: 2rem;
    position: absolute;
    top: 2.6rem;
    right: 2.6rem;
}

.wb01-filter__active-filters {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 48px;
    margin-bottom: 0;
    padding-left: 24px;
    padding-right: 24px;
}

.wb01-filter__active-filters>li {
    margin-bottom: 8px;
}

.wb01-filter__active-filters>li:not(:last-child) {
    margin-right: 8px;
}

.wb01-filter__active-filters a {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 40px;
    padding: 0 16px;
    background: #171717;
    color: #fff;
    border-radius: 40px;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.wb01-filter__active-filters a:hover {
    background-color: #d9261c;
}

.wb01-filter__clear-filters_con {
    display: none;
}

.wb01-filter__clear-filters {
    cursor: pointer;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    color: #171717;
}

.wb01-filter__clear-filters .icon {
    height: 20px;
    width: 20px;
    font-size: 20px;
    margin-left: 2px;
}

.wb01-filter__filter-title {
    margin-bottom: 24px;
}


/* 20230824 开始*/

.wb01-filter__filter {
    display: flex;
    color: #858587;
    cursor: pointer;
}

.wb01-filter__filter:hover {
    color: #000;
}

.wb01-filter__filter:hover input[type=checkbox]::after {
    border: 1px solid #000;
    border-radius: 2px;
}

.wb01-filter__filter .area-filter-checkbox {
    position: relative;
    top: 4px
}

.wb01-filter__filter input[type=checkbox] {
    width: 16px;
    height: 16px;
    position: relative;
}

.wb01-filter__filter input[type=checkbox] {
    position: absolute;
    top: 0;
    left: 0;
    color: #000;
    width: 16px;
    height: 16px;
    display: block;
    visibility: visible;
    padding-left: 0;
    text-align: center;
    content: ' ';
    cursor: pointer;
    /* border-radius: 4px; */
}

.wb01-filter__filter.active input[type=checkbox] {
    font-family: 'svgicons';
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
    /* display: none; */
    line-height: 1;
    content: "";
    color: #fff;
    font-size: 10px;
    line-height: 18px;
    border-radius: 2px;
    background: #d9261c;
    border: 1px solid #d9261c;
}

.wb01-filter__filter input[type=checkbox]:checked {
    font-family: 'svgicons';
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
    /* display: none; */
    line-height: 1;
    content: "";
    color: #fff;
    font-size: 10px;
    line-height: 18px;
    border-radius: 2px;
    background: #d9261c;
    border: 1px solid #d9261c;
}


/* .wb01-filter__filter.active input[type=checkbox]:checked::after {
    display: block;
} */


/* 20230824 结束*/

.wb01-filter__filter:not(:last-child) {
    margin-bottom: 16px;
}

.wb01-filter__submit {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 48px auto;
}

.wb01-filter__open {
    font-size: 16px;
}

.wb01-filter__open .font-ico-filter {
    position: relative;
    top: -2px;
}

.wb01-filter__content__title {
    color: #858587;
    font-size: 16px;
}

.wb01-filter__content>header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 24px;
    height: 7.2rem;
    border-bottom: 1px solid #f3f4f8;
}

.wb01-filter__content>ul {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


/* 20230911 */

.wb01filter__result {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 2.0833vw 1.667vw 1.667vw 1.667vw;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.06);
    border-radius: .833vw;
    border: 1px solid #DFE1E6;
    transition: all .4s linear;
    margin-bottom: 1.25vw;
}

.wb01filter__result:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 238, 237, 0.5) 100%);
}

.wb01filter__result h3 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: #252B3A;
    line-height: 1.5;
    padding-bottom: 1.667vw;
    border-bottom: 1px solid #DFE1E6;
    margin-bottom: 1.25vw;
}

.wb01filter__result h3::before {
    content: '';
    width: 14%;
    height: 1px;
    background: #C7000B;
    position: absolute;
    bottom: -1px;
    left: 0;
    transition: all .4s linear;
}

.wb01filter__result:hover h3::before {
    width: 100%;
}

.wb01filter__result .wb01-filter__resultdetails {
    width: 100%;
    background: url(https://www.hisilicon.com/Assets/HisiliconV4/images/WhereToBuy/fllterlist-bg.png) no-repeat right bottom;
    background-size: 10%;
}

.wb01filter__result:hover .wb01-filter__resultdetails {
    background: url(https://www.hisilicon.com/Assets/HisiliconV4/images/WhereToBuy/fllterlist-bg-activ.png) no-repeat right bottom;
    background-size: 10%;
}

.filter-table {
    width: 100%;
}

.filter-table tr td {
    width: 100%;
    padding: 0.4166vw 0;
    font-size: 16px;
    color: #8A8E99;
    line-height: 1.5;
}

.filter-table tr td .filter-con {
    display: flex;
}

.filter-table tr td .filter-con .item {
    display: flex;
}

.filter-table tr td .filter-con .item:first-child {
    width: 45%;
}

.filter-table tr td .filter-con .item:last-child {
    flex: 1;
}

.filter-table tr td .filter-note {
    display: flex;
    font-weight: bold;
    color: #575D6C;
    line-height: 1.5;
    min-width: 1vw;
    margin-right: 24px;
}

.filter-table tr td .filter-list {
    flex: 1;
    padding-right: 2vw;
    box-sizing: border-box;
    word-break: break-word;
}

.filter-table tr td .filter-note img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    position: relative;
    top: 2px;
}


/* end */

.wb01-filter__pagination {
    height: 128px;
    width: 100%;
    background: #f3f4f8;
    margin-top: 48px;
    text-align: center;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.wb01-filter__pagination::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: calc(100% + 6.99%);
    top: 0;
    left: 0;
    -webkit-transform: translateX(-3.495%);
    transform: translateX(-3.495%);
    background: #f3f4f8;
}

.wb01-filter__pagination .pagination-num-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.wb01-filter__pagination .pagination-num:not(.primary-button),
.wb01-filter__pagination .pagination-dot,
.wb01-filter__pagination .pagination-disabled:not(.primary-button) {
    height: 48px;
    width: 48px;
    line-height: 48px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    color: #171717;
    font-size: 16px;
}

.wb01-filter__pagination .pagination-prev,
.wb01-filter__pagination .pagination-next {
    line-height: 0;
    height: 48px;
    width: 48px;
}

.wb01-filter__pagination .pagination-prev span,
.wb01-filter__pagination .pagination-next span {
    pointer-events: none;
}

.wb01-filter__pagination .pagination-prev {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    margin-right: 8px;
}

.wb01-filter__pagination .pagination-next {
    margin-left: 8px;
}

.wb01-filter__pagination .pagination-dot {
    background: none;
    border: 0;
    font-weight: bolder;
}

.wb01-filter__pagination .pagination-num-active {
    background-color: #fff;
}

.wb01-filter__pagination .pagination-disabled {
    background-color: #c7c8cb;
}

.wb01-filter__pagination .pagination-disabled:hover {
    background-color: #c7c8cb;
}

.wb01-filter__pagination .pagination-disabled:hover span {
    -webkit-animation: none;
    animation: none;
}

@media (min-width: 768px) {
    .wb01-filter .wb01-filter__row {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .wb01-filter .wb01-filter__sidebar,
    .wb01-filter .wb01-filter__content {
        padding-top: 32px;
    }
    .wb01-filter .wb01-filter__sidebar {
        height: 100%;
        width: auto;
        top: auto;
        left: auto;
        position: relative;
        border-right: 1px solid #f3f4f8;
        padding-right: 24px;
        display: block;
        overflow: visible;
    }
    .wb01-filter .wb01-filter__sidebar header {
        border-bottom: 0;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        margin-bottom: 0;
    }
    .wb01-filter .wb01-filter__sidebar form {
        padding: 0;
    }
    .wb01-filter .wb01-filter__active-filters {
        padding: 0;
        margin-top: 0;
    }
    .wb01-filter .wb01-filter__close,
    .wb01-filter .wb01-filter__open {
        display: none;
    }
    .wb01-filter .wb01-filter__title {
        height: auto;
        margin-bottom: 56px;
    }
    .wb01-filter .wb01-filter__title,
    .wb01-filter .wb01-filter__actions {
        border-bottom: 0;
        padding: 0;
    }
    .wb01-filter .wb01-filter__actions {
        height: 3.2rem;
    }
    .wb01-filter .wb01-filter__actions__title {
        display: none;
    }
    .wb01-filter .wb01-filter__actions .icon {
        display: block;
    }
    .wb01-filter .wb01-filter__submit {
        display: none;
    }
    .wb01-filter .wb01-filter__content header {
        border-bottom: 0;
        height: auto;
        margin-bottom: 48px;
    }
    .wb01-filter .wb01-filter__content>ul {
        min-height: calc(100vh + 24px);
    }
    .wb01-filter .wb01-filter__pagination {
        height: 230px;
        width: 100%;
        margin-top: 160px;
        position: relative;
    }
    .wb01-filter .wb01-filter__pagination::before,
    .wb01-filter .wb01-filter__pagination::after {
        content: "";
        display: block;
        position: absolute;
    }
    .wb01-filter .wb01-filter__pagination::before {
        height: 230px;
        width: 105px;
        top: 0;
        left: auto;
        right: 100%;
        background-color: transparent;
        background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20107.9%20217%22%3E%0A%20%20%3Cpath%20fill%3D%22%23F3F4F8%22%20d%3D%22M107.9%20216V0C91.1%200%2076.2%2010.4%2070.4%2026.1L0%20216h107.9z%22%2F%3E%0A%3C%2Fsvg%3E");
        background-size: cover;
        -webkit-transform: none;
        transform: none;
    }
    .wb01-filter .wb01-filter__pagination::after {
        height: 100%;
        width: 4.12vw;
        top: 0;
        left: 100%;
        background: #f3f4f8;
    }
}

@media (min-width: 1024px) {
    .wb01-filter .wb01-filter__content>ul {
        margin-left: -12px;
        width: calc(100% + 24px);
    }
}


/* 20230817 */

.wb01-filter__result_more {
    width: 188px;
    height: 48px;
    font-size: 16px;
    color: #252B3A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    border: 1px solid #252B3A;
    margin: 16px auto 80px;
    cursor: pointer;
}

.wb01-filter__result_more:hover {
    color: #000;
    border: 1px solid #000;
}


/* 20230825 */

.js-results-wrap-con {
    position: relative;
}

.no-note-con {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10;
    display: none;
}

.no-note-con .no-note {
    font-size: 24px;
    margin-top: 100px;
    color: #858587;
    text-align: center;
}

.filter-load {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10;
    display: none;
    padding-top: 100px;
}

.filter-load .loading {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: block;
    animation: spin 1s linear infinite;
}

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

@media (max-width:1366px) {
    .wb01filter__result .wb01-filter__resultdetails {
        background-size: 13%;
    }
    .wb01filter__result:hover .wb01-filter__resultdetails {
        background-size: 13%;
    }
}

@media (max-width:1200px) {
    .wb01filter__result .wb01-filter__resultdetails {
        background-size: 16%;
    }
    .wb01filter__result:hover .wb01-filter__resultdetails {
        background-size: 16%;
    }
}

@media screen and (min-width:834px) {
    .container .row .col-large-2 {
        max-width: unset;
    }
}


/* 20231024 */

@media (max-width: 991px) {
    .wb04-forms__form-item .code-pic {
        position: unset;
        right: auto;
        top: auto;
        bottom: -20px;
        margin-top: 20px;
    }
}

@media (max-width: 991px) {
    .no-note-con .no-note {
        font-size: 20px;
    }
    .filter-load .loading {
        width: 40px;
        height: 40px;
    }
    .wb01-filter__sidebar {
        z-index: 5;
    }
    .js-results-wrap {
        padding: 0;
    }
    .filter-table tr td .filter-con {
        flex-wrap: wrap;
    }
    .filter-table tr td .filter-list {
        word-break: break-word;
    }
    .wb01filter__result {
        padding: 2vw 4vw 3vw;
        margin-bottom: 4vw;
    }
    .filter-table tr td .filter-con .item:first-child {
        width: 100%;
        margin-bottom: .833vw;
    }
    .filter-table tr td .filter-con .item:last-child {
        margin-top: .833vw;
    }
    /* 20230913 */
    .wb01filter__result .wb01-filter__resultdetails {
        background: url(https://www.hisilicon.com/Assets/HisiliconV4/images/WhereToBuy/fllterlist-bg.png) no-repeat left bottom;
        background-size: 32%;
    }
    .wb01filter__result:hover .wb01-filter__resultdetails {
        background: url(https://www.hisilicon.com/Assets/HisiliconV4/images/WhereToBuy/fllterlist-bg-activ.png) no-repeat left bottom;
        background-size: 32%;
    }
    .wb01filter__result h3 {
        font-size: 18px;
        height: 10vw;
        display: flex;
        align-items: center;
        margin-bottom: 2.5vw;
    }
    .filter-table tr td {
        font-size: 12px;
        padding: .833vw 0;
    }
    .filter-table tr td .filter-note img {
        display: none;
    }
}

@media (max-width:414px) {
    .wb01filter__result {
        padding: 2.1333vw 4.6667vw 4vw;
        margin-bottom: 6.4vw;
    }
    .wb01filter__result h3 {
        height: 18vw;
        display: flex;
        align-items: center;
        margin-bottom: 5vw;
    }
    .wb01filter__result h3::before {
        width: 33%;
    }
    .filter-table tr td {
        padding: 2.6667vw 0;
    }
    .filter-table tr td .filter-con .item:first-child {
        margin-bottom: 2.6667vw;
    }
    .filter-table tr td .filter-con .item:last-child {
        margin-top: 2.6667vw;
    }
    .wb01filter__result .wb01-filter__resultdetails {
        background-size: 35%;
    }
    .wb01filter__result:hover .wb01-filter__resultdetails {
        background-size: 35%;
    }
    /* tab */
    /* .ne03-sub-nav .ne03-sub-nav__link {
        height: 54px;
        line-height: 54px;
        width: 50%;
        margin: 0;
        text-align: center;
        font-weight: 400;
        color: #252B3A;
        background: #F5F5F6;
    }
    .ne03-sub-nav .ne03-sub-nav__link::after {
        display: none;
    }
    .ne03-sub-nav .ne03-sub-nav__link.is-active {
        color: #fff;
        background: #C7000B;
    }
    .ne03-sub-nav .container {
        border: none!important;
    } */
}