随手精灵小程序,单独为了获取WIFI信息加强围栏告警功能能力
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

90 行
1.6KB

  1. .device-item {
  2. display: flex;
  3. justify-content: space-between;
  4. }
  5. .device-result {
  6. flex:1;
  7. text-align: center;
  8. }
  9. .command{
  10. background-color: black;
  11. color: white;
  12. margin: 24rpx;
  13. padding: 10rpx;
  14. margin-bottom: 0;
  15. }
  16. .command-line {
  17. background-color: black;
  18. color: white;
  19. font-family: monospace;
  20. padding: 20rpx;
  21. border: 1rpx solid white;
  22. padding: 10rpx;
  23. overflow: auto;
  24. height: 350rpx;
  25. margin: 24rpx;
  26. margin-top: 0;
  27. overflow-y: scroll;
  28. text-align: right;
  29. }
  30. .command-line view {
  31. word-wrap: break-word;
  32. word-break: normal;
  33. }
  34. .event-bar {
  35. display: flex;
  36. justify-content: space-between;
  37. padding: 24rpx;
  38. flex-wrap: wrap;
  39. }
  40. .event-bar button {
  41. width: 45%;
  42. background-color: #f8f8f8;
  43. color: #000;
  44. text-align: center;
  45. padding: 10rpx;
  46. border:1rpx #ccc solid;
  47. margin-bottom: 10rpx;
  48. }
  49. .dialog {
  50. position: fixed;
  51. top: 0;
  52. left: 0;
  53. width: 100%;
  54. height: 100%;
  55. background-color: rgba(0, 0, 0, 0.5);
  56. display: flex;
  57. justify-content: center;
  58. align-items: center;
  59. z-index: 1;
  60. }
  61. .dialog-content {
  62. background-color: #fff;
  63. padding: 20rpx;
  64. border-radius: 10rpx;
  65. box-shadow: 0 2rpx 4rpx rgba(0, 0, 0, 0.2);
  66. width: 80%;
  67. }
  68. .dialog-title {
  69. font-size: 35rpx;
  70. font-weight: bold;
  71. margin-bottom: 10rpx;
  72. text-align: center;
  73. }
  74. .dialog-message {
  75. font-size: 30rpx;
  76. margin-bottom: 20rpx;
  77. }
  78. .dialog-button {
  79. padding: 10rpx 20rpx;
  80. border-radius: 5rpx;
  81. font-size: 30rpx;
  82. }
  83. .clear-btn {
  84. margin: 24rpx;
  85. }