select-own.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .sel-bg{
  2. display: none;
  3. position: fixed;
  4. top: 0px;
  5. left: 0px;
  6. right: 0px;
  7. bottom: 0px;
  8. z-index: 5;
  9. background-color: rgba(0,0,0,0.2);
  10. }
  11. .sel-main{
  12. display: none;
  13. position: absolute;
  14. width: 100%;
  15. background-color: #fff;
  16. bottom: 0px;
  17. z-index: 10;
  18. }
  19. .sel-head{
  20. padding: 0px 15px;
  21. height: 40px;
  22. background-color: #d9d9db;
  23. }
  24. .sel-ok{
  25. height: 40px;
  26. font-size: 16px;
  27. color: #007AFF;
  28. font-weight: bold;
  29. float: right;
  30. line-height: 40px;
  31. }
  32. .sel-cancel{
  33. float: left;
  34. height: 40px;
  35. font-size: 16px;
  36. color: #007AFF;
  37. line-height: 40px;
  38. }
  39. .sel-search{
  40. display: none;
  41. width: 100%;
  42. padding: 10px 10px;
  43. margin: 0 auto;
  44. background-color: #d9d9db;
  45. position: absolute;
  46. top: 45px;
  47. z-index: 15;
  48. }
  49. .sel-search input{
  50. width: 100%;
  51. border: solid 1px #d9d9db;
  52. border-radius: 5px;
  53. font-size: 14px;
  54. color: #333;
  55. margin-bottom: 0px;
  56. }
  57. .sel-contain{
  58. position: relative;
  59. padding: 10px 0px;
  60. }
  61. .sel-list{
  62. width: 80%;
  63. height: 200px;
  64. margin: 0 auto;
  65. overflow-y: auto;
  66. }
  67. .sel-list li{
  68. width: 100%;
  69. height: 40px;
  70. line-height: 40px;
  71. overflow: hidden;
  72. text-overflow: ellipsis;
  73. white-space: nowrap;
  74. text-align: center;
  75. font-size: 17px;
  76. color: #333;
  77. padding: 0px 40px;
  78. }
  79. .sel-list li.active{
  80. background: url('../images/gouxuan_lanse_icon.png') no-repeat;
  81. background-size:20px 20px;
  82. background-position: 15px center;
  83. color: #007aff;