123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- page{
- background: #fff;
- }
- .top {
- width: 100%;
- height: 140rpx;
- background-color: #26A2FF;
- margin-bottom: 60rpx;
- color: #fff;
- text-align: center;
- }
- .top image {
- width: 36rpx;
- height: 36rpx;
- margin-right: 10rpx;
- position: relative;
- top: 6rpx;
- }
- .dates {
- width: 200rpx;
- margin: 0 auto;
- text-align: center;
- }
- .head {
- position: absolute;
- top: 0rpx;
- left: 32rpx;
- right: 32rpx;
- border-radius: 20rpx;
- background-color: #fff;
- box-shadow: 0 0.04rem 0.12rem 0 rgba(0, 0, 0, .05);
- height: 200rpx;
- padding: 24rpx;
- /* text-align: center; */
- }
- .head .flex-1 view:nth-child(1) {
- /* color: #26A2FF; */
- font-weight: 600;
- margin-bottom: 10rpx;
- font-size: 36rpx;
- }
- .head .flex-1 view:nth-child(2) {
- color: #C0C4CC;
- margin-bottom: 5rpx;
- font-size: 24rpx;
- }
- .headed {
- background-color: #26A2FF;
- height: 140rpx;
- margin-bottom: 120rpx;
- }
- .headed-box {
- padding: 28rpx;
- color: #303133;
- }
- .title {
- color: #222;
- position: relative;
- font-size: 32rpx;
- font-weight: 600;
- padding-left: 20rpx;
- margin: 30rpx 0;
- }
- .title::before {
- position: absolute;
- content: "";
- height: 30rpx;
- left: 0;
- top: 3rpx;
- width: 8rpx;
- background-color: #26A2FF;
- border-radius: 50rpx;
- }
- .f2-chart {
- width: 100%;
- height: 400rpx;
- }
- /* 底部 */
- .list {
- padding: 28rpx 0;
- border-top: 1px solid #f1f1f1;
- font-size: 32rpx;
- }
- .text {
- margin-right: 10rpx;
- color: #303133;
- }
- .main .gengduo image {
- width: 24rpx;
- height: 24rpx;
- position: relative;
- top: 4rpx;
- }
- .gengduo {
- color: #303133;
- font-size: 32rpx;
- }
- .num {
- font-size: 40rpx;
-
- }
- .dates text::after {
- position: absolute;
- /* position: relative; */
- top: 50%;
- right: -20rpx;
- margin-top: -0.1rem;
- border: 0.06rem solid;
- border-color: transparent transparent #fff #fff;
- -webkit-transform: rotate(-45deg);
- transform: rotate(-45deg);
- opacity: .8;
- content: '';
- }
- .dates .activeView::after {
- margin-top: -0.02rem;
- -webkit-transform: rotate(135deg);
- transform: rotate(135deg);
- border-color: transparent transparent #fff #fff;
- }
- .item{
- padding: 24rpx;
- border-bottom: 1px solid #f1f1f1;
- }
- .scroll {
- height: calc(100vh - 2.6rem);
- }
|