51 lines
692 B
SCSS

.table {
border: 0px solid darkgray;
border-radius: 5px;
font-size: 22px;
color: #333;
}
.tr {
display: flex;
width: 100%;
justify-content: center;
align-items: center;
padding: 12px 0;
border-bottom: 1px solid #f7f7f7;
}
.td {
justify-content: center;
text-align: center;
align-items: center;
display: flex;
font-size: 26px;
}
.th{
font-size: 26px;
}
.bg-line {
background: #fff;
}
.bg-header {
justify-content: center;
background: #f6f7fb;
color: $color_font_three;
display: flex;
align-items: center;
text-align: center;
border-radius: 8px;
}
.ellipsis_1{
@include common_ellipsis(1)
}
.ellipsis_2{
@include common_ellipsis(2)
}