detail.wxss 751B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .table {
  2. overflow: scroll;
  3. width: 100%;
  4. }
  5. .shang{
  6. color: red;
  7. }
  8. .xia{
  9. color: aquamarine;
  10. }
  11. .tableTh {
  12. display: -webkit-box;
  13. color: #8d8d8d;
  14. min-height: 80rpx;
  15. font-size: 28rpx
  16. }
  17. .tableTh view {
  18. width: 25vw;
  19. display: flex;
  20. flex-direction: column;
  21. justify-content: center;
  22. text-align: center;
  23. background: #f6f6f6;
  24. /* border-right: 2px solid #FFFFFF; */
  25. }
  26. .tableTr {
  27. display: -webkit-box;
  28. font-size: 28rpx
  29. }
  30. .tableTr view {
  31. width: 25vw;
  32. text-align: center;
  33. padding: 20rpx 0;
  34. display: table-cell;
  35. align-items: center;
  36. justify-content: space-around;
  37. display: flex;
  38. /* border-right: 2px solid #FFFFFF; */
  39. border-bottom: 2px solid #FFFFFF;
  40. background: #FFFFFF;
  41. }
  42. .table_wrap {
  43. display: table;
  44. overflow: scroll;
  45. width: 100%;
  46. }