_order-area.css 2.24 KB
.order-area {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    color: #878787;
    font-weight: 700;

    .order {
        display: inline-block;
        margin: 14px 15px;
        height: 24px;
        line-height: 24px;
        cursor: pointer;
    }

    .dest {
        display: inline-block;
        position: relative;
        width: 15px;
        height: 24px;
        line-height: 24px;
        margin: 14px 15px;
        margin-left: -10px;
        margin-bottom: -10px;
        cursor: pointer;

        .iconfont {
            display: block;
            font-size: 12px;
            height: 12px;
            line-height: 12px;
            position: absolute;
        }

        .iconfont.selected {
            color: #1b1b1b;
        }

        .iconfont.up {
            top: -2px;
        }

        .iconfont.down {
            top: 8px;
        }
    }

    .order.selected {
        color: #1b1b1b;
    }

    .order-page {
        height: 24px;
        line-height: 24px;
        margin-top: 14px;
        float: right;

        label {
            line-height: 24px;
            color: #1b1b1b;
            font-weight: 700;
            display: inline-block;
        }

        label.page-info {
            margin: 0 25px;
        }

        .page {
            color: #1b1b1b;
            border: 2px solid #1b1b1b;
            width: 24px;
            height: 24px;
            display: inline-block;
            margin-right: 8px;
            cursor: pointer;

            span {
                font-weight: 700;
                font-size: 14px;
                display: block;
                position: relative;
                line-height: 22px;
                text-align: center;
            }
        }

        .page:hover {
            background-color: #1b1b1b;
            color: #fff;
        }

        .page.disable {
            color: #eee;
            border: 2px solid #eee;
        }

        .page.disable:hover {
            color: #eee;
            border: 2px solid #eee;
            background-color: #fff;
        }

        .page.page-next {
            span {
                top: -1px;
            }
        }

        .page.page-pre {
            span {
                left: -1px;
            }
        }
    }
}