table.scss 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. @import "../../../styles/index.scss";
  2. .table{
  3. @include wh(calc(100%),auto);
  4. border: 1px solid #16494f;
  5. border-radius: 5px;
  6. box-sizing: border-box;
  7. .title{
  8. @include wh(100px,26px);
  9. line-height: 26px;
  10. font-size: 16px;
  11. font-weight: bold;
  12. padding: 5px;
  13. }
  14. .thead{
  15. min-height: rpx(50);
  16. display: flex;
  17. border-bottom: 1px solid #009a8c;
  18. box-sizing: border-box;
  19. color: #e6e6e6;
  20. .th{
  21. @include wh(calc(33% - 20px),rpx(50));
  22. line-height: rpx(50);
  23. text-align: center;
  24. border-right: 1px solid #009a8c;
  25. box-sizing: border-box;
  26. background-color: #009a8c40;
  27. }
  28. .th:first-child{
  29. border-top-left-radius: 5px;
  30. }
  31. .th:last-child{
  32. border-top-right-radius: 5px;
  33. }
  34. .notopborder{
  35. border-top: none;
  36. }
  37. }
  38. .tbody{
  39. @include wh(100%,auto);
  40. font-size: 16px;
  41. color: #00DCC6;
  42. .row{
  43. display: flex;
  44. border-bottom: 1px solid #009a8c;
  45. box-sizing: border-box;
  46. .col{
  47. @include wh(calc(33% - 20px),rpx(60));
  48. line-height: rpx(60);
  49. border-right: 1px solid #009a8c;
  50. text-align: center;
  51. box-sizing: border-box;
  52. .com{
  53. float: left;
  54. width: calc(100% - 35px);
  55. border: none;
  56. padding: 0px;
  57. color: #009a8c;
  58. background-color: transparent;
  59. line-height: rpx(60);
  60. }
  61. .prefix{
  62. float: left;
  63. width: 35px;
  64. }
  65. }
  66. .col:first-child{
  67. border-left: 1px solid #009a8c;
  68. }
  69. .notopborder{
  70. border-top: none;
  71. }
  72. }
  73. .row:last-child{
  74. border-bottom: 1px solid #009a8c;
  75. box-sizing: border-box;
  76. }
  77. }
  78. }
  79. .my-select{
  80. margin: 0px 5px 0px 5px;
  81. background-color: transparent;
  82. border: none;
  83. color: #009a8c;
  84. width: calc(100% - 5px - 5px);
  85. line-height: rpx(60);
  86. .my-option{
  87. color: #009a8c;
  88. background-color: transparent;
  89. border: none;
  90. line-height: rpx(60);
  91. }
  92. }