.search-top-box {
    overflow: auto;
    background-color: #fff;
    padding-bottom: 3rem;
}

.title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    margin-top: 1rem;
}
.title-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.company-row {
    display: flex;
    margin-top: 1rem;
}
.simple-company-item {
    display: block;
    width: 23.125%;
    box-sizing: border-box;
    text-align: center;
    margin-left: 2.5%;
    box-shadow: 0 0.0625rem 0.4375rem 0 rgb(0 0 0 / 11%);
    position: relative;
    height: 14.5rem;
    padding: 1.5rem;
    cursor: pointer;
}
.simple-company-item:first-of-type {
    margin-left: 0;
}
.simple-company-item > img {
    max-width: 100%;
    max-height: 8rem;
}
.company-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3.5rem;
    line-height: 3.5rem;
}
.shade-bg {
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0, 0.7);
    color: #fff;
    text-align: left;
    line-height: 1.8rem;
    padding: 5.6rem 1.25rem 0;
    transition: all 0.4s;
}
.simple-company-item:hover .shade-bg {
    opacity: 1;
    padding-top: 2.68rem;
}
/* ===================== 搜索框 start ===================== */
.all-search-bg {
    min-height: 12.2rem;
}
.all-search-box {
    width: 100%;
    padding-top: 1.5rem;
    padding-bottom: 1.2rem;
}
.all-search-box.fixed {
    position: fixed;
    top: 0px;
    box-shadow: 0 0.1875rem 0.4375rem 0 rgba(0,0,0,.18824);
    background-color: #fff;
    z-index: 11;
}
.all-search-box.fixed .filter-section {
    background-color: #f6f6f6;
}
.search-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.search-section .search-box {
    width: 40rem;
}
.filter-section {
    display: flex;
    align-items: center;
    height: 3.2rem;
    background-color: #fff;
    margin-top: 0.8rem;
    font-size: 1rem;
    justify-content: space-between;
    padding-right: 2rem;
    box-sizing: border-box;
}
/* 已选 */
.search-label {
    padding: 0 2rem;
}
.selected-section {
    font-size: 0.875rem;
    min-height: 1.8rem;
    display: flex;
    align-items: center;
}
.selected-section-label {
    padding-right: 0.6rem;
    padding-left: 2rem;
}
.filter-section > .filter-item {
    margin-left: 2rem;
    display: inline-flex;
    align-items: center;
    margin-left: 1rem;
    margin-right: 0;
    padding: 0.4rem 0 0.4rem 1rem;
}
.selected-item {
    display: inline-flex;
    margin-right: 1rem;
}
.filter-select-name {
    display: inline-block;
    background-color: #da1212;
    color: #fff;
    padding: 0.28rem 0.4rem;
    margin-right: 2px;
}
.filter-select-close {
    background-color: #da1212;
    color: #fff;
    border: none;
    padding: 0 0.4rem;
    font-size: 1.2rem;
    cursor: pointer;
}
/* 下拉选择项 */
.tm-childs-row {
    min-width: 6rem;
}
.tm-childs > .toggle-menu > .tm-childs {
    right: 0;
    top: 0;
}
.filter-item .tm-childs-row:hover {
    color: #da1212;
    text-decoration: underline;
}
/* ===================== 搜索框 end ===================== */
.company-item {
    background-color: #fff;
    margin-bottom: 1.4rem;
    padding: 1.5rem 3rem;
    display: flex;
    line-height: 1.5rem;
}
.company-left {
    width: 50%;
}
.company-right {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
.company-product-item {
    width: 10rem;
    margin-left: 0.625rem;
    cursor: pointer;
}
.product-img-box {
    width: 10rem;
    height: 10rem;
    overflow: hidden;
    border: 1px solid #ebeaea;
    background-color: #f4f4f4;
}
.product-img {
    max-width: 100%;
    /* max-height: 10rem; */
}
.product-center {
    margin-top: 0.75rem;
    text-align: center;
}

.company-name-row {
    display: flex;
    align-items: center;
}
button.btn-black-border {
    background-color: #fff;
    border-width: 1px;
    border-color: #444;
    padding: 0 1rem;
    word-break: keep-all;
    margin-left: 1rem;
    height: 2rem;
    cursor: pointer;
    color: #444;
}
button.btn-bg-main-color {
    background-color: var(--color);
    color: #fff;
    cursor: pointer;
    border: none;
    min-width: 136px;
    height: 2.72rem;
    padding: 0 2rem;
    font-size: 1rem;
    margin-right: 1rem;
}
button.btn-border-main-color {
    background-color: #fff;
    color: var(--color);
    cursor: pointer;
    border-width: 1px;
    border-color: var(--color);
    height: 2.72rem;
    padding: 0 2rem;
    font-size: 1rem;
    border-style: solid;
    min-width: 136px;
}