﻿.pm-row {
    /*display: flex;
    align-items: center;*/
    height: 32px;
}

.pm-row-title p {
    font-size: 16px;
    color: #333;
    margin-right: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dedede;
}

/* label start */
.pm-label {
    display: inline-block;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    height: 100%;
}

    .pm-label.left {
        margin-right: 10px;
    }

    .pm-label.right {
        margin-left: 5px;
    }

    .pm-label a, .pm-label span {
        font-weight: 400;
        font-style: normal;
        font-size: 14px;
        color: #333;
        height: 26px;
        line-height: 26px;
        vertical-align: top;
        position: relative;
        top: calc(50% - 13px);
    }

        .pm-label span.label-left {
            margin-right: 10px;
        }

        .pm-label span.label-right {
            margin-left: 5px;
        }
    /* label end */

    /* 选择开关 start */
    .pm-label .pm-switch {
        display: none;
    }

        .pm-label .pm-switch + span {
            background-color: #f2f2f2;
            border-radius: 50px;
            display: block;
            position: relative;
            -webkit-transition: all 0.1s ease-in;
            transition: all 0.1s ease-in;
            width: 55px;
            height: 26px;
            cursor: pointer;
        }

            .pm-label .pm-switch + span:after {
                content: ' ';
                position: absolute;
                top: 0;
                left: 0;
                -webkit-transition: box-shadow 0.1s ease-in;
                transition: box-shadow 0.1s ease-in;
                width: 100%;
                height: 100%;
                border-radius: 100px;
                box-shadow: inset 0 0 0 0 #eee, 0 0 1px rgba(0,0,0,0.4);
            }

            .pm-label .pm-switch + span:before {
                content: ' ';
                position: absolute;
                background: white;
                top: 1px;
                left: 2px;
                z-index: 999999;
                width: 24px;
                height: 24px;
                -webkit-transition: all 0.1s ease-in;
                transition: all 0.1s ease-in;
                border-radius: 15px;
                box-shadow: 0 3px 1px rgba(0,0,0,0.05), 0 0px 1px rgba(0,0,0,0.3);
            }

        .pm-label .pm-switch:checked + span:before {
            left: 29px;
        }

        .pm-label .pm-switch:checked + span:after {
            background: #00cfde;
            box-shadow: 0 0 1px #00cfde;
        }
    /* 选择开关 end */

    /* checkbox start */
    .pm-label .pm-checkbox {
        display: none;
    }

        .pm-label .pm-checkbox + span {
            display: inline-block;
            position: relative;
            border: 1px solid #dcdfe6;
            border-radius: 2px;
            box-sizing: border-box;
            width: 14px;
            height: 14px;
            background-color: #fff;
            z-index: 1;
            transition: border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46);
            cursor: pointer;
            top: calc(50% - 7px);
        }

            .pm-label .pm-checkbox + span:hover {
                border-color: #409eff;
            }

            .pm-label .pm-checkbox + span:after {
                box-sizing: content-box;
                content: "";
                border: 1px solid #fff;
                border-left: 0;
                border-top: 0;
                height: 7px;
                left: 4px;
                position: absolute;
                top: 1px;
                transform: rotate(45deg) scaleY(0);
                width: 3px;
                transition: transform .15s ease-in .05s;
                transform-origin: center;
            }

        .pm-label .pm-checkbox:disabled + span {
            background-color: #8a8a8a !important;
            border-color: #8a8a8a !important;
            cursor: not-allowed;
        }

        .pm-label .pm-checkbox:checked + span {
            background-color: #409eff;
            border-color: #409eff;
        }

            .pm-label .pm-checkbox:checked + span:after {
                transform: rotate(45deg) scaleY(1);
            }

