1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- .bleDevices{
- width:100%;
- height: 360px;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- /* margin-top: 10px; */
- }
- .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;
- }
|