_order-block.css 2.95 KB
.me-orders {
    font-size: 12px;

    .right {
        float: right;
    }

    .order-table-header {
        height: 30px;
        line-height: 30px;
        background: #efefef;
        border-bottom: 1px solid #e6e6e6;
        padding: 0 10px;

        > span {
            display: block;
            float: left;
            text-align: center;
        }

        .info {
            width: 330px;
            text-align: left;
            padding-left: 10px;
        }

        .price {
            width: 75px;
        }

        .count {
            width: 60px;
        }

        .pay, .order-status, .operation {
            width: 100px;
        }
    }

    .order-title {
        height: 28px;
        line-height: 28px;
        background: #efefef;
        padding: 0 5px;
        border-bottom: 1px solid #e6e6e6;
    }

    .order {
        margin: 10px;
        border: 1px solid #e6e6e6;
        border-radius: 2px;

        li {
            display: table;

            > div {
                display: table-cell;
                color: #666;
                text-align: center;
                vertical-align: middle;
            }
        }

        .info {
            width: 313px;
            text-align: left;
            padding: 10px 0 10px 10px;

            > * {
                float: left;
            }

            .color-size {
                color: #999;

                b{
                    display: inline-block;
                    vertical-align: bottom;
                    font-weight: 400;
                    max-width: 130px;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    font-style: normal;
                }
            }
        }

        .price {
            width: 90px;
            font-weight: bold;
        }

        .count {
            width: 50px;
        }

        .pay, .order-status, .operation {
            width: 100px;
            border-left: 1px solid #e6e6e6;
        }

        .name {
            display: block;
            color: #468fa2;
            line-height: 18px;
        }

        .color-size {
            display: block;
            line-height: 18px;

            b{
                display: inline-block;
                vertical-align: bottom;
                font-weight: 400;
                max-width: 130px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                font-style: normal;
            }
        }

        .pay {
            font-weight: bold;
        }

        .pay-tip {
            font-weight: normal;
            display: block;
            line-height: 18px;
            color: #999;
        }

        .op-item {
            display: block;
            color: #468fa2;
            line-height: 18px;
        }

        .complete {
            color: #999;
        }

        .cancel {
            color: #e8044f;
        }
    }
}