index.wxss 589 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* common/components/drop-down/index.wxss */
  2. .drop-container{
  3. width: 100%;
  4. height: 100%;
  5. color: #000;
  6. background: rgba(0, 0, 0, 0.5);
  7. overflow: hidden;
  8. }
  9. .drop-body{
  10. background: #fff;
  11. padding: 0 40rpx 40rpx;
  12. font-size: 28rpx;
  13. overflow: hidden;
  14. }
  15. .drop-nav{
  16. display: flex;
  17. justify-content: space-between;
  18. height: 120rpx;
  19. line-height: 120rpx;
  20. font-weight: bold;
  21. }
  22. .drop-tag{
  23. display: flex;
  24. align-items: center;
  25. }
  26. .drop-item{
  27. height: 120rpx;
  28. line-height: 120rpx;
  29. display: flex;
  30. justify-content: space-between;
  31. }
  32. .drop-item-active{
  33. color: #E02F2F;
  34. }