_order.css 4.44 KB
.order-page {
    background: #f0f0f0;

    .order {
        position: relative;
        display: block;
        background: #fff;
        margin: 30px 0;
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;

        &:last-child {
            margin-bottom: 0;
        }

        .header, .footer {
            height: 90px;
            line-height: 90px;
            font-size: 30px;
            padding: 0 30px;
        }

        .header {
            border-bottom: 1px solid #e0e0e0;
        }

        .order-status {
            float: right;
        }

        .footer {
            text-align: right;
            border-top: 1px solid #e0e0e0;
        }

        .sum-cost {
            color: #e01;
            margin-left: 5px;
        }

        .order-opt {
            padding: 30px 0;
            padding-right: 30px;
            border-top: 1px solid #e0e0e0;
            text-align: right;

            .btn {
                display: inline-block;
                box-sizing: border-box;
                height: 60px;
                line-height: 60px;
                width: 140px;
                font-size: 24px;
                text-align: center;
                border: 1px solid #000;
                border-radius: 5PX;
            }

            .pay {
                background: #d0021b;
                color: #fff;
                border: none;
                margin-left: 20px;
            }
        }
    }

    .no-order {
        position: absolute;
        background: #fff;
        text-align: center;
        top: 50%;
        margin-top: -220px;
        width: 100%;

        .icon {
            width: 153px;
            height: 196px;
            background: resolve('me/no-order.png') no-repeat;
            background-size: 100%;
            margin: 0 auto;
        }

        span {
            display: block;
            color: #b0b0b0;
            font-size: 24px;
            margin: 30px 0 80px;
        }

        .walk-way {
            display: block;
            height: 80px;
            line-height: 80px;
            width: 70%;
            margin: 0 auto;
            text-align: center;
            font-size: 30px;
            color: #fff;
            background: #444;
            border-radius: 5PX;
        }
    }
}

.order-nav {
    border-bottom: 1px solid #e0e0e0;
    background: #fff;

    a {
        display: block;
        height: 100%;
        width: 100%;
        color: #b0b0b0;
    }

     > li {
        float: left;
        height: 90px;
        width: 25%;
        line-height: 90px;
        color: #b0b0b0;
        font-size: 26px;
        text-align: center;

        &.active a {
            color: #000;
        }
    }
}

.order-good {
    position: relative;
    padding: 20px 0;
    margin-left: 34px;
    height: 160px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 26px;

    &:last-child {
        border-bottom: none;
    }

    .thumb-wrap {
        position: relative;
        float: left;
        width: 120px;
        height: 160px;
    }

    .thumb {
        width: 100%;
        height: 100%;
    }

    .tag {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        color: #fff;
        text-align: center;
        font-size: 12px;

        &:before {
            display: block;
            line-height: 1;
            transform: scale(0.833);
        }
    }

    .gift-tag {
        height: 25px;
        background: #a1ce4e;

        &:before {
            content: '赠品';
        }
    }

    .advance-buy-tag {
        height: 25px;
        background: #eb76aa;

        &:before {
            content: '加价购';
        }
    }

    .deps {
        margin-left: 135px;
    }

    .name {
        font-size: 28px;
        max-width: 70%;
        text-overflow: -o-ellipsis-lastline;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .row:nth-child(2) {
        height: 45px;
        line-height: 45px;

        > span {
            margin-right: 15px;
        }
    }

    .color, .size {
        color: #b6b6b6;
    }

    .price-wrap {
        position: absolute;
        top: 20px;
        right: 30px;
        text-align: right;
    }

    .price {
        color: #e01;
    }

    .count {
        display: block;
        color: #999;
        text-align: right;
        line-height: 45px;
    }

    .appear-date {
        color: #f00;
    }
}