You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
1.6 KiB
87 lines
1.6 KiB
|
|
.table {
|
|
position: relative;
|
|
font-size: 28rpx;
|
|
background: #fff;
|
|
border-right:none;
|
|
/* border-radius: 8rpx; */
|
|
overflow: hidden;
|
|
}
|
|
.thead{
|
|
border-bottom: none;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
/* border-top-right-radius: 8rpx;
|
|
border-top-left-radius: 8rpx; */
|
|
overflow: visible;
|
|
color: #909399;
|
|
border: 1rpx solid #f3f3f3;
|
|
box-sizing: border-box;
|
|
}
|
|
.thead .td {
|
|
font-weight: bold;
|
|
white-space:nowrap;
|
|
text-align: center;
|
|
align-items: center;
|
|
height: 80rpx;
|
|
border-right: 1rpx solid #fff;
|
|
}
|
|
.thead .td:last-child {
|
|
border-right: none;
|
|
}
|
|
.thead-border .td {
|
|
border-right: 1rpx solid #f3f3f3;
|
|
}
|
|
.thead-border .td:last-child {
|
|
border-right: none;
|
|
}
|
|
/* .tr{
|
|
display: flex;
|
|
white-space:nowrap;
|
|
} */
|
|
.tbody {
|
|
box-sizing: border-box;
|
|
font-size: 28rpx;
|
|
color: #666;
|
|
border: 1px solid #f3f3f3;
|
|
border-top: none;
|
|
/* border-bottom-left-radius: 8rpx;
|
|
border-bottom-right-radius: 8rpx; */
|
|
}
|
|
.tbody-tr {
|
|
display: flex;
|
|
border-bottom: 1px solid #f3f3f3;
|
|
}
|
|
/* .tbody-tr:last-child {
|
|
border-bottom-left-radius: 8rpx;
|
|
border-bottom-right-radius: 8rpx;
|
|
} */
|
|
|
|
.tbody-tr-stripe {
|
|
background: #fff;
|
|
border-bottom: none;
|
|
}
|
|
.tbody-tr-stripe:nth-child(2n) {
|
|
background: #F6F6F6;
|
|
}
|
|
.tbody-tr .td {
|
|
white-space: wrap;
|
|
height: 80rpx;
|
|
/* padding: 0rpx 16rpx; */
|
|
/* padding:20rpx 10rpx; */
|
|
line-height: 80rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.tbody-tr-border .td {
|
|
border-right: 1rpx solid #F6F6F6;
|
|
}
|
|
.tbody-tr-border .td:last-child {
|
|
border-right: none;
|
|
}
|
|
.no-data {
|
|
display: flex;
|
|
padding: 50rpx;
|
|
color: #666;
|
|
justify-content: center;
|
|
}
|