随手精灵小程序,单独为了获取WIFI信息加强围栏告警功能能力
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

96 lines
1.7KB

  1. /* pages/home/home.wxss.wxss */
  2. .home-container {
  3. position: relative;
  4. height: 100vh;
  5. overflow: hidden;
  6. background-color: #f2f4f5;
  7. }
  8. .header {
  9. height: 80px;
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. padding: 0 20px;
  14. background-color: #fff;
  15. font-size: 14px;
  16. color: gray;
  17. }
  18. .disable-wlan {
  19. height: 50px;
  20. line-height: 50px;
  21. margin-top: 15px;
  22. padding: 0 20px;
  23. display: flex;
  24. justify-content: space-between;
  25. align-items: center;
  26. background-color: white;
  27. }
  28. .disable-wlan-btn {
  29. width: 120px;
  30. display: flex;
  31. justify-content: space-between;
  32. align-items: center;
  33. }
  34. .refresh-img {
  35. height: 25px;
  36. width: 25px;
  37. }
  38. .body {
  39. height: calc(100vh - 205px);
  40. overflow: auto;
  41. background-color: #f2f4f5;
  42. }
  43. .wlan-list {
  44. flex: 1;
  45. background-color: #f2f4f5;
  46. overflow: auto;
  47. }
  48. .wlan-list-empty {
  49. height: 100%;
  50. display: flex;
  51. justify-content: center;
  52. align-items: center;
  53. flex-direction: column;
  54. }
  55. .no_wifi {
  56. height: 80px;
  57. width: 80px;
  58. margin-bottom: 10px;
  59. opacity: .6;
  60. }
  61. button {
  62. width: 120px;
  63. margin: 10px 0;
  64. }
  65. .wlan-item {
  66. height: 65px;
  67. line-height: 65px;
  68. padding-left: 20px;
  69. margin: 5px 0;
  70. background-color: #fff;
  71. white-space: nowrap;
  72. overflow-y: hidden;
  73. }
  74. .wlan-item-text {
  75. font-size: 14px;
  76. }
  77. .isConnect {
  78. color: #2599ff;
  79. }
  80. .footer {
  81. height: 55px;
  82. display: flex;
  83. justify-content: center;
  84. align-items: center;
  85. color: #2599ff;
  86. background-color: #fff;
  87. position: absolute;
  88. bottom: 5px;
  89. left: 0;
  90. right: 0;
  91. }
  92. .help {
  93. height: 25px;
  94. width: 25px;
  95. margin-right: 5px;
  96. }