drop-down.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. page{
  2. --border: 1px solid rgba(0, 0, 0, 0.1);
  3. --textColor: #111;
  4. --subColor: #A3A4A5;
  5. --statusColor: #F9A718;
  6. --tbH:22%;
  7. }
  8. @import "/common/font/iconfont.wxss";
  9. .dd-con{
  10. width: 100%;
  11. padding: 0 0 0 40rpx;
  12. display: flex;
  13. justify-content: space-between;
  14. background-color: #fff;
  15. transition: all linear .3s;
  16. max-height: 0;
  17. }
  18. .dd-active{
  19. max-height: 60vh;
  20. }
  21. .dd-item{
  22. flex: 1;
  23. overflow-x: hidden;
  24. /* overflow-y: auto; */
  25. max-height: 100%;
  26. }
  27. .row-item{
  28. margin-right: 40rpx;
  29. line-height: 90rpx;
  30. height: 90rpx;
  31. border-bottom: var(--border);
  32. position: relative;
  33. z-index: 999;
  34. }
  35. .row-active{
  36. color: var(--theme);
  37. }
  38. .filter{
  39. display: flex;
  40. justify-content: space-between;
  41. align-items: center;
  42. width: calc(100% - 40rpx);
  43. line-height: 120rpx;
  44. height: 120rpx;
  45. }
  46. .hidden{
  47. display: none;
  48. }
  49. .filter input, .filter .btn{
  50. width: 140rpx;
  51. line-height: 60rpx;
  52. height: 60rpx;
  53. }
  54. .filter input{
  55. border: var(--border);
  56. padding-left: 20rpx;
  57. border-radius: 8rpx;
  58. }
  59. .filter .btn{
  60. border-radius: 8rpx;
  61. color: #fff;
  62. text-align: center;
  63. background-color: var(--theme);
  64. }
  65. .star{
  66. margin-left: 4rpx;
  67. font-size: 28rpx;
  68. color: #F56C6C;
  69. }