27 lines
454 B
SCSS
27 lines
454 B
SCSS
.container {
|
|
padding: 0 16px 24px;
|
|
.swiper {
|
|
margin: 14px 0 18px;
|
|
}
|
|
.title {
|
|
margin: 14px 0 15px;
|
|
}
|
|
}
|
|
.tableSection {
|
|
margin-top: 10px;
|
|
.tableTh {
|
|
.columnItem {
|
|
border-top: 2px solid #29bbe4;
|
|
}
|
|
}
|
|
.columnItem:first-child {
|
|
background-color: #fff;
|
|
position: sticky;
|
|
left: 0px;
|
|
transition: all 0.3s;
|
|
box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
|
|
}
|
|
.uni-table-tr:hover .columnItem:first-child {
|
|
background-color: #f5f7fa;
|
|
}
|
|
} |