Site.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690
  1. body
  2. {font-size: 75%;font-family: Verdana, Tahoma, Arial, "Helvetica Neue" , Helvetica, Sans-Serif;color: #232323;}
  3. ul
  4. {
  5. list-style: none;
  6. padding: 0px;
  7. margin: 0px;
  8. }
  9. img
  10. {
  11. border-style: none;
  12. padding: 0px;
  13. margin: 0px;
  14. }
  15. a:link,
  16. a:visited
  17. {
  18. text-decoration: none;
  19. color: #404040
  20. }
  21. /* Styles for basic forms
  22. -----------------------------------------------------------*/
  23. fieldset
  24. {
  25. border: 1px solid #ddd;
  26. padding: 0 1.4em 1.4em 1.4em;
  27. margin: 0 0 1.5em 0;
  28. }
  29. legend
  30. {
  31. font-size: 1.2em;
  32. font-weight: bold;
  33. }
  34. textarea
  35. {
  36. min-height: 75px;
  37. }
  38. .editor-label
  39. {
  40. margin: 1em 0 0 0;
  41. }
  42. .editor-field
  43. {
  44. margin: 0.5em 0 0 0;
  45. }
  46. /* Styles for validation helpers
  47. -----------------------------------------------------------*/
  48. .field-validation-error
  49. {
  50. color: #ff0000;
  51. }
  52. .field-validation-valid
  53. {
  54. display: none;
  55. }
  56. .input-validation-error
  57. {
  58. border: 1px solid #ff0000;
  59. background-color: #ffeeee;
  60. }
  61. .validation-summary-errors
  62. {
  63. font-weight: bold;
  64. color: #ff0000;
  65. }
  66. .validation-summary-valid
  67. {
  68. display: none;
  69. }
  70. .fleft
  71. {
  72. float: left;
  73. }
  74. .fright
  75. {
  76. float: right;
  77. }
  78. /* Clear Fix */
  79. .clearfix:after
  80. {
  81. content: ".";
  82. display: block;
  83. height: 0;
  84. clear: both;
  85. visibility: hidden;
  86. }
  87. .clearfix
  88. {
  89. display: inline-block;
  90. }
  91. /* Hide from IE Mac */
  92. .clearfix
  93. {
  94. display: block;
  95. }
  96. /* End hide from IE Mac */
  97. /* end of clearfix */
  98. .CurrentInformation
  99. {
  100. position: absolute;
  101. left: 350px;
  102. top: 110px;
  103. z-index: 2;
  104. color: #fff;
  105. }
  106. .current_navbar
  107. {
  108. margin: 0px;
  109. height: 30px;
  110. /*line-height: 30px;*/
  111. text-align: right;
  112. /*background-color: #1CABD7;*/
  113. background-color:#f0f0f0;
  114. }
  115. .current_navbar .nav_info
  116. {
  117. float: left;
  118. height: 30px;
  119. color: #fff;
  120. }
  121. .current_navbar .nav_info img
  122. {
  123. vertical-align: middle;
  124. margin-left: 5px;
  125. }
  126. .current_navbar .nav_info a
  127. {
  128. color: #fff;
  129. vertical-align: middle;
  130. text-decoration: none;
  131. }
  132. .current_navbar .nav_info a:hover
  133. {
  134. color: #1A7BC9;
  135. }
  136. .position_title
  137. {
  138. min-width:1024px;
  139. margin-left:2px;
  140. margin-right:5px;
  141. background-color: #F0F0F0;
  142. color: #333;
  143. line-height: 20px;
  144. height: 20px;
  145. }
  146. .popupWindowBody .position_title
  147. {
  148. min-width:0px;
  149. margin-left:5px;
  150. margin-right:5px;
  151. background-color: #F0F0F0;
  152. color: #333;
  153. line-height: 30px;
  154. height: 30px;
  155. }
  156. .position_content
  157. {
  158. min-width:1024px;
  159. margin-left:15px;
  160. }
  161. .popupWindowBody .position_content
  162. {
  163. min-width:0px;
  164. margin-left:15px;
  165. }
  166. .toolbar
  167. {
  168. background-color:#F0F0F0;
  169. }
  170. .current_navbar .func_info
  171. {
  172. float: right;
  173. margin-right: 15px;
  174. height: 30px;
  175. }
  176. .current_navbar .func_info input
  177. {
  178. border: 1px solid #1A7BC9;
  179. margin-left: 5px;
  180. }
  181. .search_keyword
  182. {
  183. /*margin: 5px 15px 0px 15px;
  184. min-height: 80px;
  185. background-color:#e8f7fb;
  186. -moz-border-radius:5px;
  187. border-radius: 5px;
  188. box-shadow: 3px 3px 10px #1A7BC9;*/
  189. margin: 2px 5px 0px 2px;
  190. /*min-height: 40px;*/
  191. background-color: #eeeeee;
  192. min-width:1024px;
  193. /*-moz-border-radius:1px;
  194. -webkit-border-radius:1px;
  195. background-color:#e8f7fb;
  196. -moz-box-shadow:3px 3px 10px #1A7BC9;
  197. -webkit-box-shadow:3px 3px 10px #1A7BC9;
  198. box-shadow:3px 3px 10px #1A7BC9; */
  199. }
  200. .popupWindowBody .search_keyword
  201. {
  202. min-width:0px;
  203. margin: 2px 5px 0px 5px;
  204. background-color: #eeeeee;
  205. }
  206. .search_list
  207. {
  208. /*margin: 5px 15px 0px 15px;
  209. min-height: 80px;
  210. background-color:#e8f7fb;
  211. border-radius: 5px;
  212. box-shadow: 3px 3px 10px #1A7BC9;*/
  213. height:auto;
  214. margin: 2px 5px 0px 2px;
  215. min-width:1024px;
  216. }
  217. .popupWindowBody .search_list
  218. {
  219. min-width:0px;
  220. }
  221. .p_title
  222. {
  223. /*margin: 8px 15px 0px 15px;
  224. min-height: 30px;
  225. border-radius: 1px;
  226. background-color:#79cdea;
  227. box-shadow: 1px 1px 2px #1A7BC9;*/
  228. min-height: 30px;
  229. min-width:1024px;
  230. line-height: 30px;
  231. margin: 2px 5px 0px 2px;
  232. background-color:#f0f0f0;
  233. color: #434343;
  234. }
  235. .popupWindowBody .p_title
  236. {
  237. min-width:0px;
  238. }
  239. .p_SearchTitle
  240. {
  241. min-width:1024px;
  242. height: 0px;
  243. margin: 0px 5px 0px 5px;
  244. font-size: 12px;
  245. color: White;
  246. /*background: #0081c2 url('Bowin.Control.Core/themes/metro-blue/images/panelheader.png') no-repeat 0px -20px;*/
  247. /*-moz-border-radius:6px;
  248. -webkit-border-radius:6px;
  249. border-radius:6px;
  250. background-color:#cccccc;
  251. -moz-box-shadow:0px 4px 5px #d4d4d4;
  252. -webkit-box-shadow:0px 4px 5px #d4d4d4;
  253. box-shadow:0px 4px 5px #d4d4d4;
  254. font-size: 16px;
  255. /*behavior: url(PIE.htc);*/
  256. }
  257. .popupWindowBody .p_SearchTitle
  258. {
  259. min-width:0px;
  260. height: 1px;
  261. margin: 0px 5px 0px 5px;
  262. font-size: 12px;
  263. color: White;
  264. background: #0081c2 url('Bowin.Control.Core/themes/metro-blue/images/panelheader.png') no-repeat 0px -20px;
  265. }
  266. .p_SearchTitle div
  267. {
  268. display: none;
  269. }
  270. .one
  271. {
  272. min-height: 40px;
  273. }
  274. .second
  275. {
  276. min-height: 80px;
  277. }
  278. .third
  279. {
  280. min-height: 110px;
  281. }
  282. .search_keyword .search_input
  283. {
  284. width: 100%;
  285. position: relative;
  286. display: inline-block;
  287. }
  288. .search_keyword .search_input ul
  289. {
  290. list-style: none;
  291. line-height: 26px;
  292. width: 100%;
  293. min-width:1024px;
  294. float: left;
  295. margin: 0;
  296. }
  297. .popupWindowBody .search_keyword .search_input ul
  298. {
  299. list-style: none;
  300. line-height: 25px;
  301. width: 100%;
  302. min-width:0px;
  303. float: left;
  304. margin: 0;
  305. }
  306. .search_keyword .search_input ul li.sn
  307. {
  308. width:80px;
  309. display: inline-block;
  310. text-align: right;
  311. color:#000;
  312. float: left;
  313. }
  314. .popupWindowBody .search_keyword .search_input ul li.sn
  315. {
  316. width:auto;
  317. display: inline-block;
  318. text-align: right;
  319. color:#000;
  320. float: left;
  321. }
  322. .search_keyword .search_input ul li.sv
  323. {
  324. /*width: 20%;*/
  325. display: inline-block;
  326. float: left;
  327. text-align: left;
  328. }
  329. .search_keyword .search_button_one
  330. {
  331. float: left;
  332. margin: 7px;
  333. }
  334. .search_keyword .search_button_one a
  335. {
  336. border-radius: 5px;
  337. box-shadow: 3px 3px 8px #1A7BC9;
  338. }
  339. .search_keyword .search_button_second
  340. {
  341. float: left;
  342. margin: 27px;
  343. }
  344. .search_keyword .search_button_second a
  345. {
  346. border-radius: 5px;
  347. box-shadow: 3px 3px 8px #1A7BC9;
  348. }
  349. .search_keyword .search_button_third
  350. {
  351. float: left;
  352. margin: 43px;
  353. }
  354. .search_keyword .search_button_third a
  355. {
  356. border-radius: 5px;
  357. box-shadow: 3px 3px 8px #1A7BC9;
  358. }
  359. .box_class
  360. {
  361. margin: 10px auto;
  362. }
  363. .box_class ul
  364. {
  365. height: 20px;
  366. line-height: 20px;
  367. }
  368. .box_class ul li.li_o_l
  369. {
  370. width: 21%;
  371. float: left;
  372. text-align: right;
  373. }
  374. .box_class ul li.li_o_r
  375. {
  376. float: left;
  377. height: 20px;
  378. }
  379. .box_class ul li.li_o_r .combo input {
  380. vertical-align: top;
  381. }
  382. .box_class ul li.li_o_r textarea
  383. {
  384. font-size:13px;
  385. padding-left:2px;
  386. }
  387. .box_class ul li.li_s_l
  388. {
  389. width: 21%;
  390. float: left;
  391. text-align: right;
  392. }
  393. .box_class ul li.li_s_r
  394. {
  395. width: 29%;
  396. float: left;
  397. height: 20px;
  398. }
  399. .box_class ul li.li_s_r .combo input {
  400. vertical-align: top;
  401. }
  402. .box_class ul li.li_t_l
  403. {
  404. width: 15%;
  405. float: left;
  406. text-align: right;
  407. }
  408. .box_class ul li.li_t_r
  409. {
  410. width: 18%;
  411. float: left;
  412. height: 20px;
  413. }
  414. .box_class ul li.li_t_r .combo input {
  415. vertical-align: top;
  416. }
  417. .toolbar
  418. {
  419. /*background: linear-gradient(#B8F3F9, #50B7E2);
  420. width: 100%;
  421. height: 34px;
  422. text-align: right;
  423. vertical-align: bottom;*/
  424. }
  425. .backend-video-border
  426. {
  427. border: 1px solid #88d4e2;
  428. -webkit-border-radius: 8px;
  429. -moz-border-radius: 8px;
  430. border-radius: 8px;
  431. -webkit-box-shadow: #666 0px 2px 3px;
  432. -moz-box-shadow: #666 0px 2px 3px;
  433. box-shadow: #666 0px 2px 3px;
  434. behavior: url(../Scripts/plugins/pie/PIE.htc);
  435. }
  436. /*Peter Add on 2014.05.29 for validataion*/
  437. .poptip {
  438. position: absolute;
  439. top: 20px;
  440. left:20px;
  441. padding: 6px 10px 5px;
  442. *padding: 7px 10px 4px;
  443. line-height: 16px;
  444. color: #DB7C22;
  445. font-size: 12px;
  446. background-color: #FFFCEF;
  447. border: solid 1px #FFBB76;
  448. border-radius: 2px;
  449. box-shadow: 0 0 3px #ddd;
  450. }
  451. .poptip-arrow {
  452. position: absolute;
  453. overflow: hidden;
  454. font-style: normal;
  455. font-family: simsun;
  456. font-size: 12px;
  457. text-shadow:0 0 2px #ccc;
  458. }
  459. .poptip-arrow em,.poptip-arrow i {
  460. position: absolute;
  461. left:0;top:0;
  462. font-style: normal;
  463. }
  464. .poptip-arrow em {
  465. color: #FFBB76;
  466. }
  467. .poptip-arrow i {
  468. color: #FFFCEF;
  469. text-shadow:none;
  470. }
  471. .poptip-arrow-top,.poptip-arrow-bottom {
  472. height: 6px;
  473. width: 12px;
  474. left:12px;
  475. margin-left:-6px;
  476. }
  477. .poptip-arrow-left,.poptip-arrow-right {
  478. height: 12px;
  479. width: 6px;
  480. top: 12px;
  481. margin-top:-6px;
  482. }
  483. .poptip-arrow-top {
  484. top: -6px;
  485. }
  486. .poptip-arrow-top em {
  487. top: -1px;
  488. }
  489. .poptip-arrow-top i{
  490. top: 0px;
  491. }
  492. .poptip-arrow-bottom {
  493. bottom: -6px;
  494. }
  495. .poptip-arrow-bottom em {
  496. top: -8px;
  497. }
  498. .poptip-arrow-bottom i {
  499. top: -9px;
  500. }
  501. .poptip-arrow-left {
  502. left:-6px;
  503. }
  504. .poptip-arrow-left em {
  505. left:1px;
  506. }
  507. .poptip-arrow-left i {
  508. left:2px;
  509. }
  510. .poptip-arrow-right {
  511. right:-6px;
  512. }
  513. .poptip-arrow-right em {
  514. left:-6px;
  515. }
  516. .poptip-arrow-right i {
  517. left:-7px;
  518. }
  519. .hide {display:none;}
  520. .table_peter{
  521. background-color:rgb(43,160,200);
  522. width:100%;
  523. }
  524. .table_peter tr{
  525. height:30px;
  526. line-height:30px;
  527. }
  528. .table_peter tr th{
  529. height: 30px;
  530. line-height:30px;
  531. width: 10%;
  532. text-align: right;
  533. font-weight: normal;
  534. background-color: #e2e8f4;
  535. }
  536. .table_peter tr td{
  537. width: 40%;
  538. padding-left: 5px;
  539. background-color: #e9effa;
  540. }
  541. .xpanel_head
  542. {
  543. height:0px;
  544. background-color:#F5F5F5;
  545. display: block;
  546. line-height: 32px;
  547. margin: 0;
  548. padding: 0;
  549. position: relative;
  550. width: 100%;
  551. }
  552. .popupWindowContent
  553. {
  554. position: absolute;
  555. height: auto;
  556. overflow: auto;
  557. left: 0px;
  558. right: 0px;
  559. top: 35px;
  560. bottom: 0px;
  561. }
  562. .popupWindowContent>table
  563. {
  564. width: 100%;
  565. border: 0px;
  566. jerry:expression(cellSpacing="1");
  567. border-spacing: 1px;
  568. background-color: #D6D6D6;
  569. table-layout: fixed;
  570. }
  571. .noPopupContent>table
  572. {
  573. height:auto;
  574. margin: 5px 5px 0px 5px;
  575. width: 100%;
  576. border: 0px;
  577. jerry:expression(cellSpacing="1");
  578. border-spacing: 1px;
  579. background-color: #D6D6D6;
  580. }
  581. .normalContent>table
  582. {
  583. height:auto;
  584. margin: 5px 5px 0px 5px;
  585. width: 100%;
  586. border: 0px;
  587. jerry:expression(cellSpacing="1");
  588. border-spacing: 1px;
  589. background-color: #D6D6D6;
  590. }
  591. .normalContent .labelClass
  592. {
  593. font-size: 12px;
  594. background-color: #F0F0F0;
  595. font-weight: normal;
  596. text-align: right;
  597. padding-left: 5px;
  598. padding-right: 5px;
  599. line-height: 24px;
  600. white-space: nowrap;
  601. width: 100px;
  602. }
  603. .formTdClass
  604. {
  605. background-color: #ffffff;
  606. padding: 2px;
  607. line-height: 15px;
  608. height: 22px;
  609. }
  610. .labelClass
  611. {
  612. font-size: 12px;
  613. background-color: #F0F0F0;
  614. font-weight: normal;
  615. text-align: right;
  616. padding-left: 5px;
  617. padding-right: 0px;
  618. line-height: 15px;
  619. white-space: nowrap;
  620. width: 15%;
  621. }
  622. .window-body>div>div
  623. {
  624. overflow: hidden;
  625. }
  626. .window-body>div>div>iframe
  627. {
  628. width: 100%;
  629. height: 100%;
  630. }
  631. #BatchModifydiv .search_input .sn
  632. {
  633. width:auto;
  634. }
  635. INPUT[type=text]
  636. {
  637. font-size: 12px;
  638. }
  639. .row_selected
  640. {
  641. background-color: #BEBEBE!important;
  642. }
  643. /*end*/