123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- page {
- background: #f4f4f4;
- }
-
-
-
- .topView {
- width: 100%;
- height: 20rpx;
- font-size: 25rpx;
- color: #898c92;
- display: flex;
- justify-content:center;
- align-content: center;
- }
-
- .ming{
- width: 100%;
- height: 100rpx;
- font-size: 35rpx;
- color: #9F832B;
- line-height: 100rpx;
- text-align: center;
- }
-
- .cell-item {
- padding-top: 10px;
- padding-bottom: 10px;
- height: 120rpx;
- width: 100%;
- background-color: white;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1px solid #b6b6b6;
- }
-
- .cell-head {
- margin-left: 30rpx;
- flex-direction: row-reverse;
- }
- .cell-head view{
- font-size: 25rpx;
- color: #333;
- }
- .cell-head .cell-head-id{
- font-size: 30rpx;
- color: #333;
- }
-
-
- .cell-click {
- display: block;
- width: 180rpx;
- height:70rpx;
- border: 3rpx #14abc0 solid;
- line-height: 70rpx;
- text-align: center;
- margin-right: 30rpx;
- font-size: 30rpx;
- }
- .cell-click:hover {
- border: 3rpx gold solid;
- }
-
-
-
-
-
- .hide{
- display: none;
- }
- .show{
- display: block;
- }
- image{
- width: 100%;
- display: block;
- opacity: 0.2;
- }
-
-
-
- .devices_summary {
- margin-top: 30px;
- padding: 10px;
- font-size: 16px;
- }
- .device_list {
- height: 300px;
- margin: 50px 5px;
- margin-top: 0;
- border: 1px solid #EEE;
- border-radius: 5px;
- width: auto;
- }
- .device_item {
- border-bottom: 1px solid #EEE;
- padding: 10px;
- color: #666;
- }
- .device_item_hover {
- background-color: rgba(0, 0, 0, .1);
- }
- .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;
- }
|