choose-device.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. @import "@/style/common.scss";
  2. $choiceHeight: 200rpx;
  3. $searchHeight: 70rpx;
  4. .z-page-popup {
  5. border-radius: 10px 10px 0 0;
  6. }
  7. .page-top {
  8. min-height: calc($searchHeight);
  9. height: auto;
  10. // max-height: calc($searchHeight + $choiceHeight);
  11. box-sizing: border-box;
  12. width: 100%;
  13. background: #F3F5F9;
  14. padding: 10px;
  15. padding-bottom: 0;
  16. // z-index: 1;
  17. }
  18. .head-row {
  19. margin-bottom: 20px;
  20. font-size: 16px;
  21. line-height: 21px;
  22. color: #A3A3A3;
  23. }
  24. .head-title {
  25. color: #333333;
  26. font-weight: bold;
  27. }
  28. .choice-row {
  29. width: 100%;
  30. max-height: $choiceHeight;
  31. overflow-y: auto;
  32. }
  33. .choice-item {
  34. min-width: 90px;
  35. height: 30px;
  36. box-sizing: border-box;
  37. border-radius: 15px;
  38. border: 1px solid #DDDDDD;
  39. font-weight: 400;
  40. font-size: 14px;
  41. color: #333333;
  42. padding: 5px 10px;
  43. margin: 10px 10px 10px 0;
  44. text-align: center;
  45. position: relative;
  46. }
  47. .choice-close-icon{
  48. position: absolute;
  49. right: -3px;
  50. top: -5px;
  51. background: #004098;
  52. font-size: 10px !important;
  53. border-radius: 10px;
  54. padding: 2px;
  55. }
  56. .search-row {
  57. height: $searchHeight;
  58. width: calc(100%) !important;
  59. background: #F3F5F9;
  60. .mini-btn {
  61. height: $searchHeight;
  62. line-height: $searchHeight;
  63. width: calc(100% - 10px);
  64. margin-left: 10px;
  65. }
  66. }
  67. .table-header {
  68. width: 100%;
  69. height: 32px;
  70. background: #EBECEC;
  71. border-radius: 4px 4px 0px 0px;
  72. margin-top: 10px;
  73. font-weight: 400;
  74. font-size: 13px;
  75. color: #333333;
  76. }
  77. .page-table {
  78. // margin-top: calc($header-height + $header-top-height + $searchHeight + $choiceHeight + 20rpx + 20rpx);
  79. // height: calc(100% - ($header-height + $header-top-height + $searchHeight + $choiceHeight + 20rpx + 20rpx));
  80. padding: 10px;
  81. padding-top: 0;
  82. }
  83. .table-content{
  84. background: #FFFFFF;
  85. padding-top: 0;
  86. padding: 10px;
  87. }
  88. .item-row {
  89. width: 100%;
  90. font-weight: 400;
  91. font-size: 12px;
  92. color: #333333;
  93. min-height: 37px;
  94. border-bottom: 1px dashed #CACCCF;
  95. &.choosed {
  96. color: #004098;
  97. font-weight: 500;
  98. }
  99. }
  100. .item-col {
  101. word-break: break-all;
  102. }