123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- .home-container {
- width: 100%;
- height: 100%;
- min-height: 550px;
- :deep(.card) {
- padding: 60px 65px 60px 85px;
- }
- }
- :deep(.card) {
- width: 100%;
- height: 100%;
- background-image: url('../../../assets/taaisImg/53bg.png');
- background-repeat: no-repeat;
- background-size: 100% 100%;
- // color: black;
- }
- :deep(.el-table) {
- // --el-table-border-color: transparent;
- --el-table-border-color: #bdbdbe7b;
- // --el-table-border: none;
- --el-table-text-color: #bdbdbe;
- --el-table-header-text-color: #bdbdbe;
- --el-table-row-hover-bg-color: transparent;
- --el-table-current-row-bg-color: transparent;
- --el-table-header-bg-color: transparent;
- --el-table-bg-color: transparent;
- --el-table-tr-bg-color: transparent;
- // --el-table-expanded-cell-bg-color: transparent;
- }
- .bigBox,
- .createTask-bigBox {
- width: 100%;
- height: 100%;
- overflow: hidden;
- background-image: url('../../../assets/taaisImg/53bg.png');
- background-repeat: no-repeat;
- background-size: 100% 100%;
- }
- .createTask-bigBox {
- :deep(.el-transfer-panel__item) {
- height: 60px;
- }
- .title {
- margin: 20px;
- }
- .title2 {
- text-align: center;
- }
- .btn {
- position: absolute;
- bottom: 20px;
- }
- .back {
- left: 100px;
- }
- .next {
- right: 100px;
- }
- .add {
- left: 450px;
- }
- }
- %box-basic {
- width: 70%;
- height: 700px;
- padding: 20px;
- margin: 0 auto;
- }
- .createTask-container {
- position: relative;
- width: 70%;
- height: 520px;
- padding: 20px;
- margin: 0 auto;
- margin-top: 100px;
- overflow: hidden;
- overflow-y: scroll;
- }
- .logPage-container {
- @extend %box-basic;
- position: relative;
- width: 90%;
- margin-top: 50px;
- .btn {
- margin-top: 10px;
- margin-left: 100px;
- }
- .next {
- position: absolute;
- right: 120px;
- }
- .log {
- width: 90%;
- height: 550px; /* 根据需要调整 */
- padding: 10px;
- // padding-bottom: 80px;
- margin-left: 50px;
- overflow-y: auto;
- font-family: 'Courier New', monospace;
- color: #4aff84;
- background-color: #1e1e1e;
- }
- .p {
- padding-left: 10px;
- margin-bottom: 5px;
- border-left: 3px solid #4aff84;
- }
- }
- :deep(.dv-border-box-1 .border-box-content) {
- text-align: left;
- }
- .trainResult-container {
- @extend %box-basic;
- width: 90%;
- padding: 3px 20px;
- margin-top: 50px;
- .table {
- position: relative;
- width: 100%;
- height: 600px;
- margin-top: -15px;
- .btn {
- margin-top: 10px;
- margin-left: 50px;
- }
- .next {
- position: absolute;
- right: 150px;
- }
- }
- :deep(th.el-table__cell),
- :deep(td.el-table__cell) {
- // 设置position 使得 子元素不与其产生新的层叠关系
- position: static;
- }
- }
|