header {
    font-size: 0.875rem;
    color: #333;
}

.swiper-slide > img {
    max-width: 100%;
}

.top-row-bg {
    background-color: #f4f4f4;
}

.top-row {
    display: flex;
    justify-content: space-between;
    height: 2.75rem;
    line-height: 2.75rem;
}
.top-right {
    display: inline-flex;
    align-items: center;
}
img.user-head {
    height: 2rem;
    border-radius: 50%;
}
img.lang-icon {
    width: 1.16rem;
    margin-right: 6px;
    opacity: 0.7;
}

nav {
    border-bottom: 2px solid #da1212;
    background-color: #fff;
}
.nav-box {
    display: flex;
    height: 2.75rem;
    line-height: 2.75rem;
}
.nav-item {
    padding: 0 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    font-size: 1.125rem;
    white-space: nowrap;
}
.nav-item-activate {
    color: #da1212;
}

.all-category-box {
    position: relative;
    background-color: #da1212;
    /* width: 180px; */
}
.all-category-title {
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 0 10px;
    min-width: 160px;
}
.all-category-content {
    position: absolute;
    top: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    margin-top: 2px;
    min-height: 26rem;
    padding: 1rem 0;
    z-index: 6;
    min-width: 180px;
    max-width: 240px;
}
.category-row-name {
    color: #fff;
    cursor: pointer;
    height: 2.5rem;
    display: flex;
    align-items: center;
    font-size: 0.88rem;
    font-weight: bold;
}
.category-row {
    padding-right: 6px;
}
.category-row:hover {
    background-color: #fff;
}
.category-row:hover .category-row-name {
    color: #333;
}
.category-row:hover .category-row-childs {
    display: flex;
}
.category-row-name > img {
    width: 1.2rem;
    margin: 0 1rem;
    display: inline-block;
}
.category-row-name > img.selected-icon {
    display: none;
}
.category-row:hover .category-row-name > img.normal-icon {
    display: none;
}
.category-row:hover .category-row-name > img.selected-icon {
    display: inline-block;
}

.category-row-childs {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: #fff;
    left: 100%;
    top: 0;
    bottom: 0;
    min-width: 35rem;
    max-width: 50rem;
    padding: 1rem;
    box-shadow: 0 0.1875rem 0.4375rem 0 rgba(0,0,0,.18824);
    overflow-y: auto;
}
.category-lv2-row {
    display: flex;
    margin-bottom: 0.76rem;
    line-height: 1.6rem;
}
.category-lv2-name {
    min-width: 6rem;
    padding-right: 1rem;
    color: #da1212;
    font-size: 0.9rem;
    font-weight: bold;
}
.category-lv2-childs {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
}
.category-lv3-name {
    padding: 0 0.5rem;
    font-size: 0.875rem;
    color: #333;
}

.category-company-box {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}
.category-company-item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.4rem 0.8rem;
    background-color: #f4f4f4;
    width: 10rem;
    margin-left: 1rem;
}
.category-company-item > span {
    font-size: 0.8rem;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4rem;
    word-break: break-all;
}
.category-company-item > img {
    width: 2.8rem;
    height: 2.8rem;
    margin-left: 0.4rem;
}

.expo-menu-item {
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    position: relative;
}
.expo-menu-item:hover .expo-menu-childs {
    display: flex;
}
.expo-menu-item:after {
    content: "";
    position: absolute;
    height: 2px;
    background-color: #0061b1;
    left: 0;
    bottom: 0;
    width: 0;
    transition: width 0.5s ease 0s;
}
.expo-menu-item:hover:after {
    width: 100%;
}
.expo-menu-childs {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: #fff;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 20;
    padding: 1rem;
    box-shadow: 0 0.1875rem 0.4375rem 0 rgb(0 0 0 / 19%);
    overflow-y: auto;
}
.menu-child-row {
    font-size: 0.875rem;
    color: #333;
    padding: 5px 0;
    font-weight: 200;
}

.search-row {
    height: 3rem;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}
.search-left > img {
    height: 3rem;
}
.search-right {
    display: inline-flex;
}
.search-box {
    display: flex;
    border: 2px solid #da1212;
    width: 30rem;
    height: 2.4rem;
}
.search-box > select {
    border: none;
    padding: 0 0.4rem;
    background-color: #fff;
}
.search-box > input {
    flex: 1;
    border: none;
    padding: 0 0.6rem;
    font-size: 1.1rem;
}
.search-box > select:focus,.search-box > input:focus {
    outline: none;
}
.search-box > .btn-search {
    width: 8rem;
    background-color: #da1212;
    text-align: center;
    color: #fff;
    line-height: 2.4rem;
    cursor: pointer;
    height: 100%;
}

.btn-release-shop {
    padding: 0 2rem;
    height: 2.5rem;
    line-height: 2.5rem;
    background-color: #ba1212;
    color: #fff;
    margin-left: 1rem;
}
.btn-release-shop:hover {
    color: initial;
}
.btn-expo-service {
    background-color: #700;
    height: 2.5rem;
    line-height: 2.5rem;
    color: #fff;
    padding: 0 2rem;
    margin-left: 1rem;
}

.notice-model-box {
    width: 640px;
    background-color: #fff;
    height: 74%;
    padding: 1.2rem;
    position: relative;
    box-shadow: 2px 2px 8px #444;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}
.notice-model-title {
    font-size: 1.4rem;
    line-height: 2rem;
    padding-right: 2rem;
    margin-bottom: 1rem;
}
.notice-model-time {
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 1rem;
}
.notice-model-content {
    flex: 1;
    height: 0;
    overflow: auto;
    padding-bottom: 1rem;
}
.notice-box-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 1.4rem;
    height: 1.4rem;
    cursor: pointer;
    background-color: #999;
}
.notice-box-close:hover {
    background-color: #444;
}

.now-expo-row {
    padding: 8px 0;
    cursor: pointer;
    font-size: 1.1rem;
}