123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- .bleDevices{
- width:100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- /* margin-top: 10px; */
- padding-bottom: 50px;
- }
- .bleDevices .titleBox{
- width: 100%;
- height: auto;
- padding: 10px 10px;
- box-sizing: border-box;
- }
- .bleDevices .title{
- width: 100%;
- height: 35px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 10px;
- box-sizing: border-box;
- background-color: #fff;
- border-radius: 5px;
- box-shadow: 0 0 1px 0px #3b3b3b;
- }
- .bleDevices .devList{
- padding: 0 10px;
- height: 100%;
- overflow: auto;
- }
- .bleDevices .devList .devItem{
- width: 100%;
- height: 70px;
- margin-bottom: 10px;
- border-radius: 3px;
- display: flex;
- padding: 0 8px;
- box-sizing: border-box;
- align-items: center;
- background-color: #fff;
- box-shadow: 0 0 1px 0px #3b3b3b;
- }
- .bleDevices .devList .devItem .devInfo .name,.devId{
- display: flex;
- align-items: center;
- }
- .bleDevices .devList .devItem .devInfo{
- width: 70%;
- }
-
- .bleDevices .devList .devItem .devInfo .name{
- font-size: 18px;
- height: 35px;
- }
-
- .bleDevices .devList .devItem .devInfo .devId{
- font-size: 12px;
- height: 30px;
- }
-
-
- .bleDevices .devList .devItem .option{
- width: 30%;
- }
- .btn{
- display: flex;
- justify-content: center;
- align-items: center;
- box-sizing: border-box;
- border-radius: 3px;
- background-color: #00a790;
- color: white;
- padding: 5px 25px;
- width: auto;
- height: auto;
- box-shadow: 1px 1px 5px rgb(119, 119, 119);
- }
-
- .btn:active{
- background-color: #00a790;
- box-shadow: 1px 1px 3px black;
- }
|