.pm-disabled {
}

    .pm-disabled .pm-checkbox + span, .pm-disabled .pm-checkbox:checked + span {
        background-color: #eff1f8;
        border-color: #d9d9d9 !important;
        cursor: not-allowed;
    }

        .pm-disabled .pm-checkbox + span:after {
            border-color: #b3b5ba;
        }

    .pm-disabled a, .pm-disabled span {
        color: #d3cfcf;
        cursor: not-allowed;
    }
/* checkbox end */
/* radio start */
.pm-label .pm-radio {
    display: none;
}

    .pm-label .pm-radio + span {
        display: inline-block;
        position: relative;
        border: 1px solid #dcdfe6;
        border-radius: 50%;
        box-sizing: border-box;
        width: 15px;
        height: 15px;
        background-color: #fff;
        z-index: 1;
        cursor: pointer;
        top: calc(50% - 8px);
    }

        .pm-label .pm-radio + span:after {
            display: block;
            box-sizing: content-box;
            content: "";
            width: 7px;
            height: 7px;
            position: absolute;
            top: 3px;
            left: 3px;
            border-radius: 50%;
        }

    .pm-label .pm-radio:checked + span {
        border-color: #409eff;
    }

        .pm-label .pm-radio:checked + span:after {
            background-color: #409eff;
        }



/* radio end */

/* 通用按钮 start */
.pm-button {
    display: inline-block;
    text-align: center;
    width: 98px;
    height: 30px;
    line-height: 30px;
}

    .pm-button + .pm-button {
        margin-left: 5px;
    }

    .pm-button.pm-button-default {
        background-color: #fff;
        color: #666;
        border: 1px solid #dadada;
        box-sizing: border-box;
    }

    .pm-button.pm-button-primary {
        background-color: #009ff6;
        color: #fff;
    }

    .pm-button.pm-button-cancel {
        background-color: #d6d6d6;
        color: #333;
    }

.pm-button-large {
    width: 115px;
}

.pm-button-medium {
    width: 78px;
    height: 26px;
    line-height: 26px;
}

.pm-button-small {
    width: 68px;
    height: 24px;
    line-height: 24px;
}

.pm-button-aw {
    width: auto !important;
    padding: 0 15px;
}

/* 通用按钮 end */

.pm-input {
    width: 100%;
    height: 32px;
    line-height: 30px;
    padding: 0 5px;
    vertical-align: middle;
    border: 1px solid #dadada;
    box-sizing: border-box;
}

    .pm-input:disabled {
        border-color: #dae4ee;
        background-color: #eef1f8;
        cursor: not-allowed;
    }

    .pm-input + .pm-input {
        margin-left: 10px;
    }

    .pm-input.radius {
        border-radius: 3px;
    }

.pm-select {
    width: 100%;
    height: 32px;
    border: 1px solid #d3e0eb;
}

.pm-input-small, .pm-select-small {
    width: 90px;
    height: 28px;
    line-height: 28px;
}

.pm-input-medium, .pm-select-medium {
    width: 150px;
    height: 30px;
    line-height: 30px;
}

.pm-input-large, .pm-select-large {
    width: 200px;
    height: 34px;
    line-height: 34px;
}

.pm-input.fw, .pm-select.fw {
    width: 100%;
}

.pm-textarea {
    width: 100%;
    border: 1px solid #dadada;
    box-sizing: border-box;
}

.pm-across-select {
    display: inline-block;
}

    .pm-across-select li {
        display: inline-block;
        vertical-align: middle;
        margin: 0 5px;
        cursor: pointer;
    }

        .pm-across-select li.active {
            color: #199ed8;
        }

.pm-upload {
}

    .pm-upload .btnUpload {
        display: inline-block;
        font-size: 13px;
        color: #fff !important;
        background-color: #00a5f4;
        border-radius: 4px;
        line-height: 30px;
        padding: 0 30px;
    }

        .pm-upload .btnUpload + .remark {
            margin-left: 10px;
            color: #999;
        }

.pm-upload-content {
    padding-top: 15px;
}

    .pm-upload-content img {
        width: 370px;
        height: 230px;
    }

