html,
body {
    width: 100%;
    height: 100%;
}

html {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
}

body * {
    box-sizing: border-box;
    /* flex-shrink: 0; */
}

[v-cloak] {
    display: none;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.items-center {
    align-items: center;
}

.items-baseline {
    align-items: baseline;
}

.items-stretch {
    align-items: stretch;
}

.self-start {
    align-self: flex-start;
}

.self-end {
    align-self: flex-end;
}

.self-center {
    align-self: center;
}

.self-baseline {
    align-self: baseline;
}

.self-stretch {
    align-self: stretch;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-auto {
    flex: 1 1 auto;
}

.grow {
    flex-grow: 1;
}

.grow-0 {
    flex-grow: 0;
}

.shrink {
    flex-shrink: 1;
}

.shrink-0 {
    flex-shrink: 0;
}

.relative {
    position: relative;
}

/* 底部 */

.van-list__error-text,
.van-list__finished-text,
.van-list__loading {
    width: 100%;
}

.tab-bar {
    padding: 4px 80px;
    background-color: #ffffff;
    box-shadow: 0px -2px 5px 0px #6c8ecb29;
    position: fixed;
    z-index: 99;
    width: 100%;
    bottom: 0;
}

.tab-bar .image_8 {
    width: 27px;
    height: 27px;
}

.tab-bar .font_2 {
    font-size: 12px;
    color: #555555;
}

/* 列表 */
.ub-list {
    width: 100%;
    font-size: 12px;
    color: #686868;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid #f3f3f3;
    margin-bottom: 12px;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
}

.ub-list-title {
    color: #333;
    font-weight: bold;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ub-list-width {
    width: 72%;
}

.ub-location-icon {
    display: flex;
    align-items: center;
}

.ub-list-distance {
    margin: 8px 0;
}

.ub-location-icon img {
    width: 18px;
    margin-right: 4px;
}

.ub-location-icon span {
    width: calc(100% - 18px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #686868;
}

.ub-list button {
    font-size: 14px;
    background: #1275FF;
    padding: 4px 6px;
    border: none;
    border-radius: 4px;
    color: #fff;
}