.search-wrapper {
    width: 100%;
    height: 96px;
    min-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 24px;
}

.search-bar {
    width: 650px;
    height: 56px;
    padding: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 28px;
    border: 1px solid #0D7AFF;
    user-select: none;
}

.search-icon,
.search-icon img {
    width: 24px;
    height: 24px;
}

.search-icon {
    margin-left: 32px;
    margin-right: 18px;
}

.search-input {
    flex: 1;
    line-height: 54px;
    border: none;
    outline: none;
    font-size: 16px;
}

.search-input::placeholder {
    color: #B6B6BE;
}

.search-btn {
    width: 120px;
    height: 40px;
    padding: 0;
    border-radius: 28px;
}

.search-result-wrapper {
    width: 650px;
    height: auto;
    position: absolute;
    top: 90px;
    left: calc(50% - 325px);
    right: 0;
    z-index: -99;
    opacity: 0;
    visibility: hidden;
    transition: all .3s cubic-bezier(0.4, 0.6, 0.5, 2.12);
}

.search-result-wrapper.open {
    z-index: 97;
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1) translate(0, 9px);
    transform: scale(1) translate(0, 9px);
}

.search-result {
    width: 100%;
    height: auto;
    max-height: 200px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 8px #00000026;
}

.search-list {
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.res-row {
    width: 100%;
    height: 40px;
    padding: 0 24px;
    line-height: 40px;
    font-size: 14px;
    color: #1A1311;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.res-row:hover,
.res-row .theme {
    color: #0D7AFF;
}

.street-wrapper {
    width: 100%;
    min-width: 1280px;
    height: auto;
    user-select: none;
    position: relative;
}

.popup-street {
    height: 562px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.street-wrapper .swiper-container {
    width: 100%;
    height: 562px;
    padding: 0 16px;
    position: relative;
}

.street-wrapper .swiper-slide {
    width: auto;
    min-width: 100%;
    height: 562px;
}

.street {
    width: auto;
    min-width: 100%;
    height: 562px;
}

.street-upper,
.street-below {
    width: 100%;
    height: 228px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}

.street-upper,
.street-below {
    padding: 24px 0;
}

.store {
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-right: 16px;
    cursor: pointer;
    background-color: #D5D5D5;
}

.store.focus {
    animation: breathing 1s linear;
    animation-iteration-count: 5;
}

@keyframes breathing {
    0% {
        box-shadow: 0 0 0 0px red;
    }

    50% {
        box-shadow: 0 0 0 6px red;
    }

    100% {
        box-shadow: 0 0 0 0px red;
    }
}

.street-upper .store:last-child,
.street-below .store:last-child {
    margin: 0;
}

.store-cover {
    width: 100%;
    height: 100%;
    padding: 16px;
}

.store-info {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.store-type {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.store-type img {
    width: 16px;
    height: 16px;
}

.store-name {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 1px;
    color: #000000;
}

.store-empty {
    width: 180px;
    height: 180px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    letter-spacing: 1px;
    color: #40424D;
    border: 2px solid #0D7AFF;
}

.store-empty.size2 {
    width: 360px;
}

.store-empty.size3 {
    width: 420px;
}

.store-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: auto;
    height: 100%;
    min-width: 100%;
    max-width: 100%;
}

.store-img .loading-img-null {
    background-color: transparent;
}

.store-img.width_equal img {
    width: 100%;
    height: auto;
}

.store-img.height_equal img {
    width: auto;
    height: 100%;
}

.subgrade {
    width: 100%;
    min-width: 1280px;
    height: 106px;
    display: flex;
    flex-direction: row;
}

.subgrade-l {
    width: 176px;
    height: 106px;
    background-image: url("../img/icon/road-l.png");
}

.subgrade-c {
    flex: 1;
    height: 106px;
    background-image: url("../img/icon/road.png");
}

.subgrade-r {
    width: 176px;
    height: 106px;
    background-image: url("../img/icon/road-r.png");
}

.road-wrapper {
    position: absolute;
    top: 228px;
    left: 0;
    width: 100%;
    height: 106px;
}

.road {
    width: 100%;
    min-width: 1280px;
    height: 106px;
    position: relative;
    display: flex;
    user-select: none;
}

.sliding-left,
.sliding-right {
    position: absolute;
    top: calc(50% - 10px);
    left: 5%;
    z-index: 2;
    width: 88px;
    height: 20px;
    animation: twinkle 1s infinite ease-in-out;
}

@keyframes twinkle {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.sliding-left {
    left: auto;
    right: 10%;
}

.bl .sliding-right {
    display: none;
}

.br .sliding-left {
    display: none;
}

.road-name {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    letter-spacing: 14px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 6px #555;
}

.road-name span {
    padding-left: 50px;
    margin-right: 20px;
}

.city-wrapper {
    width: 100%;
    min-width: 1280px;
    padding: 40px 0 16px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #DDDDDD;
    margin-top: 4px;
}

.city-wrapper .search-wrapper {
    width: 367px;
    height: 40px;
    margin-right: 20px;
    margin-bottom: 24px;
    position: relative;
    min-width: 0;
}

.city-wrapper .search-bar {
    width: 367px;
    height: 40px;
    padding: 4px;
}

.city-wrapper .search-icon,
.city-wrapper .search-icon img {
    width: 16px;
    height: 16px;
}

.city-wrapper .search-icon {
    margin-left: 20px;
    margin-right: 4px;
}

.city-wrapper .search-input {
    font-size: 14px;
    line-height: 38px;
}

.city-wrapper .search-btn {
    width: 96px;
    height: 32px;
    font-size: 14px;
}

.city-wrapper .search-result-wrapper {
    width: 100%;
    top: 40px;
    left: 0;
}

.city-list {
    width: 869px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.city-list a {
    color: #40424D;
    font-size: 16px;
    line-height: 16px;
    margin-right: 24px;
    margin-bottom: 24px;
    cursor: pointer;
}

.city-list a:hover {
    color: #0D7AFF;
}

.shop-pop {
    /* width: 522px;
    height: 398px; */
    width: 228px;
    height: 265px;
    /* padding: 32px; */
    padding: 16px;
    position: fixed;
    z-index: 9999999;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.2);
}

.shop-column {
    width: 100%;
    height: 72px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.shop-logo {
    /* width: 72px; */
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 16px;
    /* margin-right: 24px; */
}

.shop-info {
    width: auto;
    height: 48px;
    display: flex;
    flex-direction: column;
}

.shop-info .shop-name {
    text-align: left;
    font-size: 16px;
    font-weight: 600;
}

.shop-info .shop-tel {
    text-align: left;
    font-size: 14px;
    color: #90909F;
    margin-top: 15px;
}

.shop-address {
    width: 100%;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    /* margin-top: 26px; */
    margin-top: 16px;
}

.shop-address .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.shop-address span {
    width: calc(100% - 30px);
    font-size: 14px;
    line-height: 19px;
    height: 57px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.shop-desc {
    width: 100%;
    height: 72px;
    font-size: 14px;
    line-height: 24px;
    color: #90909F;
    /* margin-top: 26px; */
    margin-top: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.shop-imgs-wrapper {
    width: 100%;
    height: 92px;
    margin-top: 24px;
}

.shop-imgs {
    width: auto;
    height: 92px;
    display: flex;
    flex-direction: row;
}

.shop-img {
    flex-shrink: 0;
    width: 122px;
    height: 92px;
    margin-right: 8px;
    border-radius: 16px;
    overflow: hidden;
}

.shop-imgs .shop-img:last-child {
    margin: 0;
}

.dynamic-wrapper {
    width: 40%;
    padding-top: 40px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
}

.dynamic-row {
    width: 100%;
    height: 22px;
    padding-left: 40px;
    color: #1A1311;
    position: relative;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dynamic-row a {
    width: 100%;
    height: 22px;
    font-size: 16px;
    line-height: 22px;
    color: #1A1311;
}

.dynamic-row a:hover {
    color: #0D7AFF;
}

.dynamic-row::before {
    position: absolute;
    top: 7px;
    left: 0;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #0D7AFF;
}

.empty-wrapper {
    height: calc(100vh - 288px);
}

.loading-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(225, 225, 225, 0.8);
}

.loading-wrapper p {
    font-size: 16px;
    font-weight: 600;
    margin-top: 16px;
    color: #757575;
}

.loading-wrapper img {
    width: 80px;
    height: 80px;
}