global.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756
  1. @charset "utf-8";
  2. /*Reset 样式初始化*/
  3. html, body, form, fieldset, p, a, ul, ol, li, div, legend, label,
  4. br, input, button, textarea, h1, h2, h3, h4, h5,em{
  5. padding: 0;
  6. margin: 0;
  7. font-weight: normal;
  8. font-style: normal;
  9. font-size: 12px;
  10. font-family:"微软雅黑","Tahoma";
  11. vertical-align: baseline;
  12. text-align:justify;
  13. word-wrap:break-word;
  14. text-justify:inter-ideograph
  15. }
  16. body{text-align:center}
  17. ul, ol, li, h1 {
  18. line-height:normal;
  19. list-style-image:none;
  20. list-style-position:outside;
  21. list-style-type:none
  22. }
  23. dl {
  24. margin:0
  25. }
  26. dd {
  27. margin-left:0
  28. }
  29. a {
  30. outline:none;
  31. }
  32. a img {
  33. border:0 none
  34. }
  35. img {
  36. vertical-align:middle;
  37. border:0px
  38. }
  39. table {
  40. border-collapse:collapse
  41. }
  42. .clearfix:after {
  43. content:".";
  44. display:block;
  45. height:0;
  46. clear:both;
  47. visibility:hidden
  48. }
  49. .clearfix {
  50. display:inline-block;
  51. overflow:hidden
  52. }
  53. .clearfix {
  54. display:block
  55. }
  56. body {color:#666;background:#f8f8f8 url(bodybg.jpg) repeat}
  57. a {color:#3366cc;text-decoration:none}
  58. a:hover {color:#333}
  59. .width950{width:950px;margin:0 auto}
  60. /**/
  61. .clearB {clear:both}
  62. .fL {float:left}
  63. .fR {float:right}
  64. :link, *:visited, *:hover, *:active, *:focus {
  65. -moz-transition: color 0.2s linear 0s, background-color 0.2s linear 0s, border-color 0.2s linear 0s;
  66. -webkit-transition: color 0.2s linear 0s, background-color 0.2s linear 0s, border-color 0.2s linear 0s;
  67. transition: color 0.2s linear 0s, background-color 0.2s linear 0s, border-color 0.2s linear 0s;
  68. -o-transition: color 0.2s linear 0s, background-color 0.2s linear 0s, border-color 0.2s linear 0s;
  69. }
  70. .colRed {color:#f70000}
  71. .colOrange {color:#ed8b00}
  72. .colYel {color:#d9a601}
  73. .colGreen{color:#17ab0c}
  74. .colGray{color:#999}
  75. .colBlue{color:#3172d9}
  76. .hide {display:none}
  77. .button {
  78. float:left;
  79. height:32px;
  80. margin-right:10px;
  81. padding:0px 30px;
  82. line-height:32px;
  83. text-align:center;
  84. overflow:hidden;
  85. font-weight:bold;
  86. color:#FFF;
  87. border-radius:3px;
  88. text-shadow:0 1px rgba(0, 0, 0, 0.1);
  89. text-decoration:none;
  90. border:none;
  91. cursor:pointer
  92. }
  93. input.button {
  94. height: 35px;
  95. line-height: 35px;
  96. }
  97. .button:hover{
  98. color:#fff
  99. }
  100. .button.btn-blue{
  101. background-color:#006fd8;
  102. border-bottom:3px solid #014687
  103. }
  104. .button.btn-blue:hover{
  105. background-color:#0076e4;
  106. }
  107. .button.btn-blue:active{
  108. background-color:#014687;
  109. }
  110. .button.btn-red{
  111. background-color:#E74C3C;
  112. border-bottom:3px solid #C44133
  113. }
  114. .button.btn-red:hover{
  115. background-color:#EC7063;
  116. }
  117. .button.btn-red:active{
  118. background-color:#C44133;
  119. }
  120. .button.btn-green{
  121. background-color:#1ABC9C;
  122. border-bottom:3px solid #16A085
  123. }
  124. .button.btn-green:hover{
  125. background-color:#48C9B0;
  126. }
  127. .button.btn-green:active{
  128. background-color:#16A085;
  129. }
  130. .button.btn-dark{
  131. background-color:#415B76;
  132. border-bottom:3px solid #2c3e50
  133. }
  134. .button.btn-dark:hover{
  135. background-color:#456a91;
  136. }
  137. .button.btn-dark:active{
  138. background-color:#2c3e50;
  139. }
  140. /*global header*/
  141. .globalHeader {
  142. background:#515b61;
  143. height:30px
  144. }
  145. .globalNav a{
  146. float:left;
  147. height:30px;
  148. line-height:30px;
  149. padding:0 10px;
  150. color:#eee;
  151. position: relative;
  152. cursor: pointer
  153. }
  154. .globalNav a:hover{
  155. background:#666E70;
  156. color:#fff
  157. }
  158. .globalNav a.now{
  159. background:#E36335;
  160. color:#fff;
  161. font-weight:600
  162. }
  163. .globalNav .zhzd{
  164. float:left;
  165. height:30px;
  166. position: relative;
  167. z-index:999
  168. }
  169. .globalNav .zhzd a b{
  170. border-color: #FFDDC9 transparent transparent;
  171. border-right: 3px dashed transparent;
  172. border-style: solid dashed dashed;
  173. border-width: 3px 3px 0;
  174. display: inline-block;
  175. font-size: 0;
  176. height: 0;
  177. line-height: 0;
  178. width: 0;
  179. position: relative;
  180. top:-1px;
  181. left:4px
  182. }
  183. .globalNav .zhzd .zhzdMenu{
  184. position: absolute;
  185. left:0;
  186. top:29px;
  187. background:#fff;
  188. border:1px solid #ccc;
  189. border-top:none;
  190. box-shadow:0 2px 4px rgba(0, 0, 0, 0.2);
  191. z-index: 0;
  192. display:none
  193. }
  194. .globalNav .zhzd .zhzdMenu a{
  195. width:100%;
  196. padding:0;
  197. text-align:center;
  198. color:#3366cc
  199. }
  200. .globalNav .zhzd .zhzdMenu a:hover{
  201. background:#f2f2f2
  202. }
  203. .globalNav .zhzd a.now{
  204. background:#fff;
  205. border:1px solid #ccc;
  206. border-bottom:none;
  207. border-top:none;
  208. color:#3366cc;
  209. z-index:10
  210. }
  211. /*indexBanner*/
  212. .indexBanner {
  213. background:url(indexbanner.jpg) no-repeat center top;
  214. height:418px
  215. }
  216. .indexBanner .width950{
  217. position:relative
  218. }
  219. .indexBanner a.loginButton{
  220. position:absolute;
  221. right:0;
  222. top:-40px;
  223. border:1px solid #d75d49;
  224. color:#d75d49;
  225. padding:5px 20px
  226. }
  227. .indexBanner a.loginButton:hover{
  228. background-color:#e8715e;
  229. color: #fff
  230. }
  231. .indexBanner a.loginButton:active{
  232. background-color:#bf3a25;
  233. color: #fff
  234. }
  235. .sideBanner {
  236. width:486px;
  237. height:290px;
  238. position: absolute;
  239. right:81px;
  240. top:24px
  241. }
  242. .signButton {
  243. position:absolute;
  244. top:232px;
  245. left:20px
  246. }
  247. .panelLogin {
  248. float:left
  249. }
  250. .panelLogin a{
  251. width:187px;
  252. height:58px;
  253. display:inline-block;
  254. *display:inline;
  255. zoom:1;
  256. background:url(globalIcon.png) no-repeat 0 -20px
  257. }
  258. .panelLogin a:hover{
  259. background-position:0 -78px;
  260. }
  261. .panelLogin a:active{
  262. background-position:0 -136px;
  263. }
  264. .panelSign {
  265. margin:0 0 0 200px
  266. }
  267. .panelSign p{
  268. margin:4px 0 4px 0
  269. }
  270. .panelSign a{
  271. width:118px;
  272. height:33px;
  273. display:inline-block;
  274. *display:inline;
  275. zoom:1;
  276. background:url(globalIcon.png) no-repeat -187px -20px
  277. }
  278. .panelSign a:hover{
  279. background-position:-187px -53px;
  280. }
  281. .panelSign a:active{
  282. background-position:-187px -86px;
  283. }
  284. .indexDownload {
  285. background:url(globalIcon.png) repeat-x 0 -194px;
  286. position: relative;
  287. margin:40px 0 0 0
  288. }
  289. /*.indexDownload .warpDownload{
  290. background:url(globalIcon.png) repeat-x 0 384px;
  291. *background:url(globalIcon.png) repeat-x 0 384px;
  292. _background:url(globalIcon.png) repeat-x 0 272px;
  293. padding:20px 0
  294. }*/
  295. .warpDownload_title{
  296. font-size: 24px;
  297. color:#333;
  298. margin:0 0 15px 0;
  299. padding:15px 0 0 0;
  300. }
  301. .warpDownload li{
  302. width:420px;
  303. float:left;
  304. padding:15px 25px;
  305. }
  306. .warpDownload li:hover{
  307. background:#fff
  308. }
  309. .warpDownload li a{
  310. float:right;
  311. font-size: 14px;
  312. color:#fff;
  313. background-color:#E36335;
  314. padding:8px 23px;
  315. margin:30px 0 0 0
  316. }
  317. .warpDownload li a:hover{
  318. background-color:#ff6501;
  319. }
  320. .warpDownload li a:active{
  321. background-color:#D05100;
  322. }
  323. .warpDownload li a.info{
  324. border-right:1px solid #fff;
  325. background:#9D9D9D;
  326. }
  327. .warpDownload li h2 {
  328. font-size:20px;
  329. color:#414141;
  330. margin:0 0 5px 120px
  331. }
  332. .warpDownload li h3 {
  333. font-size:14px;
  334. color:#a8a8a8;
  335. margin:0 0 0 95px
  336. }
  337. .warpDownload li b{
  338. float:right;
  339. color:#fff;
  340. background-color:#999;
  341. padding:1px 5px;
  342. margin:20px 0 0 0
  343. }
  344. .warpDownload{
  345. padding:10px 0;
  346. }
  347. .stepBtitle{
  348. text-align: center;
  349. margin-top: 20px;
  350. font-size: 26px;
  351. color:#333;
  352. }
  353. .step{
  354. margin:30px 0;
  355. }
  356. .stepTitle{
  357. font-size: 20px;
  358. display:inline-block;
  359. color:#ed5c00;
  360. /*padding:5px 15px;
  361. background:#ed5c00;
  362. color:#fff;*/
  363. }
  364. .stepCont{
  365. padding:5px 0;
  366. font-size: 20px;
  367. }
  368. .btnOrange{
  369. margin:0 10px;
  370. border:1px solid #ed5c00;
  371. padding:5px 15px;
  372. background:#ed5c00;
  373. color:#fff;
  374. }
  375. .btnOrange:hover{
  376. background:#c84e00;
  377. border:1px solid #c84e00;
  378. color:#fff;
  379. text-decoration: none;
  380. }
  381. .indexIcon {
  382. background:url(globalIcon.png) no-repeat;
  383. width:48px;
  384. height:48px;
  385. position:absolute
  386. }
  387. .idIcon {
  388. background-position:-187px -119px;
  389. left:50%;
  390. margin:0 0 0 -24px;
  391. top:-37px
  392. }
  393. .isIcon {
  394. background-position:-236px -119px;
  395. right:50%;
  396. margin:0 -24px 0 0;
  397. top:-50px
  398. }
  399. .indexSlide {
  400. margin:40px 0 0 0;
  401. position: relative
  402. }
  403. .footer{
  404. margin:20px 0
  405. }
  406. .footer p{
  407. text-align:center
  408. }
  409. .warpLogin .loginItem,.warpProfile .formContent{background:#fff}
  410. .warpLogin .loginSlide {
  411. padding: 40px 0 0 40px;
  412. width: 280px;
  413. }
  414. .warpLogin .loginSlide p {
  415. line-height: 50px;
  416. }
  417. .warpLogin .loginForm {
  418. border-right: 1px dashed #E2E2E2;
  419. margin: 0 320px 0 30px;
  420. padding: 20px 0 150px;
  421. }
  422. .warpLogin .loginForm h3 {
  423. border-left: 2px solid #FF6501;
  424. font-size: 18px;
  425. padding: 3px 8px;
  426. }
  427. .warpLogin .loginForm dt {
  428. font-size: 14px;
  429. margin: 20px 0 5px;
  430. }
  431. .loginForm dd .inputText {
  432. font-size: 14px;
  433. width: 300px;
  434. }
  435. .formItem li input.inputText,.inputText {
  436. background:url(inputBg.png) repeat-x 0 0;
  437. height:28px;
  438. line-height:28px;
  439. border:1px solid #dcdcdc;
  440. border-top-color:#abadb3;
  441. border-left-color:#abadb3;
  442. border-radius:3px;
  443. -moz-border-radius:3px;
  444. -webkit-border-radius:3px;
  445. padding:0 5px;
  446. color:#999;
  447. }
  448. .formItem li input.inputText:focus,.inputText:focus {
  449. border-color:#ff6501;
  450. background:#fff;
  451. color:#333;
  452. font-weight:600;
  453. }
  454. .formItem li {
  455. border-bottom: 1px dotted #E2E2E2;
  456. padding: 15px 0 15px 20px;
  457. position:relative
  458. }
  459. .formItem li .fL {
  460. color: #676767;
  461. font-size: 14px;
  462. font-weight: 600;
  463. height: 32px;
  464. line-height: 32px;
  465. width: 125px;
  466. }
  467. .formItem li select {
  468. -moz-border-bottom-colors: none;
  469. -moz-border-left-colors: none;
  470. -moz-border-right-colors: none;
  471. -moz-border-top-colors: none;
  472. border-color: #ABADB3 #DCDCDC #DCDCDC #ABADB3;
  473. border-image: none;
  474. border-right: 1px solid #DCDCDC;
  475. border-style: solid;
  476. border-width: 1px;
  477. color: #999999;
  478. height: 30px;
  479. line-height: 30px;
  480. padding: 5px 3px;
  481. vertical-align: bottom;
  482. }
  483. .formItem li input.inputDis,.loginForm input.inputDis {
  484. background: none repeat scroll 0 0 #F2F2F2;
  485. }
  486. .formItem li input.erroT, .formItem li select.erroT {
  487. border-color: #E9322E;
  488. box-shadow: 0 0 4px #E9322E;
  489. color: #E9322E;
  490. }
  491. .formItem li span.erroT {
  492. background: none repeat scroll 0 0 #E9322E;
  493. border-radius: 0 0 5px 5px;
  494. color: #FFFFFF;
  495. left: 150px;
  496. padding: 0 5px;
  497. position: absolute;
  498. bottom:-2px;
  499. }
  500. .formItem .formExtra {
  501. background: none repeat scroll 0 0 #E5EDEF;
  502. margin: 0 0 0 125px;
  503. padding: 8px;
  504. }
  505. .formItem .formExtra p {
  506. margin: 0 0 5px;
  507. }
  508. .formItem .formExtra i {
  509. margin: 0 10px;
  510. }
  511. .formTips{
  512. background: #FFFBCC;
  513. border: 1px solid #E6DB55;
  514. color: #666452;
  515. padding: 8px 12px;
  516. margin:5px 20px 5px 0
  517. }
  518. .loginItem dd select {
  519. -moz-border-bottom-colors: none;
  520. -moz-border-left-colors: none;
  521. -moz-border-right-colors: none;
  522. -moz-border-top-colors: none;
  523. border-color: #ABADB3 #DCDCDC #DCDCDC #ABADB3;
  524. border-image: none;
  525. border-radius: 2px 2px 2px 2px;
  526. border-right: 1px solid #DCDCDC;
  527. border-style: solid;
  528. border-width: 1px;
  529. color: #999999;
  530. outline: medium none;
  531. padding: 7px;
  532. vertical-align: bottom;
  533. }
  534. .loginItem .globalForm{
  535. padding-bottom:100px;
  536. margin-top:10px
  537. }
  538. .userInfoPanel {
  539. margin:20px auto 5px
  540. }
  541. .userInfoPanel p{
  542. text-align:right;
  543. margin:10px 0 0 0
  544. }
  545. .formContent {
  546. margin-top:10px;
  547. background:#fff
  548. }
  549. .formContent .slidebar {
  550. float: left;
  551. width: 180px;
  552. margin:20px 0 0 0
  553. }
  554. .formContent .slidebar li {
  555. margin: 1px 0;
  556. padding: 0 10px 0 0;
  557. }
  558. .formContent .slidebar li.now {
  559. background: none repeat scroll 0 0 #f5f5f5;
  560. }
  561. .formContent .slidebar li a {
  562. color: #666666;
  563. display: block;
  564. font-size: 14px;
  565. height: 30px;
  566. line-height: 30px;
  567. padding: 0 0 0 10px;
  568. }
  569. .formContent .slidebar li a:hover{
  570. color:#ff6501
  571. }
  572. .formContent .slidebar li.now a {
  573. color: #FF6501;
  574. }
  575. .formContent .slidebar li a.userProfile {
  576. background-position: right 0;
  577. }
  578. .formContent .mainContent {
  579. border-left: 1px solid #E2E2E2;
  580. margin: 0 0 0 180px;
  581. }
  582. .mainContent .globalForm {
  583. padding:15px 0 60px
  584. }
  585. .mainContent .globalForm .formTips{
  586. margin-left:20px
  587. }
  588. .mainContent .globalForm h3 {
  589. border-left: 2px solid #FF6501;
  590. font-size: 18px;
  591. padding: 3px 8px;
  592. margin:0 20px
  593. }
  594. .statistical {
  595. margin:10px 20px;
  596. padding:10px;
  597. background:#f9f9f9
  598. }
  599. .statistical table {
  600. width:80%;
  601. margin:0 0 10px 0
  602. }
  603. .statistical table th{
  604. width:90px
  605. }
  606. .accuntTipe{
  607. padding:5px 8px;
  608. background:#34495E;
  609. color:#fff;
  610. margin:0 30px 10px 0
  611. }
  612. .accuntTipe a{
  613. color:#fff;
  614. border-bottom:1px dashed #fff;
  615. padding:0 3px
  616. }
  617. .accuntConfirm {
  618. margin:20px 30px 0 0;
  619. padding:20px 0 20px 150px;
  620. border-top:1px dashed #E2E2E2;
  621. background:#f2f2f2
  622. }
  623. .accuntConfirm p{
  624. font-size:18px;
  625. margin:0 0 10px 0
  626. }
  627. .accuntConfirm p span{
  628. display:inline-block;
  629. *display:inline;
  630. zoom:1;
  631. width:140px;
  632. text-align:right
  633. }
  634. .accuntConfirm .button{
  635. margin:20px 0 0 50px
  636. }
  637. .modal-backdrop {
  638. position: fixed;
  639. top: 0;
  640. right: 0;
  641. bottom: 0;
  642. left: 0;
  643. z-index: 1040;
  644. background-color: #000
  645. }
  646. .modal-backdrop.fade {
  647. opacity: 0
  648. }
  649. .modal-backdrop,.modal-backdrop.fade.in {
  650. opacity: .8;
  651. filter: alpha(opacity=80)
  652. }
  653. .modal {
  654. position: fixed;
  655. top: 10%;
  656. left: 50%;
  657. z-index: 1050;
  658. width: 560px;
  659. margin-left: -280px;
  660. background-color: #fff;
  661. border: 1px solid #999;
  662. border: 1px solid rgba(0,0,0,0.3);
  663. *border: 1px solid #999;
  664. -webkit-border-radius: 6px;
  665. -moz-border-radius: 6px;
  666. border-radius: 6px;
  667. outline: 0;
  668. -webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
  669. -moz-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
  670. box-shadow: 0 3px 7px rgba(0,0,0,0.3);
  671. -webkit-background-clip: padding-box;
  672. -moz-background-clip: padding-box;
  673. background-clip: padding-box
  674. }
  675. .modal.fade {
  676. top: -25%;
  677. -webkit-transition: opacity .3s linear,top .3s ease-out;
  678. -moz-transition: opacity .3s linear,top .3s ease-out;
  679. -o-transition: opacity .3s linear,top .3s ease-out;
  680. transition: opacity .3s linear,top .3s ease-out
  681. }
  682. .modal.fade.in {
  683. top: 10%
  684. }
  685. .modal-header {
  686. padding: 9px 15px;
  687. border-bottom: 1px solid #eee
  688. }
  689. .modal-header .close {
  690. margin-top: 2px
  691. }
  692. .modal-header h3 {
  693. margin: 0;
  694. line-height: 30px
  695. }
  696. .modal-body {
  697. position: relative;
  698. max-height: 400px;
  699. padding: 15px;
  700. overflow-y: auto
  701. }
  702. .modal-form {
  703. margin-bottom: 0
  704. }
  705. .modal-footer {
  706. padding: 14px 15px 15px;
  707. margin-bottom: 0;
  708. text-align: right;
  709. background-color: #f5f5f5;
  710. border-top: 1px solid #ddd;
  711. -webkit-border-radius: 0 0 6px 6px;
  712. -moz-border-radius: 0 0 6px 6px;
  713. border-radius: 0 0 6px 6px;
  714. *zoom: 1;
  715. -webkit-box-shadow: inset 0 1px 0 #fff;
  716. -moz-box-shadow: inset 0 1px 0 #fff;
  717. box-shadow: inset 0 1px 0 #fff
  718. }
  719. .modal-footer:before,.modal-footer:after {
  720. display: table;
  721. line-height: 0;
  722. content: ""
  723. }
  724. .modal-footer:after {
  725. clear: both
  726. }
  727. .modal-footer .btn+.btn {
  728. margin-bottom: 0;
  729. margin-left: 5px
  730. }
  731. .modal-footer .btn-group .btn+.btn {
  732. margin-left: -1px
  733. }
  734. .modal-footer .btn-block+.btn-block {
  735. margin-left: 0
  736. }