Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

BluetoothLink.wxss 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. page {
  2. background: #f4f4f4;
  3. }
  4. .topView {
  5. width: 100%;
  6. height: 20rpx;
  7. font-size: 25rpx;
  8. color: #898c92;
  9. display: flex;
  10. justify-content:center;
  11. align-content: center;
  12. }
  13. .ming{
  14. width: 100%;
  15. height: 100rpx;
  16. font-size: 35rpx;
  17. color: #9F832B;
  18. line-height: 100rpx;
  19. text-align: center;
  20. }
  21. .cell-item {
  22. padding-top: 10px;
  23. padding-bottom: 10px;
  24. height: 120rpx;
  25. width: 100%;
  26. background-color: white;
  27. display: flex;
  28. flex-direction: row;
  29. align-items: center;
  30. justify-content: space-between;
  31. border-bottom: 1px solid #b6b6b6;
  32. }
  33. .cell-head {
  34. margin-left: 30rpx;
  35. flex-direction: row-reverse;
  36. }
  37. .cell-head view{
  38. font-size: 25rpx;
  39. color: #333;
  40. }
  41. .cell-head .cell-head-id{
  42. font-size: 30rpx;
  43. color: #333;
  44. }
  45. .cell-click {
  46. display: block;
  47. width: 180rpx;
  48. height:70rpx;
  49. border: 3rpx #14abc0 solid;
  50. line-height: 70rpx;
  51. text-align: center;
  52. margin-right: 30rpx;
  53. font-size: 30rpx;
  54. }
  55. .cell-click:hover {
  56. border: 3rpx gold solid;
  57. }
  58. .hide{
  59. display: none;
  60. }
  61. .show{
  62. display: block;
  63. }
  64. image{
  65. width: 100%;
  66. display: block;
  67. opacity: 0.2;
  68. }
  69. .devices_summary {
  70. margin-top: 30px;
  71. padding: 10px;
  72. font-size: 16px;
  73. }
  74. .device_list {
  75. height: 300px;
  76. margin: 50px 5px;
  77. margin-top: 0;
  78. border: 1px solid #EEE;
  79. border-radius: 5px;
  80. width: auto;
  81. }
  82. .device_item {
  83. border-bottom: 1px solid #EEE;
  84. padding: 10px;
  85. color: #666;
  86. }
  87. .device_item_hover {
  88. background-color: rgba(0, 0, 0, .1);
  89. }
  90. .connected_info {
  91. position: fixed;
  92. bottom: 0;
  93. width: 100%;
  94. background-color: #F0F0F0;
  95. padding: 10px;
  96. padding-bottom: 20px;
  97. margin-bottom: env(safe-area-inset-bottom);
  98. font-size: 14px;
  99. min-height: 100px;
  100. box-shadow: 0px 0px 3px 0px;
  101. }
  102. .connected_info .operation {
  103. position: absolute;
  104. display: inline-block;
  105. right: 30px;
  106. }