| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- /* pages/monitor/index.wxss */
- .monitor{
- width: 100%;
- height: 100vh;
- background: linear-gradient(to bottom, #007544 -40%, #F0F5F5 40%,#F0F5F5 100%);
- }
- .navigation-container {
- position: fixed;
- width: 100%;
- z-index: 99;
- }
- .navigation-bar {
- position: relative;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: row;
- color: #333333;
- }
- .nav-title {
- height: 100%;
- display: flex;
- align-items: center;
- box-sizing: border-box;
- }
- .bg-logo {
- width:100%;
- height: 100%;
- display: flex;
- align-items: center;
- color: #f7f7f7;
- position: absolute;
- top: 0;
- left:20rpx;
- }
- .nav-search {
- position: absolute;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- }
- .box{
- width: 100%;
- height: 300rpx;
- padding: 0px 20rpx;
- box-sizing: border-box;
- margin-top: 40rpx;
- }
- .box_{
- width: 100%;
- background-color: #ffffff;
- border-radius: 10rpx;
- padding: 20rpx;
- box-sizing: border-box;
- }
- .tabs{
- display: flex;
- /* justify-content: space-between; */
- justify-content: space-around;
- margin-top: 30rpx;
- }
- .tabs_{
- width: 30%;
- height: 60rpx;
- display: flex;
- flex-direction: column;
- /* justify-content: center; */
- align-items: center;
- }
- .underline{
- width: 40rpx;
- height: 20rpx;
- margin-top: 6rpx;
- }
- .data_box{
- border-radius: 20rpx;
- box-sizing: border-box;
- padding-bottom:20rpx;
- font-size: 14px;
- padding: 20rpx;
- }
- .realtime{
- width: 100%;
- display: flex;
- /* justify-content: space-between; */
- justify-content: space-around;
- box-sizing: border-box;
- margin-top: 20rpx;
- }
- .realtime_left{
- height: 120rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- font-size: 28rpx;
-
- }
- .realtime_right{
- width: 50%;
- height: 120rpx;
- display: flex;
- flex-direction: column;
-
- align-items: center;
- justify-content: center;
- font-size: 28rpx;
- }
- .realtime_text{
- font-size: 36rpx;
- margin-right: 4px;
- color: #00BA82;
- }
- .realtime_unit{
- font-size: 24rpx;
- color: #222;
- }
- .realtime_title{
- font-size: 28rpx;
- margin-top: 8rpx;
- color: #222;
- }
- .power{
- width: 100%;
- display: flex;
- justify-content:space-between;
- margin-top: 20rpx;
- }
- .power_{
- width: 30%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- background-color: #F0F5F5;
- padding: 20rpx 0rpx;
- box-sizing: border-box;
- border-radius: 10rpx;
- }
- .power_1{
- width: 48%;
- display: flex;
- align-items: center;
- justify-content:space-around;
- background-color: #F0F5F5;
- padding: 20rpx 0rpx;
- box-sizing: border-box;
- border-radius: 10rpx;
-
- }
- .power_2{
- width: 48%;
- display: flex;
- align-items: center;
- /* justify-content:space-around; */
- justify-content: space-between;
- background-color: #F0F5F5;
- padding: 20rpx 26rpx;
- box-sizing: border-box;
- border-radius: 10rpx;
- }
- .power_imgaes{
- width: 56rpx;
- height: 56rpx;
- }
- .charge{
- margin-top: 20rpx;
- margin-bottom: 20rpx;
- }
- .discharge{
- width: 100%;
- display: flex;
- justify-content: space-between;
- }
- .dischargebox{
- width: 24%;
- background-color: #F0F5F5;
- border-radius: 10rpx;
- padding: 10rpx 0rpx;
- box-sizing: border-box;
- font-size: 28rpx;
- }
- .dischargebox{
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
|