.order-list {

}

.order-view-box {
    position: relative;
}

.order-view-box + .order-view-box {
    margin-top: 25px;
}

.order-item-head {
    position: relative;
    display: flex;
    padding-bottom: 8px;
    border-bottom: 2px solid #111827;
}

.order-item-head > .cond {
    display: flex;
}

.order-item-head > .cond > span {
    display: inline-block;
    font-size: 16px;
    padding: 2px 6px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
}

.order-item-head > .cond > span + span {
    margin-left: 3px;
}

.order-item-head > .date {
    margin-left: 5px;
    color: #d1d5db;
    align-self: center;
}

.order-item-body {
    display: flex;
}

.order-item-body > .model {
    flex: 1 1 20%;
    max-width: 20%;
    padding: 10px;
    align-self: center;
}

.order-item-body > .model > .img {
    position: relative;
    width: 70px;
    margin: 0 auto;
}

.order-item-body > .model > .img > img {
    width: 100%;
    height: auto;
}

.order-item-body > .model > p {
    text-align: center;
}

.order-item-body > .model > p.name {
    font-weight: 600;
    margin-top: 15px;
}

.order-item-body > .model > p.price {
    color: #9ca3af;
}

.order-item-body > .info {
    flex: 1 1 30%;
    max-width: 30%;
    padding: 15px;
}

.order-item-body > .info > dl {
    position: relative;
    display: flex;
    font-size: 14px;
    padding: 0 5px;
    line-height: 28px;
    border-bottom: 1px dashed #ddd;
}

.order-item-body > .info > dl > dt {

}

.order-item-body > .info > dl > dd {
    margin-left: auto;
}

.order-btn-group {
    padding: 10px 0;
    flex: 1 1 20%;
    align-self: center;
    text-align: center;
}

.order-btn-group > a { 
    display: inline-block;
    padding: 6px 16px;
    font-size: 15px;
    min-width: 140px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.order-btn-group > a.appform {
    display: inline-block;
    text-align: center;
    border-color: var(--accent);
    background-color: var(--accent);
    color: #fff;
    border-radius: 6px;
}

.order-btn-group > a + a {
    margin-top: 5px;
}

@media(max-width: 768px) {
    .order-list {
    }

    .order-view-box {
        position: relative;
    }

    .order-view-box + .order-view-box {
        margin-top: 25px;
    }

    .order-item-head {
        position: relative;
        display: flex;
        padding-bottom: 8px;
        border-bottom: 2px solid #111827;
    }

    .order-item-head > .cond {
        display: flex;
    }

    .order-item-head > .cond > span {
        display: inline-block;
        font-size: 13px;
        padding: 2px 6px;
        border: 1px solid #e5e7eb;
        border-radius: 4px;
    }

    .order-item-head > .cond > span + span {
        margin-left: 3px;
    }

    .order-item-head > .date {
        display: none;
    }

    .order-item-head > a {
        display: inline-block;
        margin-left: auto;
        padding: 4px 12px;
        text-align: center;
        background-color: var(--accent);
        color: #fff;
        border-radius: 6px;
    }

    .order-item-body {
        flex-wrap: wrap;
    }

    .order-item-body > .model {
        flex: 1 1 50%;
        max-width: 50%;
        padding: 10px;
        align-self: center;
        order: 0;
    }

    .order-item-body > .model > .img {
        position: relative;
        width: 70px;
        margin: 0 auto;
    }

    .order-item-body > .model > .img > img {
        width: 100%;
        height: auto;
    }

    .order-item-body > .model > p {
        text-align: center;
    }

    .order-item-body > .model > p.name {
        font-weight: 600;
        margin-top: 15px;
    }

    .order-item-body > .model > p.price {
        color: #9ca3af;
    }

    .order-item-body > .info {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 15px;
        order: 2;
    }

    .order-item-body > .info + .info {
        border-top: 1px solid #ddd;
    }

    .order-item-body > .info > dl {
        position: relative;
        display: flex;
        font-size: 14px;
        padding: 0 5px;
        line-height: 28px;
        border-bottom: 1px dashed #ddd;
    }

    .order-item-body > .info > dl > dt {

    }

    .order-item-body > .info > dl > dd {
        margin-left: auto;
    }

    .order-btn-group {
        flex: 1 1 50%;
        max-width: 50%;
        align-self: center;
        text-align: center;
        order: 1;
    }

    .order-btn-group > a { 
        display: inline-block;
        padding: 6px 16px;
        font-size: 12px;
        min-width: 120px;
        text-align: center;
        border: 1px solid #ddd;
        border-radius: 8px;
    }

    .order-btn-group > a + a {
    }
}