.tag {
    display: inline-block;
    font-size: 11px !important;
    color: #fff !important;
    padding: 0 8px;
    border-radius: 3px;
    transform: scale(0.9);
}

.titleKey + .tag {
    margin-left: 10px;
}

.share {
    background: url(../images/share.png) no-repeat center;
    background-size: 16px;
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.btn-operator {
    padding-left: 20px;
    background-repeat: no-repeat;
    background-position: 0 center;
    margin-right: 20px;
    font-size: 11px;
    color: #0080BD;
}

    .btn-operator.refresh {
        background-image: url('../images/i-refresh.png');
    }

    .btn-operator.copy {
        background-image: url('../images/i-copy.png');
    }

    .btn-operator.invalid {
        background-image: url('../images/i-invalid.png');
    }

    .btn-operator.print {
        background-image: url('../images/i-print.png');
    }

    .btn-operator.export {
        background-image: url('../images/i-export.png');
    }

    .btn-operator.edit {
        background-image: url('../images/i-edit.png');
    }

.upload-box {
    display: table;
    border: 1px dashed #dadada;
    font-size: 24px;
    text-align: center;
    box-sizing: border-box;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
}

    .upload-box .box {
        display: table-cell;
        vertical-align: middle;
    }

        .upload-box .box span {
            font-size: 24px;
            line-height: 30px;
            color: #3f5565;
        }

        .upload-box .box p {
            font-size: 13px;
            line-height: 20px;
            color: #999;
        }

    .upload-box img {
        width: 100%;
        height: 100%;
    }

    .upload-box .pde-mainImg-update {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        color: #fff;
        height: 20px;
        line-height: 20px;
        background-color: #415161;
        display: none;
        font-size: 12px;
    }

    .upload-box:hover .pde-mainImg-update {
        display: block;
    }

.upload-box-img {
    display: block;
    border: none;
}

.upload-box-small {
    width: 50px;
    height: 50px;
}

.upload-box-medium {
    width: 100px;
    height: 100px;
}

.upload-box-large {
    width: 130px;
    height: 130px;
}


.selector {
    width: 100%;
    height: 34px;
    line-height: 32px;
    border: 1px solid #d3e0eb;
    position: relative;
    box-sizing: border-box;
    padding: 0 5px;
}

    .selector .dots {
        float: right;
        margin-right: 5px;
        cursor: pointer;
        font-size: 20px;
        line-height: 24px;
    }

    .selector p.objectName {
        max-width: 300px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }


.browseCount {
    display: inline-block;
    font-size: 12px;
    line-height: 24px;
    color: #666;
    padding-left: 22px;
    margin-left: 10px;
    background-repeat: no-repeat;
    background-image: url('../images/browseCount.png');
    background-position: 0 center;
    cursor: pointer;
}


.foreignBox, .dropDownBox {
    height: 38px;
    border-radius: 2px;
    border: 1px solid #e6e6e6;
    box-sizing: border-box;
    padding-right: 30px;
    position: relative;
}

    .foreignBox:hover, .dropDownBox:hover {
        border-color: #D2D2D2 !important
    }

    .foreignBox input, .dropDownBox input {
        border: none;
        height: 36px;
        line-height: 36px;
    }

    .foreignBox::after {
        font-family: layui-icon !important;
        content: "\e65f";
        font-size: 16px;
        color: #666;
        position: absolute;
        right: 10px;
        top: 0;
        line-height: 36px;
    }

    .dropDownBox::after {
        font-family: layui-icon !important;
        content: "\e61a";
        font-size: 16px;
        color: #666;
        position: absolute;
        right: 10px;
        top: 0;
        line-height: 36px;
    }

    .dropDownBox:focus-within {
        border-color: #D2D2D2 !important;
    }

        .dropDownBox:focus-within::after {
            content: "\e619";
        }
