selectpopup.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /* components/selectpopup/selectpopup.wxss */
  2. .popup_select_bg{
  3. position: absolute;
  4. /* display: flex;
  5. justify-content: end;
  6. align-items:center;
  7. flex-direction: column-reverse; */
  8. height: 100%;
  9. width: 100%;
  10. background: rgba(100, 100, 100, 0.4);
  11. z-index: 9999;
  12. }
  13. .popup_select_content_bg{
  14. position: absolute;
  15. display: flex;
  16. flex-direction: column;
  17. justify-content: center;
  18. align-items:center;
  19. height: auto;
  20. padding: 20rpx;
  21. width: 100%;
  22. top: 100%;
  23. box-sizing: border-box;
  24. }
  25. .popup_select_content_top{
  26. display: flex;
  27. justify-content: end;
  28. align-items:center;
  29. flex-direction: column;
  30. height: auto;
  31. width: 100%;
  32. border-bottom-left-radius: 15rpx;
  33. border-bottom-right-radius: 15rpx;
  34. border-top-right-radius: 15rpx;
  35. border-top-left-radius: 15rpx;
  36. background-color: #ffffff;
  37. }
  38. .popup_select_content_exit{
  39. display: flex;
  40. justify-content: end;
  41. align-items:center;
  42. flex-direction: column;
  43. height: auto;
  44. width: 100%;
  45. margin-top: 20rpx;
  46. border-radius: 15rpx;
  47. background-color: #ffffff;
  48. }
  49. .popup_select_item_view{
  50. width: 100%;
  51. height: 100%;
  52. display: flex;
  53. justify-content: center;
  54. align-items: center;
  55. }
  56. .popup_select_item_bg{
  57. width: 100%;
  58. height: 100rpx;
  59. display: flex;
  60. justify-content: center;
  61. align-items: center;
  62. color: #576B95;
  63. flex-direction: column;
  64. }
  65. .popup_select_item_splitLine {
  66. height: 1px;
  67. width: 100%;
  68. background:linear-gradient(to left,#ffffff,#dddddd,#ffffff);
  69. }
  70. .click_hover{
  71. opacity: 0.5;
  72. }