index.less 943 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .downselect{
  2. width: 464rpx;
  3. height: 76rpx;
  4. position: relative;
  5. .d_select{
  6. width: 100%;
  7. height: 100%;
  8. clip-path: polygon(0 10%, 100% 0, 96% 100%, 0.5% 96%);
  9. background: #422414;
  10. position: relative;
  11. align-items: center;
  12. display: flex;
  13. padding-left: 10rpx;
  14. box-sizing: border-box;
  15. &::before{
  16. content: '';
  17. display: inline-block;
  18. border: 16rpx transparent solid;
  19. width: 0;
  20. height: 0;
  21. border-top: 16rpx solid #fff;
  22. position: absolute;
  23. right: 40rpx;
  24. top: 40%;
  25. }
  26. }
  27. .d_list{
  28. position: absolute;
  29. z-index: 999999;
  30. background: #532E16;
  31. width: 96%;
  32. margin-top: 10rpx;
  33. max-height: 0;
  34. overflow: hidden;
  35. transition: .3s ease all;
  36. >view{
  37. font-size: 24rpx;
  38. padding: 16rpx 20rpx;
  39. &:hover{
  40. background-color: rgba(255, 178, 67, 0.5);
  41. }
  42. }
  43. }
  44. .active{
  45. max-height: 400rpx;
  46. }
  47. }