123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- /* pages/ucenter/charginglog/charginglog.wxss */
- page {
- background-color: #f4f4f4;
- height: 100%;
- overflow-y: hidden;
- }
- .context {
- height: 100%;
- }
- .context_block {
- width: 100%;
- height: 24rpx;
- }
- .upFlag{
- position: absolute;
- color:#E99D42;
- font-size: 28rpx;
- right: 20rpx;
- top: 60rpx;
- }
- .downBtn{
- position: absolute;
- color:#000000;
- border: 1px solid #aaaaaa;
- border-radius: 30rpx;
- padding: 3rpx 6rpx;
- font-size: 22rpx;
- right: 20rpx;
- bottom: 20rpx;
- }
- .text_context {
- position: relative;
- height: 308rpx;
- background: #fff;
- padding: 0 30rpx;
- margin: 0 28rpx 24rpx 28rpx;
- border-radius: 20rpx;
- box-shadow: 0rpx 4rpx 4rpx #d5d5d5;
- }
- .text_context.h1 {
- height: 396rpx;
- }
- .text_context.h2 {
- height: 478rpx;
- }
- .text_context.h3 {
- height: 348rpx;
- }
- .text_context.h4 {
- height: 308rpx;
- }
- .text_context.active {
- background-color: #ebebeb;
- }
- .charging_text_title {
- height: 105rpx;
- width: 100%;
- display: flex;
- margin-bottom: 20rpx;
- }
- .charging_text_title1 {
- width: 100%;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- .charging {
- width: 62rpx;
- height: 62rpx;
- margin: 30rpx 30rpx 30rpx 0;
- flex-shrink: 0;
- overflow: hidden;
- }
- .charging image {
- width: 62rpx;
- height: 62rpx;
- }
- .text_context text {
- margin: 0 0 18rpx 0;
- display: block;
- font-size: 26rpx;
- font-family: 'Lucida Sans',
- 'Lucida Sans Regular',
- 'Lucida Grande',
- 'Lucida Sans Unicode',
- Geneva,
- Verdana,
- sans-serif;
- color: #231400;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- line-height: 30rpx;
- height: 30rpx;
- min-height: 30rpx;
- }
- .text_context .bold {
- font-weight: bold;
- line-height: 34rpx;
- height: 34rpx;
- min-height: 34rpx;
- margin-top: 28rpx;
- margin-bottom: 8rpx;
- display: block;
- font-size: 30rpx;
- }
- .text_context .h1 {
- margin: 0rpx 0rpx 24rpx 0rpx;
- font-size: 24rpx;
- line-height: 28rpx;
- height: 28rpx;
- min-height: 28rpx;
- color: #a3a3a3;
- }
- .inline-view{
- height: 42rpx;
- }
- text.gray {
- color: #a3a3a3;
- font-size: 24rpx;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- line-height: 28rpx;
- height: 28rpx;
- min-height: 28rpx;
- margin-bottom: 24rpx;
- }
- text.gray1 {
- color: #575757;
- }
- text.gray2 {
- color: #AAAAAA;
- }
- .inlineView text{
- display: inline-block;
- }
- text.inline {
- display: inline-block;
- }
- view.inline {
- display: inline-block;
- }
- text.red {
- color: red;
- }
- .topBar{
- height: 60rpx;
- font-size: 30rpx;
- line-height: 80rpx;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- padding: 0 40rpx;
- color:#848484;
- }
- .topBar .active{
- color: #000000;
- }
|