tabList.wxss 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .bleDevices{
  2. width:100%;
  3. height: 360px;
  4. display: flex;
  5. flex-direction: column;
  6. overflow: hidden;
  7. /* margin-top: 10px; */
  8. }
  9. .bleDevices .titleBox{
  10. width: 100%;
  11. height: auto;
  12. padding: 10px 10px;
  13. box-sizing: border-box;
  14. }
  15. .bleDevices .title{
  16. width: 100%;
  17. height: 35px;
  18. display: flex;
  19. justify-content: space-between;
  20. align-items: center;
  21. padding: 0 10px;
  22. box-sizing: border-box;
  23. background-color: #fff;
  24. border-radius: 5px;
  25. box-shadow: 0 0 1px 0px #3b3b3b;
  26. }
  27. .bleDevices .devList{
  28. padding: 0 10px;
  29. height: 100%;
  30. overflow: auto;
  31. }
  32. .bleDevices .devList .devItem{
  33. width: 100%;
  34. height: 70px;
  35. margin-bottom: 10px;
  36. border-radius: 3px;
  37. display: flex;
  38. padding: 0 8px;
  39. box-sizing: border-box;
  40. align-items: center;
  41. background-color: #fff;
  42. box-shadow: 0 0 1px 0px #3b3b3b;
  43. }
  44. .bleDevices .devList .devItem .devInfo .name,.devId{
  45. display: flex;
  46. align-items: center;
  47. }
  48. .bleDevices .devList .devItem .devInfo{
  49. width: 70%;
  50. }
  51. .bleDevices .devList .devItem .devInfo .name{
  52. font-size: 18px;
  53. height: 35px;
  54. }
  55. .bleDevices .devList .devItem .devInfo .devId{
  56. font-size: 12px;
  57. height: 30px;
  58. }
  59. .bleDevices .devList .devItem .option{
  60. width: 30%;
  61. }
  62. .btn{
  63. display: flex;
  64. justify-content: center;
  65. align-items: center;
  66. box-sizing: border-box;
  67. border-radius: 3px;
  68. background-color: #00a790;
  69. color: white;
  70. padding: 5px 25px;
  71. width: auto;
  72. height: auto;
  73. box-shadow: 1px 1px 5px rgb(119, 119, 119);
  74. }
  75. .btn:active{
  76. background-color: #00a790;
  77. box-shadow: 1px 1px 3px black;
  78. }