SG_area_select.css 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. *{
  2. margin:0px;
  3. padding: 0px;
  4. font-family: '微软雅黑';
  5. }
  6. @media only screen and (max-width: 767px) {
  7. .sg-mask{
  8. position: absolute; top: 0px; filter: alpha(opacity=20); background-color: #333;
  9. z-index: 1002; left: 0px;
  10. -moz-opacity:0.5;
  11. width:100%;
  12. height: 100%;
  13. display: block;
  14. overflow: hidden;
  15. }
  16. .popups-box{
  17. width:100%;
  18. text-align:center;
  19. background-color:#fff;
  20. border-radius: 5px;
  21. position: absolute;
  22. bottom: -251px;
  23. margin: 0 auto;
  24. float: left;
  25. }
  26. .popups-box .title-min{
  27. height: 35px;
  28. width: 100%;
  29. line-height: 35px;
  30. color: #fff;
  31. background-color: #23b7e5;
  32. border-top-left-radius: 5px;
  33. border-top-right-radius: 5px;
  34. }
  35. .popups-box .title-min .query{
  36. float: left;
  37. margin-left: 10px;
  38. cursor: pointer;
  39. }
  40. .popups-box .title-min .submit{
  41. float: right;
  42. margin-right: 10px;
  43. cursor: pointer;
  44. }
  45. .popups-box .title-max{
  46. display: none;
  47. }
  48. .popups-box .close{
  49. width: 30px;
  50. height: 35px;
  51. text-align: center;
  52. float: right;
  53. cursor: pointer;
  54. }
  55. .popups-box .result-box{
  56. text-align: left;
  57. padding-left: 5px;
  58. height: 40px;
  59. line-height: 40px;
  60. margin-top: 10px;
  61. border-bottom: 1px solid #bfbfbf;
  62. padding-bottom: 10px;
  63. display: flex;
  64. }
  65. .popups-box .result-box input{
  66. height: 30px;
  67. line-height: 30px;
  68. flex: 1;
  69. margin-left: 10px;
  70. margin-right: 10px;
  71. padding-left: 10px;
  72. }
  73. .popups-box .footer{
  74. display: none;
  75. }
  76. .tab-box{
  77. float: left;
  78. }
  79. .tab-menu{
  80. height: 50px;
  81. line-height: 50px;
  82. border-bottom: 1px solid #bfbfbf;
  83. }
  84. .tab-box .tab-menu li{
  85. list-style: none;
  86. float: left;
  87. width: 33%;
  88. cursor:pointer;
  89. }
  90. .tab-content{
  91. width: 100%;
  92. height: 100%;
  93. margin-top: 2px;
  94. float: left;
  95. width: 33%;
  96. height: 102px;
  97. overflow: hidden;
  98. /* overflow: hidden;
  99. overflow: auto;
  100. -webkit-overflow-scrolling:touch;
  101. */
  102. }
  103. .tab-content ul{
  104. float: left;
  105. width: 100%;
  106. }
  107. .tab-list-1,.tab-list-2,.tab-list-3{
  108. display: block;
  109. }
  110. .content-box{
  111. float: left;
  112. width: 800px;
  113. height:500px;
  114. }
  115. .tab-content li{
  116. width: 105px;
  117. height:35px;
  118. line-height: 35px;
  119. float: left;
  120. list-style: none;
  121. width: 100%;
  122. }
  123. .minISClick a{
  124. background-color: #23b7e5;
  125. padding: 3px;
  126. color: #fff;
  127. max-width: 105px;
  128. border-radius: 5px;
  129. }
  130. }
  131. @media only screen and (min-width: 768px) {
  132. .sg-mask{
  133. position: absolute; top: 0px; filter: alpha(opacity=20); background-color: #333;
  134. z-index: 1002; left: 0px;
  135. -moz-opacity:0.5;
  136. width:100%;
  137. height: 100%;
  138. display: block;
  139. }
  140. .popups-box{
  141. width:650px;
  142. text-align:center;
  143. background-color:#fff;
  144. border-radius: 5px;
  145. position: relative;
  146. margin: 0 auto;
  147. top:50px;
  148. }
  149. .popups-box .title-min{
  150. display: none;
  151. }
  152. .popups-box .title-max{
  153. height: 35px;
  154. width: 100%;
  155. line-height: 35px;
  156. color: #fff;
  157. text-align: left;
  158. padding-left: 10px;
  159. background-color: #23b7e5;
  160. border-top-left-radius: 5px;
  161. border-top-right-radius: 5px;
  162. }
  163. .popups-box .close{
  164. width: 30px;
  165. height: 35px;
  166. text-align: center;
  167. float: right;
  168. cursor: pointer;
  169. }
  170. .popups-box .result-box{
  171. text-align: left;
  172. padding-left: 20px;
  173. height: 40px;
  174. line-height: 40px;
  175. margin-top: 10px;
  176. border-bottom: 1px solid #bfbfbf;
  177. padding-bottom: 10px;
  178. }
  179. .popups-box .result-box input{
  180. height: 30px;
  181. line-height: 30px;
  182. width: 480px;
  183. padding-left: 10px;
  184. margin-left: 5px;
  185. }
  186. .popups-box .footer{
  187. height: 60px;
  188. width: 650px;
  189. line-height:60px;
  190. border-top: 1px solid #bfbfbf;
  191. bottom: 0px;
  192. text-align: right;
  193. clear: both;
  194. }
  195. .popups-box .footer button{
  196. width: 80px;
  197. height: 40px;
  198. line-height: 40px;
  199. border-radius: 5px;
  200. background-color: #23b7e5;
  201. color: #fff;
  202. font-size: 15px;
  203. border:none;
  204. outline: none;
  205. cursor: pointer;
  206. margin-right: 10px;
  207. }
  208. .tab-box{
  209. width: 100%;
  210. }
  211. .tab-menu{
  212. height: 50px;
  213. line-height: 50px;
  214. padding-left: 12px;
  215. padding-right: 12px;
  216. }
  217. .tab-box .tab-menu li{
  218. list-style: none;
  219. float: left;
  220. width: 33%;
  221. cursor:pointer;
  222. }
  223. .tab-content{
  224. width: 100%;
  225. height: 100%;
  226. margin-top: 2px;
  227. float: left;
  228. display: none;
  229. }
  230. .tab-content li{
  231. width: 105px;
  232. height:34px;
  233. line-height: 34px;
  234. float: left;
  235. list-style: none;
  236. overflow: hidden;
  237. white-space: nowrap;
  238. text-overflow: ellipsis;
  239. }
  240. .tab-content li a:hover{
  241. cursor: pointer;
  242. background-color: #23b7e5;
  243. padding: 3px;
  244. color: #fff;
  245. max-width: 105px;
  246. border-radius: 5px;
  247. }
  248. .isCheck{
  249. border-bottom: 2px solid #23b7e5;
  250. box-sizing: border-box;
  251. }
  252. .isBlock{
  253. display: block;
  254. }
  255. }