123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- page {
- color: #333;
- }
- .devices_summary {
- margin-top: 30px;
- padding: 10px;
- font-size: 16px;
- }
- .device_list {
- min-height: 300px;
- margin: 0 5px;
- border: 1px solid #EEE;
- width: auto;
- }
- .device_item {
- border-bottom: 1px solid #EEE;
- padding: 10px;
- color: #666;
- position: relative;
- }
- .device_item_btn{
- position: absolute;
- right: 12px;
- top: 50%;
- transform: translateY(-50%);
- width: 60px;
- height: 30px;
- display: flex;
- align-items: center;
- justify-content: center;
- border: 1px solid #ddd;
- border-radius: 3px;
- }
- .connected_info {
- position: fixed;
- bottom: 0;
- width: 100%;
- background-color: #F0F0F0;
- padding: 10px;
- padding-bottom: 20px;
- margin-bottom: env(safe-area-inset-bottom);
- font-size: 14px;
- min-height: 100px;
- box-shadow: 0px 0px 3px 0px;
- }
- .connected_info .operation {
- position: absolute;
- display: inline-block;
- right: 30px;
- }
- .writeInputViewBg{
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 1000;
- background-color: rgba(0,0,0,0.5);
- }
- .writeInputView{
- position: fixed;
- top: 30%;
- left: 50%;
- z-index: 1001;
- background-color: #fff;
- width: 80vw;
- height: 300rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- transform: translateX(-50%);
- }
- .writeInput{
- margin-top: 60rpx;
- width: 90%;
- height: 60rpx;
- border: 1rpx solid #ccc;
- }
- .writeInput input{
- width: 100%;
- height: 100%;
- box-sizing: border-box;
- }
- .hint{
- padding-top: 10rpx;
- font-size: 24rpx;
- color: #999;
- }
- .btns{
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 60%;
- margin-top: 50rpx;
- }
-
- .stopConnect{
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 10px;
- }
- .btn_connect{
- width: 20%;
- height: 30px;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #f8f8f8;
- border: 1px solid #ddd;
- border-radius: 5px;
- }
-
- .weight_wrap,
- .timer_wrap{
- padding: 10px;
- border-top: 1px solid #ddd;
- }
-
- .timer_value,
- .weight_value{
- display: flex;
- align-items: center;
- justify-content: center;
- }
-
- .value_item{
- margin: 0 5px;
- padding: 4px 6px;
- border: 1px solid #eee;
- min-width: 60px;
- text-align: center;
- }
- .btn_wrap{
- padding-top: 10px;
- }
- .btn_unitList_title{
- padding: 10px;
- }
- .btn_unitList{
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- justify-content: space-around;
- }
- .btn_unit{
- width: 20%;
- height: 40px;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #f8f8f8;
- border: 1px solid #ddd;
- border-radius: 5px;
- margin: 10px 0;
- }
- .btn_hover{
- background: rgba(0,0,0,0.1);
- }
|