public.scss 4.29 KB
.tableClass {
    /deep/.el-table {
        border: none !important;
        border-radius: 0 !important;
        background-color: rgba(0, 0, 0, 0);

        .el-table__header-wrapper {
            border-right: none;

        }

        .el-table__row .cell {
            color: #8DEAF9 !important;
            font-weight: 100 !important;
        }

        .el-table__row {
            background: rgba(0, 0, 0, 0) !important;
        }

        thead {
            background: #073781;
            border-radius: 2px;
            height: 42px;

            & th {
                //inherit:规定应该从父元素继承 background-color 属性的设置。
                //transparent:默认。背景颜色为透明。
                // background-color: inherit !important;
                background-color: transparent;
                color: #02D9FD;
            }

            & tr {
                // background-color: inherit !important;
                background-color: transparent;
            }
        }
    }
}

//*****start*通用表单查询条件,列表样式******//
.from-clues {
    height: 100%;
    width: 100%;
    min-width: 1280px;
    box-sizing: border-box;
    overflow-x: hidden;
    padding: 2px;

    &-header {
        width: 100%;
        padding: 5px 30px 20px 20px;
        box-sizing: border-box;
        background: url("~@/image/formHeader.png") no-repeat;
        background-size: 100% 100%;
        margin-top: 15px;

        /deep/.el-form-item__label {
            color: #E3F1FF;
        }

        /deep/.el-input__inner {
            background: #07388B;
            border-radius: 2px;
            color: #CEF8FF;
            border: 1px solid #6BC1FC;
        }
    }

    .advanced-search {
        display: flex;
        font-size: 12px;
        flex-wrap: wrap;
        padding-top: 5px;
        height: 30px;

        span {
            display: flex;
            align-items: center;
        }

        i {
            color: $light-blue;
            margin-left: 5px;
            cursor: pointer;
        }

        ul {
            display: flex;
            align-items: center;

            li {
                color: $light-blue;
                border: 1px solid $light-blue;
                border-radius: 10px;
                padding: 2px 8px;
                line-height: 16px;
            }
        }

        .clean-btn {
            margin-left: 10px;
        }
    }

    &-content {
        width: 100%;
        box-sizing: border-box;
        margin-top: 15px;
        background: url("~@/image/formContent.png") no-repeat;
        background-size: 100% 100%;
        padding: 22px 42px 20px;
        //修改表头的背景颜色横向渐变色
        @extend .tableClass;

        /deep/.el-pagination__total {
            color: #FFFFFF;
        }

        .bgc {
            box-shadow: inset 0px 0px 8px 0px rgba(255, 255, 255, 0.5);
            background-color: rgba(0, 0, 0, 0);
        }

        /deep/ .el-pagination {
            .el-input__inner {
                color: #FFFFFF;
                border: none;
                @extend .bgc;
            }

            .el-pager li:not(.disabled).active {
                box-shadow: inset 0px 0px 12px 0px #02D9FD;
                border-radius: 1px;
                border: 1px solid #02D9FD;
                background-color: rgba(0, 0, 0, 0);
            }

            .el-pager li {
                @extend .bgc;
                color: #FFFFFF;
            }
        }

        /deep/.btn-next,
        /deep/.btn-prev {
            @extend .bgc;
            color: #FFFFFF;
        }

    }

    .el-form--inline .el-form-item {
        width: auto;
        margin-right: 0px;

        .el-form-item__content {
            width: auto;
        }
    }



    .el-form-item--small.el-form-item {
        margin-bottom: 0px;
    }
}



//*****end*通用表单查询条件,列表样式******//
/deep/.el-range-separator {
    line-height: 28px !important;
}

.width200px {
    width: 200px;
}

.width300px {
    width: 300px;
}


.slxx_title {
    border-bottom: 1px solid $borderColor;
    padding-left: 10px;
    padding-bottom: 5px;
    margin-bottom: 10px;
    margin-top: 5px;
    font-size: 16px;
    font-weight: 500;
    color: #4a4a4a;
}

// 搜索框按钮的位置
.btnColRight {
    box-sizing: border-box;
    text-align: right;
}