| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .page {
- height: 100vh;
- background-color: #f7f7f7;
- padding: 0 32rpx;
- }
- .selectParam{
- font-size: 24rpx;
- color: #999999;
- text-align: center;
- }
- .selectParamInput{
- width: 250rpx;
- height: 30rpx;
- font-size: 24rpx;
- margin-left: 10rpx;
- pointer-events: none;
- }
- .totalCount{
- display: flex;
- align-items: center;
- margin-left: 20rpx;
- padding: 8rpx 20rpx;
- background: linear-gradient(135deg, #FFE05C 0%, #FFD02A 100%);
- border-radius: 30rpx;
- box-shadow: 0 4rpx 12rpx rgba(255, 224, 92, 0.3);
- }
- .totalCountLabel{
- font-size: 24rpx;
- color: #333333;
- font-weight: 500;
- }
- .totalCountValue{
- font-size: 32rpx;
- color: #FF6B35;
- font-weight: bold;
- margin: 0 6rpx;
- text-shadow: 0 2rpx 4rpx rgba(255, 107, 53, 0.1);
- }
|