tabList.wxss 1.7 KB

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