| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- .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;
- }
- .selectParamInput /deep/ input {
- cursor: pointer;
- pointer-events: none;
- }
- .input-wrapper {
- position: relative;
- z-index: 1;
- cursor: pointer;
- }
- .totalCount{
- display: flex;
- align-items: center;
- margin-left: 20rpx;
- padding: 2rpx 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: 22rpx;
- color: #333333;
- font-weight: 500;
- }
- .totalCountValue{
- font-size: 22rpx;
- color: #FF6B35;
- font-weight: bold;
- margin: 0 6rpx;
- text-shadow: 0 2rpx 4rpx rgba(255, 107, 53, 0.1);
- }
|