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

body{
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    font-family: Helvetica, Arial;
}

header{
    height: 40px;
    width: 100%;
    line-height: 40px;
    color: #FFFFFF;
    background: #29BDBB;
}

header h1{
    margin: 0;
    font-size: 16px;
    text-align: center;
    font-weight: normal;
}

main{
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px;
    overflow: hidden;
}

main .img-con{
    display: flex;
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
}

main .img-con img{
    width: 100%;
}

main #result{
    flex: 1;
    overflow: auto;
    margin-bottom: 10px;
}

main .price-items{
    margin: 0;
    padding: 10px 10px 0;
}

main .price-items li{
    margin: 0;
    padding: 10px;
    line-height: 20px;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

main .price-items li:last-child{
    margin-bottom: 3px;
}

main .price-items li .title{
    width: 100%;
    display: flex;
    align-items: center;
}

main .price-items li .title .icon{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 10px;
}

main .price-items li .title .time{
    font-size: 14px;
    color: #808080;
}

main .price-items li .title .info{
    flex: 1;
}

main .price-items li .title .number{
    text-align: right;
}

main .price-items li .title .number .vote{
    font-size: 25px;
    color: #29bdbb;
}

main .price-items li .title .number .vote-tips{
    font-size: 13px;
    color: #808080;
}

main .price-items li .article p{
    margin: 10px 0 0 0;
}