123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- .top {
- width: 100%;
- height: 140rpx;
- background-color: #26A2FF;
- margin-bottom: 70rpx;
- 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: 70rpx;
- left: 32rpx;
- right: 32rpx;
- border-radius: 20rpx;
- background-color: #fff;
- box-shadow: 0 0.04rem 0.12rem 0 rgba(0, 0, 0, .05);
- height: 140rpx;
- text-align: center;
- }
- .head .flex-1 view:nth-child(1) {
- color: #26A2FF;
- font-weight: 600;
- margin-bottom: 10rpx;
- font-size: 40rpx;
- }
- .head .flex-1 view:nth-child(2) {
- color: #C0C4CC;
- margin-bottom: 5rpx;
- font-size: 28rpx;
- }
- .headed {
- background-color: #fff;
- }
- .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;
- }
- /* 底部 */
- .main {
- padding: 28rpx;
- }
- .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;
- }
- .ticket-list__item {
- margin-bottom: .24rem;
- background: #fff;
- border-radius: .2rem;
- width: 100%;
- }
- .ticket_left {
- padding: 0 .24rem;
- margin: .24rem 0;
- display: -webkit-box;
- text-overflow: ellipsis;
- overflow: hidden;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- line-height: .6rem;
- }
- .ticket_right {
- padding: .24rem;
- font-size: .32rem;
- text-align: center;
- border-top-right-radius: .2rem;
- border-bottom-right-radius: .2rem;
- color: #fff;
- background: #c6edff;
- background: linear-gradient(-160deg, #26a2ff, #5cb6f9);
- }
- .scroll {
- height: calc(100vh - 3.35rem);
- }
|