123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- /* pages/avg/avg.wxss */
- .title{
- margin-left: 20rpx;
- margin-top: 20rpx;
- font-size: 34rpx;
- }
- .title_1{
- margin-left: 20rpx;
- margin-top: 20rpx;
- font-size: 30rpx;
- }
- .info{
- margin-top: 5rpx;
- margin-left: 20rpx;
- font-size: 26rpx;
- color: rgb(128, 128, 128);
- }
- .tab{
- background: #fff;
- margin-top: 16rpx;
- /* padding:0 10rpx; */
- margin-left: 20rpx;
- display: flex;
- border-bottom: 1px solid #f2f2f2;
-
- }
- .tab view{
- font-size: 30rpx;
- color: #333;
- line-height: 80rpx;
- transition: all .1s linear;
- margin-right:20rpx;
- }
- .tab .act{
- color: #FF583D;
- border-bottom: 2px solid #FF583D;
- font-size: 32rpx;
- }
- .content{
- font-size: 30rpx;
- font-weight: 500;
- }
- .container {
- position: relative;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- box-sizing: border-box;
- height: 50vh;
- background: #fff;
- z-index: 9;
- }
- ec-canvas {
- width: 100%;
- height: 100%;
- position: relative;
- z-index: 99;
- }
- .imgs,.content{
- margin-bottom: 20rpx;
- background: #fff;
- padding: 30rpx;
- position: relative;
- }
- .month{
- text-align: right;
- position: absolute;
- right: 30rpx;
- top: 30rpx;
- }
- .month>image{
- height: 40rpx;
- display: inline-block;
- vertical-align: middle;
- }
- picker{
- display: inline-block;
- vertical-align: middle;
- margin: 0 20rpx;
- }
- .date-picker{
- font-size: 36rpx;
- font-weight: 500;
- }
- .date-picker image{
- height: 24rpx;
- }
- .day{
- display: flex;
- justify-content: space-between;
- padding: 10rpx;
- background: #f5f5f5;
- margin: 20rpx 0;
- }
- .day text{
- color: #999;
- width: 14%;
- text-align: center;
- }
- .days{
- display: flex;
- flex-wrap: wrap;
- /* justify-content: space-between; */
- }
- .days view{
- width: 14%;
- text-align: center;
- font-weight: 500;
- height: 96rpx;
- /* margin-bottom: 10rpx; */
- }
- .days text{
- display: block;
- color: #666;
- font-size: 20rpx;
- position: relative;
- top: -5rpx;
- font-weight: 400;
- }
- .days view view{
- width: 100% !important;
- }
- .days view view text{
- color: #fff;
- }
- .down1{
- background: #07B20B;
- color: #fff;
-
- }
- .up1{
- background: #E90001;
- color: #fff;
- }
- .week_view{
- padding-top: 50rpx;
- /* padding: 20rpx; */
- padding-left: 20rpx;
- padding-bottom: 200rpx;
- }
- .yk{
- display: flex;
- justify-content: space-between;
- font-size: 24rpx;
- }
- .week_name{
- width: 15%;
- padding: 12px 0;
- font-size: 26rpx;
- }
- .week_total{
- width: 15%;
- text-align: center;
- padding: 10rpx 0;
- }
- .week_incom{
- width: 70%;
- display: flex;
- }
- .week_incom>view{
- padding: 10rpx 0;
- width: 100rpx;
- text-align: center;
- /* border: 1px solid red; */
- }
- .week_incom text{
- display: block;
- color: #fff;
- }
- .week_incom .down{
- background-color: #07B20B;
- color: #fff !important;
- }
- .week_incom .up{
- background-color: #E90001;
- color: #fff !important;
- }
- .week_incom .none{
- background-color: #a3a3a3;
- /* color: #fff !important; */
- }
|