dropdown.min.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. .dropdwon {
  2. position: fixed;
  3. width: 100%;
  4. height: 100vh;
  5. top: 0;
  6. left: 0;
  7. background: rgba(0,0,0,.5);
  8. z-index: 101;
  9. }
  10. .display_none {
  11. display: none;
  12. }
  13. .dropdwon .down_cont {
  14. height: 55%;
  15. position: absolute;
  16. bottom: 0;
  17. left: 0;
  18. background: #fff;
  19. padding: 0;
  20. width: calc(100% - .32rem);
  21. z-index: 10;
  22. padding-bottom: 1rem;
  23. }
  24. .dropdwon .other_box {
  25. position: absolute;
  26. width: 100%;
  27. height: 100vh;
  28. top: 0;
  29. left: 0;
  30. z-index: 9;
  31. }
  32. .dropdwon .down_cont .title {
  33. background-color: #f0f0f0;
  34. padding: 5px 0 5px 0;
  35. display: flex;
  36. justify-content: space-between;
  37. border-bottom: 1px solid #ededed;
  38. }
  39. .dropdwon .down_cont .title > span {
  40. padding: 0.8rem 1.3rem;
  41. height: .46rem;
  42. line-height: .46rem;
  43. font-size: .8rem;
  44. color: #222;
  45. }
  46. .dropdwon .down_cont .title .cacel {
  47. color: #666;
  48. padding: .8rem 1.3rem;
  49. background-color: #fff;
  50. margin-right : 0.5rem;
  51. margin-left: 0.5rem;
  52. }
  53. .dropdwon .down_cont .title .finsih {
  54. padding: .8rem 1.3rem;
  55. background-color: #fff
  56. margin-left : 0.5rem;
  57. margin-right : 0.5rem;
  58. background-color: #00787B;
  59. color: #fff;
  60. }
  61. .dropdwon .down_cont .content {
  62. height: 100%;
  63. overflow: scroll;
  64. display: inline-block;
  65. display: -webkit-inline-box;
  66. // display: flex;
  67. // flex-wrap: wrap;
  68. // justify-content: space-between;
  69. padding: .2rem 1rem;
  70. }
  71. .dropdwon .down_cont .display_none {
  72. display: none;
  73. }
  74. .dropdwon .down_cont .content > span {
  75. padding: 0 1.5rem;
  76. font-size: .8rem;
  77. color: #222;
  78. background: #FFFFFF;
  79. border: 1px solid #EDEDED;
  80. border-radius: .03rem;
  81. height: 32px;
  82. text-align: center;
  83. line-height: 32px;
  84. display: inline-block;
  85. margin-top: .4rem;
  86. padding: 0 1.5rem;
  87. margin-left: 1rem;
  88. }
  89. .dropdwon .down_cont .content > span.active {
  90. background-color: #009944;
  91. border: .01rem solid #009944;
  92. color: #fff;
  93. }
  94. .tool_tip {
  95. position: fixed;
  96. left: 0;
  97. top: 0;
  98. bottom: 0;
  99. right: 0;
  100. z-index: 99999;
  101. margin: auto;
  102. background: rgba(0,0,0,.5);
  103. color: #fff;
  104. line-height: 1.5;
  105. font-size: .15rem;
  106. border-radius: .18rem;
  107. text-align: center;
  108. width: 80%;
  109. max-width: 2.2rem;
  110. border-radius: .05rem;
  111. padding: 0 .1rem;
  112. height: 1rem;
  113. line-height: 1rem;
  114. display: none;
  115. }