main.css 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261
  1. @charset "utf-8";
  2. /* CSS 초기화*/
  3. html {
  4. height: 100%;
  5. }
  6. * {
  7. margin: 0px;
  8. padding: 0px;
  9. }
  10. body, html {
  11. font-size: 10pt;
  12. font-family: '돋움', dotum, '굴림', Gulim, Tahoma, serif, sans-serif;
  13. color: #515151;
  14. height: 100%;
  15. width: 100%;
  16. min-width: 640px;
  17. overflow: hidden;
  18. }
  19. a {
  20. text-decoration: none;
  21. vertical-align: middle;
  22. }
  23. img, fieldset {
  24. border: none;
  25. }
  26. input, textarea {
  27. vertical-align: middle;
  28. text-indent: 7px;
  29. font-size: 12px;
  30. font-family: '돋움', dotum, '굴림', Gulim, Tahoma, serif, sans-serif;
  31. color: #515151;
  32. }
  33. /* input[type="text"] {
  34. height: 23px;
  35. box-sizing: border-box;
  36. border: 1px solid #cccccc;
  37. } */
  38. textarea {
  39. padding: 5px;
  40. text-indent: 0;
  41. }
  42. table {
  43. border-collapse: collapse;
  44. border-spacing: 0px;
  45. }
  46. img {
  47. vertical-align: middle;
  48. }
  49. table caption {
  50. visibility: hidden;
  51. height: 0;
  52. }
  53. ul, ol, li, label {
  54. list-style: none;
  55. }
  56. label {
  57. /* visibility: hidden;
  58. text-indent: -99999em; */
  59. }
  60. button {
  61. border: 0;
  62. background: transparent;
  63. cursor: pointer;
  64. overflow: visible;
  65. }
  66. table {
  67. width: 400px;
  68. border-collapse: collapse;
  69. margin: auto;
  70. background: #fff;
  71. }
  72. #mapWrapper {
  73. width: calc(100% - 338px);
  74. height: calc(75% - 10px);
  75. /* border-right: 1px solid #bbb;
  76. border-top: 1px solid #bbb;
  77. border-left: 1px solid #bbb; */
  78. border: 1px solid #bbb;
  79. margin: 5px 0 0 332px;
  80. }
  81. .detailMap {
  82. width: auto;
  83. height: 450px;
  84. }
  85. .map {
  86. /* height: calc(75% - 10px);
  87. border: 1px solid #bbb;
  88. margin: 5px; */
  89. width: auto;
  90. height: 100%;
  91. }
  92. .map2 {
  93. margin: 5px 5px 0 0;
  94. width: calc(60% - 310px);
  95. /* height: 70%; */
  96. height: calc(75% - 10px);
  97. /* float: left; */
  98. border: 1px solid gray;
  99. z-index: 10
  100. }
  101. #rvWrapper {
  102. position: absolute;
  103. top: 0px;
  104. right: 0px;
  105. width: 40%;
  106. /*height: 70%;*/
  107. height: calc(75% - 10px);
  108. float: left;
  109. display: none;
  110. border: 1px solid #bbb;
  111. margin-right: 5px
  112. }
  113. .roadview {
  114. width: 100%;
  115. height: 100%;
  116. }
  117. .popMap {
  118. position: absolute;
  119. width: 908px;
  120. height: 250px;
  121. border: 1px solid #bbb;
  122. margin: 5px;
  123. z-index: 1;
  124. }
  125. .cvibMap {
  126. position: relative;
  127. width: 908px;
  128. /* width: 908px; */
  129. /*height: 300px;*/
  130. height: 450px;
  131. border: 1px solid #bbb;
  132. margin: 5px;
  133. z-index: 1;
  134. }
  135. .cvibMapAndInfo {
  136. position: relative;
  137. width: 100%;
  138. /* width: 908px; */
  139. /*height: 300px;*/
  140. height: 450px;
  141. margin: 0 0 0 5px;
  142. z-index: 1;
  143. }
  144. .crossLoadMap {
  145. width: 40%;
  146. height: 450px;
  147. border: 1px solid #bbb;
  148. z-index: 1;
  149. float: left;
  150. }
  151. .crossLoadInfo {
  152. width: 58.9%;
  153. height: 450px;
  154. border: 1px solid #bbb;
  155. z-index: 1;
  156. float: left;
  157. }
  158. .mapCover {
  159. position: absolute;
  160. width: 100%;
  161. height: 250px;
  162. margin: 5px;
  163. z-index: 100;
  164. }
  165. /*인풋박스 ie8 추가 핵*/
  166. /*#obeKeyword {
  167. border: 3px solid #b0b0b0;
  168. width: 140px;
  169. height: 29px;
  170. margin-left: -30px;
  171. width: 140px \0/IE8+9;
  172. height: 29px \0/IE8+9;
  173. padding-top: 2px \0/IE8+9;
  174. font-size: 14px;
  175. font-weight: bold;
  176. }
  177. #input1 {
  178. color: #333;
  179. background:#f5f5f5 url("/imgase/icon_select_20110225.gif")right: 8px no-repeat;
  180. text-decoration: none;
  181. height: 29px;
  182. width: 150px;
  183. text-align: center;
  184. border: 1px solid #bobobo;
  185. width: 150px \0/IE8+9;
  186. height: 29px \0/IE8+9;
  187. padding-top: -10px \0/IE8+9;
  188. font-size: 14px;
  189. font-weight: bold;
  190. padding-bottom: 3px \0/IE8+9;
  191. ;
  192. }
  193. #input2 {
  194. color: #333;
  195. text-decoration: none;
  196. height: 29px;
  197. width: 150px;
  198. text-align: center;
  199. background:#f5f5f5 url("/imgase/icon_select_20110225.gif")right: 8px no-repeat;
  200. border: 1px solid #bobobo;
  201. width: 150px \0/IE8+9;
  202. height: 29px \0/IE8+9;
  203. padding-top: -10px \0/IE8+9;
  204. padding-bottom: 3px \0/IE8+9;
  205. font-size: 14px;
  206. font-weight: bold;
  207. ;
  208. }
  209. #input3 {
  210. color: #333;
  211. text-decoration: none;
  212. height: 29px;
  213. width: 150px;
  214. text-align: center;
  215. background:#f5f5f5 url("/imgase/icon_select_20110225.gif")right: 8px no-repeat;
  216. border: 1px solid #bobobo;
  217. width: 150px \0/IE8+9;
  218. height: 29px \0/IE8+9;
  219. padding-bottom: 3px \0/IE8+9;
  220. padding-top: -10px \0/IE8+9;
  221. font-size: 14px;
  222. font-weight: bold;
  223. ;
  224. }*/
  225. /* float 해제 */
  226. .f-clear:after {
  227. content: ".";
  228. display: block;
  229. clear: both;
  230. height: 0;
  231. visibility: hidden;
  232. }
  233. .f-clear {
  234. display: inline-block;
  235. height: 1%;
  236. display: block;
  237. }
  238. /*인풋박스 ie8 추가 핵*/
  239. .sang {
  240. width: 100%;
  241. height: 100%;
  242. overflow: hidden;
  243. }
  244. .header {
  245. overflow: hidden;
  246. height: 80px;
  247. background: #2f2f2f;
  248. }
  249. .header > h1 {
  250. overflow: hidden;
  251. float: left;
  252. margin: 0 42px 0 12px;
  253. }
  254. .header > .i_p00 {
  255. float: left;
  256. display: block;
  257. }
  258. .header > .i_p00 > li {
  259. float: left;
  260. }
  261. .header > .i_p01 {
  262. float: right;
  263. margin-right: 15px;
  264. margin-top: 25px;
  265. }
  266. .header > .i_p01 > li {
  267. float: left;
  268. margin-right: 7px;
  269. }
  270. /* .hline{background:#0090fa; height:3px; width:100%; cursor:pointer;} */
  271. .hline {
  272. background: #ccccFF;
  273. height: 2px;
  274. width: 100%;
  275. cursor: pointer;
  276. }
  277. .obd {
  278. float: left;
  279. width: 310px;
  280. }
  281. .obd2 {
  282. float: left;
  283. width: 100px;
  284. height: 29px;
  285. border: 1px solid #2f2f2f;
  286. }
  287. /* #2f2f2f */
  288. .obd3 {
  289. float: left;
  290. width: 20px;
  291. height: 29px;
  292. border: 1px solid #2f2f2f;
  293. }
  294. .obd > li {
  295. float: left;
  296. margin-right: 9px;
  297. }
  298. .container {
  299. position: relative;
  300. width: 100%;
  301. height: calc(100% - 66px);
  302. display: block;
  303. }
  304. .foot {
  305. width: 100%;
  306. position: fixed;
  307. bottom: 0px;
  308. z-index: 1000;
  309. height: 30px;
  310. background: #29292a;
  311. color: #ffffff;
  312. padding: 15px;
  313. }
  314. .foot > ul {
  315. height: 25px;
  316. padding-left: 10px;
  317. width: 100%;
  318. }
  319. .foot > ul > li {
  320. font-weight: bold;
  321. font-size: 20px;
  322. float: left;
  323. }
  324. .foot > ul > li > span {
  325. font-weight: bold;
  326. font-size: 20px;
  327. margin-left: 10px;
  328. }
  329. .foot > ul > li > span > a {
  330. color: #fff;
  331. font-weight: bold;
  332. }
  333. .footbtn {
  334. position: absolute;
  335. left: 45%;
  336. bottom: 0;
  337. cursor: pointer;
  338. z-index: 1000;
  339. top: -25px;
  340. }
  341. .footbtn2 {
  342. position: absolute;
  343. left: 45%;
  344. bottom: 0;
  345. cursor: pointer;
  346. z-index: 1000;
  347. }
  348. .mapToggle {
  349. z-index: 100000;
  350. height: 24px;
  351. width: 430px;
  352. position: absolute;
  353. left: 10px;
  354. top: 3px;
  355. }
  356. .roadview2 {
  357. z-index: 20;
  358. height: 24px;
  359. width: 70px;
  360. position: absolute;
  361. left: 20px;
  362. top: 3px;
  363. }
  364. .arrow_ims {
  365. position: absolute;
  366. left: 0;
  367. right: 0;
  368. text-align: center;
  369. width: 410px;
  370. margin-top: 5px;
  371. }
  372. .arrow_sig {
  373. text-align: center;
  374. width: 400px;
  375. position: relative;
  376. /* top:61px; */
  377. overflow: hidden;
  378. }
  379. .pop_box {
  380. border: 2px solid #4b9fbf;
  381. padding: 1px;
  382. background: #ffffff;
  383. width: 410px;
  384. over-flow: hidden;
  385. position: relative;
  386. padding-bottom: 5px;
  387. z-index: 20
  388. }
  389. .pop_box2 {
  390. padding: 1px;
  391. background: #3a4049;
  392. width: 350px;
  393. height: 250px;
  394. over-flow: hidden;
  395. position: relative;
  396. }
  397. /* .sigPop_box {
  398. border: 2px solid #4b9fbf;
  399. padding: 5px;
  400. background: #ffffff;
  401. width: 250px !important;
  402. } */
  403. .sigPop_box {
  404. border: 2px solid #4b9fbf;
  405. padding: 5px;
  406. background: #ffffff;
  407. width: 400px !important;
  408. height: 360px !important;
  409. position: relative;
  410. }
  411. .pop_ims_image {
  412. margin: 3px;
  413. width: 310px;
  414. height: 230px;
  415. }
  416. caption {
  417. display: none;
  418. }
  419. .pop_table {
  420. width: 100% !important
  421. }
  422. .pop_table tr td {
  423. height: 30px;
  424. font-size: 13px !important
  425. }
  426. .pop_table thead tr th {
  427. font-size: 14px;
  428. }
  429. .pop_table tr td span {
  430. font-weight: bold;
  431. text-align: center;
  432. }
  433. .pop_table tr th {
  434. height: 26px;
  435. border-bottom: 2px solid #4b9fbf;
  436. padding: 5px;
  437. text-align: left;
  438. color: #2c2c2c;
  439. font-size: 13px !important
  440. }
  441. .pop_table tbody tr td {
  442. height: 20px;
  443. border-bottom: 2px solid #4b9fbf;
  444. padding: 5px;
  445. text-align: left;
  446. color: #2c2c2c;
  447. font-size: 14px;
  448. }
  449. .pop_table tfoot tr td {
  450. padding: 5px;
  451. color: #2c2c2c;
  452. height: 20px;
  453. text-align: left
  454. }
  455. /* .pop_table tfoot tr td span{margin-left:5px;} */
  456. .pop_table tr th img {
  457. margin-right: 5px;
  458. }
  459. /*동영상 추가 css */
  460. .pop_table2 {
  461. width: 330px;
  462. }
  463. .pop_table2 tr td {
  464. background: #3a4049;
  465. padding-top: 2px;
  466. width: 300px;
  467. height: 240px;
  468. text-align: center;
  469. solid: #d3d3d3;
  470. }
  471. .pop_table2 tr td span {
  472. font-weight: bold;
  473. text-align: center;
  474. padding-left: 5px;
  475. }
  476. .pop_table2 tr th {
  477. height: 16px;
  478. background: #3a4049;
  479. padding-top: 4px;
  480. text-align: left;
  481. color: #ffffff;
  482. padding-left: 10px;
  483. }
  484. .pop_table2 tr th img {
  485. margin-right: 10px;
  486. }
  487. .pop_table2 tr th span {
  488. float: right;
  489. margin-right: -5px;
  490. }
  491. .pop_table2 tfoot tr td {
  492. height: 2px;
  493. background: #3a4049;
  494. }
  495. .tooltip_close {
  496. height: 21px;
  497. position: absolute;
  498. top: -2px;
  499. right: 0px
  500. }
  501. #menu_wrap .option button {
  502. margin-left: 5px;
  503. }
  504. html input[type=button], input[type=email], input[type=password], input[type=reset], input[type=search], input[type=submit], input[type=tel], input[type=text] {
  505. -webkit-appearance: none;
  506. border-radius: 0
  507. }
  508. body, button, input, select, td, textarea, th {
  509. line-height: 1.6;
  510. height: 20px;
  511. }
  512. #menu_wrap {
  513. display: none;
  514. position: absolute;
  515. top: 30px;
  516. left: 10px;
  517. bottom: 0;
  518. width: 260px;
  519. /*border: 1px solid #4b9fbf;*/
  520. margin: 10px 0 30px 10px;
  521. padding: 5px;
  522. z-index: 1000000;
  523. font-size: 12px;
  524. height: 550px;
  525. min-height: 150px;
  526. overflow: auto;
  527. border-radius: 10px;
  528. /*filter: alpha(Opacity:100, Finishopacity: 85, style: 2);*/
  529. border: 0px;
  530. background: rgba(255, 255, 255, 0.7);
  531. }
  532. #menu_wrap .option{
  533. text-align: center;
  534. }
  535. .map_wrap, .map_wrap * {
  536. margin: 0;
  537. padding: 0;
  538. font-family: "Malgun Gothic", dotum, "돋움", sans-serif;
  539. }
  540. #menu_wrap .option p {
  541. margin: 10px 0;
  542. }
  543. #placesList .item {
  544. border-bottom: 1px solid #888;
  545. overflow: hidden;
  546. consor: pointer;
  547. min-height: 65px;
  548. }
  549. #placesList li {
  550. list-style: none;
  551. }
  552. #placesList .item .marker_1 {
  553. background-position: 0 -10px;
  554. }
  555. #placesList .item .markerbg {
  556. float: left;
  557. position: absolute;
  558. width: 36px;
  559. height: 55px;
  560. margin: 10px 0 0 10px;
  561. background: url(http://i1.daumcdn.net/localimg/localimages/07/mapapidoc/marker_number_blue.png) no-repeat;
  562. }
  563. #placesList .item {
  564. position: relative;
  565. border-bottom: 1px solid #888;
  566. overflow: hidden;
  567. cursor: pointer;
  568. min-height: 65px;
  569. }
  570. #placesList .item .info {
  571. padding: 10px 0 10px 25px;
  572. }
  573. #placesList .item h5, #placesList .item .info {
  574. text-overflow: ellipsis;
  575. overflow: hidden;
  576. white-space: nowrap;
  577. }
  578. #placesList .item span {
  579. display: block;
  580. margin-top: 4px;
  581. }
  582. #placesList .info .gray {
  583. color: #8a8a8a;
  584. }
  585. #placesList .info .jibun {
  586. padding-left: 26px;
  587. background: url(http://i1.daumcdn.net/localimg/localimages/07/mapapidoc/places_jibun.png) no-repeat;
  588. }
  589. #placesList .info .tel {
  590. color: #009900;
  591. }
  592. dl, li, menu, ol, ul {
  593. list-style: none;
  594. }
  595. #menu_wrap hr {
  596. display: block;
  597. height: 1px;
  598. border: 0;
  599. border-top: 2px solid #5F5F5F;
  600. margin: 3px 0;
  601. }
  602. .bg_white {
  603. background: #fff;
  604. }
  605. h5 {
  606. font-size: 14px;
  607. font-weight: bold;
  608. }
  609. #placesList .item .marker_2 {
  610. background-position: 0 -46px;
  611. }
  612. #placesList .item .marker_3 {
  613. background-position: 0 -92px;
  614. }
  615. #placesList .item .marker_4 {
  616. background-position: 0 -138px;
  617. }
  618. #placesList .item .marker_5 {
  619. background-position: 0 -185px;
  620. }
  621. #pagination {
  622. margin: 10px auto;
  623. text-align: center;
  624. }
  625. #pagination .on {
  626. font-weight: bold;
  627. cusor: default;
  628. color: #777;
  629. }
  630. #pagination a {
  631. display: inline-block;
  632. margin-right: 10px;
  633. text-decoration: none;
  634. }
  635. .tooltip_close2 {
  636. height: 21px;
  637. position: absolute;
  638. top: 10px;
  639. right: 10px
  640. }
  641. .searchBtn {
  642. border: 1px solid #5f5f5f;
  643. font-size: 12px;
  644. padding: 0 2px;
  645. background: #ccc;
  646. }
  647. .footerSpan {
  648. color: rgb(255, 255, 255);
  649. font-size: 18px;
  650. font-weight: bold;
  651. }
  652. .dot {
  653. overflow: hidden;
  654. float: left;
  655. width: 12px;
  656. height: 12px;
  657. background: url('http://i1.daumcdn.net/localimg/localimages/07/mapapidoc/mini_circle.png');
  658. }
  659. .dotOverlay {
  660. position: relative;
  661. bottom: 10px;
  662. border-radius: 6px;
  663. border: 1px solid #ccc;
  664. border-bottom: 2px solid #ddd;
  665. float: left;
  666. font-size: 12px;
  667. padding: 5px;
  668. background: #fff;
  669. }
  670. .dotOverlay:nth-of-type(n) {
  671. border: 0;
  672. box-shadow: 0px 1px 2px #888;
  673. }
  674. .number {
  675. font-weight: bold;
  676. color: #ee6152;
  677. }
  678. .dotOverlay:after {
  679. content: '';
  680. position: absolute;
  681. margin-left: -6px;
  682. left: 50%;
  683. bottom: -8px;
  684. width: 11px;
  685. height: 8px;
  686. background: url('http://i1.daumcdn.net/localimg/localimages/07/mapapidoc/vertex_white_small.png')
  687. }
  688. .distanceInfo {
  689. position: relative;
  690. top: 5px;
  691. left: 5px;
  692. list-style: none;
  693. margin: 0;
  694. }
  695. .distanceInfo .label {
  696. display: inline-block;
  697. width: 50px;
  698. }
  699. .distanceInfo:after {
  700. content: none;
  701. }
  702. .info {
  703. position: relative;
  704. top: 5px;
  705. left: 5px;
  706. border-radius: 6px;
  707. border: 1px solid #ccc;
  708. border-bottom: 2px solid #ddd;
  709. font-size: 12px;
  710. padding: 5px;
  711. background: #fff;
  712. list-style: none;
  713. margin: 0;
  714. }
  715. .info:nth-of-type(n) {
  716. border: 0;
  717. box-shadow: 0px 1px 2px #888;
  718. }
  719. .info .label {
  720. display: inline-block;
  721. width: 50px;
  722. }
  723. .areaNumber {
  724. font-weight: bold;
  725. color: #00a0e9;
  726. }
  727. .textInfo {
  728. position: relative;
  729. top: 5px;
  730. left: 5px;
  731. border-radius: 6px;
  732. border: 1px solid #ccc;
  733. border-bottom: 2px solid #ddd;
  734. font-weight: bold;
  735. color: #000000;
  736. font-size: 12px;
  737. padding: 5px;
  738. background: #cccccc;
  739. list-style: none;
  740. margin: 0;
  741. }
  742. .textInfo:nth-of-type(n) {
  743. border: 0;
  744. box-shadow: 0px 1px 2px #888;
  745. }
  746. div.stateBox {
  747. visibility: hidden;
  748. z-index: 1000;
  749. position: absolute;
  750. bottom: 65px;
  751. right: 5px;
  752. z-index: 3;
  753. background: url('images/bg_traffic02.png') no-repeat left 0;
  754. width: 281px;
  755. height: 50px;
  756. padding: 5px 9px 0 10px;
  757. overflow: visible;
  758. }
  759. ul.stateInfo {
  760. overflow: hidden;
  761. float: left;
  762. width: 100%;
  763. position: relative;
  764. margin-top: -3px;
  765. }
  766. ul.stateInfo li {
  767. color: #fff;
  768. float: left;
  769. font-size: 11px;
  770. }
  771. ul.stateInfo li.fir {
  772. width: 265px;
  773. }
  774. ul.stateInfo li.re {
  775. padding-right: 10px;
  776. margin-right: 6px;
  777. background: url('images/bg_traffic_lpop02.gif') no-repeat right 0;
  778. }
  779. ul.stateInfo li.re img {
  780. margin-right: 1px;
  781. }
  782. ul.stateInfo li a {
  783. color: #fff;
  784. font-size: 11px;
  785. color: #7884a7;
  786. }
  787. ul.stateLine {
  788. overflow: hidden;
  789. float: left;
  790. width: 100%;
  791. background: url('images/bg_traffic_details.gif') no-repeat left 0;
  792. margin: 5px 0 5px 0;
  793. }
  794. ul.stateLine li {
  795. font-size: 11px;
  796. float: left;
  797. margin-top: 9px;
  798. }
  799. ul.stateLine li a {
  800. font-size: 11px;
  801. margin-right: 57px;
  802. }
  803. ul.stateLine li.m01 a {
  804. color: #66a726;
  805. }
  806. ul.stateLine li.m02 a {
  807. color: #ffba00;
  808. }
  809. ul.stateLine li.m03 a {
  810. color: #d21400;
  811. }
  812. ul.stateLine li.m04 a {
  813. color: #cecece;
  814. margin-right: 0px;
  815. }
  816. ul.stateComment {
  817. clear: both;
  818. }
  819. ul.stateComment li {
  820. color: #667091;
  821. font-size: 11px;
  822. word-spacing: -1px;
  823. letter-spacing: -1px;
  824. background: url('images/ico_sblue.png') no-repeat 0 4px;
  825. padding-left: 8px;
  826. line-height: 16px;
  827. overflow: visible;
  828. }
  829. div.trafficPop {
  830. padding-bottom: 10px;
  831. z-index: 500;
  832. overflow: visible;
  833. position: absolute;
  834. bottom: 32px;
  835. z-index: 3;
  836. }
  837. div.trafficGoods {
  838. right: 220px;
  839. }
  840. div.trafficNormal {
  841. right: 130px;
  842. }
  843. div.trafficBad {
  844. right: 50px;
  845. }
  846. div.trafficPop p {
  847. position: absolute;
  848. bottom: 0;
  849. left: 50%;
  850. margin-left: -8px;
  851. }
  852. .trafficPop {
  853. border: none;
  854. }
  855. .trafficPop ul {
  856. padding: 8px 10px;
  857. border: 1px solid #111114;
  858. }
  859. .trafficPop li {
  860. margin: 0;
  861. padding: 0 0 0 58px;
  862. height: 15px;
  863. white-space: nowrap;
  864. position: relative;
  865. width: 62px;
  866. }
  867. .trafficPop strong {
  868. left: 0;
  869. font-weight: normal;
  870. position: absolute;
  871. color: #000;
  872. float: left;
  873. }
  874. .trafficPop span {
  875. font-weight: normal;
  876. color: #fff;
  877. }
  878. div.trafficGoods ul {
  879. background: #4c9800;
  880. border: 1px solid #111114;
  881. }
  882. div.trafficNormal ul {
  883. background: #fab700;
  884. border: 1px solid #111114;
  885. }
  886. div.trafficBad ul {
  887. background: #c41301;
  888. border: 1px solid #111114;
  889. }
  890. /*
  891. div.popState dl.construction {margin-right:6px; background:#fff;}
  892. div.popState dl.construction {min-width:219px;_width:219px; background:url('images/btn_repair.png') no-repeat 1px 30px;}
  893. div.popState dl.construction dt {position:relative;font-size:12px; font-weight:bold; color:#607cd4; padding-bottom:7px; margin-bottom:7px;border-bottom:1px solid #e5e5e5;}
  894. div.popState dl.construction dd {white-space:nowrap; line-height:12px; color:#505050; font-size:11px; margin-bottom:4px; padding-left:40px;}
  895. div.popState dl.construction dd.nm {font-weight:bold; margin-bottom:5px; padding-top:4px; text-overflow:ellipsis; overflow:hidden;}
  896. div.popState dl.accident {margin-right:6px; background:#fff;}
  897. div.popState dl.accident {min-width:219px;_width:219px; background:url('images/btn_accident.png') no-repeat 1px 30px;}
  898. div.popState dl.accident dt {position:relative;font-size:12px; font-weight:bold; color:#607cd4; padding-bottom:7px; margin-bottom:7px;border-bottom:1px solid #e5e5e5;}
  899. div.popState dl.accident dd {white-space:nowrap; line-height:12px; color:#505050; font-size:11px; margin-bottom:4px; padding-left:40px;}
  900. div.popState dl.accident dd.nm {font-weight:bold; margin-bottom:5px; padding-top:4px; text-overflow:ellipsis; overflow:hidden;}
  901. div.popState dl.event {margin-right:6px; background:#fff;}
  902. div.popState dl.event {min-width:219px;_width:219px; background:url('images/btn_event.png') no-repeat 1px 30px;}
  903. div.popState dl.event dt {position:relative;font-size:12px; font-weight:bold; color:#607cd4; padding-bottom:7px; margin-bottom:7px;border-bottom:1px solid #e5e5e5;}
  904. div.popState dl.event dd {white-space:nowrap; line-height:12px; color:#505050; font-size:11px; margin-bottom:4px; padding-left:40px;}
  905. div.popState dl.event dd.nm {font-weight:bold; margin-bottom:5px; padding-top:4px; text-overflow:ellipsis; overflow:hidden;}
  906. div.popState dl.trouble {margin-right:6px; background:#fff;}
  907. div.popState dl.trouble {min-width:219px;_width:219px; background:url('images/btn_trouble.png') no-repeat 1px 30px;}
  908. div.popState dl.trouble dt {position:relative;font-size:12px; font-weight:bold; color:#607cd4; padding-bottom:7px; margin-bottom:7px;border-bottom:1px solid #e5e5e5;}
  909. div.popState dl.trouble dd {white-space:nowrap; line-height:12px; color:#505050; font-size:11px; margin-bottom:4px; padding-left:40px;}
  910. div.popState dl.trouble dd.nm {font-weight:bold; margin-bottom:5px; padding-top:4px; text-overflow:ellipsis; overflow:hidden;}
  911. div.popState dl.alert {margin-right:6px; background:#fff;}
  912. div.popState dl.alert {min-width:219px;_width:219px; background:url('images/btn_alert.gif') no-repeat 1px 30px;}
  913. div.popState dl.alert dt {position:relative;font-size:12px; font-weight:bold; color:#607cd4; padding-bottom:7px; margin-bottom:7px;border-bottom:1px solid #e5e5e5;}
  914. div.popState dl.alert dd {white-space:nowrap; line-height:12px; color:#505050; font-size:11px; margin-bottom:4px; padding-left:40px;}
  915. div.popState dl.alert dd.nm {font-weight:bold; margin-bottom:5px; padding-top:4px; text-overflow:ellipsis; overflow:hidden;}
  916. div.popState dl.death {margin-right:6px; background:#fff;}
  917. div.popState dl.death {min-width:219px;_width:219px; background:url('images/btn_deathaccident.png') no-repeat 1px 30px;}
  918. div.popState dl.death dt {position:relative;font-size:12px; font-weight:bold; color:#607cd4; padding-bottom:7px; margin-bottom:7px;border-bottom:1px solid #e5e5e5;}
  919. div.popState dl.death dd {white-space:nowrap; line-height:12px; color:#505050; font-size:11px; margin-bottom:4px; padding-left:40px;}
  920. div.popState dl.death dd.nm {font-weight:bold; margin-bottom:5px; padding-top:4px;}
  921. div.popState dl.death dd strong.rred {color:#bc1200; text-align:right;}
  922. div.popState dl.death dd strong.lblue {color:#607cd4;}
  923. div.popState dl.death dd strong.rblue {color:#607cd4; text-align:right;}
  924. div.popState dl.jaywork {margin-right:6px; background:#fff;}
  925. div.popState dl.jaywork {min-width:219px;_width:219px; background:url('images/btn_jayworking.png') no-repeat 1px 30px;}
  926. div.popState dl.jaywork dt {position:relative;font-size:12px; font-weight:bold; color:#607cd4; padding-bottom:7px; margin-bottom:7px;border-bottom:1px solid #e5e5e5;}
  927. div.popState dl.jaywork dd {white-space:nowrap; line-height:12px; color:#505050; font-size:11px; margin-bottom:4px; padding-left:40px;}
  928. div.popState dl.jaywork dd.nm {font-weight:bold; margin-bottom:5px; padding-top:4px;}
  929. div.popState dl.jaywork dd strong.rred {color:#bc1200; text-align:right;}
  930. div.popState dl.jaywork dd strong.lblue {color:#607cd4;}
  931. div.popState dl.jaywork dd strong.rblue {color:#607cd4; text-align:right;}
  932. */
  933. .headMenu {
  934. width: 100%;
  935. height: 61px;
  936. background-color: #fff;
  937. /*border: 1px solid #bbb;*/
  938. }
  939. .headMenu h1 {
  940. float: left;
  941. width: 329px
  942. }
  943. .headMenu ul li {
  944. float: left
  945. }
  946. .headMenu span {
  947. position: absolute;
  948. right: 20px;
  949. line-height: 61px
  950. }
  951. .bumImage {
  952. position: absolute;
  953. bottom: 10px;
  954. right: 10px;
  955. background-color: #ffffff;
  956. border: 1px solid #bbbbbb;
  957. z-index: 20;
  958. overflow: hidden
  959. }
  960. .iframeTreeList {
  961. float: left;
  962. width: 325px;
  963. height: 100%;
  964. margin-left: 5px;
  965. overflow: hidden;
  966. border: 0;
  967. z-index: 50
  968. }
  969. .iframeBottomList {
  970. margin-left: 2px;
  971. width: calc(100% - 337px);
  972. height: calc(100% - 75%);
  973. overflow: hidden;
  974. border: 0;
  975. border-bottom: 1px solid #bbb;
  976. border-left: 1px solid #bbb;
  977. z-index: 50
  978. }
  979. .leftMenu {
  980. height: calc(100% - 10px);
  981. background-color: #fff;
  982. border: 1px solid #bbb
  983. }
  984. .leftMenu h1 {
  985. padding: 10px;
  986. border-bottom: 1px solid #d8d8d8
  987. }
  988. .leftMenu .tabs {
  989. height: 30px;
  990. border-bottom: 2px solid #1e65c5;
  991. }
  992. .leftMenu .tabs li {
  993. float: left;
  994. }
  995. /* 트리리스트 */
  996. /* .leftMenu .iframeTreeList{width:95%;height:calc(100% - 45px);overflow:auto;padding:5px} */
  997. .leftMenu .searchBox {
  998. width: 100%;
  999. height: 40px;
  1000. border-bottom: 1px solid #dddddd;
  1001. display: flex;
  1002. gap: 5px;
  1003. justify-content: center;
  1004. align-items: center;
  1005. }
  1006. .leftMenu .searchBox .search-button {
  1007. padding: 6px;
  1008. border: 1px solid #eeeeee;
  1009. background-color: #1e65c5;
  1010. color: white;
  1011. width: 50px;
  1012. display: flex;
  1013. align-items: center;
  1014. justify-content: center;
  1015. border-radius: 5px;
  1016. font-weight: bold;
  1017. cursor: pointer;
  1018. }
  1019. .leftMenu .searchBox .search-button:hover{
  1020. filter: brightness(1.1);
  1021. }
  1022. .leftMenu .searchBox input {
  1023. width: 210px;
  1024. padding: 5px;
  1025. }
  1026. .leftMenu #intTree {
  1027. height: calc(100% - 82px);
  1028. overflow: auto;
  1029. padding: 5px
  1030. }
  1031. .leftMenu #groupTree {
  1032. display: none;
  1033. height: calc(100% - 45px);
  1034. overflow: auto;
  1035. padding: 5px
  1036. }
  1037. .leftMenu .intSearchMenu {
  1038. height: 70px;
  1039. padding: 10px 0 0 20px;
  1040. border-bottom: 1px solid #bbb
  1041. }
  1042. .leftMenu .intSearchMenu label {
  1043. font-weight: bold;
  1044. color: #2d2d2d;
  1045. display: inline-block;
  1046. width: 55px;
  1047. padding-left: 15px;
  1048. background: url(images/bul_blue.gif) no-repeat 0 center;
  1049. }
  1050. .leftMenu .intSearchMenu #sidoSearch {
  1051. width: 105px;
  1052. height: 25px
  1053. }
  1054. .leftMenu .intSearchMenu .intSearchDiv {
  1055. font-size: 100%;
  1056. font-family: inherit;
  1057. vertical-align: baseline;
  1058. padding-top: 10px
  1059. }
  1060. .leftMenu .intSearchMenu .intSearchBox {
  1061. width: 100px;
  1062. height: 21px
  1063. }
  1064. .leftMenu .intSearchMenu .intSearchBtn {
  1065. color: #fff;
  1066. /*border-color: #1a55a1 #114e8f #074577 #104d8d;*/
  1067. /*background-color: #1e65c4;*/
  1068. background: -webkit-gradient(linear, left top, left bottom, from(#1e65c4), to(#1e5bad));
  1069. padding: 5px 20px 3px 14px;
  1070. border: 1px solid #cecdcd;
  1071. display: inline-block;
  1072. cursor: pointer;
  1073. font-weight: bold;
  1074. border-radius: 2px !important;
  1075. vertical-align: middle;
  1076. font-size: 11px;
  1077. line-height: normal;
  1078. }
  1079. .leftMenu .intSearchMenu .intGroupSearchDiv {
  1080. font-size: 100%;
  1081. font-family: inherit;
  1082. vertical-align: baseline;
  1083. padding-top: 10px
  1084. }
  1085. .leftMenu .intSearchMenu .intGroupSearchDiv .intGroupSearchBox {
  1086. width: 105px;
  1087. height: 25px
  1088. }
  1089. .leftMenu .intList {
  1090. height: 82%
  1091. }
  1092. .leftMenu .intList .intListMenu {
  1093. border-top: 2px solid #444;
  1094. border-bottom: 1px solid #bababa;
  1095. font-weight: bold;
  1096. color: #2d2d2d;
  1097. height: 30px;
  1098. vertical-align: middle;
  1099. padding: 10px 10px 0px 10px;
  1100. background: #fafafa;
  1101. }
  1102. .leftMenu .intList .intListMenu .intListMenu1 {
  1103. display: inline-block;
  1104. width: 130px
  1105. }
  1106. .leftMenu .intList .intListMenu .intListMenu2 {
  1107. display: inline-block;
  1108. width: 70px
  1109. }
  1110. .leftMenu .intList .intListMenu .intListMenu3 {
  1111. display: inline-block;
  1112. width: 70px
  1113. }
  1114. .leftMenu .intList .intListCon {
  1115. padding: 10px;
  1116. height: 100%;
  1117. overflow-y: auto
  1118. }
  1119. .leftMenu .intList .result_title {
  1120. border-bottom: 1px solid #BBBBBB;
  1121. padding: 15px 10px;
  1122. }
  1123. .leftMenu .intList .result_title .regionTitle {
  1124. background: url(/images/bul_arrow.gif) no-repeat scroll 0 center rgba(0, 0, 0, 0);
  1125. padding-left: 10px;
  1126. float: right
  1127. }
  1128. .leftMenu .intList .result_title .clear {
  1129. clear: both;
  1130. font-size: 0;
  1131. height: 0
  1132. }
  1133. .leftMenu .intList .intListCon .intListUl li:first-child {
  1134. padding-top: 0
  1135. }
  1136. .leftMenu .intList .intListCon .intListUl li {
  1137. line-height: 140%;
  1138. border-bottom: 1px solid #bababa;
  1139. padding: 10px 0;
  1140. cursor: pointer;
  1141. display: block
  1142. }
  1143. .leftMenu .intList .intListCon .intListUl li:hover {
  1144. color: #1e5bae;
  1145. }
  1146. .sigInfoBox {
  1147. z-index: 1000;
  1148. position: absolute;
  1149. bottom: 5px;
  1150. right: 5px;
  1151. overflow: hidden;
  1152. }
  1153. .wideMap {
  1154. position: absolute;
  1155. top: 40%;
  1156. cursor: pointer;
  1157. z-index: 10
  1158. }
  1159. .upDownMap {
  1160. position: absolute;
  1161. left: 45%;
  1162. bottom: 0px;
  1163. cursor: pointer;
  1164. z-index: 10
  1165. }
  1166. .bottomMenu {
  1167. height: 99%;
  1168. overflow: hidden;
  1169. margin: 0
  1170. }
  1171. .bottomMenu .networkType a:nth-child(2) {
  1172. position: relative;
  1173. left: -4px
  1174. }
  1175. .bottomMenu .bottomHead {
  1176. overflow-y: scroll;
  1177. scrollbar-arrow-color: #f0f0f0;
  1178. scrollbar-track-color: #f0f0f0;
  1179. scrollbar-face-color: #f0f0f0;
  1180. scrollbar-shadow-color: #f0f0f0
  1181. }
  1182. .bottomMenu .bottomHead::-webkit-scrollbar {
  1183. background-color: #f0f0f0
  1184. }
  1185. .bottomMenu .bottomHead table {
  1186. width: 100%;
  1187. }
  1188. .bottomMenu .bottomHead table thead {
  1189. background-color: #dfe8ef
  1190. }
  1191. .bottomMenu .bottomHead table th {
  1192. height: 20px;
  1193. padding: 5px;
  1194. text-align: center;
  1195. font-weight: bold;
  1196. color: #2d2d2d;
  1197. background: url(/images/table_bg.png) repeat-x;
  1198. line-height: 20px;
  1199. border-top: 1px solid #bababa;
  1200. border-bottom: 1px solid #bababa;
  1201. border-right: 1px solid #bababa
  1202. }
  1203. .bottomMenu .bottomBody {
  1204. max-height: calc(100% - 40px);
  1205. overflow-y: scroll
  1206. }
  1207. .bottomMenu .bottomBody table {
  1208. width: 100%;
  1209. }
  1210. .bottomMenu .bottomBody table tbody {
  1211. background-color: #fff
  1212. }
  1213. .bottomMenu .bottomBody table td {
  1214. padding: 5px;
  1215. text-align: center;
  1216. color: #515151;
  1217. border-bottom: 1px solid #bababa;
  1218. border-right: 1px solid #bababa;
  1219. }
  1220. .bottomMenu .bottomBody table a {
  1221. /*display: inline-block;*/
  1222. width: 100%;
  1223. height: 100%
  1224. }
  1225. .leftPopMenu {
  1226. display: none;
  1227. position: absolute;
  1228. width: 225px;
  1229. height: 802px;
  1230. float: left;
  1231. background-color: #fff;
  1232. margin: 5px
  1233. }
  1234. .leftPopMenu .intResrvPlan {
  1235. height: 300px;
  1236. border: 1px solid #bbb
  1237. }
  1238. .leftPopMenu .intResrvPlan p, .leftPopMenu .holydayPlan p, .bottomPopMenu P {
  1239. font-weight: bold;
  1240. color: #2d2d2d;
  1241. display: inline-block;
  1242. width: 110px;
  1243. padding-left: 15px;
  1244. margin: 10px;
  1245. background: url(/images/bul_table.gif) no-repeat 5px
  1246. }
  1247. .leftPopMenu .intResrvPlan .intResrvPlanCon {
  1248. width: auto;
  1249. height: 257px;
  1250. margin-left: 2px;
  1251. overflow: hidden
  1252. }
  1253. .leftPopMenu .intResrvPlan .intResrvPlanCon .intResrvPlanHead {
  1254. overflow-y: scroll;
  1255. scrollbar-arrow-color: #f0f0f0;
  1256. scrollbar-track-color: #f0f0f0;
  1257. scrollbar-face-color: #f0f0f0;
  1258. scrollbar-shadow-color: #f0f0f0
  1259. }
  1260. .leftPopMenu .intResrvPlan .intResrvPlanCon .intResrvPlanHead::-webkit-scrollbar {
  1261. background-color: #f0f0f0
  1262. }
  1263. .leftPopMenu .intResrvPlan .intResrvPlanCon .intResrvPlanBody {
  1264. max-height: 215px;
  1265. overflow-y: scroll
  1266. }
  1267. .leftPopMenu .intResrvPlan table, .holydayPlan table {
  1268. width: 100%;
  1269. border-collapse: collapse;
  1270. }
  1271. .leftPopMenu .intResrvPlan table thead, .holydayPlan table thead {
  1272. background-color: #f4f4f4
  1273. }
  1274. .leftPopMenu .intResrvPlan table th, .holydayPlan table th {
  1275. font-weight: bold;
  1276. color: #2d2d2d
  1277. }
  1278. .leftPopMenu .intResrvPlan table td, .holydayPlan table td {
  1279. padding: 3px
  1280. }
  1281. .leftPopMenu .holydayPlan table th {
  1282. padding: 6px
  1283. }
  1284. .leftPopMenu .intResrvPlan table th, .intResrvPlan table td, .holydayPlan table th, .holydayPlan table td {
  1285. text-align: center;
  1286. border: 1px solid #bababa
  1287. }
  1288. .intResrvPlan table tr:nth-child(1) td {
  1289. text-align: center;
  1290. border-top: 0
  1291. }
  1292. .holydayPlan table tr:nth-child(1) td {
  1293. text-align: center;
  1294. border-top: 0
  1295. }
  1296. .leftPopMenu .holydayPlan {
  1297. height: 488px;
  1298. margin-top: 5px;
  1299. border: 1px solid #bbb
  1300. }
  1301. .leftPopMenu .holydayPlan .holydayPlanCon {
  1302. width: auto;
  1303. height: 446px;
  1304. margin-left: 2px;
  1305. overflow: hidden
  1306. }
  1307. .leftPopMenu .holydayPlan .holydayPlanCon .holydayPlanHead {
  1308. overflow-y: scroll;
  1309. scrollbar-arrow-color: #f0f0f0;
  1310. scrollbar-track-color: #f0f0f0;
  1311. scrollbar-face-color: #f0f0f0;
  1312. scrollbar-shadow-color: #f0f0f0
  1313. }
  1314. .leftPopMenu .holydayPlan .holydayPlanCon .holydayPlanHead::-webkit-scrollbar {
  1315. background-color: #f0f0f0
  1316. }
  1317. .leftPopMenu .holydayPlan .holydayPlanCon .holydayPlanBody {
  1318. max-height: 410px;
  1319. overflow-y: scroll
  1320. }
  1321. .bottomPopMenu {
  1322. position: absolute;
  1323. top: 295px;
  1324. height: 538px;
  1325. border: 1px solid #bbb;
  1326. margin-left: 5px;
  1327. margin-top: 2px;
  1328. width: 908px
  1329. }
  1330. .bottomPopMenu .dayPlan {
  1331. display: none;
  1332. height: 380px
  1333. }
  1334. .bottomPopMenu .dayPlan form {
  1335. display: inline-block
  1336. }
  1337. .bottomPopMenu .dayPlan form input[type="button"] {
  1338. background: #96a2b2 !important;
  1339. color: #fff;
  1340. font-weight: bold;
  1341. width: 100px;
  1342. text-align: center;
  1343. padding: 0px;
  1344. height: 25px;
  1345. line-height: 25px;
  1346. cursor: pointer
  1347. }
  1348. .bottomPopMenu .dayPlan span {
  1349. padding-left: 400px
  1350. }
  1351. .bottomPopMenu .dayPlan span label {
  1352. font-weight: 600
  1353. }
  1354. .bottomPopMenu .dayPlan span select {
  1355. width: 40px
  1356. }
  1357. .bottomPopMenu .dayPlanCon {
  1358. width: auto;
  1359. height: 89%;
  1360. overflow: hidden;
  1361. margin: 0 2px;
  1362. border-bottom: 1px solid #bababa
  1363. }
  1364. .bottomPopMenu .dayPlanCon .dayPlanHead {
  1365. overflow-y: scroll;
  1366. scrollbar-arrow-color: #f0f0f0;
  1367. scrollbar-track-color: #f0f0f0;
  1368. scrollbar-face-color: #f0f0f0;
  1369. scrollbar-shadow-color: #f0f0f0
  1370. }
  1371. .bottomPopMenu .dayPlanCon .dayPlanHead::-webkit-scrollbar {
  1372. background-color: #f0f0f0
  1373. }
  1374. .bottomPopMenu .dayPlanCon .dayPlanBody {
  1375. max-height: 255px;
  1376. overflow-y: scroll
  1377. }
  1378. .bottomPopMenu .dayPlanCon table {
  1379. table-layout: fixed
  1380. }
  1381. .bottomPopMenu .dayPlanCon table th, .bottomPopMenu .weekPlanCon table th {
  1382. padding: 6px;
  1383. text-align: center;
  1384. border: 1px solid #bababa
  1385. }
  1386. .bottomPopMenu .weekPlanCon table td {
  1387. padding: 6px;
  1388. text-align: center;
  1389. border-left: 1px solid #bababa;
  1390. border-top: 1px solid #bababa
  1391. }
  1392. .bottomPopMenu .dayPlanCon table td {
  1393. padding: 5px 0;
  1394. text-align: center;
  1395. border: 1px solid #bababa
  1396. }
  1397. .bottomPopMenu .dayPlanCon table tr:nth-child(1) td {
  1398. border-top: 0
  1399. }
  1400. .bottomPopMenu .dayPlanCon table, .bottomPopMenu .weekPlanCon table {
  1401. width: 100%;
  1402. border-collapse: collapse;
  1403. }
  1404. .bottomPopMenu .dayPlanCon table thead, .bottomPopMenu .weekPlanCon table thead {
  1405. width: 100%;
  1406. background-color: #f4f4f4
  1407. }
  1408. .bottomPopMenu .dayPlanCon table th, .bottomPopMenu .weekPlanCon table th {
  1409. font-weight: bold;
  1410. color: #2d2d2d;
  1411. }
  1412. .bottomPopMenu .dayPlanCon table td, .bottomPopMenu .weekPlanCon table td {
  1413. color: #515151
  1414. }
  1415. .bottomPopMenu .weekPlan {
  1416. display: none;
  1417. height: 110px
  1418. }
  1419. .bottomPopMenu .weekPlanCon {
  1420. width: auto;
  1421. overflow-y: auto;
  1422. margin: 2px 2px
  1423. }
  1424. /* 페이즈정보 팡벙 */
  1425. .phaseInfoTop {
  1426. width: 910px;
  1427. margin: 5px 5px 0 5px
  1428. }
  1429. .phaseInfoTop .tabs {
  1430. height: 30px
  1431. }
  1432. .phaseInfoTop .tabs li {
  1433. float: left;
  1434. }
  1435. .phaseInfoTop .tabs li:nth-child(1) {
  1436. border-top: 1px solid #bbbbbb;
  1437. border-left: 1px solid #bbbbbb
  1438. }
  1439. .phaseInfoTop .tabs li:nth-child(2) {
  1440. border-top: 1px solid #bbbbbb
  1441. }
  1442. .phaseInfoTop .tabs li:nth-child(3) {
  1443. border-top: 1px solid #bbbbbb
  1444. }
  1445. .phaseInfoTop .tabs li:nth-child(4) {
  1446. border-top: 1px solid #bbbbbb
  1447. }
  1448. .phaseInfoTop .tabs .regionIntNm {
  1449. line-height: 30px;
  1450. width: 280px;
  1451. text-align: center;
  1452. padding-left: 55px;
  1453. font-size: 15px
  1454. }
  1455. .phaseInfoTop .tabs .simulation {
  1456. width: 140px;
  1457. font-size: 15px;
  1458. line-height: 30px;
  1459. color: red;
  1460. text-align: center;
  1461. padding-left: 50px
  1462. }
  1463. .phaseInfoTop .tabs > li:hover .subMenu {
  1464. display: block
  1465. }
  1466. .phaseInfoTop .tabs > li .subMenu {
  1467. display: none;
  1468. position: absolute;
  1469. top: 427px;
  1470. left: 5px;
  1471. width: 120px;
  1472. background-color: #122f64;
  1473. z-index: 10
  1474. }
  1475. .phaseInfoTop .tabs > li .subMenu li {
  1476. width: 121px;
  1477. margin-right: 40px;
  1478. font-size: 13px;
  1479. line-height: 34px;
  1480. text-align: center;
  1481. }
  1482. .phaseInfoTop .tabs > li .subMenu li:nth-child(1) {
  1483. border-bottom: 1px solid #bababa
  1484. }
  1485. .phaseInfoTop .tabs > li .subMenu li a {
  1486. display: inline-block;
  1487. color: #adbedf;
  1488. }
  1489. .bottomPopMenu .bottomRight {
  1490. width: auto;
  1491. height: 133px;
  1492. padding: 5px
  1493. }
  1494. .bottomPopMenu .bottomRight table {
  1495. width: 100%
  1496. }
  1497. .bottomPopMenu .bottomRight table thead {
  1498. width: 880px;
  1499. background-color: #f4f4f4
  1500. }
  1501. .bottomPopMenu .bottomRight table tbody {
  1502. padding-top: 10px
  1503. }
  1504. .bottomPopMenu .bottomRight table th, .bottomPopMenu .bottomRight table td {
  1505. padding: 5px;
  1506. text-align: center;
  1507. border: 1px solid #bababa
  1508. }
  1509. .bottomPopMenu .bottomRight table th {
  1510. font-weight: bold;
  1511. color: #2d2d2d;
  1512. }
  1513. .bottomPopMenu .bottomRight table td {
  1514. color: #515151
  1515. }
  1516. .bottomPopMenu .phaseInfo {
  1517. width: auto;
  1518. height: 386px;
  1519. padding: 5px
  1520. }
  1521. .bottomPopMenu .phaseInfo .pMapNo select {
  1522. width: 40px
  1523. }
  1524. .bottomPopMenu .phaseInfoCon, .linkInfoCon {
  1525. width: auto;
  1526. height: 303px
  1527. }
  1528. .bottomPopMenu .phaseInfoCon table, .linkInfoCon table {
  1529. width: 100%;
  1530. border-collapse: collapse;
  1531. }
  1532. .bottomPopMenu .phaseInfoCon table thead, .linkInfoCon table thead {
  1533. width: 100%;
  1534. background-color: #f4f4f4
  1535. }
  1536. .bottomPopMenu .phaseInfoCon table th, .bottomPopMenu .phaseInfoCon table td {
  1537. padding: 6px;
  1538. text-align: center;
  1539. border: 1px solid #bababa;
  1540. width: 9.1%
  1541. }
  1542. .bottomPopMenu .phaseInfoCon table #updatePhaseInfoList1 td {
  1543. border-bottom: 0
  1544. }
  1545. .bottomPopMenu .phaseInfoCon table th, .linkInfoCon table th {
  1546. font-weight: bold;
  1547. color: #2d2d2d;
  1548. }
  1549. .bottomPopMenu .phaseInfoCon table td {
  1550. color: #515151;
  1551. height: 90px
  1552. }
  1553. .bottomPopMenu .phaseInfoCon table .aProgress td {
  1554. height: auto
  1555. }
  1556. .bottomPopMenu .phaseInfoCon table .bProgress td {
  1557. height: auto
  1558. }
  1559. .bottomPopMenu .phaseInfoCon input {
  1560. width: 50px;
  1561. margin: 0 18px;
  1562. line-height: 15px;
  1563. text-align: center;
  1564. cursor: pointer;
  1565. }
  1566. .signalMapDiv {
  1567. height: 798px;
  1568. margin: 5px;
  1569. border: 1px solid #bbb
  1570. }
  1571. .signalMapDiv .signalMapNo ul li {
  1572. padding: 10px;
  1573. font-family: '맑은고딕'
  1574. }
  1575. .signalMapDiv .signalMapNo ul li:nth-child(1) {
  1576. float: left;
  1577. width: 150px;
  1578. font-weight: 600;
  1579. margin-left: 450px
  1580. }
  1581. .signalMapDiv .signalMapNo ul li:nth-child(2) {
  1582. float: left;
  1583. width: 150px;
  1584. font-weight: 600
  1585. }
  1586. .signalMapDiv .signalMapNo ul li:nth-child(3) {
  1587. margin-left: 793px;
  1588. width: 150px;
  1589. font-weight: 600
  1590. }
  1591. /* .signalMapDiv .signalMapNo ul li:nth-child(3) select{text-align:right;margin:10px 20px;font-weight:600} */
  1592. .signalMapDiv .signalMapCon {
  1593. height: 755px;
  1594. overflow-y: scroll
  1595. }
  1596. .signalMapDiv table {
  1597. width: 99%
  1598. }
  1599. .signalMapDiv table thead td {
  1600. line-height: 30px;
  1601. background-color: #aaaaaa;
  1602. color: #000000;
  1603. font-weight: 600;
  1604. border-top: 2px solid #000000;
  1605. border-bottom: 2px solid #000000
  1606. }
  1607. .signalMapDiv table tbody td:nth-child(1) {
  1608. background-color: #aaaaaa;
  1609. color: #000000;
  1610. font-weight: 600
  1611. }
  1612. .signalMapDiv table tbody tr:nth-child(32), .signalMapDiv table tbody tr:nth-child(64) td {
  1613. border-bottom: 2px solid #000000
  1614. }
  1615. .signalMapDiv table td {
  1616. width: 20px;
  1617. text-align: center;
  1618. border: 1px solid #000000;
  1619. font-family: '맑은고딕'
  1620. }
  1621. /* .signalMapDiv table tr td.eopClass{background-color:#FF5A5A !important;color:#ffffff !important} */
  1622. .signalMapDiv table tr td.eopClass {
  1623. background-color: red;
  1624. color: #ffffff
  1625. }
  1626. .signalMapDiv table tr td.codeG1 {
  1627. background-color: green;
  1628. color: #ffffff
  1629. }
  1630. .signalMapDiv table tr td.codeR1 {
  1631. background-color: red;
  1632. color: #ffffff
  1633. }
  1634. .signalMapDiv table tr td.codeY1 {
  1635. background-color: yellow;
  1636. color: #000000
  1637. }
  1638. /* .linkInfoCon table th, .linkInfoCon table td{padding:6px;text-align:center;border:1px solid #bababa;width:10%}
  1639. .linkInfoCon table td{color:#515151;height:40px}
  1640. .linkInfoCon table tr:first-child td:nth-child(n+3){cursor:pointer}
  1641. .linkInfoCon table tr:first-child td:nth-child(n+3):hover{color:#0076c8}
  1642. .linkInfoCon table tr:nth-child(2) td:nth-child(n+2){cursor:pointer}
  1643. .linkInfoCon table tr:nth-child(2) td:nth-child(n+2):hover{color:#0076c8} */
  1644. .sigCustom {
  1645. position: relative;
  1646. bottom: 20px;
  1647. }
  1648. .sigCustom * {
  1649. display: inline-block;
  1650. vertical-align: top;
  1651. }
  1652. .sigCustom .left {
  1653. background: url("http://t1.daumcdn.net/localimg/localimages/07/2011/map/storeview/tip_l.png") no-repeat;
  1654. display: inline-block;
  1655. height: 24px;
  1656. overflow: hidden;
  1657. vertical-align: top;
  1658. width: 7px;
  1659. }
  1660. .sigCustom .center {
  1661. background: url(http://t1.daumcdn.net/localimg/localimages/07/2011/map/storeview/tip_bg.png) repeat-x;
  1662. display: inline-block;
  1663. height: 24px;
  1664. font-size: 12px;
  1665. line-height: 24px;
  1666. }
  1667. .sigCustom .right {
  1668. background: url("http://t1.daumcdn.net/localimg/localimages/07/2011/map/storeview/tip_r.png") -1px 0 no-repeat;
  1669. display: inline-block;
  1670. height: 24px;
  1671. overflow: hidden;
  1672. width: 6px;
  1673. }
  1674. .sigCustom1 {
  1675. position: relative;
  1676. bottom: 100px;
  1677. }
  1678. .sigCustom1 * {
  1679. display: inline-block;
  1680. vertical-align: top;
  1681. }
  1682. .sigCustom1 .left {
  1683. background: url("http://t1.daumcdn.net/localimg/localimages/07/2011/map/storeview/tip_l.png") no-repeat;
  1684. display: inline-block;
  1685. height: 24px;
  1686. overflow: hidden;
  1687. vertical-align: top;
  1688. width: 7px;
  1689. }
  1690. .sigCustom1 .center {
  1691. background: url(http://t1.daumcdn.net/localimg/localimages/07/2011/map/storeview/tip_bg.png) repeat-x;
  1692. display: inline-block;
  1693. height: 24px;
  1694. font-size: 12px;
  1695. line-height: 24px;
  1696. }
  1697. .sigCustom1 .right {
  1698. background: url("http://t1.daumcdn.net/localimg/localimages/07/2011/map/storeview/tip_r.png") -1px 0 no-repeat;
  1699. display: inline-block;
  1700. height: 24px;
  1701. overflow: hidden;
  1702. width: 6px;
  1703. }
  1704. .sigCustom2 {
  1705. position: relative;
  1706. bottom: 60px;
  1707. }
  1708. .sigCustom2 * {
  1709. display: inline-block;
  1710. vertical-align: top;
  1711. }
  1712. .sigCustom2 .left {
  1713. background: url("http://t1.daumcdn.net/localimg/localimages/07/2011/map/storeview/tip_l.png") no-repeat;
  1714. display: inline-block;
  1715. height: 24px;
  1716. overflow: hidden;
  1717. vertical-align: top;
  1718. width: 7px;
  1719. }
  1720. .sigCustom2 .center {
  1721. background: url(http://t1.daumcdn.net/localimg/localimages/07/2011/map/storeview/tip_bg.png) repeat-x;
  1722. display: inline-block;
  1723. height: 24px;
  1724. font-size: 12px;
  1725. line-height: 24px;
  1726. }
  1727. .sigCustom2 .right {
  1728. background: url("http://t1.daumcdn.net/localimg/localimages/07/2011/map/storeview/tip_r.png") -1px 0 no-repeat;
  1729. display: inline-block;
  1730. height: 24px;
  1731. overflow: hidden;
  1732. width: 6px;
  1733. }
  1734. .sigCustom3 {
  1735. position: relative;
  1736. bottom: 40px;
  1737. }
  1738. .sigCustom3 * {
  1739. display: inline-block;
  1740. vertical-align: top;
  1741. }
  1742. .sigCustom3 .left {
  1743. background: url("http://t1.daumcdn.net/localimg/localimages/07/2011/map/storeview/tip_l.png") no-repeat;
  1744. display: inline-block;
  1745. height: 24px;
  1746. overflow: hidden;
  1747. vertical-align: top;
  1748. width: 7px;
  1749. }
  1750. .sigCustom3 .center {
  1751. background: url(http://t1.daumcdn.net/localimg/localimages/07/2011/map/storeview/tip_bg.png) repeat-x;
  1752. display: inline-block;
  1753. height: 24px;
  1754. font-size: 12px;
  1755. line-height: 24px;
  1756. }
  1757. .sigCustom3 .right {
  1758. background: url("http://t1.daumcdn.net/localimg/localimages/07/2011/map/storeview/tip_r.png") -1px 0 no-repeat;
  1759. display: inline-block;
  1760. height: 24px;
  1761. overflow: hidden;
  1762. width: 6px;
  1763. }
  1764. .sigCustom4 {
  1765. position: relative;
  1766. bottom: 30px;
  1767. }
  1768. .sigCustom4 * {
  1769. display: inline-block;
  1770. vertical-align: top;
  1771. }
  1772. .sigCustom4 .left {
  1773. background: url("http://t1.daumcdn.net/localimg/localimages/07/2011/map/storeview/tip_l.png") no-repeat;
  1774. display: inline-block;
  1775. height: 24px;
  1776. overflow: hidden;
  1777. vertical-align: top;
  1778. width: 7px;
  1779. }
  1780. .sigCustom4 .center {
  1781. background: url(http://t1.daumcdn.net/localimg/localimages/07/2011/map/storeview/tip_bg.png) repeat-x;
  1782. display: inline-block;
  1783. height: 24px;
  1784. font-size: 12px;
  1785. line-height: 24px;
  1786. }
  1787. .sigCustom4 .right {
  1788. background: url("http://t1.daumcdn.net/localimg/localimages/07/2011/map/storeview/tip_r.png") -1px 0 no-repeat;
  1789. display: inline-block;
  1790. height: 24px;
  1791. overflow: hidden;
  1792. width: 6px;
  1793. }
  1794. .sigCustom5 {
  1795. position: relative;
  1796. bottom: 25px;
  1797. }
  1798. .sigCustom5 * {
  1799. display: inline-block;
  1800. vertical-align: top;
  1801. }
  1802. .sigCustom5 .left {
  1803. background: url("http://t1.daumcdn.net/localimg/localimages/07/2011/map/storeview/tip_l.png") no-repeat;
  1804. display: inline-block;
  1805. height: 24px;
  1806. overflow: hidden;
  1807. vertical-align: top;
  1808. width: 7px;
  1809. }
  1810. .sigCustom5 .center {
  1811. background: url(http://t1.daumcdn.net/localimg/localimages/07/2011/map/storeview/tip_bg.png) repeat-x;
  1812. display: inline-block;
  1813. height: 24px;
  1814. font-size: 12px;
  1815. line-height: 24px;
  1816. }
  1817. .sigCustom5 .right {
  1818. background: url("http://t1.daumcdn.net/localimg/localimages/07/2011/map/storeview/tip_r.png") -1px 0 no-repeat;
  1819. display: inline-block;
  1820. height: 24px;
  1821. overflow: hidden;
  1822. width: 6px;
  1823. }
  1824. .pMapNo {
  1825. padding-left: 650px
  1826. }
  1827. #customClose {
  1828. width: 10px;
  1829. padding-left: 10px;
  1830. cursor: pointer
  1831. }
  1832. .footer {
  1833. position: fixed;
  1834. bottom: 0px;
  1835. width: 100%;
  1836. height: 2%;
  1837. border-top: 1px solid #a9a9a9;
  1838. background: #f4f4f4;
  1839. z-index: 10
  1840. }
  1841. /* 신호센터 페이지 */
  1842. .centerContainer {
  1843. width: 908px;
  1844. height: 100%;
  1845. overflow-y: auto
  1846. }
  1847. .centerContainer .listCon, .centerContainer .updateCon, .centerContainer .insertCon {
  1848. margin: 5px;
  1849. border: 1px solid #bbb
  1850. }
  1851. .centerContainer p {
  1852. font-weight: bold;
  1853. color: #2d2d2d;
  1854. display: inline-block;
  1855. width: 110px;
  1856. padding-left: 15px;
  1857. margin: 10px;
  1858. background: url(/images/bul_table.gif) no-repeat 5px;
  1859. }
  1860. .centerContainer .listCon table, .updateCon table, .insertCon table {
  1861. width: 99%;
  1862. border-collapse: collapse;
  1863. border-spacing: 0px;
  1864. margin: 5px
  1865. }
  1866. .centerContainer .listCon table thead, .updateCon table thead, .insertCon table thead {
  1867. background-color: #dfe8ef
  1868. }
  1869. .centerContainer .listCon table thead th, .updateCon table thead th, .insertCon table thead th {
  1870. padding: 5px;
  1871. text-align: center;
  1872. border: 1px solid #bababa;
  1873. font-weight: bold;
  1874. color: #2d2d2d;
  1875. background: url(/images/table_bg.png) repeat-x;
  1876. }
  1877. .centerContainer .listCon table tbody td, .updateCon table tbody td, .insertCon table tbody td {
  1878. padding: 5px;
  1879. text-align: center;
  1880. border: 1px solid #bababa;
  1881. }
  1882. .centerContainer .listCon .insertCenter {
  1883. width: 100%;
  1884. text-align: center;
  1885. margin: 10px auto
  1886. }
  1887. .centerContainer .listCon .insertCenter input {
  1888. width: 200px
  1889. }
  1890. .centerContainer .updateCon {
  1891. display: none
  1892. }
  1893. .centerContainer .updateCon table tbody input, .centerContainer .updateCon table tbody select {
  1894. width: 100%;
  1895. padding-left: 0px !important;
  1896. height: 21px
  1897. }
  1898. .centerContainer .updateCon .updateCenter {
  1899. width: 100%;
  1900. text-align: center;
  1901. margin: 10px auto
  1902. }
  1903. .centerContainer .updateCon .updateCenter input {
  1904. width: 200px
  1905. }
  1906. .centerContainer .updateCon table tbody select {
  1907. height: 21px
  1908. }
  1909. .centerContainer .insertCon {
  1910. display: none
  1911. }
  1912. .centerContainer .insertCon table tbody input, .centerContainer .insertCon table tbody select {
  1913. width: 100%;
  1914. padding-left: 0px !important;
  1915. height: 21px
  1916. }
  1917. .centerContainer .insertCon .insertCenter {
  1918. width: 100%;
  1919. text-align: center;
  1920. margin: 10px auto
  1921. }
  1922. .centerContainer .insertCon .insertCenter input {
  1923. width: 200px
  1924. }
  1925. .centerContainer img {
  1926. cursor: pointer
  1927. }
  1928. /* 이벤트이력관리 페이지 */
  1929. .eventContainer {
  1930. width: 908px;
  1931. height: 100%
  1932. }
  1933. .eventContainer .listCon {
  1934. height: 98.5%;
  1935. margin: 5px;
  1936. border: 1px solid #bbb
  1937. }
  1938. .eventContainer p {
  1939. font-weight: bold;
  1940. color: #2d2d2d;
  1941. display: inline-block;
  1942. width: 110px;
  1943. padding-left: 15px;
  1944. margin: 10px;
  1945. background: url(/images/bul_table.gif) no-repeat 5px;
  1946. }
  1947. .eventContainer .listCon #eventListCnt {
  1948. position: absolute;
  1949. top: 100px;
  1950. right: 40px
  1951. }
  1952. .eventContainer .listCon .eventListTable {
  1953. width: auto;
  1954. height: 720px;
  1955. overflow: hidden
  1956. }
  1957. .eventContainer .listCon .eventListTable .eventListHead {
  1958. overflow-y: scroll;
  1959. scrollbar-arrow-color: #f0f0f0;
  1960. scrollbar-track-color: #f0f0f0;
  1961. scrollbar-face-color: #f0f0f0;
  1962. scrollbar-shadow-color: #f0f0f0
  1963. }
  1964. .eventContainer .listCon .eventListTable .eventListHead::-webkit-scrollbar {
  1965. background-color: #f0f0f0
  1966. }
  1967. .eventContainer .listCon .eventListTable .eventListBody {
  1968. max-height: 680px;
  1969. overflow-y: scroll
  1970. }
  1971. .eventContainer .listCon table {
  1972. width: 99%;
  1973. border-spacing: 0px;
  1974. margin: 0 5px;
  1975. border: 1px solid #bbb
  1976. }
  1977. .eventContainer .listCon table thead {
  1978. background-color: #dfe8ef
  1979. }
  1980. .eventContainer .listCon table thead th {
  1981. padding: 5px;
  1982. text-align: center;
  1983. font-weight: bold;
  1984. color: #2d2d2d;
  1985. background: url(/images/table_bg.png) repeat-x;
  1986. border: 1px solid #bbb
  1987. }
  1988. .eventContainer .listCon table tbody td {
  1989. padding: 5px;
  1990. text-align: center;
  1991. border: 1px solid #bababa;
  1992. }
  1993. .eventContainer .listCon .collctDtime, .eventContainer .listCon .searchType {
  1994. margin: 10px
  1995. }
  1996. .eventContainer .listCon .collctDtime {
  1997. padding-left: 15px
  1998. }
  1999. .eventContainer .listCon .searchType {
  2000. padding-left: 27px
  2001. }
  2002. .eventContainer .listCon input, .eventContainer .listCon select {
  2003. height: 20px
  2004. }
  2005. .eventContainer .listCon .collctDtime input {
  2006. width: 90px !important
  2007. }
  2008. .eventContainer .listCon img {
  2009. cursor: pointer
  2010. }
  2011. /* 이벤트이력관리 팝업 페이지 */
  2012. .eventHist p {
  2013. font-weight: bold;
  2014. color: #2d2d2d;
  2015. display: inline-block;
  2016. width: 110px;
  2017. padding-left: 15px;
  2018. margin: 10px;
  2019. background: url(/images/bul_table.gif) no-repeat 5px;
  2020. }
  2021. .eventHist .eventPopListTable {
  2022. width: auto;
  2023. height: 455px;
  2024. overflow: hidden
  2025. }
  2026. .eventHist .eventPopListTable .eventPopListHead {
  2027. overflow-y: scroll;
  2028. scrollbar-arrow-color: #f0f0f0;
  2029. scrollbar-track-color: #f0f0f0;
  2030. scrollbar-face-color: #f0f0f0;
  2031. scrollbar-shadow-color: #f0f0f0
  2032. }
  2033. .eventHist .eventPopListTable .eventPopListHead::-webkit-scrollbar {
  2034. background-color: #f0f0f0
  2035. }
  2036. .eventHist .eventPopListTable .eventPopListBody {
  2037. max-height: 400px;
  2038. overflow-y: scroll
  2039. }
  2040. .eventHist .eventPopListTable #eventPopListCnt {
  2041. margin-left: 800px
  2042. }
  2043. .eventHist .eventPopListTable table {
  2044. width: 99%;
  2045. border-collapse: collapse;
  2046. border-spacing: 0px
  2047. }
  2048. .eventHist .eventPopListTable table thead {
  2049. background-color: #dfe8ef
  2050. }
  2051. .eventHist .eventPopListTable table thead th {
  2052. padding: 5px;
  2053. text-align: center;
  2054. border: 1px solid #bababa;
  2055. font-weight: bold;
  2056. color: #2d2d2d;
  2057. background: url("/images/table_bg.png") repeat-x;
  2058. }
  2059. .eventHist .eventPopListTable table tbody td {
  2060. padding: 5px;
  2061. text-align: center;
  2062. border: 1px solid #bababa;
  2063. }
  2064. .eventHist .collctDtime, .eventHist .searchType {
  2065. margin: 10px
  2066. }
  2067. .eventHist .collctDtime {
  2068. padding-left: 15px
  2069. }
  2070. .eventHist input, .eventHist select {
  2071. height: 20px
  2072. }
  2073. .eventHist .collctDtime input {
  2074. width: 90px !important
  2075. }
  2076. .eventHist .collctDtime img {
  2077. cursor: pointer
  2078. }
  2079. .loading {
  2080. display: none;
  2081. position: absolute;
  2082. top: 55px;
  2083. left: 300px
  2084. }
  2085. /* 20180517 수정 */
  2086. input[type="number"]::-webkit-outer-spin-button,
  2087. input[type="number"]::-webkit-inner-spin-button {
  2088. opacity: 1;
  2089. }
  2090. .updateSigInfoDiv .updateSigHeader {
  2091. display: inline-block
  2092. }
  2093. .updateSigInfoDiv .updateSigHeader ul li {
  2094. float: left;
  2095. padding: 10px 0 0 10px;
  2096. font-size: 15px;
  2097. }
  2098. .updateSigInfoDiv .updateSigHeader ul li a {
  2099. border: 1px solid #888888;
  2100. padding: 5px
  2101. }
  2102. .updateSigInfoDiv .updateSigSub {
  2103. padding: 10px 0 0 130px
  2104. }
  2105. .updateSigInfoDiv .updatePhase {
  2106. display: none;
  2107. position: relative;
  2108. top: -5px
  2109. }
  2110. .updateSigInfoDiv .updatePhase .updateMapNo {
  2111. display: inline-block;
  2112. margin: 5px;
  2113. position: relative;
  2114. left: 810px
  2115. }
  2116. .updateSigInfoDiv .phaseInfoCon {
  2117. padding: 0 5px
  2118. }
  2119. .updateSigInfoDiv .phaseInfoCon table td span {
  2120. }
  2121. .updateSigInfoDiv .phaseInfoCon table .aStrtLinkId td {
  2122. height: 0 !important
  2123. }
  2124. .updateSigInfoDiv .phaseInfoCon table .aEndLinkId td {
  2125. height: 0 !important
  2126. }
  2127. .updateSigInfoDiv .phaseInfoCon table .bStrtLinkId td {
  2128. height: 0 !important
  2129. }
  2130. .updateSigInfoDiv .phaseInfoCon table .bEndLinkId td {
  2131. height: 0 !important
  2132. }
  2133. .updateSigInfoDiv .phaseInfoCon table .aPUpdate td {
  2134. height: 15px !important
  2135. }
  2136. .updateSigInfoDiv .phaseInfoCon table .bPUpdate td {
  2137. height: 15px !important
  2138. }
  2139. .updateSigInfoDiv .linkInfoCon {
  2140. display: none;
  2141. padding: 0 5px
  2142. }
  2143. .updateSigInfoDiv .updatePhaseDiv {
  2144. display: block;
  2145. height: 105px;
  2146. margin: 10px 5px 0 5px;
  2147. background-color: #ffffff;
  2148. border: 1px solid #bababa;
  2149. z-index: 10
  2150. }
  2151. .updateSigInfoDiv .updatePhaseDiv h4 {
  2152. padding: 10px;
  2153. text-align: left
  2154. }
  2155. .updateSigInfoDiv .updatePhaseDiv ul li {
  2156. padding-left: 5px;
  2157. float: left
  2158. }
  2159. .updateSigInfoDiv .updatePhaseDiv ul li .updateDeg {
  2160. padding-left: 30px
  2161. }
  2162. .updateSigInfoDiv .updatePhaseDiv ul li input[type=number] {
  2163. width: 50px
  2164. }
  2165. .updateSigInfoDiv .updatePhaseDiv ul li input[type=text] {
  2166. width: 80px
  2167. }
  2168. .updateSigInfoDiv .updatePhaseDiv ul li input[type=button] {
  2169. width: 70px;
  2170. cursor: pointer
  2171. }
  2172. .updateSigInfoDiv .updatePhaseDiv ul li.phaseResetBt {
  2173. padding-left: 30px
  2174. }
  2175. .updateSigInfoDiv .updatePhaseDiv ul li.phaseSaveBt {
  2176. padding-left: 10px
  2177. }
  2178. .updateSigInfoDiv .updatePhaseDiv .linkMessage {
  2179. position: absolute;
  2180. top: 80px;
  2181. left: 160px
  2182. }
  2183. .updateSigInfoDiv .updateAPhaseBack {
  2184. position: absolute;
  2185. width: 800px;
  2186. height: 100px;
  2187. z-index: 20;
  2188. left: 105px;
  2189. top: 170px
  2190. }
  2191. .updateSigInfoDiv .updateAPhaseBack ul li {
  2192. float: left;
  2193. width: 100px;
  2194. height: 100px;
  2195. background-color: #ffffff;
  2196. opacity: 0;
  2197. cursor: pointer
  2198. }
  2199. .updateSigInfoDiv .updateBPhaseBack {
  2200. position: absolute;
  2201. width: 800px;
  2202. height: 100px;
  2203. z-index: 20;
  2204. left: 105px;
  2205. top: 273px
  2206. }
  2207. .updateSigInfoDiv .updateBPhaseBack ul li {
  2208. float: left;
  2209. width: 100px;
  2210. height: 100px;
  2211. background-color: #ffffff;
  2212. opacity: 0;
  2213. cursor: pointer
  2214. }
  2215. .signalMapDiv {
  2216. display: none
  2217. }
  2218. /* 정보관리 */
  2219. /*.addSigContainer h4{padding:7px}
  2220. .addSigContainer .updateSigTab{display:none;width:100%;height:25px}
  2221. .addSigContainer .sigMove{margin:5px;padding:5px;background:#2276cc; height:45px;}
  2222. .addSigContainer .sigMove ul { margin-top:10px; color:#fff; padding:0 5px 0 5px;}
  2223. .addSigContainer .sigMove ul li select {height:30px;}
  2224. .addSigContainer .sigMove .regionList{float:left}
  2225. .addSigContainer .sigMove .intList{margin-left:120px}
  2226. .addSigContainer .sigMove #centerList{width:70px}
  2227. .addSigContainer .sigMove #intList{width:250px}
  2228. .addSigContainer .sigMove label{font-weight:600}
  2229. .addSigContainer .updateSigTab ul li{float:left;padding:0 0 0 10px;font-size:15px;}
  2230. .addSigContainer .updateSigTab ul li a{border:1px solid #888888;padding:5px}
  2231. .addSigContainer .addSigMap{height:350px;margin:5px;border:1px solid #bababa}
  2232. .addSigContainer .addSigBottom{height:416px;margin:5px;border:1px solid #bababa}
  2233. .addSigContainer .addSigBottom .addsig_bottom_btns{display:none;margin-top:5px};*/
  2234. /* 정보관리 교차로관리 */
  2235. .addSigBottom h4 {
  2236. font-size: 12px;
  2237. background: #CCC;
  2238. }
  2239. .addSigContainer .addSigBottom .addSigDiv h3 {
  2240. color: #06F;
  2241. font-size: 13px;
  2242. }
  2243. .addSigContainer .addSigBottom .addSigDiv {
  2244. margin: 10px
  2245. }
  2246. .addSigContainer .addSigBottom .addSigDiv ul li {
  2247. line-height: 38px
  2248. }
  2249. .addSigContainer .addSigBottom .addSigDiv ul li:nth-child(1) select {
  2250. margin-left: 12px
  2251. }
  2252. .addSigContainer .addSigBottom .addSigDiv ul li:nth-child(2) select {
  2253. width: 80px
  2254. }
  2255. .addSigContainer .addSigBottom .addSigDiv ul li:nth-child(2) {
  2256. position: relative;
  2257. left: 20px
  2258. }
  2259. .addSigContainer .addSigBottom .addSigDiv ul li:nth-child(3) {
  2260. position: relative;
  2261. left: 260px
  2262. }
  2263. .addSigContainer .addSigBottom .addSigDiv ul li:nth-child(4) {
  2264. position: relative;
  2265. left: 277px
  2266. }
  2267. .addSigContainer .addSigBottom .addSigDiv ul li:nth-child(4) strong {
  2268. margin-left: 10px
  2269. }
  2270. .addSigContainer .addSigBottom .addSigDiv ul li:nth-child(5) input {
  2271. margin-left: 12px
  2272. }
  2273. .addSigContainer .addSigBottom .addSigDiv ul li:nth-child(6) select {
  2274. width: 40px
  2275. }
  2276. .addSigContainer .addSigBottom .addSigDiv ul li:nth-child(7) select {
  2277. width: 40px
  2278. }
  2279. .addSigContainer .addSigBottom .addSigDiv ul li:nth-child(8) input {
  2280. margin-left: 11px
  2281. }
  2282. .addSigContainer .addSigBottom .addSigDiv ul li:nth-child(9) {
  2283. float: left
  2284. }
  2285. .addSigContainer .addSigBottom .addSigDiv ul li:nth-child(9) input {
  2286. margin-left: 23px
  2287. }
  2288. .addSigContainer .addSigBottom .addSigDiv ul li:nth-child(10) {
  2289. margin-left: 240px
  2290. }
  2291. .addSigContainer .addSigBottom .addSigDiv ul li input[type=text] {
  2292. width: 150px
  2293. }
  2294. .addSigContainer .addSigBottom .addSigDiv ul li input[type=checkbox] {
  2295. width: 15px;
  2296. height: 15px;
  2297. margin: 15px 5px
  2298. }
  2299. .addSigContainer .addSigBottom .addSigDiv ul li input[type=number] {
  2300. width: 150px
  2301. }
  2302. .addSigContainer .addSigBottom .addSigDiv ul li input[type=button] {
  2303. float: left;
  2304. width: 150px;
  2305. height: 30px;
  2306. text-align: center;
  2307. cursor: pointer
  2308. }
  2309. /* 정보관리 상단 메뉴 */
  2310. .addSigContainer .addSigBottom .sigMoveDiv h3 {
  2311. color: blue
  2312. }
  2313. .addSigContainer .addSigBottom .sigMoveDiv {
  2314. margin: 10px
  2315. }
  2316. .addSigContainer .addSigBottom .sigMoveDiv ul li:nth-child(1) input {
  2317. margin-left: 13px
  2318. }
  2319. .addSigContainer .addSigBottom .sigMoveDiv ul li:nth-child(2) {
  2320. float: left
  2321. }
  2322. .addSigContainer .addSigBottom .sigMoveDiv ul li:nth-child(3) {
  2323. margin-left: 260px
  2324. }
  2325. .addSigContainer .addSigBottom .sigMoveDiv ul li:nth-child(4) input {
  2326. margin-left: 13px
  2327. }
  2328. .addSigContainer .addSigBottom .sigMoveDiv ul li:nth-child(5) input {
  2329. margin-left: 13px
  2330. }
  2331. .addSigContainer .addSigBottom .sigMoveDiv ul li:nth-child(6) input {
  2332. margin-left: 26px
  2333. }
  2334. .addSigContainer .addSigBottom .sigMoveDiv ul li:nth-child(7) input {
  2335. margin-left: 26px
  2336. }
  2337. .addSigContainer .addSigBottom .sigMoveDiv ul li:nth-child(8) input {
  2338. }
  2339. .addSigContainer .addSigBottom .sigMoveDiv ul li {
  2340. line-height: 38px;
  2341. }
  2342. .addSigContainer .addSigBottom .sigMoveDiv ul li input[type=text] {
  2343. width: 150px
  2344. }
  2345. .addSigContainer .addSigBottom .sigMoveDiv ul li input[type=checkbox] {
  2346. width: 15px;
  2347. height: 15px;
  2348. margin: 15px 5px
  2349. }
  2350. .addSigContainer .addSigBottom .sigMoveDiv ul li input[type=number] {
  2351. width: 150px
  2352. }
  2353. .addSigContainer .addSigBottom .sigMoveDiv ul li input[type=button] {
  2354. width: 150px;
  2355. height: 30px;
  2356. text-align: center;
  2357. cursor: pointer
  2358. }
  2359. /* 정보관리 현시관리,링크관리 */
  2360. /* .addSigContainer .addSigBottom .updatePhaseAdd{display:none;position:relative;}
  2361. .addSigContainer .addSigBottom .updatePhaseAdd .updatePhaseDiv{display:block;height:65px;margin:5px;background-color:#ffffff;border:1px solid #bababa;z-index:10}
  2362. .addSigContainer .addSigBottom .updatePhaseAdd .updatePhaseDiv h4{padding:10px 10px 5px 10px;text-align:left}
  2363. .addSigContainer .addSigBottom .updatePhaseAdd .updatePhaseDiv h3{margin:10px 10px 5px 5px}
  2364. .addSigContainer .addSigBottom .updatePhaseAdd .updatePhaseDiv ul li{padding-left:5px;float:left}
  2365. .addSigContainer .addSigBottom .updatePhaseAdd .updatePhaseDiv label{background:none}
  2366. .addSigContainer .addSigBottom .updatePhaseAdd .updatePhaseDiv ul li .updateDeg{padding-left:30px}
  2367. .addSigContainer .addSigBottom .updatePhaseAdd .updatePhaseDiv ul li input[type=number]{width:50px}
  2368. .addSigContainer .addSigBottom .updatePhaseAdd .updatePhaseDiv ul li input[type=text]{width:80px}
  2369. .addSigContainer .addSigBottom .updatePhaseAdd .updatePhaseDiv ul li input[type=button]{width:70px;height:25px;cursor:pointer;background:#96a2b2 !important; color:#fff; font-weight:bold;line-height:25px}
  2370. .addSigContainer .addSigBottom .updatePhaseAdd .updatePhaseDiv ul li.phaseResetBt{padding-left:30px}
  2371. .addSigContainer .addSigBottom .updatePhaseAdd .updatePhaseDiv ul li.phaseSaveBt{padding-left:10px}
  2372. .addSigContainer .addSigBottom .updatePhaseAdd .updatePhaseDiv .linkMessage{position:absolute;top:37px;left:260px}
  2373. .addSigContainer .addSigBottom .updatePhaseAdd .phaseInfoCon{width:auto;height:100%;padding:5px}
  2374. .addSigContainer .addSigBottom .updatePhaseAdd .linkInfoCon{width:auto;height:100%;padding:0 5px}
  2375. .addSigContainer .addSigBottom .updatePhaseAdd .phaseInfoCon table, .addSigContainer .addSigBottom .updatePhaseAdd .linkInfoCon table{width:100%;border-collapse:collapse;}
  2376. .addSigContainer .addSigBottom .updatePhaseAdd .phaseInfoCon table thead, .addSigContainer .addSigBottom .updatePhaseAdd .linkInfoCon table thead{width:100%;background-color:#f4f4f4}
  2377. .addSigContainer .addSigBottom .updatePhaseAdd .phaseInfoCon table th, .addSigContainer .addSigBottom .updatePhaseAdd .phaseInfoCon table td{padding:6px;text-align:center;border:1px solid #bababa;width:9.1%}
  2378. .addSigContainer .addSigBottom .updatePhaseAdd .linkInfoCon table th, .addSigContainer .addSigBottom .updatePhaseAdd .linkInfoCon table td{padding:6px;text-align:center;border:1px solid #bababa;width:10%}
  2379. .addSigContainer .addSigBottom .updatePhaseAdd .phaseInfoCon table th, .addSigContainer .addSigBottom .updatePhaseAdd .linkInfoCon table th{font-weight: bold;color: #2d2d2d;}
  2380. .addSigContainer .addSigBottom .updatePhaseAdd .phaseInfoCon table td{color:#515151;height:90px}
  2381. .addSigContainer .addSigBottom .updatePhaseAdd .linkInfoCon table td{color:#515151;height:40px}
  2382. .addSigContainer .addSigBottom .updatePhaseAdd .phaseInfoCon table .aProgress td{height:auto}
  2383. .addSigContainer .addSigBottom .updatePhaseAdd .phaseInfoCon table .bProgress td{height:auto}
  2384. .addSigContainer .addSigBottom .updatePhaseAdd .phaseInfoCon input{width: 50px;margin: 0 18px;line-height: 15px;text-align: center;cursor: pointer;}
  2385. .addSigContainer .addSigBottom .updatePhaseAdd .updateMapNo{display:inline-block;margin:5px;position:relative;left:775px}
  2386. .addSigContainer .addSigBottom .updatePhaseAdd .updateMapNo #updateMapNo{width:45px}
  2387. .addSigContainer .addSigBottom .updatePhaseAdd .updateAPhaseBack{position:absolute;width:785px;height:100px;z-index:20;left:105px;top:142px}
  2388. .addSigContainer .addSigBottom .updatePhaseAdd .updateBPhaseBack{position:absolute;width:800px;height:100px;z-index:20;left:105px;top:245px}
  2389. .addSigContainer .addSigBottom .updatePhaseAdd .updateAPhaseBack ul li,.updatePhaseAdd .updateBPhaseBack ul li{float:left;width:98.1px;height:100px;cursor:pointer}
  2390. 정보관리 업로드
  2391. .addSigContainer .addSigBottom .uploadDiv{display:none}
  2392. .addSigContainer .addSigBottom .uploadDiv h4{display:block !important}
  2393. .addSigContainer .addSigBottom .uploadDiv ul li{padding:10px}
  2394. .addSigContainer .addSigBottom .uploadDiv ul li select{height:27px;overflow:hidden}
  2395. .addSigContainer .addSigBottom .uploadDiv ul li input[type="file"]{display: inline-block;padding: .2em .75em;font-size: inherit;font-family: inherit;line-height: normal;
  2396. vertical-align: middle;background-color: #f5f5f5;border: 1px solid #ebebeb;border-bottom-color: #e2e2e2;
  2397. border-radius: .25em;-webkit-appearance: none; 네이티브 외형 감추기
  2398. -moz-appearance: none;appearance: none;}
  2399. .addSigContainer .addSigBottom .uploadDiv ul li input[type="button"]{width:100px;height:30px;cursor:pointer}
  2400. .addSigContainer .addSigBottom .uploadDiv ul li label{display: inline-block;padding: .5em;color: #000000;font-size: inherit;line-height: normal;background-color: #fdfdfd;
  2401. cursor: pointer;border: 1px solid #ebebeb;border-bottom-color: #e2e2e2;border-radius: .25em;width:100px;text-align:center} */
  2402. /* 엑셀업로드 iframe */
  2403. .excelUpload {
  2404. width: 878px
  2405. }
  2406. .extractTodExcelDiv h4 {
  2407. display: block !important;
  2408. padding: 10px;
  2409. font-size: 14px;
  2410. background: #CCC;
  2411. }
  2412. .extractTodExcelDiv {
  2413. height: 100%
  2414. }
  2415. .extractTodExcelDiv ul li {
  2416. padding: 10px
  2417. }
  2418. .extractTodExcelDiv ul li:nth-child(2) {
  2419. float: left
  2420. }
  2421. .extractTodExcelDiv ul li label {
  2422. display: inline-block;
  2423. padding: .5em;
  2424. color: #000000;
  2425. font-size: inherit;
  2426. line-height: normal;
  2427. background-color: #fdfdfd;
  2428. cursor: pointer;
  2429. border: 1px solid #ebebeb;
  2430. border-bottom-color: #e2e2e2;
  2431. border-radius: .25em;
  2432. width: 100px;
  2433. text-align: center
  2434. }
  2435. .extractTodExcelDiv ul li input[type="button"] {
  2436. width: 100px;
  2437. height: 30px;
  2438. cursor: pointer
  2439. }
  2440. .extractTodExcelDiv ul li select {
  2441. height: 27px;
  2442. overflow: hidden
  2443. }
  2444. .showLoading {
  2445. display: none;
  2446. position: absolute;
  2447. top: 73px;
  2448. left: 310px;
  2449. z-index: 20
  2450. }
  2451. .dataLoading {
  2452. display: none;
  2453. position: absolute;
  2454. top: 200px;
  2455. left: 300px;
  2456. z-index: 20
  2457. }
  2458. .excelDataLoading {
  2459. display: none;
  2460. position: absolute;
  2461. top: 60px;
  2462. left: 270px;
  2463. opacity: 0.7;
  2464. z-index: 20
  2465. }
  2466. .imgDataLoading {
  2467. display: none;
  2468. position: absolute;
  2469. top: 200px;
  2470. left: 270px;
  2471. opacity: 0.7;
  2472. z-index: 20
  2473. }
  2474. .headMenu ul .toggleBtn {
  2475. border-right: 1px solid #bbbbbb
  2476. }
  2477. .headMenu ul .toggleBtn:nth-child(1) {
  2478. border-left: 1px solid #bbbbbb
  2479. }
  2480. .sigPop_box .pop_table_phase {
  2481. margin: 5px 0
  2482. }
  2483. .sigPop_box .pop_table_phase tr td:nth-child(1) {
  2484. width: 10%;
  2485. padding: 5px
  2486. }
  2487. .sigPop_box .pop_table_phase tr td {
  2488. width: 15%;
  2489. padding: 5px;
  2490. text-align: center;
  2491. border: 1px solid #bbb;
  2492. font-size: 11px
  2493. }
  2494. .sigPop_box .pop_table_phase tr:nth-child(2) {
  2495. height: 80px
  2496. }
  2497. .sigPop_box .pop_table_phase tr:nth-child(4) {
  2498. height: 80px
  2499. }
  2500. .treeLoading {
  2501. display: none;
  2502. position: absolute;
  2503. top: 50px;
  2504. left: 45%
  2505. }
  2506. /* 로드뷰 아이콘 */
  2507. #roadviewClose {
  2508. position: absolute;
  2509. padding: 4px;
  2510. top: 5px;
  2511. left: 5px;
  2512. cursor: pointer;
  2513. background: #fff;
  2514. border-radius: 4px;
  2515. border: 1px solid #c8c8c8;
  2516. box-shadow: 0px 1px #888;
  2517. z-index: 10
  2518. }
  2519. #roadviewClose .img {
  2520. display: block;
  2521. background: url(http://t1.daumcdn.net/localimg/localimages/07/mapapidoc/rv_close.png) no-repeat;
  2522. width: 14px;
  2523. height: 14px;
  2524. }
  2525. .board-write {
  2526. width: 100%;
  2527. border-top: 2px solid #005ead;
  2528. border-bottom: 2px solid #005ead;
  2529. }
  2530. .board-write th {
  2531. background: #CCC;
  2532. border-bottom: 1px solid #bbb;
  2533. }
  2534. .board-write td {
  2535. padding: 10px;
  2536. border-bottom: 1px solid #ddd;
  2537. }
  2538. .board-write td #addIntLcType, .board-write td #addIntLampType, .board-write td #addIntMainphase {
  2539. width: 100px
  2540. }
  2541. .btn-tinted-03 {
  2542. background: #96a2b2 !important;
  2543. color: #fff;
  2544. font-weight: bold;
  2545. }
  2546. .btn-inline a {
  2547. display: inline-block;
  2548. height: 28px;
  2549. line-height: 28px;
  2550. padding: 0 20px;
  2551. background: #333;
  2552. color: #fff;
  2553. vertical-align: middle;
  2554. }
  2555. /* 페이즈정보 팡벙 */
  2556. .cvibInfoTop {
  2557. width: 100%;
  2558. margin: 5px 5px 0 5px
  2559. }
  2560. .cvibInfoTop .tabs {
  2561. height: 30px;
  2562. position: relative;
  2563. z-index: 50;
  2564. }
  2565. .cvibInfoTop .tabs li {
  2566. float: left;
  2567. }
  2568. .cvibInfoTop .tabs li:nth-child(1) {
  2569. border-top: 1px solid #bbbbbb;
  2570. border-left: 1px solid #bbbbbb
  2571. }
  2572. .cvibInfoTop .tabs li:nth-child(2) {
  2573. border-top: 1px solid #bbbbbb
  2574. }
  2575. .cvibInfoTop .tabs .regionIntNm {
  2576. line-height: 30px;
  2577. width: 100%;
  2578. text-align: center;
  2579. font-size: 15px
  2580. }
  2581. .bottomInfo {
  2582. height: 100%;
  2583. width: 100%;
  2584. float: left;
  2585. }
  2586. .bottomInfo table {
  2587. width: 100%;
  2588. border-collapse: collapse
  2589. }
  2590. .bottomInfo table thead {
  2591. background-color: #f4f4f4
  2592. }
  2593. .bottomInfo table tr th, .bottomInfo table tr td {
  2594. border: 1px solid #bbb;
  2595. line-height: 30px;
  2596. text-align: center;
  2597. color: #2d2d2d
  2598. }
  2599. .bottomInfo table tr th {
  2600. font-weight: bold
  2601. }
  2602. .bottomInfo .bottomInfoTop {
  2603. margin: 5px
  2604. }
  2605. .bottomInfo .bottomInfoBottom {
  2606. margin: 5px
  2607. }
  2608. .bottomInfo .bottomInfoBottom .bottomInfoHead {
  2609. overflow-y: scroll;
  2610. scrollbar-arrow-color: #eee;
  2611. scrollbar-base-color: #eee;
  2612. scrollbar-3dLight-Color: #eee;
  2613. scrollbar-Face-Color: #eee;
  2614. scrollbar-Track-Color: #eee;
  2615. }
  2616. .bottomInfo .bottomInfoBottom .bottomInfoHead::-webkit-scrollbar {
  2617. width: 17px;
  2618. background-color: #eee;
  2619. border-top: 1px solid #bbb;
  2620. border-right: 1px solid #bbb;
  2621. border-bottom: 1px solid #bbb;
  2622. }
  2623. .bottomInfo .bottomInfoBottom .bottomInfoBody {
  2624. max-height: 370px;
  2625. overflow-y: scroll;
  2626. border-bottom: 1px solid #bbb
  2627. }
  2628. .bottomInfo .bottomInfoBottom .bottomInfoBody::-webkit-scrollbar {
  2629. width: 17px;
  2630. border-right: 1px solid #bbb;
  2631. background-color: #eee;
  2632. }
  2633. .bottomInfo .bottomInfoBottom .bottomInfoBody::-webkit-scrollbar-thumb {
  2634. background-color: #bbb;
  2635. }
  2636. .bottomInfo .bottomInfoBottom .bottomInfoBody table tbody tr:nth-child(1) td {
  2637. border-top: 0
  2638. }
  2639. .bottomInfo .bottomInfoBottom .bottomInfoBody .cvibLightsBack_1 {
  2640. background-color: #ff0000
  2641. }
  2642. .bottomInfo .bottomInfoBottom .bottomInfoBody .cvibLightsBack_2 {
  2643. background-color: #ffff00
  2644. }
  2645. .bottomInfo .bottomInfoBottom .bottomInfoBody .cvibLightsBack_3 {
  2646. background-color: #008000
  2647. }
  2648. .bottomInfo .bottomEvent {
  2649. display: none;
  2650. margin: 10px
  2651. }
  2652. .bottomInfo .bottomEvent .collctDtime img {
  2653. cursor: pointer
  2654. }
  2655. .bottomInfo .bottomEvent .eventPopListTable {
  2656. margin-top: 10px
  2657. }
  2658. .bottomInfo .bottomEvent .cvibLoading {
  2659. display: none;
  2660. margin: 0 auto
  2661. }
  2662. .coordBox {
  2663. background-color: white;
  2664. gap: 10px;
  2665. width: 470px;
  2666. height: 40px;
  2667. display: none;
  2668. align-items: center;
  2669. justify-content: center;
  2670. position: absolute;
  2671. z-index: 2;
  2672. left: 85px;
  2673. top: 28px;
  2674. border: 1px solid #c9c9c9;
  2675. }
  2676. .coordBox.on {
  2677. display: flex;
  2678. }
  2679. .coord-unit {
  2680. display: flex;
  2681. gap: 5px;
  2682. align-items: center;
  2683. font-weight: bold;
  2684. font-size: 12px;
  2685. }
  2686. .coord-unit input {
  2687. padding: 3px 5px;
  2688. font-weight: bold;
  2689. width : 110px;
  2690. }
  2691. .coord-btn {
  2692. border: 1px solid #1e65c5;
  2693. background-color: #1e65c5;
  2694. color: white;
  2695. font-weight: bold;
  2696. cursor: pointer;
  2697. border-radius: 5px;
  2698. padding: 3px 18px;
  2699. }
  2700. .coord-btn:hover {
  2701. filter:brightness(1.1);
  2702. }
  2703. @media (max-width: 1000px) {
  2704. .crossLoadMap {
  2705. width: 100%;
  2706. height: 450px;
  2707. border: 1px solid #bbb;
  2708. z-index: 1;
  2709. float: left;
  2710. }
  2711. .crossLoadInfo {
  2712. width: 100%;
  2713. height: 450px;
  2714. border: 1px solid #bbb;
  2715. z-index: 1;
  2716. float: left;
  2717. }
  2718. }