123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- /* pages/charging/charging.wxss */
- page {
- background-color: #0a181a;
- height: 100%;
- overflow-y: hidden;
- }
- .map_text {
- position: relative;
- height: calc(100% - 210rpx);
- background: #0a181a;
- padding: 0 30rpx;
- margin: 30rpx 20rpx 50rpx 20rpx;
- border-radius: 20rpx;
- }
- .map_text.active {
- /*background-color: #ebebeb;*/
- }
- .charging_text_title {
- height: 105rpx;
- width: 100%;
- display: flex;
- }
- .charging_text_title1 {
- width: 100%;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- .charging {
- width: 45rpx;
- height: 45rpx;
- margin: 30rpx 30rpx 30rpx 0;
- flex-shrink: 0;
- overflow: hidden;
- }
- .charging image {
- width: 45rpx;
- height: 45rpx;
- }
- .chargeover {
- width: 400rpx;
- height: 400rpx;
- margin: 50rpx 125rpx;
- position: relative;
- flex-shrink: 0;
- overflow: hidden;
- }
- .chargeover image {
- width: 400rpx;
- height: 400rpx;
- position: absolute;
- top: 0;
- left: 0;
- }
- .chargeover_text_view {
- width: 200rpx;
- height: 200rpx;
- position: absolute;
- left: 100rpx;
- top: 100rpx;
- vertical-align: middle;
- text-align: center;
- }
- text {
- margin: 0 0 20rpx 0;
- display: block;
- font-size: 24rpx;
- font-family: 'Lucida Sans',
- 'Lucida Sans Regular',
- 'Lucida Grande',
- 'Lucida Sans Unicode',
- Geneva,
- Verdana,
- sans-serif;
- color: #24e383;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- line-height: 24rpx;
- height: 24rpx;
- min-height: 24rpx;
- }
- text.bold {
- font-weight: bold;
- line-height: 24rpx;
- height: 24rpx;
- min-height: 24rpx;
- margin-top: 30rpx;
- margin-bottom: 1rpx;
- display: block;
- }
- text.inline {
- display: inline-block;
- color: #959595;
- margin: 0rpx 0rpx 80rpx 0rpx;
- line-height: 48rpx;
- height: 48rpx;
- min-height: 48rpx;
- }
- text.left {
- float: left;
- padding-bottom: 50rpx;
- margin: 0;
- }
- text.right {
- text-align: right;
- float: right;
- padding-bottom: 50rpx;
- margin: 0;
- }
- text.fast {
- color: #2483c0;
- }
- text.slow {
- color: #42b9b4;
- }
- .h1 {
- margin: 0rpx 0rpx 30rpx 0rpx;
- font-size: 20rpx;
- line-height: 20rpx;
- height: 20rpx;
- min-height: 20rpx;
- color: #959595;
- }
- .charg_button {
- font-size: 32rpx;
- margin: 50rpx 30rpx;
- font-family: 'Lucida Sans',
- 'Lucida Sans Regular',
- 'Lucida Grande',
- 'Lucida Sans Unicode',
- Geneva,
- Verdana,
- sans-serif;
- color: #1eb368;
- text-overflow: ellipsis;
- white-space: nowrap;
- background-color: #041008;
- }
- .charg_button.button-hover {
- background-color: #1eb368;
- color: #041008;
- }
- .charg_button_disable {
- font-size: 32rpx;
- margin: 50rpx 30rpx;
- font-family: 'Lucida Sans',
- 'Lucida Sans Regular',
- 'Lucida Grande',
- 'Lucida Sans Unicode',
- Geneva,
- Verdana,
- sans-serif;
- text-overflow: ellipsis;
- white-space: nowrap;
- color: #fff;
- background-color: #c9c9c9;
- }
- .text1 {
- margin: 0rpx 0rpx 30rpx 0rpx;
- color: #959595;
- }
- .text2 {
- margin: 0rpx 0rpx 20rpx 0rpx;
- font-size: 32rpx;
- line-height: 32rpx;
- height: 32rpx;
- min-height: 32rpx;
- }
- .text3 {
- margin: 0rpx 0rpx 80rpx 0rpx;
- font-size: 48rpx;
- line-height: 48rpx;
- height: 48rpx;
- min-height: 48rpx;
- color: #959595;
- }
- .text4 {
- font-size: 32rpx;
- line-height: 200rpx;
- height: 200rpx;
- min-height: 200rpx;
- }
- .text_context {
- text-align: center;
- }
- .progress_canvas {
- width: 400rpx;
- height: 400rpx;
- }
- .help {
- width: 100%;
- text-align: center;
- text-overflow: ellipsis;
- white-space: nowrap;
- margin: 0rpx 0rpx 30rpx 0rpx;
- font-size: 22rpx;
- line-height: 22rpx;
- height: 22rpx;
- min-height: 22rpx;
- color: #959595;
- }
|