Site.css 11 KB

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