请问vue开发中element-ui的table表格怎么设置背景颜色成透明,并且删除自带的分割线啊?

问题遇到的现象和发生背景

网上找了很多解决办法都没有用,实在不知道该怎么写了

<el-table
            :data="scope.row.distributionList"
            max-height="500px"
            tooltip-effect="dark"
            class="expandTable"
            header-cell-class-name='header-row'
            cell-class-name='cell-class'
            >

.header-row{
           background: none;
           color: rgba(144, 147, 153,0.8);
            border: none;
        }
        .cell-class{
            color: rgba(144, 147, 153,0.8);
            border: none;
        }
    }

img


这几个参数可以定义行和列的class或者样式

用rgba(255,255,255,0)

因为权重问题,框架自带的样式权重高,自己给个class然后在css使用deep找到有背景色的元素给设置background:none!important;