12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
-
- .table {
- overflow: scroll;
- width: 100%;
- }
- .shang{
- color: red;
- }
- .xia{
- color: aquamarine;
- }
- .tableTh {
- display: -webkit-box;
- color: #8d8d8d;
- min-height: 80rpx;
- font-size: 28rpx
- }
- .tableTh view {
- width: 25vw;
- display: flex;
- flex-direction: column;
- justify-content: center;
- text-align: center;
- background: #f6f6f6;
- /* border-right: 2px solid #FFFFFF; */
- }
- .tableTr {
- display: -webkit-box;
- font-size: 28rpx
- }
- .tableTr view {
- width: 25vw;
- text-align: center;
- padding: 20rpx 0;
- display: table-cell;
- align-items: center;
- justify-content: space-around;
- display: flex;
- /* border-right: 2px solid #FFFFFF; */
- border-bottom: 2px solid #FFFFFF;
- background: #FFFFFF;
- }
- .table_wrap {
- display: table;
- overflow: scroll;
- width: 100%;
- }
-
|