html {
    font-size: 13vw;
}

body {
    margin: 0;
    padding: 0;
}

ul,
ol,
li {
    list-style: none;
}

a,
a:active,
a:focus,
a:hover {
    text-decoration: auto;
}
.app {
    
    width: 100%;
    min-height: 100vh;
    background-color: #f5f5f5;
}

.search {
    padding: 6px 12px;
}
.search .search-bar{
    background-color: #fff;
    border-radius: 28px;
    width: 100%;
    height: 36px;
    line-height: 36px;
    position: relative;
}
.search .search-bar input {
    position: absolute;
    left: 20px;
    border: 0;
    top: 50%;
    transform: translateY(-50%);
    outline: none;
    font-size: 16px;
    width: 100%;

    /* line-height: 36px; */
}

.main {
    display: flex;
    flex-wrap: wrap;
    padding: 12px 6px;
    box-sizing: border-box;
}


.main .item {
    margin: 6px;
    background-color: #fff;
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    color: #333;
}
.main .item .img {
    width: 100%;
}
.goods-info {
    padding: 0 6px 6px;
    font-size: 16px;
}
.price {
    color: #ff4142; 
}
.price .txt {
    font-size: 12px;
}

.bottom-bar {
    position: fixed;
    bottom: 0;
    height: 64px;
    border-top: 1px solid #e6e6e6;
    width: 100%;
    background-color: #fff;
    display: flex;

}
.bottom-bar .btn {
    text-align: center;
    flex: 1;
    font-size: 14px;

}
.bottom-bar .btn .icon {
    width: 25px;
    height: 25px;
    margin: 6px 6px 0 6px;
}