This commit is contained in:
2023-09-08 16:19:06 +08:00
parent a7acaf21d1
commit 377b130d57
3 changed files with 69 additions and 7 deletions

View File

@@ -367,4 +367,53 @@ uni-button:after {
.layout-t tr.checked td .sin_input {
color: #8a8a8a;
border: 1px solid #ffffff;
}
/** grid分成2个table */
.grid_new {
width: 100%;
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.grid_l {
-webkit-box-flex: 0;
-ms-flex: 0 0 100rpx;
flex: 0 0 100rpx;
}
.grid_r {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
overflow-x: scroll;
}
.grid_l table, .grid_r table {
border-collapse: separate;
border-spacing: 0;
border: 0;
}
.grid_l table th, .grid_r table th {
background: #d7d7d7;
font-size: 26rpx;
line-height: 98rpx;
color: #696969;
font-weight: bold;
white-space: nowrap;
text-overflow: ellipsis;
white-space: nowrap;
padding: 0 20rpx;
border-bottom: 10rpx solid #f5f5f5;
text-align: center;
}
.grid_l table td, .grid_r table td {
font-size: 28rpx;
line-height: 76rpx;
color: #323232;
background: #fff;
white-space: nowrap;
text-overflow: ellipsis;
white-space: nowrap;
padding: 11rpx 20rpx;
border-bottom: 10rpx solid #f5f5f5;
text-align: center;
}