* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

#app {
    width: 100%;
    min-height: 100vh;
    max-width: 640px;
    background-color: #f6f7fb;
    margin: 0 auto;
}

.order-tab {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.order-tab .img {
    width: 100%;
    height: auto;
}

.order-info {
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    padding: 12px 24px;
}

.order-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    font-size: 14px;
}

.shop-name-box {
    display: flex;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    height: 32px;
    line-height: 32px;
}

.font-arial{
    font-family: Arial;
}

.order-info-left {
    flex-grow: 1;
    overflow: hidden;
    width: 100%;
    height: 32px;
    line-height: 32px;
    display: flex;
    align-items: center;
}

.shop-name {
    height: 32px;
    line-height: 32px;
    color: #111;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: normal;
}

.input{
    outline: none;
    border: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    font-weight: normal;
    border-radius: 4px;
}

.order-info-left .icon-right {
    width: 14px;
    height: 16px;
    margin-left: 4px;
}

.order-info-right{
    width: 120px;
    height: 32px;
    line-height: 32px;
    overflow: hidden;
    text-align: right;
    color: #f23030;
}

.order-info-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.order-info-item-left {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.goods-img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.hidden-input {
    display: none;
}
.goods-img .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.order-info-item-right {
    flex-grow: 1;
    overflow: hidden;
}

.goods-info-box{
    overflow: hidden;
    padding-left: 12px;
    font-size: 14px;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.wuliu{
    width: 100%;
    font-size: 12px;
    overflow: hidden;
    padding: 6px 12px;
    background-color: #f6f6f6;
    margin: 10px auto;
    border-radius: 4px;
    color: #666;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
}

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

.font-bold{
    font-weight: bold;
}

.icon-wuliu{
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

.wuliu .icon-right{
    width: 16px;
    height: 16px;
}

.pay{
    width: 100%;
    height: 32px;
    line-height: 32px;
    overflow: hidden;
    font-size: 12px;
    white-space: nowrap;
    color: #666;
    text-align: right;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.icon-quan{
    width: 29px;
    height: 22px;
    margin-right: 2px;
}

.pay .font-bold{
    font-size: 18px;
    color: #111;
    padding-left: 2px;
}

.btn-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    margin-top: 10px;
    font-size: 12px;
    color: #333;
}

.btn-box-right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

.btn{
    overflow: hidden;
    padding: 5px 10px;
    background-color: #f6f7fb;
    margin: 0 4px;
    border-radius: 4px;
    color: #333;
}

.btn-red{
    background-color: #f23030;
    color: #fff;
}

.detail{
    overflow: hidden;
}

.detail .img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.red{
    color: #f23030;
}

.green{
    color: #06a97c;
}

.flex-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.input-full{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    background: none;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: inherit;
    font-weight: inherit;
}

.goods-name{
    width: 100%;
    overflow: hidden;
    padding-right: 12px;
    font-weight: bold;
    color: #111;
}

.goods-price{
    width: 100px;
    overflow: hidden;
    font-weight: bold;
    color: #111;
    text-align: right;
}

.goods-spec{
    width: 100%;
    overflow: hidden;
    color: #666;
    padding-right: 12px;
}

.goods-num{
    width: 80px;
    overflow: hidden;
    color: #666;
    text-align: right;
}

.goods-service{
    width: 100%;
    overflow: hidden;
    color: #06a97c;
}

.pay-amount{
    font-size: 16px;
    width: auto;
    height: 32px;
    line-height: 32px;
    overflow: hidden;
    color: #111;
    font-weight: bold;
    text-align: left;
}

.margin-4{
    margin: 4px auto;
}