123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- /* pages/bms/bms.wxss */
- .tab-container {
- background-color: #46a049;
- height: 210rpx;
- }
- .tab-row {
- margin-top: 30rpx;
- font-size: 30rpx;
- font-weight: 400;
- color: rgba(255, 255, 255, 0.5);
- padding-bottom: 10px;
- }
- .tab-item::after {
- border: solid 1px #46a049;
- border-radius: 5px;
- width: 40rpx;
- height: 1px;
- display: block;
- content: ' ';
- font-size: 10rpx;
- margin: 0 auto;
- margin-top: 5px;
- background-color: #46a049;
- }
- .tab-selected {
- color: rgba(255, 255, 255, 1);
- }
- .tab-selected::after {
- border: solid 1px #fff;
- background-color: rgba(255, 255, 255, 1);
- }
- .man-body {
- position: relative;
- top: -92rpx;
- background-color: #f8f8f8;
- margin: 0 20rpx;
- font-size: 26rpx;
- border-radius: 10rpx;
- }
- .fresh-area {
- padding: 30rpx 0;
- border-bottom: solid 1px rgba(0, 0, 0, 0.1);
- }
- .fresh-icon {
- width: 26rpx;
- height: 26rpx;
- vertical-align: middle;
- }
- .fresh-time {
- color: #666666;
- }
- .battery-model {
- padding-top: 28rpx;
- padding-bottom: 70rpx;
- text-align: center;
- }
- .battery-model-icon {
- width: 242rpx;
- height: 131rpx;
- }
- .param-item {
- padding: 30rpx 0;
- border-bottom: solid 1px rgba(0, 0, 0, 0.1);
- }
- .section-head,
- .section-body {
- padding: 0 25rpx;
- background-color: #fff;
- box-shadow: 0px 7rpx 29rpx 0px rgba(0, 0, 0, 0.05);
- border-radius: 10rpx;
- }
- .section-body {
- margin-top: 10rpx;
- }
- .battery-row {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- flex-wrap: wrap;
- }
- .battery-block {
- width: 25%;
- text-align: center;
- margin-bottom: 20rpx;
- }
- .battery-bat {
- width: 72rpx;
- text-align: center;
- margin: 0 auto;
- }
- .i-bat {
- position: relative;
- }
- .i-bat-icon {
- width: 72rpx;
- height: 39rpx;
- }
- .i-bat-index {
- position: absolute;
- top: 5rpx;
- left: 0rpx;
- width: 68rpx;
- text-align: center;
- font-size: 23rpx;
- font-weight: 400;
- }
- .i-vol {
- font-size: 23rpx;
- font-weight: 400;
- }
- .param {
- color: #000;
- }
- .param-value {
- color: #666666;
- }
- .batterys-show {
- border: none;
- }
- .fun-area {
- padding: 30rpx 0;
- flex-wrap: wrap;
- }
- .fun-item {
- width: 200rpx;
- height: 91rpx;
- line-height: 91rpx;
- text-align: center;
- box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.09);
- border-radius: 10px;
- font-size: 26rpx;
- font-weight: 400;
- color: rgba(102, 102, 102, 1);
- margin-bottom: 20rpx;
- }
- .margin-bottom {
- margin-bottom: 40rpx;
- }
- .fun-item-selected {
- background-color: rgb(68, 194, 87);
- color: white;
- }
- .input-def {
- width: 93rpx;
- height: 63rpx;
- display: inline-block;
- border: solid 1px #f8f8f8;
- text-align: center;
- }
- .btn-def {
- width: 87rpx;
- height: 63rpx;
- text-align: center;
- line-height: 63rpx;
- color: white;
- display: inline-block;
- background-color: rgb(68, 194, 87);
- margin-left: 26rpx;
- border-radius: 5rpx;
- }
- .command-control {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .no-border {
- border: none;
- }
|